Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
af30522
tinkering with stuff
catosaurusrex2003 Jan 11, 2025
e1563fb
added todo
catosaurusrex2003 Jan 11, 2025
9f6879a
more support
catosaurusrex2003 Jan 11, 2025
9a9faa7
almost everything added
catosaurusrex2003 Jan 12, 2025
840e329
corrected conditionals
catosaurusrex2003 Jan 12, 2025
1b5d562
.
catosaurusrex2003 Jan 12, 2025
d9cc36d
rules conditions tabs added
catosaurusrex2003 Jan 12, 2025
76a38f0
cleanup useleff studd
catosaurusrex2003 Jan 12, 2025
f3809c0
sonar cloud issues fixed
catosaurusrex2003 Jan 12, 2025
d1eabf4
sonar cloud again
catosaurusrex2003 Jan 12, 2025
33d68ce
..
catosaurusrex2003 Jan 12, 2025
ff94361
.
catosaurusrex2003 Jan 12, 2025
4636b3c
<anonymouse-schema-n>
catosaurusrex2003 Jan 12, 2025
7130183
some changes
catosaurusrex2003 Jan 12, 2025
ad59155
feild status indicator correct conditional
catosaurusrex2003 Jan 14, 2025
eb86982
mkdir
catosaurusrex2003 Jan 14, 2025
f4551f1
exmaples, corrected conditional again
catosaurusrex2003 Jan 14, 2025
3644173
...
catosaurusrex2003 Jan 20, 2025
c4c6498
conditions sidebar
catosaurusrex2003 Jan 27, 2025
f79c77f
rules and conditions side by side now with height adjusting
catosaurusrex2003 Jan 28, 2025
ad30dd4
Merge branch 'master' of https://github.com/catosaurusrex2003/asyncap…
catosaurusrex2003 Jan 28, 2025
a9a9e13
fixed conditionsRightShift bug, completely replaced Schema with Paylo…
catosaurusrex2003 Jan 31, 2025
4840657
Merge branch 'master' into refactor-messages
catosaurusrex2003 Jan 31, 2025
4c4ae9a
formatted
catosaurusrex2003 Feb 2, 2025
1c24a9b
rules and conditions swapped
catosaurusrex2003 Feb 3, 2025
5ca02fb
sidebar toggle localised, payload header w-full
catosaurusrex2003 Feb 3, 2025
b834a1b
logic for childrenHaveConditions added
catosaurusrex2003 Feb 3, 2025
4f3d60b
back to tabs, chucked sidebar
catosaurusrex2003 Feb 4, 2025
7ec7022
Merge branch 'master' into refactor-messages
AceTheCreator Feb 18, 2025
41eb1a2
removed recursioncounter, comments
catosaurusrex2003 Feb 27, 2025
d70336d
code quality improved
catosaurusrex2003 Feb 27, 2025
11a291d
Merge branch 'master' of https://github.com/catosaurusrex2003/asyncap…
catosaurusrex2003 Feb 27, 2025
a623556
Merge branch 'master' into refactor-messages
catosaurusrex2003 Mar 6, 2025
6653b29
testing
catosaurusrex2003 Mar 10, 2025
286e4c0
number range test cases
catosaurusrex2003 Mar 10, 2025
bbee4d9
other tests added
catosaurusrex2003 Mar 11, 2025
9204c8f
correct linting
catosaurusrex2003 Mar 25, 2025
3135732
weird prettier fail fix
catosaurusrex2003 Mar 25, 2025
d451267
Merge branch 'master' into refactor-messages
catosaurusrex2003 Mar 25, 2025
28b6d24
weird prettier fail fix 2
catosaurusrex2003 Mar 25, 2025
93b9ca0
Merge branch 'refactor-messages' of github-mehdi:catosaurusrex2003/as…
catosaurusrex2003 Mar 25, 2025
cd38352
remove parenthesis to fix prettier errors
catosaurusrex2003 Mar 25, 2025
83c3e05
inconsistencies fixed
catosaurusrex2003 Mar 25, 2025
d27020e
removed old implementation of schema
catosaurusrex2003 Apr 8, 2025
f3b5d3e
newline
catosaurusrex2003 Apr 8, 2025
6e49a66
removed useless css
catosaurusrex2003 Apr 11, 2025
3fb3a2f
removed unused imports
catosaurusrex2003 Apr 11, 2025
9e1b8c1
better script to run dev server
catosaurusrex2003 May 24, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions library/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"./styles/default.min.css"
],
"scripts": {
"start": "tsc -p tsconfig.esm.json --watch",
"start": "npm run build:styles:dev && tsc -p tsconfig.esm.json --watch",
"build:dev": "npm run build:esm && npm run build:types && npm run build:styles",
"build:prod": "npm run build:esm && npm run build:cjs && npm run build:umd && npm run build:standalone && npm run build:types && npm run build:styles",
"build:esm": "tsc -p tsconfig.esm.json",
Expand All @@ -53,7 +53,7 @@
"build:standalone": "cross-env BUILD_MODE=standalone webpack",
"build:types": "tsc -p tsconfig.types.json",
"build:styles": "npm run build:styles:dev && npm run build:styles:prod",
"build:styles:dev": "cross-env NODE_ENV=production postcss src/styles/default.css -o styles/default.css --verbose",
"build:styles:dev": "cross-env NODE_ENV=development postcss src/styles/default.css -o styles/default.css --verbose & cross-env NODE_ENV=development postcss src/styles/default.css -o styles/default.min.css --verbose",
"build:styles:prod": "cross-env NODE_ENV=production MINIFY_STYLES=true postcss src/styles/default.css -o styles/default.min.css --verbose",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "jest --detectOpenHandles",
Expand Down Expand Up @@ -117,4 +117,4 @@
"publishConfig": {
"access": "public"
}
}
}
2 changes: 1 addition & 1 deletion library/src/components/Bindings.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
import React from 'react';
import { Schema } from './Schema';
import { Schema } from './Schema/Schema';
import { SchemaHelpers } from '../helpers';
import { BindingsInterface } from '@asyncapi/parser';

Expand Down
4 changes: 1 addition & 3 deletions library/src/components/Extensions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
/* eslint-disable @typescript-eslint/no-unsafe-assignment */

import React, { useState } from 'react';

import { Schema } from './Schema';

import { Schema } from './Schema/Schema';
import { SchemaHelpers } from '../helpers';
import { useConfig, useSpec } from '../contexts';
import { CollapseButton } from './CollapseButton';
Expand Down
Loading