@gravity-ui/dynamic-forms 5.19.1 → 5.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/lib/core/components/Form/DynamicField.js +3 -0
- package/build/cjs/lib/core/components/View/DynamicView.js +3 -0
- package/build/cjs/lib/core/helpers.d.ts +3 -1
- package/build/cjs/lib/core/helpers.js +27 -1
- package/build/cjs/lib/unstable/core/SchemaRenderer/SchemaRenderer.js +3 -3
- package/build/cjs/lib/unstable/core/SchemaRendererNode/SchemaRendererNode.d.ts +11 -0
- package/build/cjs/lib/unstable/core/SchemaRendererNode/SchemaRendererNode.js +131 -0
- package/build/cjs/lib/unstable/core/SchemaRendererNode/index.d.ts +3 -0
- package/build/cjs/lib/unstable/core/SchemaRendererNode/index.js +8 -0
- package/build/cjs/lib/unstable/core/SchemaRendererNode/types.d.ts +3 -0
- package/build/cjs/lib/unstable/core/SchemaRendererNode/utils.d.ts +25 -0
- package/build/cjs/lib/unstable/core/SchemaRendererNode/utils.js +162 -0
- package/build/cjs/lib/unstable/core/constants.d.ts +12 -1
- package/build/cjs/lib/unstable/core/constants.js +22 -10
- package/build/cjs/lib/unstable/core/index.d.ts +6 -3
- package/build/cjs/lib/unstable/core/index.js +18 -6
- package/build/cjs/lib/unstable/core/types/components.d.ts +21 -21
- package/build/cjs/lib/unstable/core/types/config.d.ts +28 -27
- package/build/cjs/lib/unstable/core/types/helpers.d.ts +22 -17
- package/build/cjs/lib/unstable/core/types/index.d.ts +1 -0
- package/build/cjs/lib/unstable/core/types/jsl-errors.d.ts +105 -0
- package/build/cjs/lib/unstable/core/types/schema.d.ts +63 -164
- package/build/cjs/lib/unstable/core/types/validation.d.ts +30 -32
- package/build/cjs/lib/unstable/core/useSchemaRenderer/constants.d.ts +1 -1
- package/build/cjs/lib/unstable/core/useSchemaRenderer/constants.js +2 -2
- package/build/cjs/lib/unstable/core/useSchemaRenderer/index.d.ts +3 -3
- package/build/cjs/lib/unstable/core/useSchemaRenderer/index.js +3 -6
- package/build/cjs/lib/unstable/core/useSchemaRenderer/types/index.d.ts +4 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/types/index.js +7 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/types/patches.d.ts +21 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/types/state.d.ts +34 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/types/subscription.d.ts +13 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/types/validation.d.ts +10 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/useSchemaRenderer.d.ts +7 -28
- package/build/cjs/lib/unstable/core/useSchemaRenderer/useSchemaRenderer.js +95 -69
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/get-dispatch.d.ts +3 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/get-dispatch.js +54 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/get-run-validate.d.ts +2 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/get-run-validate.js +19 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/get-schema-root-node.d.ts +11 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/get-schema-root-node.js +136 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/get-subscribe.d.ts +6 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/get-subscribe.js +63 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/get-validate.d.ts +3 -14
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/get-validate.js +69 -48
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/index.d.ts +3 -1
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/index.js +7 -3
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/parse-errors.d.ts +14 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/parse-errors.js +338 -0
- package/build/cjs/lib/unstable/core/useSchemaRendererState/index.d.ts +1 -0
- package/build/cjs/lib/unstable/core/useSchemaRendererState/index.js +5 -0
- package/build/cjs/lib/unstable/core/useSchemaRendererState/useSchemaRendererState.d.ts +9 -0
- package/build/cjs/lib/unstable/core/useSchemaRendererState/useSchemaRendererState.js +62 -0
- package/build/cjs/lib/unstable/core/useSchemaRendererTools/index.d.ts +1 -0
- package/build/cjs/lib/unstable/core/useSchemaRendererTools/index.js +5 -0
- package/build/cjs/lib/unstable/core/useSchemaRendererTools/useSchemaRendererTools.d.ts +8 -0
- package/build/cjs/lib/unstable/core/useSchemaRendererTools/useSchemaRendererTools.js +19 -0
- package/build/cjs/lib/unstable/core/useSchemaRendererTools/utils/external-errors.d.ts +18 -0
- package/build/cjs/lib/unstable/core/useSchemaRendererTools/utils/external-errors.js +38 -0
- package/build/cjs/lib/unstable/core/useSchemaRendererTools/utils/index.d.ts +3 -0
- package/build/cjs/lib/unstable/core/useSchemaRendererTools/utils/index.js +11 -0
- package/build/cjs/lib/unstable/core/useSchemaRendererTools/utils/schema-patch.d.ts +12 -0
- package/build/cjs/lib/unstable/core/useSchemaRendererTools/utils/schema-patch.js +175 -0
- package/build/cjs/lib/unstable/core/useSchemaRendererTools/utils/user-context.d.ts +9 -0
- package/build/cjs/lib/unstable/core/useSchemaRendererTools/utils/user-context.js +17 -0
- package/build/cjs/lib/unstable/core/utils/common.d.ts +36 -25
- package/build/cjs/lib/unstable/core/utils/common.js +46 -108
- package/build/cjs/lib/unstable/core/utils/definers.d.ts +58 -0
- package/build/cjs/lib/unstable/core/utils/definers.js +9 -0
- package/build/cjs/lib/unstable/core/utils/index.d.ts +1 -0
- package/build/cjs/lib/unstable/core/utils/index.js +1 -0
- package/build/cjs/lib/unstable/kit/components/ArrayRemoveButton/ArrayRemoveButton.d.ts +2 -0
- package/build/cjs/lib/unstable/kit/components/ArrayRemoveButton/ArrayRemoveButton.js +13 -6
- package/build/cjs/lib/unstable/kit/components/CopyButton/CopyButton.css +9 -0
- package/build/cjs/lib/unstable/kit/components/CopyButton/CopyButton.d.ts +7 -0
- package/build/cjs/lib/unstable/kit/components/CopyButton/CopyButton.js +18 -0
- package/build/cjs/lib/unstable/kit/components/CopyButton/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/components/CopyButton/index.js +5 -0
- package/build/cjs/lib/unstable/kit/components/EmptyEntityValue/EmptyEntityValue.d.ts +2 -0
- package/build/cjs/lib/unstable/kit/components/EmptyEntityValue/EmptyEntityValue.js +11 -0
- package/build/cjs/lib/unstable/kit/components/EmptyEntityValue/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/components/EmptyEntityValue/index.js +5 -0
- package/build/cjs/lib/unstable/kit/components/EntityContainer/EntityContainer.css +22 -0
- package/build/cjs/lib/unstable/kit/components/EntityContainer/EntityContainer.d.ts +8 -0
- package/build/cjs/lib/unstable/kit/components/EntityContainer/EntityContainer.js +14 -0
- package/build/cjs/lib/unstable/kit/components/EntityContainer/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/components/EntityContainer/index.js +5 -0
- package/build/cjs/lib/unstable/kit/components/EntityError/EntityError.css +3 -0
- package/build/cjs/lib/unstable/kit/components/EntityError/EntityError.d.ts +6 -0
- package/build/cjs/lib/unstable/kit/components/EntityError/EntityError.js +15 -0
- package/build/cjs/lib/unstable/kit/components/EntityError/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/components/EntityError/index.js +5 -0
- package/build/cjs/lib/unstable/kit/components/LayoutContainer/LayoutContainer.css +11 -0
- package/build/cjs/lib/unstable/kit/components/LayoutContainer/LayoutContainer.d.ts +7 -0
- package/build/cjs/lib/unstable/kit/components/LayoutContainer/LayoutContainer.js +13 -0
- package/build/cjs/lib/unstable/kit/components/LayoutContainer/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/components/LayoutContainer/index.js +5 -0
- package/build/cjs/lib/unstable/kit/components/LongValue/LongValue.css +19 -0
- package/build/cjs/lib/unstable/kit/components/LongValue/LongValue.d.ts +7 -0
- package/build/cjs/lib/unstable/kit/components/LongValue/LongValue.js +42 -0
- package/build/cjs/lib/unstable/kit/components/LongValue/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/components/LongValue/index.js +5 -0
- package/build/cjs/lib/unstable/kit/components/MonacoContainer/MonacoContainer.css +21 -0
- package/build/cjs/lib/unstable/kit/components/MonacoContainer/MonacoContainer.d.ts +12 -0
- package/build/cjs/lib/unstable/kit/components/MonacoContainer/MonacoContainer.js +21 -0
- package/build/cjs/lib/unstable/kit/components/MonacoContainer/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/components/MonacoContainer/index.js +5 -0
- package/build/cjs/lib/unstable/kit/components/index.d.ts +7 -1
- package/build/cjs/lib/unstable/kit/components/index.js +15 -3
- package/build/cjs/lib/unstable/kit/constants/common.d.ts +2 -0
- package/build/cjs/lib/unstable/kit/constants/common.js +5 -0
- package/build/cjs/lib/unstable/kit/constants/config.d.ts +461 -49
- package/build/cjs/lib/unstable/kit/constants/config.js +202 -41
- package/build/cjs/lib/unstable/kit/constants/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/constants/index.js +4 -1
- package/build/cjs/lib/unstable/kit/entities/Alert/Alert.d.ts +8 -0
- package/build/cjs/lib/unstable/kit/entities/Alert/Alert.js +27 -0
- package/build/cjs/lib/unstable/kit/entities/Alert/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/entities/Alert/index.js +5 -0
- package/build/cjs/lib/unstable/kit/entities/ArrayEntity/ArrayEntity.css +3 -0
- package/build/cjs/lib/unstable/kit/entities/ArrayEntity/ArrayEntity.d.ts +6 -0
- package/build/cjs/lib/unstable/kit/entities/ArrayEntity/ArrayEntity.js +57 -0
- package/build/cjs/lib/unstable/kit/entities/ArrayEntity/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/entities/ArrayEntity/index.js +5 -0
- package/build/cjs/lib/unstable/kit/entities/ArrayTable/ArrayTable.css +45 -0
- package/build/cjs/lib/unstable/kit/entities/ArrayTable/ArrayTable.d.ts +7 -0
- package/build/cjs/lib/unstable/kit/entities/ArrayTable/ArrayTable.js +102 -0
- package/build/cjs/lib/unstable/kit/entities/ArrayTable/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/entities/ArrayTable/index.js +5 -0
- package/build/cjs/lib/unstable/kit/entities/DotValue/DotValue.d.ts +4 -0
- package/build/cjs/lib/unstable/kit/entities/DotValue/DotValue.js +33 -0
- package/build/cjs/lib/unstable/kit/entities/DotValue/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/entities/DotValue/index.js +5 -0
- package/build/cjs/lib/unstable/kit/entities/FewOfNested/FewOfNested.css +17 -0
- package/build/cjs/lib/unstable/kit/entities/FewOfNested/FewOfNested.d.ts +7 -0
- package/build/cjs/lib/unstable/kit/entities/FewOfNested/FewOfNested.js +73 -0
- package/build/cjs/lib/unstable/kit/entities/FewOfNested/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/entities/FewOfNested/index.js +5 -0
- package/build/cjs/lib/unstable/kit/entities/Label/Label.d.ts +8 -0
- package/build/cjs/lib/unstable/kit/entities/Label/Label.js +30 -0
- package/build/cjs/lib/unstable/kit/entities/Label/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/entities/Label/index.js +5 -0
- package/build/cjs/lib/unstable/kit/entities/Monaco/Monaco.css +6 -0
- package/build/cjs/lib/unstable/kit/entities/Monaco/Monaco.d.ts +7 -0
- package/build/cjs/lib/unstable/kit/entities/Monaco/Monaco.js +80 -0
- package/build/cjs/lib/unstable/kit/entities/Monaco/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/entities/Monaco/index.js +5 -0
- package/build/cjs/lib/unstable/kit/entities/ObjectEntity/ObjectEntity.d.ts +6 -0
- package/build/cjs/lib/unstable/kit/entities/ObjectEntity/ObjectEntity.js +16 -0
- package/build/cjs/lib/unstable/kit/entities/ObjectEntity/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/entities/ObjectEntity/index.js +5 -0
- package/build/cjs/lib/unstable/kit/entities/ObjectInline/ObjectInline.css +11 -0
- package/build/cjs/lib/unstable/kit/entities/ObjectInline/ObjectInline.d.ts +7 -0
- package/build/cjs/lib/unstable/kit/entities/ObjectInline/ObjectInline.js +26 -0
- package/build/cjs/lib/unstable/kit/entities/ObjectInline/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/entities/ObjectInline/index.js +5 -0
- package/build/cjs/lib/unstable/kit/entities/OneOfNested/OneOfNested.css +17 -0
- package/build/cjs/lib/unstable/kit/entities/OneOfNested/OneOfNested.d.ts +11 -0
- package/build/cjs/lib/unstable/kit/entities/OneOfNested/OneOfNested.js +70 -0
- package/build/cjs/lib/unstable/kit/entities/OneOfNested/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/entities/OneOfNested/index.js +5 -0
- package/build/cjs/lib/unstable/kit/entities/TextContent/TextContent.css +19 -0
- package/build/cjs/lib/unstable/kit/entities/TextContent/TextContent.d.ts +8 -0
- package/build/cjs/lib/unstable/kit/entities/TextContent/TextContent.js +31 -0
- package/build/cjs/lib/unstable/kit/entities/TextContent/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/entities/TextContent/index.js +5 -0
- package/build/cjs/lib/unstable/kit/entities/index.d.ts +11 -0
- package/build/cjs/lib/unstable/kit/entities/index.js +25 -0
- package/build/cjs/lib/unstable/kit/form-entities/CheckboxGroupInput/CheckboxGroupInput.css +9 -0
- package/build/cjs/lib/unstable/kit/form-entities/CheckboxGroupInput/CheckboxGroupInput.d.ts +8 -0
- package/build/cjs/lib/unstable/kit/form-entities/CheckboxGroupInput/CheckboxGroupInput.js +42 -0
- package/build/cjs/lib/unstable/kit/form-entities/CheckboxGroupInput/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/form-entities/CheckboxGroupInput/index.js +5 -0
- package/build/cjs/lib/unstable/kit/form-entities/CheckboxInput/CheckboxInput.css +11 -0
- package/build/cjs/lib/unstable/kit/form-entities/CheckboxInput/CheckboxInput.d.ts +5 -0
- package/build/cjs/lib/unstable/kit/form-entities/CheckboxInput/CheckboxInput.js +20 -0
- package/build/cjs/lib/unstable/kit/form-entities/CheckboxInput/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/form-entities/CheckboxInput/index.js +5 -0
- package/build/cjs/lib/unstable/kit/form-entities/ColorPickerInput/ColorPickerInput.css +6 -0
- package/build/cjs/lib/unstable/kit/form-entities/ColorPickerInput/ColorPickerInput.d.ts +5 -0
- package/build/cjs/lib/unstable/kit/form-entities/ColorPickerInput/ColorPickerInput.js +25 -0
- package/build/cjs/lib/unstable/kit/form-entities/ColorPickerInput/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/form-entities/ColorPickerInput/index.js +5 -0
- package/build/cjs/lib/unstable/kit/form-entities/DateInput/DateInput.css +3 -0
- package/build/cjs/lib/unstable/kit/form-entities/DateInput/DateInput.d.ts +6 -0
- package/build/cjs/lib/unstable/kit/form-entities/DateInput/DateInput.js +47 -0
- package/build/cjs/lib/unstable/kit/form-entities/FileInput/FileInput.d.ts +6 -0
- package/build/cjs/lib/unstable/kit/form-entities/FileInput/FileInput.js +53 -0
- package/build/cjs/lib/unstable/kit/form-entities/FileInput/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/form-entities/FileInput/index.js +5 -0
- package/build/cjs/lib/unstable/kit/form-entities/MultiSelectInput/MultiSelectInput.d.ts +7 -0
- package/build/cjs/lib/unstable/kit/form-entities/MultiSelectInput/MultiSelectInput.js +38 -0
- package/build/cjs/lib/unstable/kit/form-entities/MultiSelectInput/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/form-entities/MultiSelectInput/index.js +5 -0
- package/build/cjs/lib/unstable/kit/form-entities/NumberInput/NumberInput.css +3 -0
- package/build/cjs/lib/unstable/kit/form-entities/NumberInput/NumberInput.d.ts +5 -0
- package/build/cjs/lib/unstable/kit/form-entities/NumberInput/NumberInput.js +16 -0
- package/build/cjs/lib/unstable/kit/form-entities/NumberInput/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/form-entities/NumberInput/index.js +5 -0
- package/build/cjs/lib/unstable/kit/form-entities/NumberWithScaleInput/NumberWithScaleInput.css +6 -0
- package/build/cjs/lib/unstable/kit/form-entities/NumberWithScaleInput/NumberWithScaleInput.d.ts +11 -0
- package/build/cjs/lib/unstable/kit/form-entities/NumberWithScaleInput/NumberWithScaleInput.js +76 -0
- package/build/cjs/lib/unstable/kit/form-entities/NumberWithScaleInput/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/form-entities/NumberWithScaleInput/index.js +5 -0
- package/build/cjs/lib/unstable/kit/form-entities/PasswordInput/PasswordInput.css +3 -0
- package/build/cjs/lib/unstable/kit/form-entities/PasswordInput/PasswordInput.d.ts +5 -0
- package/build/cjs/lib/unstable/kit/form-entities/PasswordInput/PasswordInput.js +16 -0
- package/build/cjs/lib/unstable/kit/form-entities/PasswordInput/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/form-entities/PasswordInput/index.js +5 -0
- package/build/cjs/lib/unstable/kit/form-entities/RadioGroupInput/RadioGroupInput.css +13 -0
- package/build/cjs/lib/unstable/kit/form-entities/RadioGroupInput/RadioGroupInput.d.ts +7 -0
- package/build/cjs/lib/unstable/kit/form-entities/RadioGroupInput/RadioGroupInput.js +24 -0
- package/build/cjs/lib/unstable/kit/form-entities/RadioGroupInput/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/form-entities/RadioGroupInput/index.js +5 -0
- package/build/cjs/lib/unstable/kit/form-entities/RangeInput/RangeInput.css +8 -0
- package/build/cjs/lib/unstable/kit/form-entities/RangeInput/RangeInput.d.ts +6 -0
- package/build/cjs/lib/unstable/kit/form-entities/RangeInput/RangeInput.js +71 -0
- package/build/cjs/lib/unstable/kit/form-entities/RangeInput/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/form-entities/RangeInput/index.js +5 -0
- package/build/cjs/lib/unstable/kit/form-entities/RangeSliderInput/RangeSliderInput.d.ts +6 -0
- package/build/cjs/lib/unstable/kit/form-entities/RangeSliderInput/RangeSliderInput.js +35 -0
- package/build/cjs/lib/unstable/kit/form-entities/RangeSliderInput/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/form-entities/RangeSliderInput/index.js +5 -0
- package/build/cjs/lib/unstable/kit/form-entities/SegmentedRadioGroupInput/SegmentedRadioGroupInput.css +6 -0
- package/build/cjs/lib/unstable/kit/form-entities/SegmentedRadioGroupInput/SegmentedRadioGroupInput.d.ts +7 -0
- package/build/cjs/lib/unstable/kit/form-entities/SegmentedRadioGroupInput/SegmentedRadioGroupInput.js +29 -0
- package/build/cjs/lib/unstable/kit/form-entities/SegmentedRadioGroupInput/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/form-entities/SegmentedRadioGroupInput/index.js +5 -0
- package/build/cjs/lib/unstable/kit/form-entities/SelectInput/SelectInput.d.ts +8 -0
- package/build/cjs/lib/unstable/kit/form-entities/SelectInput/SelectInput.js +35 -0
- package/build/cjs/lib/unstable/kit/form-entities/SelectInput/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/form-entities/SelectInput/index.js +5 -0
- package/build/cjs/lib/unstable/kit/form-entities/SliderInput/SliderInput.d.ts +5 -0
- package/build/cjs/lib/unstable/kit/form-entities/SliderInput/SliderInput.js +21 -0
- package/build/cjs/lib/unstable/kit/form-entities/SliderInput/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/form-entities/SliderInput/index.js +5 -0
- package/build/cjs/lib/unstable/kit/form-entities/StringInput/StringInput.css +3 -0
- package/build/cjs/lib/unstable/kit/form-entities/StringInput/StringInput.d.ts +5 -0
- package/build/cjs/lib/unstable/kit/form-entities/StringInput/StringInput.js +15 -0
- package/build/cjs/lib/unstable/kit/form-entities/StringInput/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/form-entities/StringInput/index.js +5 -0
- package/build/cjs/lib/unstable/kit/form-entities/StringNumberWithScaleInput/StringNumberWithScaleInput.css +6 -0
- package/build/cjs/lib/unstable/kit/form-entities/StringNumberWithScaleInput/StringNumberWithScaleInput.d.ts +11 -0
- package/build/cjs/lib/unstable/kit/form-entities/StringNumberWithScaleInput/StringNumberWithScaleInput.js +81 -0
- package/build/cjs/lib/unstable/kit/form-entities/StringNumberWithScaleInput/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/form-entities/StringNumberWithScaleInput/index.js +5 -0
- package/build/cjs/lib/unstable/kit/form-entities/SwitchInput/SwitchInput.css +11 -0
- package/build/cjs/lib/unstable/kit/form-entities/SwitchInput/SwitchInput.d.ts +5 -0
- package/build/cjs/lib/unstable/kit/form-entities/SwitchInput/SwitchInput.js +20 -0
- package/build/cjs/lib/unstable/kit/form-entities/SwitchInput/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/form-entities/SwitchInput/index.js +5 -0
- package/build/cjs/lib/unstable/kit/form-entities/TextAreaInput/TextAreaInput.css +3 -0
- package/build/cjs/lib/unstable/kit/form-entities/TextAreaInput/TextAreaInput.d.ts +5 -0
- package/build/cjs/lib/unstable/kit/form-entities/TextAreaInput/TextAreaInput.js +15 -0
- package/build/cjs/lib/unstable/kit/form-entities/TextAreaInput/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/form-entities/TextAreaInput/index.js +5 -0
- package/build/cjs/lib/unstable/kit/form-entities/index.d.ts +19 -0
- package/build/cjs/lib/unstable/kit/form-entities/index.js +41 -0
- package/build/cjs/lib/unstable/kit/form-layouts/FormColumn/FormColumn.css +21 -0
- package/build/cjs/lib/unstable/kit/form-layouts/FormColumn/FormColumn.d.ts +5 -0
- package/build/cjs/lib/unstable/kit/form-layouts/FormColumn/FormColumn.js +35 -0
- package/build/cjs/lib/unstable/kit/form-layouts/FormColumn/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/form-layouts/FormColumn/index.js +5 -0
- package/build/cjs/lib/unstable/kit/form-layouts/FormRow/FormRow.css +25 -0
- package/build/cjs/lib/unstable/kit/form-layouts/FormRow/FormRow.d.ts +5 -0
- package/build/cjs/lib/unstable/kit/form-layouts/FormRow/FormRow.js +35 -0
- package/build/cjs/lib/unstable/kit/form-layouts/FormRow/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/form-layouts/FormRow/index.js +5 -0
- package/build/cjs/lib/unstable/kit/form-layouts/index.d.ts +2 -0
- package/build/cjs/lib/unstable/kit/form-layouts/index.js +7 -0
- package/build/cjs/lib/unstable/kit/index.d.ts +9 -0
- package/build/cjs/lib/unstable/kit/index.js +12 -0
- package/build/cjs/lib/unstable/kit/layouts/Accordeon/Accordeon.css +46 -0
- package/build/cjs/lib/unstable/kit/layouts/Accordeon/Accordeon.d.ts +9 -0
- package/build/cjs/lib/unstable/kit/layouts/Accordeon/Accordeon.js +47 -0
- package/build/cjs/lib/unstable/kit/layouts/Accordeon/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/layouts/Accordeon/index.js +5 -0
- package/build/cjs/lib/unstable/kit/layouts/Card/Card.css +41 -0
- package/build/cjs/lib/unstable/kit/layouts/Card/Card.d.ts +7 -0
- package/build/cjs/lib/unstable/kit/layouts/Card/Card.js +50 -0
- package/build/cjs/lib/unstable/kit/layouts/Card/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/layouts/Card/index.js +5 -0
- package/build/cjs/lib/unstable/kit/layouts/Section/Section.css +34 -0
- package/build/cjs/lib/unstable/kit/layouts/Section/Section.d.ts +7 -0
- package/build/cjs/lib/unstable/kit/layouts/Section/Section.js +39 -0
- package/build/cjs/lib/unstable/kit/layouts/Section/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/layouts/Section/index.js +5 -0
- package/build/cjs/lib/unstable/kit/layouts/Transparent/Transparent.css +12 -0
- package/build/cjs/lib/unstable/kit/layouts/Transparent/Transparent.d.ts +5 -0
- package/build/cjs/lib/unstable/kit/layouts/Transparent/Transparent.js +21 -0
- package/build/cjs/lib/unstable/kit/layouts/index.d.ts +4 -0
- package/build/cjs/lib/unstable/kit/layouts/index.js +11 -0
- package/build/cjs/lib/unstable/kit/overview-entities/BooleanValue/BooleanValue.d.ts +14 -0
- package/build/cjs/lib/unstable/kit/overview-entities/BooleanValue/BooleanValue.js +25 -0
- package/build/cjs/lib/unstable/kit/overview-entities/BooleanValue/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/overview-entities/BooleanValue/index.js +5 -0
- package/build/cjs/lib/unstable/kit/overview-entities/ColorPickerValue/ColorPickerValue.css +6 -0
- package/build/cjs/lib/unstable/kit/overview-entities/ColorPickerValue/ColorPickerValue.d.ts +5 -0
- package/build/cjs/lib/unstable/kit/overview-entities/ColorPickerValue/ColorPickerValue.js +19 -0
- package/build/cjs/lib/unstable/kit/overview-entities/ColorPickerValue/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/overview-entities/ColorPickerValue/index.js +5 -0
- package/build/cjs/lib/unstable/kit/overview-entities/DateValue/DateValue.d.ts +9 -0
- package/build/cjs/lib/unstable/kit/overview-entities/DateValue/DateValue.js +20 -0
- package/build/cjs/lib/unstable/kit/overview-entities/DateValue/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/overview-entities/DateValue/index.js +5 -0
- package/build/cjs/lib/unstable/kit/overview-entities/NumberValue/NumberValue.d.ts +5 -0
- package/build/cjs/lib/unstable/kit/overview-entities/NumberValue/NumberValue.js +15 -0
- package/build/cjs/lib/unstable/kit/overview-entities/NumberValue/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/overview-entities/NumberValue/index.js +5 -0
- package/build/cjs/lib/unstable/kit/overview-entities/NumberWithScaleValue/NumberWithScaleValue.d.ts +10 -0
- package/build/cjs/lib/unstable/kit/overview-entities/NumberWithScaleValue/NumberWithScaleValue.js +34 -0
- package/build/cjs/lib/unstable/kit/overview-entities/NumberWithScaleValue/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/overview-entities/NumberWithScaleValue/index.js +5 -0
- package/build/cjs/lib/unstable/kit/overview-entities/PrimitiveArrayValue/PrimitiveArrayValue.d.ts +7 -0
- package/build/cjs/lib/unstable/kit/overview-entities/PrimitiveArrayValue/PrimitiveArrayValue.js +27 -0
- package/build/cjs/lib/unstable/kit/overview-entities/PrimitiveArrayValue/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/overview-entities/PrimitiveArrayValue/index.js +5 -0
- package/build/cjs/lib/unstable/kit/overview-entities/RangeValue/RangeValue.d.ts +7 -0
- package/build/cjs/lib/unstable/kit/overview-entities/RangeValue/RangeValue.js +24 -0
- package/build/cjs/lib/unstable/kit/overview-entities/RangeValue/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/overview-entities/RangeValue/index.js +5 -0
- package/build/cjs/lib/unstable/kit/overview-entities/StringNumberWithScaleValue/StringNumberWithScaleValue.d.ts +10 -0
- package/build/cjs/lib/unstable/kit/overview-entities/StringNumberWithScaleValue/StringNumberWithScaleValue.js +35 -0
- package/build/cjs/lib/unstable/kit/overview-entities/StringNumberWithScaleValue/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/overview-entities/StringNumberWithScaleValue/index.js +5 -0
- package/build/cjs/lib/unstable/kit/overview-entities/StringValue/StringValue.d.ts +5 -0
- package/build/cjs/lib/unstable/kit/overview-entities/StringValue/StringValue.js +14 -0
- package/build/cjs/lib/unstable/kit/overview-entities/StringValue/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/overview-entities/StringValue/index.js +5 -0
- package/build/cjs/lib/unstable/kit/overview-entities/index.d.ts +9 -0
- package/build/cjs/lib/unstable/kit/overview-entities/index.js +21 -0
- package/build/cjs/lib/unstable/kit/overview-layouts/OverviewColumn/OverviewColumn.css +22 -0
- package/build/cjs/lib/unstable/kit/overview-layouts/OverviewColumn/OverviewColumn.d.ts +2 -0
- package/build/cjs/lib/unstable/kit/overview-layouts/OverviewColumn/OverviewColumn.js +28 -0
- package/build/cjs/lib/unstable/kit/overview-layouts/OverviewColumn/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/overview-layouts/OverviewColumn/index.js +5 -0
- package/build/cjs/lib/unstable/kit/overview-layouts/OverviewRow/OverviewRow.css +38 -0
- package/build/cjs/lib/unstable/kit/overview-layouts/OverviewRow/OverviewRow.d.ts +2 -0
- package/build/cjs/lib/unstable/kit/overview-layouts/OverviewRow/OverviewRow.js +28 -0
- package/build/cjs/lib/unstable/kit/overview-layouts/OverviewRow/index.d.ts +1 -0
- package/build/cjs/lib/unstable/kit/overview-layouts/OverviewRow/index.js +5 -0
- package/build/cjs/lib/unstable/kit/overview-layouts/index.d.ts +2 -0
- package/build/cjs/lib/unstable/kit/overview-layouts/index.js +7 -0
- package/build/cjs/lib/unstable/kit/utils/common.d.ts +5 -1
- package/build/cjs/lib/unstable/kit/utils/common.js +23 -5
- package/build/cjs/lib/unstable/kit/utils/date.d.ts +2 -0
- package/build/cjs/lib/unstable/kit/utils/date.js +15 -0
- package/build/cjs/lib/unstable/kit/utils/index.d.ts +3 -1
- package/build/cjs/lib/unstable/kit/utils/index.js +15 -1
- package/build/cjs/lib/unstable/kit/utils/transformer.d.ts +18 -0
- package/build/cjs/lib/unstable/kit/utils/transformer.js +2912 -0
- package/build/cjs/unstable.d.ts +1 -3
- package/build/cjs/unstable.js +1 -6
- package/build/esm/lib/core/components/Form/DynamicField.js +4 -1
- package/build/esm/lib/core/components/View/DynamicView.js +4 -1
- package/build/esm/lib/core/helpers.d.ts +3 -1
- package/build/esm/lib/core/helpers.js +24 -0
- package/build/esm/lib/unstable/core/SchemaRenderer/SchemaRenderer.js +3 -3
- package/build/esm/lib/unstable/core/SchemaRendererNode/SchemaRendererNode.d.ts +11 -0
- package/build/esm/lib/unstable/core/SchemaRendererNode/SchemaRendererNode.js +127 -0
- package/build/esm/lib/unstable/core/SchemaRendererNode/index.d.ts +3 -0
- package/build/esm/lib/unstable/core/SchemaRendererNode/index.js +2 -0
- package/build/esm/lib/unstable/core/SchemaRendererNode/types.d.ts +3 -0
- package/build/esm/lib/unstable/core/SchemaRendererNode/utils.d.ts +25 -0
- package/build/esm/lib/unstable/core/SchemaRendererNode/utils.js +156 -0
- package/build/esm/lib/unstable/core/constants.d.ts +12 -1
- package/build/esm/lib/unstable/core/constants.js +21 -9
- package/build/esm/lib/unstable/core/index.d.ts +6 -3
- package/build/esm/lib/unstable/core/index.js +6 -3
- package/build/esm/lib/unstable/core/types/components.d.ts +21 -21
- package/build/esm/lib/unstable/core/types/config.d.ts +28 -27
- package/build/esm/lib/unstable/core/types/helpers.d.ts +22 -17
- package/build/esm/lib/unstable/core/types/index.d.ts +1 -0
- package/build/esm/lib/unstable/core/types/jsl-errors.d.ts +105 -0
- package/build/esm/lib/unstable/core/types/schema.d.ts +63 -164
- package/build/esm/lib/unstable/core/types/validation.d.ts +30 -32
- package/build/esm/lib/unstable/core/useSchemaRenderer/constants.d.ts +1 -1
- package/build/esm/lib/unstable/core/useSchemaRenderer/constants.js +1 -1
- package/build/esm/lib/unstable/core/useSchemaRenderer/index.d.ts +3 -3
- package/build/esm/lib/unstable/core/useSchemaRenderer/index.js +2 -3
- package/build/esm/lib/unstable/core/useSchemaRenderer/types/index.d.ts +4 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/types/index.js +4 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/types/patches.d.ts +21 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/types/state.d.ts +34 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/types/subscription.d.ts +13 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/types/validation.d.ts +10 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/useSchemaRenderer.d.ts +7 -28
- package/build/esm/lib/unstable/core/useSchemaRenderer/useSchemaRenderer.js +97 -71
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/get-dispatch.d.ts +3 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/get-dispatch.js +50 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/get-run-validate.d.ts +2 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/get-run-validate.js +15 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/get-schema-root-node.d.ts +11 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/get-schema-root-node.js +131 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/get-subscribe.d.ts +6 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/get-subscribe.js +59 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/get-validate.d.ts +3 -14
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/get-validate.js +70 -49
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/index.d.ts +3 -1
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/index.js +3 -1
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/parse-errors.d.ts +14 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/parse-errors.js +334 -0
- package/build/esm/lib/unstable/core/useSchemaRendererState/index.d.ts +1 -0
- package/build/esm/lib/unstable/core/useSchemaRendererState/index.js +1 -0
- package/build/esm/lib/unstable/core/useSchemaRendererState/useSchemaRendererState.d.ts +9 -0
- package/build/esm/lib/unstable/core/useSchemaRendererState/useSchemaRendererState.js +57 -0
- package/build/esm/lib/unstable/core/useSchemaRendererTools/index.d.ts +1 -0
- package/build/esm/lib/unstable/core/useSchemaRendererTools/index.js +1 -0
- package/build/esm/lib/unstable/core/useSchemaRendererTools/useSchemaRendererTools.d.ts +8 -0
- package/build/esm/lib/unstable/core/useSchemaRendererTools/useSchemaRendererTools.js +14 -0
- package/build/esm/lib/unstable/core/useSchemaRendererTools/utils/external-errors.d.ts +18 -0
- package/build/esm/lib/unstable/core/useSchemaRendererTools/utils/external-errors.js +32 -0
- package/build/esm/lib/unstable/core/useSchemaRendererTools/utils/index.d.ts +3 -0
- package/build/esm/lib/unstable/core/useSchemaRendererTools/utils/index.js +3 -0
- package/build/esm/lib/unstable/core/useSchemaRendererTools/utils/schema-patch.d.ts +12 -0
- package/build/esm/lib/unstable/core/useSchemaRendererTools/utils/schema-patch.js +169 -0
- package/build/esm/lib/unstable/core/useSchemaRendererTools/utils/user-context.d.ts +9 -0
- package/build/esm/lib/unstable/core/useSchemaRendererTools/utils/user-context.js +13 -0
- package/build/esm/lib/unstable/core/utils/common.d.ts +36 -25
- package/build/esm/lib/unstable/core/utils/common.js +40 -97
- package/build/esm/lib/unstable/core/utils/definers.d.ts +58 -0
- package/build/esm/lib/unstable/core/utils/definers.js +3 -0
- package/build/esm/lib/unstable/core/utils/index.d.ts +1 -0
- package/build/esm/lib/unstable/core/utils/index.js +1 -0
- package/build/esm/lib/unstable/kit/components/ArrayRemoveButton/ArrayRemoveButton.d.ts +2 -0
- package/build/esm/lib/unstable/kit/components/ArrayRemoveButton/ArrayRemoveButton.js +13 -6
- package/build/esm/lib/unstable/kit/components/CopyButton/CopyButton.css +9 -0
- package/build/esm/lib/unstable/kit/components/CopyButton/CopyButton.d.ts +8 -0
- package/build/esm/lib/unstable/kit/components/CopyButton/CopyButton.js +14 -0
- package/build/esm/lib/unstable/kit/components/CopyButton/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/components/CopyButton/index.js +1 -0
- package/build/esm/lib/unstable/kit/components/EmptyEntityValue/EmptyEntityValue.d.ts +2 -0
- package/build/esm/lib/unstable/kit/components/EmptyEntityValue/EmptyEntityValue.js +6 -0
- package/build/esm/lib/unstable/kit/components/EmptyEntityValue/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/components/EmptyEntityValue/index.js +1 -0
- package/build/esm/lib/unstable/kit/components/EntityContainer/EntityContainer.css +22 -0
- package/build/esm/lib/unstable/kit/components/EntityContainer/EntityContainer.d.ts +9 -0
- package/build/esm/lib/unstable/kit/components/EntityContainer/EntityContainer.js +11 -0
- package/build/esm/lib/unstable/kit/components/EntityContainer/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/components/EntityContainer/index.js +1 -0
- package/build/esm/lib/unstable/kit/components/EntityError/EntityError.css +3 -0
- package/build/esm/lib/unstable/kit/components/EntityError/EntityError.d.ts +7 -0
- package/build/esm/lib/unstable/kit/components/EntityError/EntityError.js +11 -0
- package/build/esm/lib/unstable/kit/components/EntityError/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/components/EntityError/index.js +1 -0
- package/build/esm/lib/unstable/kit/components/LayoutContainer/LayoutContainer.css +11 -0
- package/build/esm/lib/unstable/kit/components/LayoutContainer/LayoutContainer.d.ts +8 -0
- package/build/esm/lib/unstable/kit/components/LayoutContainer/LayoutContainer.js +10 -0
- package/build/esm/lib/unstable/kit/components/LayoutContainer/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/components/LayoutContainer/index.js +1 -0
- package/build/esm/lib/unstable/kit/components/LongValue/LongValue.css +19 -0
- package/build/esm/lib/unstable/kit/components/LongValue/LongValue.d.ts +8 -0
- package/build/esm/lib/unstable/kit/components/LongValue/LongValue.js +39 -0
- package/build/esm/lib/unstable/kit/components/LongValue/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/components/LongValue/index.js +1 -0
- package/build/esm/lib/unstable/kit/components/MonacoContainer/MonacoContainer.css +21 -0
- package/build/esm/lib/unstable/kit/components/MonacoContainer/MonacoContainer.d.ts +13 -0
- package/build/esm/lib/unstable/kit/components/MonacoContainer/MonacoContainer.js +17 -0
- package/build/esm/lib/unstable/kit/components/MonacoContainer/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/components/MonacoContainer/index.js +1 -0
- package/build/esm/lib/unstable/kit/components/index.d.ts +7 -1
- package/build/esm/lib/unstable/kit/components/index.js +7 -1
- package/build/esm/lib/unstable/kit/constants/common.d.ts +2 -0
- package/build/esm/lib/unstable/kit/constants/common.js +2 -0
- package/build/esm/lib/unstable/kit/constants/config.d.ts +461 -49
- package/build/esm/lib/unstable/kit/constants/config.js +203 -42
- package/build/esm/lib/unstable/kit/constants/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/constants/index.js +1 -0
- package/build/esm/lib/unstable/kit/entities/Alert/Alert.d.ts +8 -0
- package/build/esm/lib/unstable/kit/entities/Alert/Alert.js +23 -0
- package/build/esm/lib/unstable/kit/entities/Alert/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/entities/Alert/index.js +1 -0
- package/build/esm/lib/unstable/kit/entities/ArrayEntity/ArrayEntity.css +3 -0
- package/build/esm/lib/unstable/kit/entities/ArrayEntity/ArrayEntity.d.ts +7 -0
- package/build/esm/lib/unstable/kit/entities/ArrayEntity/ArrayEntity.js +53 -0
- package/build/esm/lib/unstable/kit/entities/ArrayEntity/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/entities/ArrayEntity/index.js +1 -0
- package/build/esm/lib/unstable/kit/entities/ArrayTable/ArrayTable.css +45 -0
- package/build/esm/lib/unstable/kit/entities/ArrayTable/ArrayTable.d.ts +8 -0
- package/build/esm/lib/unstable/kit/entities/ArrayTable/ArrayTable.js +98 -0
- package/build/esm/lib/unstable/kit/entities/ArrayTable/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/entities/ArrayTable/index.js +1 -0
- package/build/esm/lib/unstable/kit/entities/DotValue/DotValue.d.ts +4 -0
- package/build/esm/lib/unstable/kit/entities/DotValue/DotValue.js +28 -0
- package/build/esm/lib/unstable/kit/entities/DotValue/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/entities/DotValue/index.js +1 -0
- package/build/esm/lib/unstable/kit/entities/FewOfNested/FewOfNested.css +17 -0
- package/build/esm/lib/unstable/kit/entities/FewOfNested/FewOfNested.d.ts +8 -0
- package/build/esm/lib/unstable/kit/entities/FewOfNested/FewOfNested.js +69 -0
- package/build/esm/lib/unstable/kit/entities/FewOfNested/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/entities/FewOfNested/index.js +1 -0
- package/build/esm/lib/unstable/kit/entities/Label/Label.d.ts +8 -0
- package/build/esm/lib/unstable/kit/entities/Label/Label.js +26 -0
- package/build/esm/lib/unstable/kit/entities/Label/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/entities/Label/index.js +1 -0
- package/build/esm/lib/unstable/kit/entities/Monaco/Monaco.css +6 -0
- package/build/esm/lib/unstable/kit/entities/Monaco/Monaco.d.ts +8 -0
- package/build/esm/lib/unstable/kit/entities/Monaco/Monaco.js +77 -0
- package/build/esm/lib/unstable/kit/entities/Monaco/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/entities/Monaco/index.js +1 -0
- package/build/esm/lib/unstable/kit/entities/ObjectEntity/ObjectEntity.d.ts +6 -0
- package/build/esm/lib/unstable/kit/entities/ObjectEntity/ObjectEntity.js +11 -0
- package/build/esm/lib/unstable/kit/entities/ObjectEntity/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/entities/ObjectEntity/index.js +1 -0
- package/build/esm/lib/unstable/kit/entities/ObjectInline/ObjectInline.css +11 -0
- package/build/esm/lib/unstable/kit/entities/ObjectInline/ObjectInline.d.ts +8 -0
- package/build/esm/lib/unstable/kit/entities/ObjectInline/ObjectInline.js +22 -0
- package/build/esm/lib/unstable/kit/entities/ObjectInline/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/entities/ObjectInline/index.js +1 -0
- package/build/esm/lib/unstable/kit/entities/OneOfNested/OneOfNested.css +17 -0
- package/build/esm/lib/unstable/kit/entities/OneOfNested/OneOfNested.d.ts +12 -0
- package/build/esm/lib/unstable/kit/entities/OneOfNested/OneOfNested.js +66 -0
- package/build/esm/lib/unstable/kit/entities/OneOfNested/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/entities/OneOfNested/index.js +1 -0
- package/build/esm/lib/unstable/kit/entities/TextContent/TextContent.css +19 -0
- package/build/esm/lib/unstable/kit/entities/TextContent/TextContent.d.ts +9 -0
- package/build/esm/lib/unstable/kit/entities/TextContent/TextContent.js +28 -0
- package/build/esm/lib/unstable/kit/entities/TextContent/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/entities/TextContent/index.js +1 -0
- package/build/esm/lib/unstable/kit/entities/index.d.ts +11 -0
- package/build/esm/lib/unstable/kit/entities/index.js +11 -0
- package/build/esm/lib/unstable/kit/form-entities/CheckboxGroupInput/CheckboxGroupInput.css +9 -0
- package/build/esm/lib/unstable/kit/form-entities/CheckboxGroupInput/CheckboxGroupInput.d.ts +9 -0
- package/build/esm/lib/unstable/kit/form-entities/CheckboxGroupInput/CheckboxGroupInput.js +38 -0
- package/build/esm/lib/unstable/kit/form-entities/CheckboxGroupInput/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/form-entities/CheckboxGroupInput/index.js +1 -0
- package/build/esm/lib/unstable/kit/form-entities/CheckboxInput/CheckboxInput.css +11 -0
- package/build/esm/lib/unstable/kit/form-entities/CheckboxInput/CheckboxInput.d.ts +6 -0
- package/build/esm/lib/unstable/kit/form-entities/CheckboxInput/CheckboxInput.js +16 -0
- package/build/esm/lib/unstable/kit/form-entities/CheckboxInput/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/form-entities/CheckboxInput/index.js +1 -0
- package/build/esm/lib/unstable/kit/form-entities/ColorPickerInput/ColorPickerInput.css +6 -0
- package/build/esm/lib/unstable/kit/form-entities/ColorPickerInput/ColorPickerInput.d.ts +6 -0
- package/build/esm/lib/unstable/kit/form-entities/ColorPickerInput/ColorPickerInput.js +22 -0
- package/build/esm/lib/unstable/kit/form-entities/ColorPickerInput/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/form-entities/ColorPickerInput/index.js +1 -0
- package/build/esm/lib/unstable/kit/form-entities/DateInput/DateInput.css +3 -0
- package/build/esm/lib/unstable/kit/form-entities/DateInput/DateInput.d.ts +7 -0
- package/build/esm/lib/unstable/kit/form-entities/DateInput/DateInput.js +44 -0
- package/build/esm/lib/unstable/kit/form-entities/FileInput/FileInput.d.ts +6 -0
- package/build/esm/lib/unstable/kit/form-entities/FileInput/FileInput.js +49 -0
- package/build/esm/lib/unstable/kit/form-entities/FileInput/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/form-entities/FileInput/index.js +1 -0
- package/build/esm/lib/unstable/kit/form-entities/MultiSelectInput/MultiSelectInput.d.ts +7 -0
- package/build/esm/lib/unstable/kit/form-entities/MultiSelectInput/MultiSelectInput.js +34 -0
- package/build/esm/lib/unstable/kit/form-entities/MultiSelectInput/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/form-entities/MultiSelectInput/index.js +1 -0
- package/build/esm/lib/unstable/kit/form-entities/NumberInput/NumberInput.css +3 -0
- package/build/esm/lib/unstable/kit/form-entities/NumberInput/NumberInput.d.ts +6 -0
- package/build/esm/lib/unstable/kit/form-entities/NumberInput/NumberInput.js +12 -0
- package/build/esm/lib/unstable/kit/form-entities/NumberInput/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/form-entities/NumberInput/index.js +1 -0
- package/build/esm/lib/unstable/kit/form-entities/NumberWithScaleInput/NumberWithScaleInput.css +6 -0
- package/build/esm/lib/unstable/kit/form-entities/NumberWithScaleInput/NumberWithScaleInput.d.ts +12 -0
- package/build/esm/lib/unstable/kit/form-entities/NumberWithScaleInput/NumberWithScaleInput.js +73 -0
- package/build/esm/lib/unstable/kit/form-entities/NumberWithScaleInput/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/form-entities/NumberWithScaleInput/index.js +1 -0
- package/build/esm/lib/unstable/kit/form-entities/PasswordInput/PasswordInput.css +3 -0
- package/build/esm/lib/unstable/kit/form-entities/PasswordInput/PasswordInput.d.ts +6 -0
- package/build/esm/lib/unstable/kit/form-entities/PasswordInput/PasswordInput.js +12 -0
- package/build/esm/lib/unstable/kit/form-entities/PasswordInput/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/form-entities/PasswordInput/index.js +1 -0
- package/build/esm/lib/unstable/kit/form-entities/RadioGroupInput/RadioGroupInput.css +13 -0
- package/build/esm/lib/unstable/kit/form-entities/RadioGroupInput/RadioGroupInput.d.ts +8 -0
- package/build/esm/lib/unstable/kit/form-entities/RadioGroupInput/RadioGroupInput.js +21 -0
- package/build/esm/lib/unstable/kit/form-entities/RadioGroupInput/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/form-entities/RadioGroupInput/index.js +1 -0
- package/build/esm/lib/unstable/kit/form-entities/RangeInput/RangeInput.css +8 -0
- package/build/esm/lib/unstable/kit/form-entities/RangeInput/RangeInput.d.ts +7 -0
- package/build/esm/lib/unstable/kit/form-entities/RangeInput/RangeInput.js +67 -0
- package/build/esm/lib/unstable/kit/form-entities/RangeInput/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/form-entities/RangeInput/index.js +1 -0
- package/build/esm/lib/unstable/kit/form-entities/RangeSliderInput/RangeSliderInput.d.ts +6 -0
- package/build/esm/lib/unstable/kit/form-entities/RangeSliderInput/RangeSliderInput.js +31 -0
- package/build/esm/lib/unstable/kit/form-entities/RangeSliderInput/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/form-entities/RangeSliderInput/index.js +1 -0
- package/build/esm/lib/unstable/kit/form-entities/SegmentedRadioGroupInput/SegmentedRadioGroupInput.css +6 -0
- package/build/esm/lib/unstable/kit/form-entities/SegmentedRadioGroupInput/SegmentedRadioGroupInput.d.ts +8 -0
- package/build/esm/lib/unstable/kit/form-entities/SegmentedRadioGroupInput/SegmentedRadioGroupInput.js +26 -0
- package/build/esm/lib/unstable/kit/form-entities/SegmentedRadioGroupInput/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/form-entities/SegmentedRadioGroupInput/index.js +1 -0
- package/build/esm/lib/unstable/kit/form-entities/SelectInput/SelectInput.d.ts +8 -0
- package/build/esm/lib/unstable/kit/form-entities/SelectInput/SelectInput.js +31 -0
- package/build/esm/lib/unstable/kit/form-entities/SelectInput/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/form-entities/SelectInput/index.js +1 -0
- package/build/esm/lib/unstable/kit/form-entities/SliderInput/SliderInput.d.ts +5 -0
- package/build/esm/lib/unstable/kit/form-entities/SliderInput/SliderInput.js +16 -0
- package/build/esm/lib/unstable/kit/form-entities/SliderInput/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/form-entities/SliderInput/index.js +1 -0
- package/build/esm/lib/unstable/kit/form-entities/StringInput/StringInput.css +3 -0
- package/build/esm/lib/unstable/kit/form-entities/StringInput/StringInput.d.ts +6 -0
- package/build/esm/lib/unstable/kit/form-entities/StringInput/StringInput.js +11 -0
- package/build/esm/lib/unstable/kit/form-entities/StringInput/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/form-entities/StringInput/index.js +1 -0
- package/build/esm/lib/unstable/kit/form-entities/StringNumberWithScaleInput/StringNumberWithScaleInput.css +6 -0
- package/build/esm/lib/unstable/kit/form-entities/StringNumberWithScaleInput/StringNumberWithScaleInput.d.ts +12 -0
- package/build/esm/lib/unstable/kit/form-entities/StringNumberWithScaleInput/StringNumberWithScaleInput.js +78 -0
- package/build/esm/lib/unstable/kit/form-entities/StringNumberWithScaleInput/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/form-entities/StringNumberWithScaleInput/index.js +1 -0
- package/build/esm/lib/unstable/kit/form-entities/SwitchInput/SwitchInput.css +11 -0
- package/build/esm/lib/unstable/kit/form-entities/SwitchInput/SwitchInput.d.ts +6 -0
- package/build/esm/lib/unstable/kit/form-entities/SwitchInput/SwitchInput.js +16 -0
- package/build/esm/lib/unstable/kit/form-entities/SwitchInput/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/form-entities/SwitchInput/index.js +1 -0
- package/build/esm/lib/unstable/kit/form-entities/TextAreaInput/TextAreaInput.css +3 -0
- package/build/esm/lib/unstable/kit/form-entities/TextAreaInput/TextAreaInput.d.ts +6 -0
- package/build/esm/lib/unstable/kit/form-entities/TextAreaInput/TextAreaInput.js +11 -0
- package/build/esm/lib/unstable/kit/form-entities/TextAreaInput/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/form-entities/TextAreaInput/index.js +1 -0
- package/build/esm/lib/unstable/kit/form-entities/index.d.ts +19 -0
- package/build/esm/lib/unstable/kit/form-entities/index.js +19 -0
- package/build/esm/lib/unstable/kit/form-layouts/FormColumn/FormColumn.css +21 -0
- package/build/esm/lib/unstable/kit/form-layouts/FormColumn/FormColumn.d.ts +6 -0
- package/build/esm/lib/unstable/kit/form-layouts/FormColumn/FormColumn.js +31 -0
- package/build/esm/lib/unstable/kit/form-layouts/FormColumn/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/form-layouts/FormColumn/index.js +1 -0
- package/build/esm/lib/unstable/kit/form-layouts/FormRow/FormRow.css +25 -0
- package/build/esm/lib/unstable/kit/form-layouts/FormRow/FormRow.d.ts +6 -0
- package/build/esm/lib/unstable/kit/form-layouts/FormRow/FormRow.js +31 -0
- package/build/esm/lib/unstable/kit/form-layouts/FormRow/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/form-layouts/FormRow/index.js +1 -0
- package/build/esm/lib/unstable/kit/form-layouts/index.d.ts +2 -0
- package/build/esm/lib/unstable/kit/form-layouts/index.js +2 -0
- package/build/esm/lib/unstable/kit/index.d.ts +9 -0
- package/build/esm/lib/unstable/kit/index.js +9 -0
- package/build/esm/lib/unstable/kit/layouts/Accordeon/Accordeon.css +46 -0
- package/build/esm/lib/unstable/kit/layouts/Accordeon/Accordeon.d.ts +10 -0
- package/build/esm/lib/unstable/kit/layouts/Accordeon/Accordeon.js +44 -0
- package/build/esm/lib/unstable/kit/layouts/Accordeon/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/layouts/Accordeon/index.js +1 -0
- package/build/esm/lib/unstable/kit/layouts/Card/Card.css +41 -0
- package/build/esm/lib/unstable/kit/layouts/Card/Card.d.ts +8 -0
- package/build/esm/lib/unstable/kit/layouts/Card/Card.js +47 -0
- package/build/esm/lib/unstable/kit/layouts/Card/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/layouts/Card/index.js +1 -0
- package/build/esm/lib/unstable/kit/layouts/Section/Section.css +34 -0
- package/build/esm/lib/unstable/kit/layouts/Section/Section.d.ts +8 -0
- package/build/esm/lib/unstable/kit/layouts/Section/Section.js +36 -0
- package/build/esm/lib/unstable/kit/layouts/Section/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/layouts/Section/index.js +1 -0
- package/build/esm/lib/unstable/kit/layouts/Transparent/Transparent.css +12 -0
- package/build/esm/lib/unstable/kit/layouts/Transparent/Transparent.d.ts +6 -0
- package/build/esm/lib/unstable/kit/layouts/Transparent/Transparent.js +17 -0
- package/build/esm/lib/unstable/kit/layouts/index.d.ts +4 -0
- package/build/esm/lib/unstable/kit/layouts/index.js +4 -0
- package/build/esm/lib/unstable/kit/overview-entities/BooleanValue/BooleanValue.d.ts +14 -0
- package/build/esm/lib/unstable/kit/overview-entities/BooleanValue/BooleanValue.js +21 -0
- package/build/esm/lib/unstable/kit/overview-entities/BooleanValue/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/overview-entities/BooleanValue/index.js +1 -0
- package/build/esm/lib/unstable/kit/overview-entities/ColorPickerValue/ColorPickerValue.css +6 -0
- package/build/esm/lib/unstable/kit/overview-entities/ColorPickerValue/ColorPickerValue.d.ts +6 -0
- package/build/esm/lib/unstable/kit/overview-entities/ColorPickerValue/ColorPickerValue.js +15 -0
- package/build/esm/lib/unstable/kit/overview-entities/ColorPickerValue/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/overview-entities/ColorPickerValue/index.js +1 -0
- package/build/esm/lib/unstable/kit/overview-entities/DateValue/DateValue.d.ts +9 -0
- package/build/esm/lib/unstable/kit/overview-entities/DateValue/DateValue.js +16 -0
- package/build/esm/lib/unstable/kit/overview-entities/DateValue/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/overview-entities/DateValue/index.js +1 -0
- package/build/esm/lib/unstable/kit/overview-entities/NumberValue/NumberValue.d.ts +5 -0
- package/build/esm/lib/unstable/kit/overview-entities/NumberValue/NumberValue.js +10 -0
- package/build/esm/lib/unstable/kit/overview-entities/NumberValue/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/overview-entities/NumberValue/index.js +1 -0
- package/build/esm/lib/unstable/kit/overview-entities/NumberWithScaleValue/NumberWithScaleValue.d.ts +10 -0
- package/build/esm/lib/unstable/kit/overview-entities/NumberWithScaleValue/NumberWithScaleValue.js +30 -0
- package/build/esm/lib/unstable/kit/overview-entities/NumberWithScaleValue/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/overview-entities/NumberWithScaleValue/index.js +1 -0
- package/build/esm/lib/unstable/kit/overview-entities/PrimitiveArrayValue/PrimitiveArrayValue.d.ts +7 -0
- package/build/esm/lib/unstable/kit/overview-entities/PrimitiveArrayValue/PrimitiveArrayValue.js +23 -0
- package/build/esm/lib/unstable/kit/overview-entities/PrimitiveArrayValue/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/overview-entities/PrimitiveArrayValue/index.js +1 -0
- package/build/esm/lib/unstable/kit/overview-entities/RangeValue/RangeValue.d.ts +7 -0
- package/build/esm/lib/unstable/kit/overview-entities/RangeValue/RangeValue.js +20 -0
- package/build/esm/lib/unstable/kit/overview-entities/RangeValue/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/overview-entities/RangeValue/index.js +1 -0
- package/build/esm/lib/unstable/kit/overview-entities/StringNumberWithScaleValue/StringNumberWithScaleValue.d.ts +10 -0
- package/build/esm/lib/unstable/kit/overview-entities/StringNumberWithScaleValue/StringNumberWithScaleValue.js +31 -0
- package/build/esm/lib/unstable/kit/overview-entities/StringNumberWithScaleValue/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/overview-entities/StringNumberWithScaleValue/index.js +1 -0
- package/build/esm/lib/unstable/kit/overview-entities/StringValue/StringValue.d.ts +5 -0
- package/build/esm/lib/unstable/kit/overview-entities/StringValue/StringValue.js +9 -0
- package/build/esm/lib/unstable/kit/overview-entities/StringValue/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/overview-entities/StringValue/index.js +1 -0
- package/build/esm/lib/unstable/kit/overview-entities/index.d.ts +9 -0
- package/build/esm/lib/unstable/kit/overview-entities/index.js +9 -0
- package/build/esm/lib/unstable/kit/overview-layouts/OverviewColumn/OverviewColumn.css +22 -0
- package/build/esm/lib/unstable/kit/overview-layouts/OverviewColumn/OverviewColumn.d.ts +3 -0
- package/build/esm/lib/unstable/kit/overview-layouts/OverviewColumn/OverviewColumn.js +24 -0
- package/build/esm/lib/unstable/kit/overview-layouts/OverviewColumn/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/overview-layouts/OverviewColumn/index.js +1 -0
- package/build/esm/lib/unstable/kit/overview-layouts/OverviewRow/OverviewRow.css +38 -0
- package/build/esm/lib/unstable/kit/overview-layouts/OverviewRow/OverviewRow.d.ts +3 -0
- package/build/esm/lib/unstable/kit/overview-layouts/OverviewRow/OverviewRow.js +24 -0
- package/build/esm/lib/unstable/kit/overview-layouts/OverviewRow/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/overview-layouts/OverviewRow/index.js +1 -0
- package/build/esm/lib/unstable/kit/overview-layouts/index.d.ts +2 -0
- package/build/esm/lib/unstable/kit/overview-layouts/index.js +2 -0
- package/build/esm/lib/unstable/kit/utils/common.d.ts +5 -1
- package/build/esm/lib/unstable/kit/utils/common.js +18 -4
- package/build/esm/lib/unstable/kit/utils/date.d.ts +2 -0
- package/build/esm/lib/unstable/kit/utils/date.js +11 -0
- package/build/esm/lib/unstable/kit/utils/index.d.ts +3 -1
- package/build/esm/lib/unstable/kit/utils/index.js +3 -1
- package/build/esm/lib/unstable/kit/utils/transformer.d.ts +18 -0
- package/build/esm/lib/unstable/kit/utils/transformer.js +2907 -0
- package/build/esm/unstable.d.ts +1 -3
- package/build/esm/unstable.js +1 -3
- package/package.json +3 -2
- package/build/cjs/lib/unstable/core/Entity/Entity.d.ts +0 -10
- package/build/cjs/lib/unstable/core/Entity/Entity.js +0 -78
- package/build/cjs/lib/unstable/core/Entity/index.d.ts +0 -2
- package/build/cjs/lib/unstable/core/Entity/index.js +0 -5
- package/build/cjs/lib/unstable/core/Entity/types.d.ts +0 -27
- package/build/cjs/lib/unstable/core/Entity/utils.d.ts +0 -3
- package/build/cjs/lib/unstable/core/Entity/utils.js +0 -40
- package/build/cjs/lib/unstable/core/useSchemaRenderer/hooks/index.d.ts +0 -2
- package/build/cjs/lib/unstable/core/useSchemaRenderer/hooks/index.js +0 -7
- package/build/cjs/lib/unstable/core/useSchemaRenderer/hooks/useEntitiesState.d.ts +0 -7
- package/build/cjs/lib/unstable/core/useSchemaRenderer/hooks/useEntitiesState.js +0 -25
- package/build/cjs/lib/unstable/core/useSchemaRenderer/hooks/useSchemaRendererMutators.d.ts +0 -10
- package/build/cjs/lib/unstable/core/useSchemaRenderer/hooks/useSchemaRendererMutators.js +0 -17
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/async-validation/async-validation.d.ts +0 -3
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/async-validation/async-validation.js +0 -35
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/async-validation/index.d.ts +0 -2
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/async-validation/index.js +0 -5
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/async-validation/types.d.ts +0 -34
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/external-errors/external-errors.d.ts +0 -3
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/external-errors/external-errors.js +0 -60
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/external-errors/index.d.ts +0 -2
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/external-errors/index.js +0 -5
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/external-errors/types.d.ts +0 -25
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/index.d.ts +0 -13
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/index.js +0 -16
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/schema-mutators/index.d.ts +0 -2
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/schema-mutators/index.js +0 -5
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/schema-mutators/schema-mutators.d.ts +0 -3
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/schema-mutators/schema-mutators.js +0 -81
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/schema-mutators/types.d.ts +0 -26
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/trigger-fields/index.d.ts +0 -2
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/trigger-fields/index.js +0 -5
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/trigger-fields/trigger-fields.d.ts +0 -2
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/trigger-fields/trigger-fields.js +0 -12
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/trigger-fields/types.d.ts +0 -6
- package/build/cjs/lib/unstable/core/useSchemaRenderer/types.d.ts +0 -22
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/common.d.ts +0 -1
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/common.js +0 -11
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/get-ajv-validate.d.ts +0 -11
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/get-ajv-validate.js +0 -39
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/process-ajv-error.d.ts +0 -10
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/process-ajv-error.js +0 -51
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/process-ajv-validate-errors.d.ts +0 -20
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/process-ajv-validate-errors.js +0 -43
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/process-entity-parameters-error.d.ts +0 -15
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/process-entity-parameters-error.js +0 -36
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/process-errors-state.d.ts +0 -12
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/process-errors-state.js +0 -17
- package/build/cjs/lib/unstable/kit/Accordeon.d.ts +0 -3
- package/build/cjs/lib/unstable/kit/Accordeon.js +0 -31
- package/build/cjs/lib/unstable/kit/Any.d.ts +0 -2
- package/build/cjs/lib/unstable/kit/Any.js +0 -21
- package/build/cjs/lib/unstable/kit/ArrayBase.css +0 -23
- package/build/cjs/lib/unstable/kit/ArrayBase.d.ts +0 -2
- package/build/cjs/lib/unstable/kit/ArrayBase.js +0 -101
- package/build/cjs/lib/unstable/kit/MultiSelect.css +0 -6
- package/build/cjs/lib/unstable/kit/MultiSelect.d.ts +0 -6
- package/build/cjs/lib/unstable/kit/MultiSelect.js +0 -66
- package/build/cjs/lib/unstable/kit/ObjectBase.css +0 -10
- package/build/cjs/lib/unstable/kit/ObjectBase.d.ts +0 -7
- package/build/cjs/lib/unstable/kit/ObjectBase.js +0 -71
- package/build/cjs/lib/unstable/kit/Row.css +0 -73
- package/build/cjs/lib/unstable/kit/Row.d.ts +0 -10
- package/build/cjs/lib/unstable/kit/Row.js +0 -50
- package/build/cjs/lib/unstable/kit/Text.d.ts +0 -6
- package/build/cjs/lib/unstable/kit/Text.js +0 -259
- package/build/cjs/lib/unstable/kit/components/ControlError/ControlError.css +0 -33
- package/build/cjs/lib/unstable/kit/components/ControlError/ControlError.d.ts +0 -8
- package/build/cjs/lib/unstable/kit/components/ControlError/ControlError.js +0 -15
- package/build/cjs/lib/unstable/kit/components/ControlError/index.d.ts +0 -1
- package/build/cjs/lib/unstable/kit/components/ControlError/index.js +0 -5
- package/build/cjs/lib/unstable/kit/config.d.ts +0 -95
- package/build/cjs/lib/unstable/kit/config.js +0 -68
- package/build/cjs/lib/unstable/kit/controls/ArrayBase/ArrayBase.d.ts +0 -8
- package/build/cjs/lib/unstable/kit/controls/ArrayBase/ArrayBase.js +0 -46
- package/build/cjs/lib/unstable/kit/controls/ArrayBase/index.d.ts +0 -1
- package/build/cjs/lib/unstable/kit/controls/ArrayBase/index.js +0 -4
- package/build/cjs/lib/unstable/kit/controls/Checkbox/Checkbox.css +0 -5
- package/build/cjs/lib/unstable/kit/controls/Checkbox/Checkbox.d.ts +0 -6
- package/build/cjs/lib/unstable/kit/controls/Checkbox/Checkbox.js +0 -16
- package/build/cjs/lib/unstable/kit/controls/Checkbox/index.d.ts +0 -1
- package/build/cjs/lib/unstable/kit/controls/Checkbox/index.js +0 -5
- package/build/cjs/lib/unstable/kit/controls/CheckboxGroup/CheckboxGroup.css +0 -3
- package/build/cjs/lib/unstable/kit/controls/CheckboxGroup/CheckboxGroup.d.ts +0 -9
- package/build/cjs/lib/unstable/kit/controls/CheckboxGroup/CheckboxGroup.js +0 -37
- package/build/cjs/lib/unstable/kit/controls/CheckboxGroup/index.d.ts +0 -1
- package/build/cjs/lib/unstable/kit/controls/CheckboxGroup/index.js +0 -5
- package/build/cjs/lib/unstable/kit/controls/ColorPicker/ColorPicker.d.ts +0 -6
- package/build/cjs/lib/unstable/kit/controls/ColorPicker/ColorPicker.js +0 -24
- package/build/cjs/lib/unstable/kit/controls/ColorPicker/index.d.ts +0 -1
- package/build/cjs/lib/unstable/kit/controls/ColorPicker/index.js +0 -5
- package/build/cjs/lib/unstable/kit/controls/DateInput/DateInput.css +0 -3
- package/build/cjs/lib/unstable/kit/controls/DateInput/DateInput.d.ts +0 -8
- package/build/cjs/lib/unstable/kit/controls/DateInput/DateInput.js +0 -55
- package/build/cjs/lib/unstable/kit/controls/MultiSelect/MultiSelect.d.ts +0 -8
- package/build/cjs/lib/unstable/kit/controls/MultiSelect/MultiSelect.js +0 -35
- package/build/cjs/lib/unstable/kit/controls/MultiSelect/index.d.ts +0 -1
- package/build/cjs/lib/unstable/kit/controls/MultiSelect/index.js +0 -5
- package/build/cjs/lib/unstable/kit/controls/NumberBase/Number.d.ts +0 -6
- package/build/cjs/lib/unstable/kit/controls/NumberBase/Number.js +0 -12
- package/build/cjs/lib/unstable/kit/controls/NumberBase/index.d.ts +0 -1
- package/build/cjs/lib/unstable/kit/controls/NumberBase/index.js +0 -5
- package/build/cjs/lib/unstable/kit/controls/ObjectBase/ObjectBase.d.ts +0 -8
- package/build/cjs/lib/unstable/kit/controls/ObjectBase/ObjectBase.js +0 -33
- package/build/cjs/lib/unstable/kit/controls/ObjectBase/index.d.ts +0 -1
- package/build/cjs/lib/unstable/kit/controls/ObjectBase/index.js +0 -5
- package/build/cjs/lib/unstable/kit/controls/Password/Password.d.ts +0 -6
- package/build/cjs/lib/unstable/kit/controls/Password/Password.js +0 -12
- package/build/cjs/lib/unstable/kit/controls/Password/index.d.ts +0 -1
- package/build/cjs/lib/unstable/kit/controls/Password/index.js +0 -5
- package/build/cjs/lib/unstable/kit/controls/RadioGroup/RadioGroup.css +0 -3
- package/build/cjs/lib/unstable/kit/controls/RadioGroup/RadioGroup.d.ts +0 -8
- package/build/cjs/lib/unstable/kit/controls/RadioGroup/RadioGroup.js +0 -24
- package/build/cjs/lib/unstable/kit/controls/RadioGroup/index.d.ts +0 -1
- package/build/cjs/lib/unstable/kit/controls/RadioGroup/index.js +0 -5
- package/build/cjs/lib/unstable/kit/controls/RangeSlider/RangeSlider.css +0 -3
- package/build/cjs/lib/unstable/kit/controls/RangeSlider/RangeSlider.d.ts +0 -7
- package/build/cjs/lib/unstable/kit/controls/RangeSlider/RangeSlider.js +0 -33
- package/build/cjs/lib/unstable/kit/controls/RangeSlider/index.d.ts +0 -1
- package/build/cjs/lib/unstable/kit/controls/RangeSlider/index.js +0 -5
- package/build/cjs/lib/unstable/kit/controls/Select/Select.d.ts +0 -9
- package/build/cjs/lib/unstable/kit/controls/Select/Select.js +0 -32
- package/build/cjs/lib/unstable/kit/controls/Select/index.d.ts +0 -1
- package/build/cjs/lib/unstable/kit/controls/Select/index.js +0 -5
- package/build/cjs/lib/unstable/kit/controls/Slider/Slider.css +0 -3
- package/build/cjs/lib/unstable/kit/controls/Slider/Slider.d.ts +0 -6
- package/build/cjs/lib/unstable/kit/controls/Slider/Slider.js +0 -19
- package/build/cjs/lib/unstable/kit/controls/Slider/index.d.ts +0 -1
- package/build/cjs/lib/unstable/kit/controls/Slider/index.js +0 -5
- package/build/cjs/lib/unstable/kit/controls/StringBase/StringBase.d.ts +0 -6
- package/build/cjs/lib/unstable/kit/controls/StringBase/StringBase.js +0 -12
- package/build/cjs/lib/unstable/kit/controls/StringBase/index.d.ts +0 -1
- package/build/cjs/lib/unstable/kit/controls/StringBase/index.js +0 -5
- package/build/cjs/lib/unstable/kit/controls/Switch/Switch.css +0 -5
- package/build/cjs/lib/unstable/kit/controls/Switch/Switch.d.ts +0 -6
- package/build/cjs/lib/unstable/kit/controls/Switch/Switch.js +0 -16
- package/build/cjs/lib/unstable/kit/controls/Switch/index.d.ts +0 -1
- package/build/cjs/lib/unstable/kit/controls/Switch/index.js +0 -5
- package/build/cjs/lib/unstable/kit/controls/TextArea/TextArea.d.ts +0 -6
- package/build/cjs/lib/unstable/kit/controls/TextArea/TextArea.js +0 -12
- package/build/cjs/lib/unstable/kit/controls/TextArea/index.d.ts +0 -1
- package/build/cjs/lib/unstable/kit/controls/TextArea/index.js +0 -5
- package/build/cjs/lib/unstable/kit/controls/index.d.ts +0 -16
- package/build/cjs/lib/unstable/kit/controls/index.js +0 -35
- package/build/cjs/lib/unstable/kit/wrappers/Row/Row.css +0 -27
- package/build/cjs/lib/unstable/kit/wrappers/Row/Row.d.ts +0 -6
- package/build/cjs/lib/unstable/kit/wrappers/Row/Row.js +0 -34
- package/build/cjs/lib/unstable/kit/wrappers/Row/index.d.ts +0 -1
- package/build/cjs/lib/unstable/kit/wrappers/Row/index.js +0 -5
- package/build/cjs/lib/unstable/kit/wrappers/Transparent/Transparent.css +0 -6
- package/build/cjs/lib/unstable/kit/wrappers/Transparent/Transparent.d.ts +0 -3
- package/build/cjs/lib/unstable/kit/wrappers/Transparent/Transparent.js +0 -15
- package/build/cjs/lib/unstable/kit/wrappers/index.d.ts +0 -2
- package/build/cjs/lib/unstable/kit/wrappers/index.js +0 -7
- package/build/esm/lib/unstable/core/Entity/Entity.d.ts +0 -10
- package/build/esm/lib/unstable/core/Entity/Entity.js +0 -74
- package/build/esm/lib/unstable/core/Entity/index.d.ts +0 -2
- package/build/esm/lib/unstable/core/Entity/index.js +0 -1
- package/build/esm/lib/unstable/core/Entity/types.d.ts +0 -27
- package/build/esm/lib/unstable/core/Entity/utils.d.ts +0 -3
- package/build/esm/lib/unstable/core/Entity/utils.js +0 -35
- package/build/esm/lib/unstable/core/useSchemaRenderer/hooks/index.d.ts +0 -2
- package/build/esm/lib/unstable/core/useSchemaRenderer/hooks/index.js +0 -2
- package/build/esm/lib/unstable/core/useSchemaRenderer/hooks/useEntitiesState.d.ts +0 -7
- package/build/esm/lib/unstable/core/useSchemaRenderer/hooks/useEntitiesState.js +0 -20
- package/build/esm/lib/unstable/core/useSchemaRenderer/hooks/useSchemaRendererMutators.d.ts +0 -10
- package/build/esm/lib/unstable/core/useSchemaRenderer/hooks/useSchemaRendererMutators.js +0 -13
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/async-validation/async-validation.d.ts +0 -3
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/async-validation/async-validation.js +0 -29
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/async-validation/index.d.ts +0 -2
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/async-validation/index.js +0 -2
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/async-validation/types.d.ts +0 -34
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/external-errors/external-errors.d.ts +0 -3
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/external-errors/external-errors.js +0 -54
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/external-errors/index.d.ts +0 -2
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/external-errors/index.js +0 -2
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/external-errors/types.d.ts +0 -25
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/index.d.ts +0 -13
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/index.js +0 -13
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/schema-mutators/index.d.ts +0 -2
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/schema-mutators/index.js +0 -2
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/schema-mutators/schema-mutators.d.ts +0 -3
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/schema-mutators/schema-mutators.js +0 -75
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/schema-mutators/types.d.ts +0 -26
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/trigger-fields/index.d.ts +0 -2
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/trigger-fields/index.js +0 -2
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/trigger-fields/trigger-fields.d.ts +0 -2
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/trigger-fields/trigger-fields.js +0 -8
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/trigger-fields/types.d.ts +0 -6
- package/build/esm/lib/unstable/core/useSchemaRenderer/types.d.ts +0 -22
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/common.d.ts +0 -1
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/common.js +0 -7
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/get-ajv-validate.d.ts +0 -11
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/get-ajv-validate.js +0 -34
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/process-ajv-error.d.ts +0 -10
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/process-ajv-error.js +0 -46
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/process-ajv-validate-errors.d.ts +0 -20
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/process-ajv-validate-errors.js +0 -39
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/process-entity-parameters-error.d.ts +0 -15
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/process-entity-parameters-error.js +0 -31
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/process-errors-state.d.ts +0 -12
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/process-errors-state.js +0 -12
- package/build/esm/lib/unstable/kit/Accordeon.d.ts +0 -3
- package/build/esm/lib/unstable/kit/Accordeon.js +0 -26
- package/build/esm/lib/unstable/kit/Any.d.ts +0 -2
- package/build/esm/lib/unstable/kit/Any.js +0 -16
- package/build/esm/lib/unstable/kit/ArrayBase.css +0 -23
- package/build/esm/lib/unstable/kit/ArrayBase.d.ts +0 -3
- package/build/esm/lib/unstable/kit/ArrayBase.js +0 -97
- package/build/esm/lib/unstable/kit/MultiSelect.css +0 -6
- package/build/esm/lib/unstable/kit/MultiSelect.d.ts +0 -7
- package/build/esm/lib/unstable/kit/MultiSelect.js +0 -62
- package/build/esm/lib/unstable/kit/ObjectBase.css +0 -10
- package/build/esm/lib/unstable/kit/ObjectBase.d.ts +0 -8
- package/build/esm/lib/unstable/kit/ObjectBase.js +0 -66
- package/build/esm/lib/unstable/kit/Row.css +0 -73
- package/build/esm/lib/unstable/kit/Row.d.ts +0 -11
- package/build/esm/lib/unstable/kit/Row.js +0 -47
- package/build/esm/lib/unstable/kit/Text.d.ts +0 -6
- package/build/esm/lib/unstable/kit/Text.js +0 -255
- package/build/esm/lib/unstable/kit/components/ControlError/ControlError.css +0 -33
- package/build/esm/lib/unstable/kit/components/ControlError/ControlError.d.ts +0 -9
- package/build/esm/lib/unstable/kit/components/ControlError/ControlError.js +0 -11
- package/build/esm/lib/unstable/kit/components/ControlError/index.d.ts +0 -1
- package/build/esm/lib/unstable/kit/components/ControlError/index.js +0 -1
- package/build/esm/lib/unstable/kit/config.d.ts +0 -95
- package/build/esm/lib/unstable/kit/config.js +0 -65
- package/build/esm/lib/unstable/kit/controls/ArrayBase/ArrayBase.d.ts +0 -8
- package/build/esm/lib/unstable/kit/controls/ArrayBase/ArrayBase.js +0 -42
- package/build/esm/lib/unstable/kit/controls/ArrayBase/index.d.ts +0 -1
- package/build/esm/lib/unstable/kit/controls/ArrayBase/index.js +0 -1
- package/build/esm/lib/unstable/kit/controls/Checkbox/Checkbox.css +0 -5
- package/build/esm/lib/unstable/kit/controls/Checkbox/Checkbox.d.ts +0 -7
- package/build/esm/lib/unstable/kit/controls/Checkbox/Checkbox.js +0 -13
- package/build/esm/lib/unstable/kit/controls/Checkbox/index.d.ts +0 -1
- package/build/esm/lib/unstable/kit/controls/Checkbox/index.js +0 -1
- package/build/esm/lib/unstable/kit/controls/CheckboxGroup/CheckboxGroup.css +0 -3
- package/build/esm/lib/unstable/kit/controls/CheckboxGroup/CheckboxGroup.d.ts +0 -10
- package/build/esm/lib/unstable/kit/controls/CheckboxGroup/CheckboxGroup.js +0 -34
- package/build/esm/lib/unstable/kit/controls/CheckboxGroup/index.d.ts +0 -1
- package/build/esm/lib/unstable/kit/controls/CheckboxGroup/index.js +0 -1
- package/build/esm/lib/unstable/kit/controls/ColorPicker/ColorPicker.d.ts +0 -6
- package/build/esm/lib/unstable/kit/controls/ColorPicker/ColorPicker.js +0 -21
- package/build/esm/lib/unstable/kit/controls/ColorPicker/index.d.ts +0 -1
- package/build/esm/lib/unstable/kit/controls/ColorPicker/index.js +0 -1
- package/build/esm/lib/unstable/kit/controls/DateInput/DateInput.css +0 -3
- package/build/esm/lib/unstable/kit/controls/DateInput/DateInput.d.ts +0 -9
- package/build/esm/lib/unstable/kit/controls/DateInput/DateInput.js +0 -53
- package/build/esm/lib/unstable/kit/controls/MultiSelect/MultiSelect.d.ts +0 -8
- package/build/esm/lib/unstable/kit/controls/MultiSelect/MultiSelect.js +0 -32
- package/build/esm/lib/unstable/kit/controls/MultiSelect/index.d.ts +0 -1
- package/build/esm/lib/unstable/kit/controls/MultiSelect/index.js +0 -1
- package/build/esm/lib/unstable/kit/controls/NumberBase/Number.d.ts +0 -6
- package/build/esm/lib/unstable/kit/controls/NumberBase/Number.js +0 -8
- package/build/esm/lib/unstable/kit/controls/NumberBase/index.d.ts +0 -1
- package/build/esm/lib/unstable/kit/controls/NumberBase/index.js +0 -1
- package/build/esm/lib/unstable/kit/controls/ObjectBase/ObjectBase.d.ts +0 -8
- package/build/esm/lib/unstable/kit/controls/ObjectBase/ObjectBase.js +0 -29
- package/build/esm/lib/unstable/kit/controls/ObjectBase/index.d.ts +0 -1
- package/build/esm/lib/unstable/kit/controls/ObjectBase/index.js +0 -1
- package/build/esm/lib/unstable/kit/controls/Password/Password.d.ts +0 -6
- package/build/esm/lib/unstable/kit/controls/Password/Password.js +0 -8
- package/build/esm/lib/unstable/kit/controls/Password/index.d.ts +0 -1
- package/build/esm/lib/unstable/kit/controls/Password/index.js +0 -1
- package/build/esm/lib/unstable/kit/controls/RadioGroup/RadioGroup.css +0 -3
- package/build/esm/lib/unstable/kit/controls/RadioGroup/RadioGroup.d.ts +0 -9
- package/build/esm/lib/unstable/kit/controls/RadioGroup/RadioGroup.js +0 -22
- package/build/esm/lib/unstable/kit/controls/RadioGroup/index.d.ts +0 -1
- package/build/esm/lib/unstable/kit/controls/RadioGroup/index.js +0 -1
- package/build/esm/lib/unstable/kit/controls/RangeSlider/RangeSlider.css +0 -3
- package/build/esm/lib/unstable/kit/controls/RangeSlider/RangeSlider.d.ts +0 -8
- package/build/esm/lib/unstable/kit/controls/RangeSlider/RangeSlider.js +0 -31
- package/build/esm/lib/unstable/kit/controls/RangeSlider/index.d.ts +0 -1
- package/build/esm/lib/unstable/kit/controls/RangeSlider/index.js +0 -1
- package/build/esm/lib/unstable/kit/controls/Select/Select.d.ts +0 -9
- package/build/esm/lib/unstable/kit/controls/Select/Select.js +0 -29
- package/build/esm/lib/unstable/kit/controls/Select/index.d.ts +0 -1
- package/build/esm/lib/unstable/kit/controls/Select/index.js +0 -1
- package/build/esm/lib/unstable/kit/controls/Slider/Slider.css +0 -3
- package/build/esm/lib/unstable/kit/controls/Slider/Slider.d.ts +0 -7
- package/build/esm/lib/unstable/kit/controls/Slider/Slider.js +0 -16
- package/build/esm/lib/unstable/kit/controls/Slider/index.d.ts +0 -1
- package/build/esm/lib/unstable/kit/controls/Slider/index.js +0 -1
- package/build/esm/lib/unstable/kit/controls/StringBase/StringBase.d.ts +0 -6
- package/build/esm/lib/unstable/kit/controls/StringBase/StringBase.js +0 -8
- package/build/esm/lib/unstable/kit/controls/StringBase/index.d.ts +0 -1
- package/build/esm/lib/unstable/kit/controls/StringBase/index.js +0 -1
- package/build/esm/lib/unstable/kit/controls/Switch/Switch.css +0 -5
- package/build/esm/lib/unstable/kit/controls/Switch/Switch.d.ts +0 -7
- package/build/esm/lib/unstable/kit/controls/Switch/Switch.js +0 -13
- package/build/esm/lib/unstable/kit/controls/Switch/index.d.ts +0 -1
- package/build/esm/lib/unstable/kit/controls/Switch/index.js +0 -1
- package/build/esm/lib/unstable/kit/controls/TextArea/TextArea.d.ts +0 -6
- package/build/esm/lib/unstable/kit/controls/TextArea/TextArea.js +0 -8
- package/build/esm/lib/unstable/kit/controls/TextArea/index.d.ts +0 -1
- package/build/esm/lib/unstable/kit/controls/TextArea/index.js +0 -1
- package/build/esm/lib/unstable/kit/controls/index.d.ts +0 -16
- package/build/esm/lib/unstable/kit/controls/index.js +0 -16
- package/build/esm/lib/unstable/kit/wrappers/Row/Row.css +0 -27
- package/build/esm/lib/unstable/kit/wrappers/Row/Row.d.ts +0 -7
- package/build/esm/lib/unstable/kit/wrappers/Row/Row.js +0 -31
- package/build/esm/lib/unstable/kit/wrappers/Row/index.d.ts +0 -1
- package/build/esm/lib/unstable/kit/wrappers/Row/index.js +0 -1
- package/build/esm/lib/unstable/kit/wrappers/Transparent/Transparent.css +0 -6
- package/build/esm/lib/unstable/kit/wrappers/Transparent/Transparent.d.ts +0 -4
- package/build/esm/lib/unstable/kit/wrappers/Transparent/Transparent.js +0 -12
- package/build/esm/lib/unstable/kit/wrappers/index.d.ts +0 -2
- package/build/esm/lib/unstable/kit/wrappers/index.js +0 -2
- /package/build/cjs/lib/unstable/core/{Entity → SchemaRendererNode}/types.js +0 -0
- /package/build/cjs/lib/unstable/core/{useSchemaRenderer/mutators/async-validation/types.js → types/jsl-errors.js} +0 -0
- /package/build/cjs/lib/unstable/core/useSchemaRenderer/{mutators/external-errors/types.js → types/patches.js} +0 -0
- /package/build/cjs/lib/unstable/core/useSchemaRenderer/{mutators/schema-mutators/types.js → types/state.js} +0 -0
- /package/build/cjs/lib/unstable/core/useSchemaRenderer/{mutators/trigger-fields/types.js → types/subscription.js} +0 -0
- /package/build/cjs/lib/unstable/core/useSchemaRenderer/{types.js → types/validation.js} +0 -0
- /package/build/cjs/lib/unstable/kit/{controls → form-entities}/DateInput/index.d.ts +0 -0
- /package/build/cjs/lib/unstable/kit/{controls → form-entities}/DateInput/index.js +0 -0
- /package/build/cjs/lib/unstable/kit/{wrappers → layouts}/Transparent/index.d.ts +0 -0
- /package/build/cjs/lib/unstable/kit/{wrappers → layouts}/Transparent/index.js +0 -0
- /package/build/esm/lib/unstable/core/{Entity → SchemaRendererNode}/types.js +0 -0
- /package/build/esm/lib/unstable/core/{useSchemaRenderer/mutators/async-validation/types.js → types/jsl-errors.js} +0 -0
- /package/build/esm/lib/unstable/core/useSchemaRenderer/{mutators/external-errors/types.js → types/patches.js} +0 -0
- /package/build/esm/lib/unstable/core/useSchemaRenderer/{mutators/schema-mutators/types.js → types/state.js} +0 -0
- /package/build/esm/lib/unstable/core/useSchemaRenderer/{mutators/trigger-fields/types.js → types/subscription.js} +0 -0
- /package/build/esm/lib/unstable/core/useSchemaRenderer/{types.js → types/validation.js} +0 -0
- /package/build/esm/lib/unstable/kit/{controls → form-entities}/DateInput/index.d.ts +0 -0
- /package/build/esm/lib/unstable/kit/{controls → form-entities}/DateInput/index.js +0 -0
- /package/build/esm/lib/unstable/kit/{wrappers → layouts}/Transparent/index.d.ts +0 -0
- /package/build/esm/lib/unstable/kit/{wrappers → layouts}/Transparent/index.js +0 -0
|
@@ -1,36 +1,37 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
import type {
|
|
1
|
+
import type { NodeType } from '../constants';
|
|
2
|
+
import type { NodeEntity, NodeLayout } from './components';
|
|
3
3
|
import type { JsonSchema, JsonSchemaAny, JsonSchemaArray, JsonSchemaBoolean, JsonSchemaNumber, JsonSchemaObject, JsonSchemaString } from './schema';
|
|
4
4
|
import type { Validator } from './validation';
|
|
5
|
-
export interface
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
} | undefined;
|
|
5
|
+
export interface NodeEntityConfig<Schema extends JsonSchema> {
|
|
6
|
+
Component?: NodeEntity<Schema>;
|
|
7
|
+
defaultProps?: Record<string, any>;
|
|
8
|
+
independent?: boolean;
|
|
10
9
|
}
|
|
11
|
-
export interface
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
independent?: boolean;
|
|
15
|
-
} | undefined;
|
|
10
|
+
export interface NodeLayoutConfig<Schema extends JsonSchema> {
|
|
11
|
+
Component?: NodeLayout<Schema>;
|
|
12
|
+
defaultProps?: Record<string, any>;
|
|
16
13
|
}
|
|
17
|
-
export interface
|
|
18
|
-
[key: string]:
|
|
14
|
+
export interface NodeEntitiesConfig<Schema extends JsonSchema> {
|
|
15
|
+
[key: string]: NodeEntityConfig<Schema> | undefined;
|
|
19
16
|
}
|
|
20
|
-
export interface
|
|
17
|
+
export interface NodeLayoutsConfig<Schema extends JsonSchema> {
|
|
18
|
+
[key: string]: NodeLayoutConfig<Schema> | undefined;
|
|
19
|
+
}
|
|
20
|
+
export interface NodeValidatorsConfig<Schema extends JsonSchema> {
|
|
21
21
|
[key: string]: Validator<Schema> | undefined;
|
|
22
22
|
}
|
|
23
|
-
export interface
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
23
|
+
export interface NodeTypeConfig<Schema extends JsonSchema> {
|
|
24
|
+
formEntities?: NodeEntitiesConfig<Schema>;
|
|
25
|
+
formLayouts?: NodeLayoutsConfig<Schema>;
|
|
26
|
+
overviewEntities?: NodeEntitiesConfig<Schema>;
|
|
27
|
+
overviewLayouts?: NodeLayoutsConfig<Schema>;
|
|
28
|
+
validators?: NodeValidatorsConfig<Schema>;
|
|
28
29
|
}
|
|
29
|
-
export interface
|
|
30
|
-
[
|
|
31
|
-
[
|
|
32
|
-
[
|
|
33
|
-
[
|
|
34
|
-
[
|
|
35
|
-
[
|
|
30
|
+
export interface NodesConfig {
|
|
31
|
+
[NodeType.Any]?: NodeTypeConfig<JsonSchemaAny>;
|
|
32
|
+
[NodeType.Array]?: NodeTypeConfig<JsonSchemaArray>;
|
|
33
|
+
[NodeType.Boolean]?: NodeTypeConfig<JsonSchemaBoolean>;
|
|
34
|
+
[NodeType.Number]?: NodeTypeConfig<JsonSchemaNumber>;
|
|
35
|
+
[NodeType.Object]?: NodeTypeConfig<JsonSchemaObject>;
|
|
36
|
+
[NodeType.String]?: NodeTypeConfig<JsonSchemaString>;
|
|
36
37
|
}
|
|
@@ -1,18 +1,23 @@
|
|
|
1
|
-
import type
|
|
2
|
-
import type {
|
|
1
|
+
import type { NodeType } from '../constants';
|
|
2
|
+
import type { NodeEntity, NodeLayout } from './components';
|
|
3
|
+
import type { NodeTypeConfig, NodesConfig } from './config';
|
|
4
|
+
import type { JsonSchema, JsonSchemaAny, JsonSchemaArray, JsonSchemaBoolean, JsonSchemaNumber, JsonSchemaObject, JsonSchemaString } from './schema';
|
|
3
5
|
import type { ArrayValue, FieldValue, ObjectValue } from './values';
|
|
4
|
-
export type
|
|
5
|
-
export type
|
|
6
|
-
export type
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
} ?
|
|
11
|
-
export type
|
|
12
|
-
|
|
13
|
-
} ?
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
export type EntityKind = 'formEntities' | 'overviewEntities';
|
|
7
|
+
export type LayoutKind = 'formLayouts' | 'overviewLayouts';
|
|
8
|
+
export type SchemaOfNodeType<Type extends NodeType> = Type extends NodeType.Any ? JsonSchemaAny : Type extends NodeType.Array ? JsonSchemaArray : Type extends NodeType.Boolean ? JsonSchemaBoolean : Type extends NodeType.Number ? JsonSchemaNumber : Type extends NodeType.Object ? JsonSchemaObject : Type extends NodeType.String ? JsonSchemaString : JsonSchema;
|
|
9
|
+
export type SchemaToValueType<Schema extends JsonSchema> = Schema extends JsonSchemaArray ? ArrayValue : Schema extends JsonSchemaBoolean ? boolean : Schema extends JsonSchemaNumber ? number : Schema extends JsonSchemaObject ? ObjectValue : Schema extends JsonSchemaString ? string : FieldValue;
|
|
10
|
+
export type ExtractNodeEntityProps<Component> = Component extends React.ComponentType<infer NodeEntityProps> ? NodeEntityProps extends {
|
|
11
|
+
props?: infer EntityProps;
|
|
12
|
+
} ? NonNullable<EntityProps> : Record<string, any> : Record<string, any>;
|
|
13
|
+
export type ExtractNodeLayoutProps<Component> = Component extends React.ComponentType<infer NodeLayoutProps> ? NodeLayoutProps extends {
|
|
14
|
+
props?: infer LayoutProps;
|
|
15
|
+
} ? NonNullable<LayoutProps> : Record<string, any> : Record<string, any>;
|
|
16
|
+
type ComponentOf<Entry> = Entry extends {
|
|
17
|
+
Component?: infer C;
|
|
18
|
+
} ? NonNullable<C> : never;
|
|
19
|
+
type OrRecord<T> = [T] extends [never] ? Record<string, any> : T;
|
|
20
|
+
type NodeComponentPropsFromConfig<NodeConfig extends NodeTypeConfig<any>, Kind extends EntityKind | LayoutKind, Key extends string> = Key extends keyof NonNullable<NodeConfig[Kind]> ? Kind extends EntityKind ? ExtractNodeEntityProps<ComponentOf<NonNullable<NodeConfig[Kind]>[Key]>> : ExtractNodeLayoutProps<ComponentOf<NonNullable<NodeConfig[Kind]>[Key]>> : never;
|
|
21
|
+
export type NodeComponentProps<Config extends NodesConfig, Type extends NodeType, Kind extends EntityKind | LayoutKind, Ref> = [Kind] extends [EntityKind] ? Ref extends NodeEntity<any> ? ExtractNodeEntityProps<Ref> : Ref extends string ? OrRecord<Kind extends infer K extends EntityKind ? NodeComponentPropsFromConfig<NonNullable<Config[Type]>, K, Ref> : never> : Record<string, any> : Ref extends NodeLayout<any> ? ExtractNodeLayoutProps<Ref> : Ref extends string ? OrRecord<Kind extends infer K extends LayoutKind ? NodeComponentPropsFromConfig<NonNullable<Config[Type]>, K, Ref> : never> : Record<string, any>;
|
|
22
|
+
export type NodeTypeConfigKey<Config extends NodesConfig, Type extends NodeType, Kind extends keyof NodeTypeConfig<any>> = `${Extract<keyof NonNullable<NonNullable<Config[Type]>[Kind]>, string>}`;
|
|
23
|
+
export {};
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import type { Annotation, AnnotationData } from 'json-schema-library';
|
|
2
|
+
import type { JsonSchema } from './schema';
|
|
3
|
+
import type { Validator } from './validation';
|
|
4
|
+
type JSLError<Code extends string, Data extends Record<string, unknown> = Record<string, unknown>> = Annotation<'error', AnnotationData<Data>, Code>;
|
|
5
|
+
export declare namespace JSLErrors {
|
|
6
|
+
type AdditionalItems = JSLError<'additional-items-error', {
|
|
7
|
+
key: number;
|
|
8
|
+
}>;
|
|
9
|
+
type AdditionalProperties = JSLError<'no-additional-properties-error', {
|
|
10
|
+
properties: string[];
|
|
11
|
+
property: string;
|
|
12
|
+
}>;
|
|
13
|
+
type AnyOf = JSLError<'any-of-error', {
|
|
14
|
+
anyOf: JsonSchema[];
|
|
15
|
+
}>;
|
|
16
|
+
type Const = JSLError<'const-error', {
|
|
17
|
+
expected: unknown;
|
|
18
|
+
}>;
|
|
19
|
+
type ContainsAny = JSLError<'contains-any-error'>;
|
|
20
|
+
type ContainsMin = JSLError<'contains-min-error', {
|
|
21
|
+
delta: number;
|
|
22
|
+
}>;
|
|
23
|
+
type Dependencies = JSLError<'missing-dependency-error', {
|
|
24
|
+
missingProperty: string;
|
|
25
|
+
}>;
|
|
26
|
+
type Enum = JSLError<'enum-error', {
|
|
27
|
+
values: unknown[];
|
|
28
|
+
}>;
|
|
29
|
+
type ExclusiveMaximum = JSLError<'exclusive-maximum-error', {
|
|
30
|
+
length: number | string;
|
|
31
|
+
maximum: number | string;
|
|
32
|
+
}>;
|
|
33
|
+
type ExclusiveMinimum = JSLError<'exclusive-minimum-error', {
|
|
34
|
+
length: number | string;
|
|
35
|
+
minimum: number | string;
|
|
36
|
+
}>;
|
|
37
|
+
type MaxItems = JSLError<'max-items-error', {
|
|
38
|
+
length: number;
|
|
39
|
+
maximum: number;
|
|
40
|
+
}>;
|
|
41
|
+
type MaxLength = JSLError<'max-length-error', {
|
|
42
|
+
length: number;
|
|
43
|
+
maxLength: number;
|
|
44
|
+
}>;
|
|
45
|
+
type MaxProperties = JSLError<'max-properties-error', {
|
|
46
|
+
length: number;
|
|
47
|
+
maxProperties: number;
|
|
48
|
+
}>;
|
|
49
|
+
type Maximum = JSLError<'maximum-error', {
|
|
50
|
+
length: number | string;
|
|
51
|
+
maximum: number | string;
|
|
52
|
+
}>;
|
|
53
|
+
type MinItems = JSLError<'min-items-error', {
|
|
54
|
+
length: number;
|
|
55
|
+
minItems: number;
|
|
56
|
+
}>;
|
|
57
|
+
type MinLength = JSLError<'min-length-error', {
|
|
58
|
+
length: number;
|
|
59
|
+
minLength: number;
|
|
60
|
+
}>;
|
|
61
|
+
type MinProperties = JSLError<'min-properties-error', {
|
|
62
|
+
length: number;
|
|
63
|
+
minProperties: number;
|
|
64
|
+
}>;
|
|
65
|
+
type Minimum = JSLError<'minimum-error', {
|
|
66
|
+
length: number | string;
|
|
67
|
+
minimum: number | string;
|
|
68
|
+
}>;
|
|
69
|
+
type MultipleOf = JSLError<'multiple-of-error', {
|
|
70
|
+
multipleOf: number | string;
|
|
71
|
+
}>;
|
|
72
|
+
type NodeParameters = JSLError<'node-parameters-error', {
|
|
73
|
+
validator: Validator<JsonSchema>;
|
|
74
|
+
}>;
|
|
75
|
+
type Not = JSLError<'not-error', {
|
|
76
|
+
not: JsonSchema;
|
|
77
|
+
}>;
|
|
78
|
+
type OneOf = JSLError<'one-of-error', {
|
|
79
|
+
errors: JSLErrors.Error[];
|
|
80
|
+
oneOf: JsonSchema[];
|
|
81
|
+
}>;
|
|
82
|
+
type Pattern = JSLError<'pattern-error', {
|
|
83
|
+
description: string;
|
|
84
|
+
pattern: string;
|
|
85
|
+
received: string;
|
|
86
|
+
}>;
|
|
87
|
+
type PropertyNames = JSLError<'invalid-property-name-error', {
|
|
88
|
+
property: string;
|
|
89
|
+
validationError: JSLErrors.Error;
|
|
90
|
+
}>;
|
|
91
|
+
type Required = JSLError<'required-property-error', {
|
|
92
|
+
key: string;
|
|
93
|
+
}>;
|
|
94
|
+
type Type = JSLError<'type-error', {
|
|
95
|
+
expected: string;
|
|
96
|
+
received: string;
|
|
97
|
+
}>;
|
|
98
|
+
type UniqueItems = JSLError<'unique-items-error', {
|
|
99
|
+
arrayPointer: string;
|
|
100
|
+
duplicatePointer: string;
|
|
101
|
+
}>;
|
|
102
|
+
type Error = AdditionalItems | AdditionalProperties | AnyOf | Const | ContainsAny | ContainsMin | Dependencies | Enum | ExclusiveMaximum | ExclusiveMinimum | MaxItems | MaxLength | MaxProperties | Maximum | MinItems | MinLength | MinProperties | Minimum | MultipleOf | NodeParameters | Not | OneOf | Pattern | PropertyNames | Required | Type | UniqueItems;
|
|
103
|
+
type ErrorCode = Error['code'];
|
|
104
|
+
}
|
|
105
|
+
export {};
|
|
@@ -1,147 +1,30 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
import type {
|
|
3
|
-
import type {
|
|
4
|
-
import type { ErrorMessages } from './validation';
|
|
1
|
+
import type { JsonSchemaType, NodeType } from '../constants';
|
|
2
|
+
import type { NodeEntity, NodeLayout } from './components';
|
|
3
|
+
import type { ErrorMessages, Validator } from './validation';
|
|
5
4
|
import type { ArrayValue, FieldValue, ObjectValue } from './values';
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
* which React component renders the field in form mode. When omitted, the
|
|
11
|
-
* renderer falls back to the default control for this entity type.
|
|
12
|
-
*/
|
|
13
|
-
controlType?: C;
|
|
14
|
-
/**
|
|
15
|
-
* Extra props forwarded to the selected control. Typed to the `controlProps`
|
|
16
|
-
* shape declared by the chosen control component.
|
|
17
|
-
*/
|
|
18
|
-
controlProps?: ExtractControlProps<TypeConfig['controls'][C]>;
|
|
19
|
-
};
|
|
20
|
-
}[Control];
|
|
21
|
-
type ControlWrapperEntityParameters<TypeConfig extends SchemaRendererConfig[EntityType], Wrapper extends ObjectKeys<TypeConfig['wrappers']> = ObjectKeys<TypeConfig['wrappers']>> = [Wrapper] extends [never] ? {} : {
|
|
22
|
-
[W in Wrapper]: {
|
|
23
|
-
/**
|
|
24
|
-
* Identifier of a wrapper registered in `config[entityType].wrappers`. The
|
|
25
|
-
* wrapper component is rendered around the control in form mode (e.g. to add
|
|
26
|
-
* a label, layout, or visibility logic).
|
|
27
|
-
*/
|
|
28
|
-
controlWrapperType?: W;
|
|
29
|
-
/**
|
|
30
|
-
* Extra props forwarded to the selected control wrapper. Typed to the
|
|
31
|
-
* `wrapperProps` shape declared by the chosen wrapper component.
|
|
32
|
-
*/
|
|
33
|
-
controlWrapperProps?: ExtractWrapperProps<TypeConfig['wrappers'][W]>;
|
|
34
|
-
};
|
|
35
|
-
}[Wrapper];
|
|
36
|
-
type ViewEntityParameters<TypeConfig extends SchemaRendererConfig[EntityType], View extends ObjectKeys<TypeConfig['views']> = ObjectKeys<TypeConfig['views']>> = [View] extends [never] ? {} : {
|
|
37
|
-
[V in View]: {
|
|
38
|
-
/**
|
|
39
|
-
* Identifier of a view registered in `config[entityType].views`. Selects which
|
|
40
|
-
* React component renders the field in overview (read-only) mode. When omitted,
|
|
41
|
-
* the renderer falls back to the default view for this entity type.
|
|
42
|
-
*/
|
|
43
|
-
viewType?: V;
|
|
44
|
-
/**
|
|
45
|
-
* Extra props forwarded to the selected view. Typed to the `viewProps` shape
|
|
46
|
-
* declared by the chosen view component.
|
|
47
|
-
*/
|
|
48
|
-
viewProps?: ExtractViewProps<TypeConfig['views'][V]>;
|
|
49
|
-
};
|
|
50
|
-
}[View];
|
|
51
|
-
type ViewWrapperEntityParameters<TypeConfig extends SchemaRendererConfig[EntityType], Wrapper extends ObjectKeys<TypeConfig['wrappers']> = ObjectKeys<TypeConfig['wrappers']>> = [Wrapper] extends [never] ? {} : {
|
|
52
|
-
[W in Wrapper]: {
|
|
53
|
-
/**
|
|
54
|
-
* Identifier of a wrapper registered in `config[entityType].wrappers`. The
|
|
55
|
-
* wrapper component is rendered around the view in overview mode.
|
|
56
|
-
*/
|
|
57
|
-
viewWrapperType?: W;
|
|
58
|
-
/**
|
|
59
|
-
* Extra props forwarded to the selected view wrapper. Typed to the
|
|
60
|
-
* `wrapperProps` shape declared by the chosen wrapper component.
|
|
61
|
-
*/
|
|
62
|
-
viewWrapperProps?: ExtractWrapperProps<TypeConfig['wrappers'][W]>;
|
|
63
|
-
};
|
|
64
|
-
}[Wrapper];
|
|
65
|
-
type ValidatorEntityParameters<Validator extends string> = [Validator] extends [never] ? {} : {
|
|
66
|
-
[V in Validator]: {
|
|
67
|
-
/**
|
|
68
|
-
* Identifier of a custom validator registered in `config[entityType].validators`.
|
|
69
|
-
* Runs in addition to (or instead of, depending on the renderer policy) the
|
|
70
|
-
* JSON Schema validation derived from the schema keywords.
|
|
71
|
-
*
|
|
72
|
-
* TODO(verify): confirm whether the custom validator replaces or complements
|
|
73
|
-
* JSON Schema validation and adjust this comment.
|
|
74
|
-
*/
|
|
75
|
-
validatorType?: V;
|
|
76
|
-
};
|
|
77
|
-
}[Validator];
|
|
78
|
-
/**
|
|
79
|
-
* Renderer-specific configuration carried on each schema node. Not part of the
|
|
80
|
-
* JSON Schema specification — these keywords are ignored by JSON Schema
|
|
81
|
-
* validators and consumed only by SchemaRenderer to choose controls, views,
|
|
82
|
-
* wrappers, validators, and custom error messages for the field.
|
|
83
|
-
*
|
|
84
|
-
* Generic parameters bind the available `controlType` / `viewType` /
|
|
85
|
-
* `wrapperType` / `validatorType` values to those registered in the
|
|
86
|
-
* `SchemaRendererConfig` for this entity type — making invalid identifiers a
|
|
87
|
-
* TypeScript error at the schema declaration site.
|
|
88
|
-
*/
|
|
89
|
-
interface EntityParameters<Type extends EntityType, TypeConfig extends SchemaRendererConfig[Type], Control extends ObjectKeys<TypeConfig['controls']> = ObjectKeys<TypeConfig['controls']>, View extends ObjectKeys<TypeConfig['views']> = ObjectKeys<TypeConfig['views']>, Wrapper extends ObjectKeys<TypeConfig['wrappers']> = ObjectKeys<TypeConfig['wrappers']>, Validator extends ObjectKeys<TypeConfig['validators']> = ObjectKeys<TypeConfig['validators']>> {
|
|
90
|
-
/**
|
|
91
|
-
* Optional bag of renderer-specific configuration for this schema node.
|
|
92
|
-
* Ignored by JSON Schema validators.
|
|
93
|
-
*/
|
|
94
|
-
entityParameters?: {
|
|
95
|
-
/**
|
|
96
|
-
* Forces the renderer to treat this node as a specific `EntityType`, overriding
|
|
97
|
-
* the inference based on the JSON Schema `type` keyword. Useful when a single
|
|
98
|
-
* JSON type should be rendered as multiple kinds of UI (e.g. `String` rendered
|
|
99
|
-
* via different `EntityType` registrations).
|
|
100
|
-
*/
|
|
101
|
-
type?: Type;
|
|
102
|
-
/**
|
|
103
|
-
* Custom error messages shown by the renderer when validation fails. Keys
|
|
104
|
-
* correspond to JSON Schema validation keywords (`minLength`, `pattern`, `enum`,
|
|
105
|
-
* etc.).
|
|
106
|
-
*
|
|
107
|
-
* `dependencies` and `required` accept either a single string (used for any
|
|
108
|
-
* failure of that keyword) or a `Record<string, string>` mapping the dependent /
|
|
109
|
-
* required property name to its own message.
|
|
110
|
-
*
|
|
111
|
-
* Not part of the JSON Schema specification — purely a UI override for this
|
|
112
|
-
* renderer.
|
|
113
|
-
*
|
|
114
|
-
* @example
|
|
115
|
-
* {
|
|
116
|
-
* type: JsonSchemaType.String,
|
|
117
|
-
* minLength: 5,
|
|
118
|
-
* entityParameters: {
|
|
119
|
-
* errorMessages: {minLength: 'Must be at least 5 characters'},
|
|
120
|
-
* },
|
|
121
|
-
* }
|
|
122
|
-
*
|
|
123
|
-
* @example
|
|
124
|
-
* // Per-property message for required.
|
|
125
|
-
* {
|
|
126
|
-
* type: JsonSchemaType.Object,
|
|
127
|
-
* required: ['name', 'email'],
|
|
128
|
-
* entityParameters: {
|
|
129
|
-
* errorMessages: {
|
|
130
|
-
* required: {name: 'Name is required', email: 'Email is required'},
|
|
131
|
-
* },
|
|
132
|
-
* },
|
|
133
|
-
* }
|
|
134
|
-
*/
|
|
5
|
+
interface NodeParameters<Type extends NodeType, Schema extends JsonSchema> {
|
|
6
|
+
nodeParameters?: {
|
|
7
|
+
entity?: string | NodeEntity<Schema>;
|
|
8
|
+
entityProps?: Record<string, any>;
|
|
135
9
|
errorMessages?: Omit<ErrorMessages, 'dependencies' | 'required'> & {
|
|
136
|
-
dependencies?:
|
|
137
|
-
required?:
|
|
10
|
+
dependencies?: ErrorMessages['dependencies'] | Record<string, ErrorMessages['dependencies']>;
|
|
11
|
+
required?: ErrorMessages['required'] | Record<string, ErrorMessages['required']>;
|
|
138
12
|
};
|
|
139
|
-
|
|
13
|
+
formEntity?: string | NodeEntity<Schema>;
|
|
14
|
+
formEntityProps?: Record<string, any>;
|
|
15
|
+
formLayout?: string | NodeLayout<Schema>;
|
|
16
|
+
formLayoutProps?: Record<string, any>;
|
|
17
|
+
layout?: string | NodeLayout<Schema>;
|
|
18
|
+
layoutProps?: Record<string, any>;
|
|
19
|
+
overviewEntity?: string | NodeEntity<Schema>;
|
|
20
|
+
overviewEntityProps?: Record<string, any>;
|
|
21
|
+
overviewLayout?: string | NodeLayout<Schema>;
|
|
22
|
+
overviewLayoutProps?: Record<string, any>;
|
|
23
|
+
type?: Type;
|
|
24
|
+
validator?: string | Validator<Schema>;
|
|
25
|
+
};
|
|
140
26
|
}
|
|
141
|
-
|
|
142
|
-
* Common JSON Schema keywords inherited by every concrete schema variant.
|
|
143
|
-
*/
|
|
144
|
-
interface JsonSchemaBase<Config extends SchemaRendererConfig, Schema extends JsonSchema<Config>, Value extends FieldValue> {
|
|
27
|
+
interface JsonSchemaBase<Type extends NodeType, Schema extends JsonSchema, Value extends FieldValue> extends NodeParameters<Type, Schema> {
|
|
145
28
|
/**
|
|
146
29
|
* Unique URI identifier for the schema; establishes the base URI used to resolve
|
|
147
30
|
* relative `$ref`s in all nested sub-schemas.
|
|
@@ -265,7 +148,7 @@ interface JsonSchemaBase<Config extends SchemaRendererConfig, Schema extends Jso
|
|
|
265
148
|
* @see https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.9
|
|
266
149
|
*/
|
|
267
150
|
definitions?: {
|
|
268
|
-
[key: string]: JsonSchema
|
|
151
|
+
[key: string]: JsonSchema;
|
|
269
152
|
};
|
|
270
153
|
/**
|
|
271
154
|
* Longer human-readable explanation of the schema. The SchemaRenderer renders it
|
|
@@ -421,7 +304,7 @@ interface JsonSchemaBase<Config extends SchemaRendererConfig, Schema extends Jso
|
|
|
421
304
|
/**
|
|
422
305
|
* Schema variant without an explicit `type` keyword. Matches values of any JSON type and accepts every keyword from the typed variants.
|
|
423
306
|
*/
|
|
424
|
-
export interface JsonSchemaAny
|
|
307
|
+
export interface JsonSchemaAny extends JsonSchemaBase<NodeType.Any, JsonSchema, FieldValue> {
|
|
425
308
|
/**
|
|
426
309
|
* Optional declared JSON type(s). When omitted, the schema matches any JSON type
|
|
427
310
|
* and every keyword from the typed variants is accepted (each behaving according
|
|
@@ -460,7 +343,7 @@ export interface JsonSchemaAny<Config extends SchemaRendererConfig = any> extend
|
|
|
460
343
|
*
|
|
461
344
|
* @see https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.6.4.2
|
|
462
345
|
*/
|
|
463
|
-
additionalItems?: JsonSchema
|
|
346
|
+
additionalItems?: JsonSchema | boolean;
|
|
464
347
|
/**
|
|
465
348
|
* Schema applied to object properties not listed in `properties` and not matched
|
|
466
349
|
* by any `patternProperties` key; ignored for non-object values.
|
|
@@ -480,7 +363,7 @@ export interface JsonSchemaAny<Config extends SchemaRendererConfig = any> extend
|
|
|
480
363
|
*
|
|
481
364
|
* @see https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.6.5.6
|
|
482
365
|
*/
|
|
483
|
-
additionalProperties?: JsonSchema
|
|
366
|
+
additionalProperties?: JsonSchema | boolean;
|
|
484
367
|
/**
|
|
485
368
|
* Sub-schema that **at least one** array item must satisfy; ignored for non-array
|
|
486
369
|
* values. An empty array always fails `contains`.
|
|
@@ -494,7 +377,7 @@ export interface JsonSchemaAny<Config extends SchemaRendererConfig = any> extend
|
|
|
494
377
|
*
|
|
495
378
|
* @see https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.6.4.6
|
|
496
379
|
*/
|
|
497
|
-
contains?: JsonSchema
|
|
380
|
+
contains?: JsonSchema | boolean;
|
|
498
381
|
/**
|
|
499
382
|
* Property dependencies on an object value; ignored for non-object values.
|
|
500
383
|
* Each key triggers a constraint only when that property is present in the value.
|
|
@@ -517,7 +400,7 @@ export interface JsonSchemaAny<Config extends SchemaRendererConfig = any> extend
|
|
|
517
400
|
* @see https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.6.5.7
|
|
518
401
|
*/
|
|
519
402
|
dependencies?: {
|
|
520
|
-
[key: string]: string[] | JsonSchema
|
|
403
|
+
[key: string]: string[] | JsonSchema;
|
|
521
404
|
};
|
|
522
405
|
/**
|
|
523
406
|
* Strict upper bound for numeric values (value must be strictly less than this);
|
|
@@ -564,7 +447,7 @@ export interface JsonSchemaAny<Config extends SchemaRendererConfig = any> extend
|
|
|
564
447
|
*
|
|
565
448
|
* @see https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.6.4.1
|
|
566
449
|
*/
|
|
567
|
-
items?: JsonSchema
|
|
450
|
+
items?: JsonSchema | JsonSchema[];
|
|
568
451
|
/**
|
|
569
452
|
* Inclusive upper bound for numeric values; ignored for non-numeric values.
|
|
570
453
|
*
|
|
@@ -698,7 +581,7 @@ export interface JsonSchemaAny<Config extends SchemaRendererConfig = any> extend
|
|
|
698
581
|
* @see https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.6.5.5
|
|
699
582
|
*/
|
|
700
583
|
patternProperties?: {
|
|
701
|
-
[key: string]: JsonSchema
|
|
584
|
+
[key: string]: JsonSchema;
|
|
702
585
|
};
|
|
703
586
|
/**
|
|
704
587
|
* Map of property name to schema. Each listed property's value must validate
|
|
@@ -714,7 +597,7 @@ export interface JsonSchemaAny<Config extends SchemaRendererConfig = any> extend
|
|
|
714
597
|
* @see https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.6.5.4
|
|
715
598
|
*/
|
|
716
599
|
properties?: {
|
|
717
|
-
[key: string]: JsonSchema
|
|
600
|
+
[key: string]: JsonSchema;
|
|
718
601
|
};
|
|
719
602
|
/**
|
|
720
603
|
* Schema each property **name** must satisfy; ignored for non-object values.
|
|
@@ -727,7 +610,7 @@ export interface JsonSchemaAny<Config extends SchemaRendererConfig = any> extend
|
|
|
727
610
|
*
|
|
728
611
|
* @see https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.6.5.8
|
|
729
612
|
*/
|
|
730
|
-
propertyNames?: JsonSchemaString
|
|
613
|
+
propertyNames?: JsonSchemaString;
|
|
731
614
|
/**
|
|
732
615
|
* Names of properties that must be present on the object value; ignored for
|
|
733
616
|
* non-object values.
|
|
@@ -744,6 +627,14 @@ export interface JsonSchemaAny<Config extends SchemaRendererConfig = any> extend
|
|
|
744
627
|
* @see https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.6.5.3
|
|
745
628
|
*/
|
|
746
629
|
required?: string[];
|
|
630
|
+
stringNumber?: {
|
|
631
|
+
type?: JsonSchemaType.Number | JsonSchemaType.Integer | JsonSchemaType.Null | (JsonSchemaType.Number | JsonSchemaType.Integer | JsonSchemaType.Null)[];
|
|
632
|
+
exclusiveMaximum?: string;
|
|
633
|
+
exclusiveMinimum?: string;
|
|
634
|
+
maximum?: string;
|
|
635
|
+
minimum?: string;
|
|
636
|
+
multipleOf?: string;
|
|
637
|
+
};
|
|
747
638
|
/**
|
|
748
639
|
* When `true`, every array item must be unique; ignored for non-array values.
|
|
749
640
|
*
|
|
@@ -760,7 +651,7 @@ export interface JsonSchemaAny<Config extends SchemaRendererConfig = any> extend
|
|
|
760
651
|
/**
|
|
761
652
|
* Schema for array values (`type: JsonSchemaType.Array`).
|
|
762
653
|
*/
|
|
763
|
-
export interface JsonSchemaArray
|
|
654
|
+
export interface JsonSchemaArray extends JsonSchemaBase<NodeType.Array, JsonSchemaArray, ArrayValue> {
|
|
764
655
|
/**
|
|
765
656
|
* Declares this schema as describing an array value (or `null`, or a union of
|
|
766
657
|
* the two for nullable arrays).
|
|
@@ -792,7 +683,7 @@ export interface JsonSchemaArray<Config extends SchemaRendererConfig = any> exte
|
|
|
792
683
|
*
|
|
793
684
|
* @see https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.6.4.2
|
|
794
685
|
*/
|
|
795
|
-
additionalItems?: JsonSchema
|
|
686
|
+
additionalItems?: JsonSchema | boolean;
|
|
796
687
|
/**
|
|
797
688
|
* Sub-schema that **at least one** array item must satisfy. An empty array
|
|
798
689
|
* always fails `contains`.
|
|
@@ -806,7 +697,7 @@ export interface JsonSchemaArray<Config extends SchemaRendererConfig = any> exte
|
|
|
806
697
|
*
|
|
807
698
|
* @see https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.6.4.6
|
|
808
699
|
*/
|
|
809
|
-
contains?: JsonSchema
|
|
700
|
+
contains?: JsonSchema | boolean;
|
|
810
701
|
/**
|
|
811
702
|
* Constrains array items. Two forms:
|
|
812
703
|
*
|
|
@@ -824,7 +715,7 @@ export interface JsonSchemaArray<Config extends SchemaRendererConfig = any> exte
|
|
|
824
715
|
*
|
|
825
716
|
* @see https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.6.4.1
|
|
826
717
|
*/
|
|
827
|
-
items?: JsonSchema
|
|
718
|
+
items?: JsonSchema | JsonSchema[];
|
|
828
719
|
/**
|
|
829
720
|
* Maximum number of items the array may contain.
|
|
830
721
|
*
|
|
@@ -859,7 +750,7 @@ export interface JsonSchemaArray<Config extends SchemaRendererConfig = any> exte
|
|
|
859
750
|
/**
|
|
860
751
|
* Schema for boolean values (`type: JsonSchemaType.Boolean`).
|
|
861
752
|
*/
|
|
862
|
-
export interface JsonSchemaBoolean
|
|
753
|
+
export interface JsonSchemaBoolean extends JsonSchemaBase<NodeType.Boolean, JsonSchemaBoolean, boolean> {
|
|
863
754
|
/**
|
|
864
755
|
* Declares this schema as describing a boolean value (or `null`, or a union of
|
|
865
756
|
* the two for nullable booleans).
|
|
@@ -878,7 +769,7 @@ export interface JsonSchemaBoolean<Config extends SchemaRendererConfig = any> ex
|
|
|
878
769
|
/**
|
|
879
770
|
* Schema for numeric values (`type: JsonSchemaType.Number`).
|
|
880
771
|
*/
|
|
881
|
-
export interface JsonSchemaNumber
|
|
772
|
+
export interface JsonSchemaNumber extends JsonSchemaBase<NodeType.Number, JsonSchemaNumber, number> {
|
|
882
773
|
/**
|
|
883
774
|
* Declares this schema as describing a numeric value.
|
|
884
775
|
*
|
|
@@ -960,7 +851,7 @@ export interface JsonSchemaNumber<Config extends SchemaRendererConfig = any> ext
|
|
|
960
851
|
/**
|
|
961
852
|
* Schema for object values (`type: JsonSchemaType.Object`).
|
|
962
853
|
*/
|
|
963
|
-
export interface JsonSchemaObject
|
|
854
|
+
export interface JsonSchemaObject extends JsonSchemaBase<NodeType.Object, JsonSchemaObject, ObjectValue> {
|
|
964
855
|
/**
|
|
965
856
|
* Declares this schema as describing an object value (or `null`, or a union of
|
|
966
857
|
* the two for nullable objects).
|
|
@@ -1000,7 +891,7 @@ export interface JsonSchemaObject<Config extends SchemaRendererConfig = any> ext
|
|
|
1000
891
|
*
|
|
1001
892
|
* @see https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.6.5.6
|
|
1002
893
|
*/
|
|
1003
|
-
additionalProperties?: JsonSchema
|
|
894
|
+
additionalProperties?: JsonSchema | boolean;
|
|
1004
895
|
/**
|
|
1005
896
|
* Property dependencies. Each key triggers a constraint only when that property
|
|
1006
897
|
* is present in the value.
|
|
@@ -1022,7 +913,7 @@ export interface JsonSchemaObject<Config extends SchemaRendererConfig = any> ext
|
|
|
1022
913
|
* @see https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.6.5.7
|
|
1023
914
|
*/
|
|
1024
915
|
dependencies?: {
|
|
1025
|
-
[key: string]: string[] | JsonSchemaObject
|
|
916
|
+
[key: string]: string[] | JsonSchemaObject;
|
|
1026
917
|
};
|
|
1027
918
|
/**
|
|
1028
919
|
* Maximum number of own properties the object may declare.
|
|
@@ -1059,7 +950,7 @@ export interface JsonSchemaObject<Config extends SchemaRendererConfig = any> ext
|
|
|
1059
950
|
* @see https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.6.5.5
|
|
1060
951
|
*/
|
|
1061
952
|
patternProperties?: {
|
|
1062
|
-
[key: string]: JsonSchema
|
|
953
|
+
[key: string]: JsonSchema;
|
|
1063
954
|
};
|
|
1064
955
|
/**
|
|
1065
956
|
* Map of property name to schema. Each listed property's value must validate
|
|
@@ -1080,7 +971,7 @@ export interface JsonSchemaObject<Config extends SchemaRendererConfig = any> ext
|
|
|
1080
971
|
* @see https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.6.5.4
|
|
1081
972
|
*/
|
|
1082
973
|
properties?: {
|
|
1083
|
-
[key: string]: JsonSchema
|
|
974
|
+
[key: string]: JsonSchema;
|
|
1084
975
|
};
|
|
1085
976
|
/**
|
|
1086
977
|
* Schema each property **name** must satisfy. Object keys are always strings, so
|
|
@@ -1093,7 +984,7 @@ export interface JsonSchemaObject<Config extends SchemaRendererConfig = any> ext
|
|
|
1093
984
|
*
|
|
1094
985
|
* @see https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.6.5.8
|
|
1095
986
|
*/
|
|
1096
|
-
propertyNames?: JsonSchema
|
|
987
|
+
propertyNames?: JsonSchema;
|
|
1097
988
|
/**
|
|
1098
989
|
* Names of properties that must be present on the object value.
|
|
1099
990
|
*
|
|
@@ -1113,7 +1004,7 @@ export interface JsonSchemaObject<Config extends SchemaRendererConfig = any> ext
|
|
|
1113
1004
|
/**
|
|
1114
1005
|
* Schema for string values (`type: JsonSchemaType.String`).
|
|
1115
1006
|
*/
|
|
1116
|
-
export interface JsonSchemaString
|
|
1007
|
+
export interface JsonSchemaString extends JsonSchemaBase<NodeType.String, JsonSchemaString, string> {
|
|
1117
1008
|
/**
|
|
1118
1009
|
* Declares this schema as describing a string value (or `null`, or a union of
|
|
1119
1010
|
* the two for nullable strings).
|
|
@@ -1172,6 +1063,14 @@ export interface JsonSchemaString<Config extends SchemaRendererConfig = any> ext
|
|
|
1172
1063
|
* @see https://json-schema.org/draft-07/json-schema-validation.html#rfc.section.6.3.3
|
|
1173
1064
|
*/
|
|
1174
1065
|
pattern?: string;
|
|
1066
|
+
stringNumber?: {
|
|
1067
|
+
type?: JsonSchemaType.Number | JsonSchemaType.Integer | JsonSchemaType.Null | (JsonSchemaType.Number | JsonSchemaType.Integer | JsonSchemaType.Null)[];
|
|
1068
|
+
exclusiveMaximum?: string;
|
|
1069
|
+
exclusiveMinimum?: string;
|
|
1070
|
+
maximum?: string;
|
|
1071
|
+
minimum?: string;
|
|
1072
|
+
multipleOf?: string;
|
|
1073
|
+
};
|
|
1175
1074
|
}
|
|
1176
1075
|
/**
|
|
1177
1076
|
* Discriminated union of every supported JSON Schema variant. Narrow with the `type` keyword to access type-specific fields.
|
|
@@ -1182,5 +1081,5 @@ export interface JsonSchemaString<Config extends SchemaRendererConfig = any> ext
|
|
|
1182
1081
|
* @example
|
|
1183
1082
|
* const schema: JsonSchema = { type: JsonSchemaType.Object, properties: { id: { type: JsonSchemaType.Number } } };
|
|
1184
1083
|
*/
|
|
1185
|
-
export type JsonSchema
|
|
1084
|
+
export type JsonSchema = JsonSchemaAny | JsonSchemaArray | JsonSchemaBoolean | JsonSchemaNumber | JsonSchemaObject | JsonSchemaString;
|
|
1186
1085
|
export {};
|