Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DON'T MERGE] feat(Form): Support anyOf & oneOf #1939

Draft
wants to merge 21 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
d57b3f0
feat(Form): Support anyOf & oneOf
lordrip Jan 15, 2025
6d3e959
feat(Form): support PasswordField
tplevko Jan 24, 2025
e518184
chore: Show `DisabledField` for ArrayFields
lordrip Jan 24, 2025
2a2fbc3
chore: Add omitFields support
lordrip Jan 24, 2025
8e515de
fix(CanvasForm): Avoid rerender CanvasForm
lordrip Jan 24, 2025
d57d61e
feat(Form): Give priority to matching model and schema types
lordrip Jan 27, 2025
2b9d1dc
chore: Fix lint and build
lordrip Jan 27, 2025
b0aa319
feat(Form): Clean current schema after switching to another schema
lordrip Jan 27, 2025
8e05a80
feat(Form): Add ArrayField
lordrip Jan 27, 2025
8157dc7
Feat: Added new EIPGenerator
lordrip Jan 15, 2025
060d0e7
chore: Improve single property schema naming
lordrip Jan 28, 2025
fe36256
feat(Catalog): Remove simple string schemas in favor of complex ones
lordrip Jan 28, 2025
8c027e5
feat(Catalog): Add CamelCatalogSchemaEnhancer
lordrip Jan 28, 2025
e334242
chore(tests): Cache JavaType to Camel model map
lordrip Jan 29, 2025
43f72c1
feat(Catalog): Add group/label information
lordrip Jan 29, 2025
b9a42de
Fix(EIP_Generator): Sorting root properties and definitions propertie…
shivamG640 Jan 29, 2025
c6743e2
Fix(Catalog): Restrict group information for empty EIP properties
shivamG640 Jan 29, 2025
92da3c1
feat(Form): Add EnumField
tplevko Jan 30, 2025
ad24c43
Fix(Catalog): Add Bean information on EIP Properties
shivamG640 Jan 30, 2025
a03ee95
chore: extract capitalize functionality to separate function
lordrip Jan 31, 2025
cad1652
feat(Form): Add property filtering and grouping
lordrip Jan 31, 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
Prev Previous commit
Next Next commit
chore: Show DisabledField for ArrayFields
  • Loading branch information
lordrip committed Jan 27, 2025
commit e518184694a54e987d589f5975b74ad9dac7b67b
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const FormComponentFactoryProvider: FunctionComponent<PropsWithChildren>
case 'object':
return ObjectField;
case 'array':
return () => <div>Array field</div>;
return DisabledField;
}

if (Array.isArray(schema.oneOf)) {
Expand Down