@gravity-ui/dynamic-forms 5.18.0 → 5.19.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/unstable/core/Entity/Entity.js +78 -0
- package/build/cjs/lib/unstable/core/Entity/index.js +5 -0
- package/build/cjs/lib/unstable/core/Entity/types.js +2 -0
- package/build/cjs/lib/unstable/core/Entity/utils.js +40 -0
- package/build/cjs/lib/unstable/core/SchemaRenderer/SchemaRenderer.js +12 -0
- package/build/cjs/lib/unstable/core/SchemaRenderer/index.js +5 -0
- package/build/cjs/lib/unstable/core/constants.js +28 -0
- package/build/cjs/lib/unstable/core/index.js +15 -0
- package/build/cjs/lib/unstable/core/types/components.js +2 -0
- package/build/cjs/lib/unstable/core/types/config.js +2 -0
- package/build/cjs/lib/unstable/core/types/helpers.js +2 -0
- package/build/cjs/lib/unstable/core/types/index.js +8 -0
- package/build/cjs/lib/unstable/core/types/schema.js +2 -0
- package/build/cjs/lib/unstable/core/types/validation.js +2 -0
- package/build/cjs/lib/unstable/core/types/values.js +2 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/constants.js +4 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/hooks/index.js +7 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/hooks/useEntitiesState.js +25 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/hooks/useSchemaRendererMutators.js +17 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/index.js +10 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/async-validation/async-validation.js +35 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/async-validation/index.js +5 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/async-validation/types.js +2 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/external-errors/external-errors.js +60 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/external-errors/index.js +5 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/external-errors/types.js +2 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/index.js +16 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/schema-mutators/index.js +5 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/schema-mutators/schema-mutators.js +81 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/schema-mutators/types.js +2 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/trigger-fields/index.js +5 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/trigger-fields/trigger-fields.js +12 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/trigger-fields/types.js +2 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/types.js +2 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/useSchemaRenderer.js +86 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/common.js +11 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/get-ajv-validate.js +39 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/get-validate.js +67 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/index.js +7 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/process-ajv-error.js +51 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/process-ajv-validate-errors.js +43 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/process-entity-parameters-error.js +36 -0
- package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/process-errors-state.js +17 -0
- package/build/cjs/lib/unstable/core/utils/common.js +180 -0
- package/build/cjs/lib/unstable/core/utils/index.js +4 -0
- package/build/cjs/lib/unstable/kit/Accordeon.js +31 -0
- package/build/cjs/lib/unstable/kit/Any.js +21 -0
- package/build/cjs/lib/unstable/kit/ArrayBase.css +23 -0
- package/build/cjs/lib/unstable/kit/ArrayBase.js +101 -0
- package/build/cjs/lib/unstable/kit/MultiSelect.css +6 -0
- package/build/cjs/lib/unstable/kit/MultiSelect.js +66 -0
- package/build/cjs/lib/unstable/kit/ObjectBase.css +10 -0
- package/build/cjs/lib/unstable/kit/ObjectBase.js +71 -0
- package/build/cjs/lib/unstable/kit/Row.css +73 -0
- package/build/cjs/lib/unstable/kit/Row.js +50 -0
- package/build/cjs/lib/unstable/kit/Text.js +259 -0
- package/build/cjs/lib/unstable/kit/components/ArrayRemoveButton/ArrayRemoveButton.js +29 -0
- package/build/cjs/lib/unstable/kit/components/ArrayRemoveButton/index.js +5 -0
- package/build/cjs/lib/unstable/kit/components/ControlError/ControlError.css +33 -0
- package/build/cjs/lib/unstable/kit/components/ControlError/ControlError.js +15 -0
- package/build/cjs/lib/unstable/kit/components/ControlError/index.js +5 -0
- package/build/cjs/lib/unstable/kit/components/HTMLContent/HTMLContent.js +11 -0
- package/build/cjs/lib/unstable/kit/components/HTMLContent/index.js +5 -0
- package/build/cjs/lib/unstable/kit/components/index.js +9 -0
- package/build/cjs/lib/unstable/kit/config.js +68 -0
- package/build/cjs/lib/unstable/kit/constants/config.js +62 -0
- package/build/cjs/lib/unstable/kit/constants/index.js +6 -0
- package/build/cjs/lib/unstable/kit/controls/ArrayBase/ArrayBase.js +46 -0
- package/build/cjs/lib/unstable/kit/controls/ArrayBase/index.js +4 -0
- package/build/cjs/lib/unstable/kit/controls/Checkbox/Checkbox.css +5 -0
- package/build/cjs/lib/unstable/kit/controls/Checkbox/Checkbox.js +16 -0
- package/build/cjs/lib/unstable/kit/controls/Checkbox/index.js +5 -0
- package/build/cjs/lib/unstable/kit/controls/CheckboxGroup/CheckboxGroup.css +3 -0
- package/build/cjs/lib/unstable/kit/controls/CheckboxGroup/CheckboxGroup.js +37 -0
- package/build/cjs/lib/unstable/kit/controls/CheckboxGroup/index.js +5 -0
- package/build/cjs/lib/unstable/kit/controls/ColorPicker/ColorPicker.js +24 -0
- package/build/cjs/lib/unstable/kit/controls/ColorPicker/index.js +5 -0
- package/build/cjs/lib/unstable/kit/controls/DateInput/DateInput.css +3 -0
- package/build/cjs/lib/unstable/kit/controls/DateInput/DateInput.js +55 -0
- package/build/cjs/lib/unstable/kit/controls/DateInput/index.js +5 -0
- package/build/cjs/lib/unstable/kit/controls/MultiSelect/MultiSelect.js +35 -0
- package/build/cjs/lib/unstable/kit/controls/MultiSelect/index.js +5 -0
- package/build/cjs/lib/unstable/kit/controls/NumberBase/Number.js +12 -0
- package/build/cjs/lib/unstable/kit/controls/NumberBase/index.js +5 -0
- package/build/cjs/lib/unstable/kit/controls/ObjectBase/ObjectBase.js +33 -0
- package/build/cjs/lib/unstable/kit/controls/ObjectBase/index.js +5 -0
- package/build/cjs/lib/unstable/kit/controls/Password/Password.js +12 -0
- package/build/cjs/lib/unstable/kit/controls/Password/index.js +5 -0
- package/build/cjs/lib/unstable/kit/controls/RadioGroup/RadioGroup.css +3 -0
- package/build/cjs/lib/unstable/kit/controls/RadioGroup/RadioGroup.js +24 -0
- package/build/cjs/lib/unstable/kit/controls/RadioGroup/index.js +5 -0
- package/build/cjs/lib/unstable/kit/controls/RangeSlider/RangeSlider.css +3 -0
- package/build/cjs/lib/unstable/kit/controls/RangeSlider/RangeSlider.js +33 -0
- package/build/cjs/lib/unstable/kit/controls/RangeSlider/index.js +5 -0
- package/build/cjs/lib/unstable/kit/controls/Select/Select.js +32 -0
- package/build/cjs/lib/unstable/kit/controls/Select/index.js +5 -0
- package/build/cjs/lib/unstable/kit/controls/Slider/Slider.css +3 -0
- package/build/cjs/lib/unstable/kit/controls/Slider/Slider.js +19 -0
- package/build/cjs/lib/unstable/kit/controls/Slider/index.js +5 -0
- package/build/cjs/lib/unstable/kit/controls/StringBase/StringBase.js +12 -0
- package/build/cjs/lib/unstable/kit/controls/StringBase/index.js +5 -0
- package/build/cjs/lib/unstable/kit/controls/Switch/Switch.css +5 -0
- package/build/cjs/lib/unstable/kit/controls/Switch/Switch.js +16 -0
- package/build/cjs/lib/unstable/kit/controls/Switch/index.js +5 -0
- package/build/cjs/lib/unstable/kit/controls/TextArea/TextArea.js +12 -0
- package/build/cjs/lib/unstable/kit/controls/TextArea/index.js +5 -0
- package/build/cjs/lib/unstable/kit/controls/index.js +35 -0
- package/build/cjs/lib/unstable/kit/styles/functions.css +0 -0
- package/build/cjs/lib/unstable/kit/styles/variables.css +0 -0
- package/build/cjs/lib/unstable/kit/utils/cn.js +6 -0
- package/build/cjs/lib/unstable/kit/utils/common.js +27 -0
- package/build/cjs/lib/unstable/kit/utils/index.js +11 -0
- package/build/cjs/lib/unstable/kit/wrappers/Row/Row.css +27 -0
- package/build/cjs/lib/unstable/kit/wrappers/Row/Row.js +34 -0
- package/build/cjs/lib/unstable/kit/wrappers/Row/index.js +5 -0
- package/build/cjs/lib/unstable/kit/wrappers/Transparent/Transparent.css +6 -0
- package/build/cjs/lib/unstable/kit/wrappers/Transparent/Transparent.js +15 -0
- package/build/cjs/lib/unstable/kit/wrappers/Transparent/index.js +5 -0
- package/build/cjs/lib/unstable/kit/wrappers/index.js +7 -0
- package/build/cjs/unstable.js +10 -0
- package/build/esm/lib/unstable/core/Entity/Entity.d.ts +10 -0
- package/build/esm/lib/unstable/core/Entity/Entity.js +74 -0
- package/build/esm/lib/unstable/core/Entity/index.d.ts +2 -0
- package/build/esm/lib/unstable/core/Entity/index.js +1 -0
- package/build/esm/lib/unstable/core/Entity/types.d.ts +27 -0
- package/build/esm/lib/unstable/core/Entity/types.js +1 -0
- package/build/esm/lib/unstable/core/Entity/utils.d.ts +3 -0
- package/build/esm/lib/unstable/core/Entity/utils.js +35 -0
- package/build/esm/lib/unstable/core/SchemaRenderer/SchemaRenderer.d.ts +5 -0
- package/build/esm/lib/unstable/core/SchemaRenderer/SchemaRenderer.js +8 -0
- package/build/esm/lib/unstable/core/SchemaRenderer/index.d.ts +1 -0
- package/build/esm/lib/unstable/core/SchemaRenderer/index.js +1 -0
- package/build/esm/lib/unstable/core/constants.d.ts +22 -0
- package/build/esm/lib/unstable/core/constants.js +25 -0
- package/build/esm/lib/unstable/core/index.d.ts +5 -0
- package/build/esm/lib/unstable/core/index.js +4 -0
- package/build/esm/lib/unstable/core/types/components.d.ts +29 -0
- package/build/esm/lib/unstable/core/types/components.js +1 -0
- package/build/esm/lib/unstable/core/types/config.d.ts +36 -0
- package/build/esm/lib/unstable/core/types/config.js +1 -0
- package/build/esm/lib/unstable/core/types/helpers.d.ts +18 -0
- package/build/esm/lib/unstable/core/types/helpers.js +1 -0
- package/build/esm/lib/unstable/core/types/index.d.ts +5 -0
- package/build/esm/lib/unstable/core/types/index.js +5 -0
- package/build/esm/lib/unstable/core/types/schema.d.ts +1186 -0
- package/build/esm/lib/unstable/core/types/schema.js +1 -0
- package/build/esm/lib/unstable/core/types/validation.d.ts +39 -0
- package/build/esm/lib/unstable/core/types/validation.js +1 -0
- package/build/esm/lib/unstable/core/types/values.d.ts +4 -0
- package/build/esm/lib/unstable/core/types/values.js +1 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/constants.d.ts +1 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/constants.js +1 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/hooks/index.d.ts +2 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/hooks/index.js +2 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/hooks/useEntitiesState.d.ts +7 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/hooks/useEntitiesState.js +20 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/hooks/useSchemaRendererMutators.d.ts +10 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/hooks/useSchemaRendererMutators.js +13 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/index.d.ts +3 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/index.js +3 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/async-validation/async-validation.d.ts +3 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/async-validation/async-validation.js +29 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/async-validation/index.d.ts +2 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/async-validation/index.js +2 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/async-validation/types.d.ts +34 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/async-validation/types.js +1 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/external-errors/external-errors.d.ts +3 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/external-errors/external-errors.js +54 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/external-errors/index.d.ts +2 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/external-errors/index.js +2 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/external-errors/types.d.ts +25 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/external-errors/types.js +1 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/index.d.ts +13 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/index.js +13 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/schema-mutators/index.d.ts +2 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/schema-mutators/index.js +2 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/schema-mutators/schema-mutators.d.ts +3 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/schema-mutators/schema-mutators.js +75 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/schema-mutators/types.d.ts +26 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/schema-mutators/types.js +1 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/trigger-fields/index.d.ts +2 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/trigger-fields/index.js +2 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/trigger-fields/trigger-fields.d.ts +2 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/trigger-fields/trigger-fields.js +8 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/trigger-fields/types.d.ts +6 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/mutators/trigger-fields/types.js +1 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/types.d.ts +22 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/types.js +1 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/useSchemaRenderer.d.ts +37 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/useSchemaRenderer.js +81 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/common.d.ts +1 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/common.js +7 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/get-ajv-validate.d.ts +11 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/get-ajv-validate.js +34 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/get-validate.d.ts +14 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/get-validate.js +62 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/index.d.ts +2 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/index.js +2 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/process-ajv-error.d.ts +10 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/process-ajv-error.js +46 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/process-ajv-validate-errors.d.ts +20 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/process-ajv-validate-errors.js +39 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/process-entity-parameters-error.d.ts +15 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/process-entity-parameters-error.js +31 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/process-errors-state.d.ts +12 -0
- package/build/esm/lib/unstable/core/useSchemaRenderer/utils/process-errors-state.js +12 -0
- package/build/esm/lib/unstable/core/utils/common.d.ts +49 -0
- package/build/esm/lib/unstable/core/utils/common.js +165 -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/Accordeon.d.ts +3 -0
- package/build/esm/lib/unstable/kit/Accordeon.js +26 -0
- package/build/esm/lib/unstable/kit/Any.d.ts +2 -0
- package/build/esm/lib/unstable/kit/Any.js +16 -0
- package/build/esm/lib/unstable/kit/ArrayBase.css +23 -0
- package/build/esm/lib/unstable/kit/ArrayBase.d.ts +3 -0
- package/build/esm/lib/unstable/kit/ArrayBase.js +97 -0
- package/build/esm/lib/unstable/kit/MultiSelect.css +6 -0
- package/build/esm/lib/unstable/kit/MultiSelect.d.ts +7 -0
- package/build/esm/lib/unstable/kit/MultiSelect.js +62 -0
- package/build/esm/lib/unstable/kit/ObjectBase.css +10 -0
- package/build/esm/lib/unstable/kit/ObjectBase.d.ts +8 -0
- package/build/esm/lib/unstable/kit/ObjectBase.js +66 -0
- package/build/esm/lib/unstable/kit/Row.css +73 -0
- package/build/esm/lib/unstable/kit/Row.d.ts +11 -0
- package/build/esm/lib/unstable/kit/Row.js +47 -0
- package/build/esm/lib/unstable/kit/Text.d.ts +6 -0
- package/build/esm/lib/unstable/kit/Text.js +255 -0
- package/build/esm/lib/unstable/kit/components/ArrayRemoveButton/ArrayRemoveButton.d.ts +5 -0
- package/build/esm/lib/unstable/kit/components/ArrayRemoveButton/ArrayRemoveButton.js +24 -0
- package/build/esm/lib/unstable/kit/components/ArrayRemoveButton/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/components/ArrayRemoveButton/index.js +1 -0
- package/build/esm/lib/unstable/kit/components/ControlError/ControlError.css +33 -0
- package/build/esm/lib/unstable/kit/components/ControlError/ControlError.d.ts +9 -0
- package/build/esm/lib/unstable/kit/components/ControlError/ControlError.js +11 -0
- package/build/esm/lib/unstable/kit/components/ControlError/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/components/ControlError/index.js +1 -0
- package/build/esm/lib/unstable/kit/components/HTMLContent/HTMLContent.d.ts +6 -0
- package/build/esm/lib/unstable/kit/components/HTMLContent/HTMLContent.js +7 -0
- package/build/esm/lib/unstable/kit/components/HTMLContent/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/components/HTMLContent/index.js +1 -0
- package/build/esm/lib/unstable/kit/components/index.d.ts +3 -0
- package/build/esm/lib/unstable/kit/components/index.js +3 -0
- package/build/esm/lib/unstable/kit/config.d.ts +95 -0
- package/build/esm/lib/unstable/kit/config.js +65 -0
- package/build/esm/lib/unstable/kit/constants/config.d.ts +112 -0
- package/build/esm/lib/unstable/kit/constants/config.js +59 -0
- 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/controls/ArrayBase/ArrayBase.d.ts +8 -0
- package/build/esm/lib/unstable/kit/controls/ArrayBase/ArrayBase.js +42 -0
- package/build/esm/lib/unstable/kit/controls/ArrayBase/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/controls/ArrayBase/index.js +1 -0
- package/build/esm/lib/unstable/kit/controls/Checkbox/Checkbox.css +5 -0
- package/build/esm/lib/unstable/kit/controls/Checkbox/Checkbox.d.ts +7 -0
- package/build/esm/lib/unstable/kit/controls/Checkbox/Checkbox.js +13 -0
- package/build/esm/lib/unstable/kit/controls/Checkbox/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/controls/Checkbox/index.js +1 -0
- package/build/esm/lib/unstable/kit/controls/CheckboxGroup/CheckboxGroup.css +3 -0
- package/build/esm/lib/unstable/kit/controls/CheckboxGroup/CheckboxGroup.d.ts +10 -0
- package/build/esm/lib/unstable/kit/controls/CheckboxGroup/CheckboxGroup.js +34 -0
- package/build/esm/lib/unstable/kit/controls/CheckboxGroup/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/controls/CheckboxGroup/index.js +1 -0
- package/build/esm/lib/unstable/kit/controls/ColorPicker/ColorPicker.d.ts +6 -0
- package/build/esm/lib/unstable/kit/controls/ColorPicker/ColorPicker.js +21 -0
- package/build/esm/lib/unstable/kit/controls/ColorPicker/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/controls/ColorPicker/index.js +1 -0
- package/build/esm/lib/unstable/kit/controls/DateInput/DateInput.css +3 -0
- package/build/esm/lib/unstable/kit/controls/DateInput/DateInput.d.ts +9 -0
- package/build/esm/lib/unstable/kit/controls/DateInput/DateInput.js +53 -0
- package/build/esm/lib/unstable/kit/controls/DateInput/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/controls/DateInput/index.js +1 -0
- package/build/esm/lib/unstable/kit/controls/MultiSelect/MultiSelect.d.ts +8 -0
- package/build/esm/lib/unstable/kit/controls/MultiSelect/MultiSelect.js +32 -0
- package/build/esm/lib/unstable/kit/controls/MultiSelect/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/controls/MultiSelect/index.js +1 -0
- package/build/esm/lib/unstable/kit/controls/NumberBase/Number.d.ts +6 -0
- package/build/esm/lib/unstable/kit/controls/NumberBase/Number.js +8 -0
- package/build/esm/lib/unstable/kit/controls/NumberBase/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/controls/NumberBase/index.js +1 -0
- package/build/esm/lib/unstable/kit/controls/ObjectBase/ObjectBase.d.ts +8 -0
- package/build/esm/lib/unstable/kit/controls/ObjectBase/ObjectBase.js +29 -0
- package/build/esm/lib/unstable/kit/controls/ObjectBase/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/controls/ObjectBase/index.js +1 -0
- package/build/esm/lib/unstable/kit/controls/Password/Password.d.ts +6 -0
- package/build/esm/lib/unstable/kit/controls/Password/Password.js +8 -0
- package/build/esm/lib/unstable/kit/controls/Password/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/controls/Password/index.js +1 -0
- package/build/esm/lib/unstable/kit/controls/RadioGroup/RadioGroup.css +3 -0
- package/build/esm/lib/unstable/kit/controls/RadioGroup/RadioGroup.d.ts +9 -0
- package/build/esm/lib/unstable/kit/controls/RadioGroup/RadioGroup.js +22 -0
- package/build/esm/lib/unstable/kit/controls/RadioGroup/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/controls/RadioGroup/index.js +1 -0
- package/build/esm/lib/unstable/kit/controls/RangeSlider/RangeSlider.css +3 -0
- package/build/esm/lib/unstable/kit/controls/RangeSlider/RangeSlider.d.ts +8 -0
- package/build/esm/lib/unstable/kit/controls/RangeSlider/RangeSlider.js +31 -0
- package/build/esm/lib/unstable/kit/controls/RangeSlider/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/controls/RangeSlider/index.js +1 -0
- package/build/esm/lib/unstable/kit/controls/Select/Select.d.ts +9 -0
- package/build/esm/lib/unstable/kit/controls/Select/Select.js +29 -0
- package/build/esm/lib/unstable/kit/controls/Select/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/controls/Select/index.js +1 -0
- package/build/esm/lib/unstable/kit/controls/Slider/Slider.css +3 -0
- package/build/esm/lib/unstable/kit/controls/Slider/Slider.d.ts +7 -0
- package/build/esm/lib/unstable/kit/controls/Slider/Slider.js +16 -0
- package/build/esm/lib/unstable/kit/controls/Slider/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/controls/Slider/index.js +1 -0
- package/build/esm/lib/unstable/kit/controls/StringBase/StringBase.d.ts +6 -0
- package/build/esm/lib/unstable/kit/controls/StringBase/StringBase.js +8 -0
- package/build/esm/lib/unstable/kit/controls/StringBase/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/controls/StringBase/index.js +1 -0
- package/build/esm/lib/unstable/kit/controls/Switch/Switch.css +5 -0
- package/build/esm/lib/unstable/kit/controls/Switch/Switch.d.ts +7 -0
- package/build/esm/lib/unstable/kit/controls/Switch/Switch.js +13 -0
- package/build/esm/lib/unstable/kit/controls/Switch/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/controls/Switch/index.js +1 -0
- package/build/esm/lib/unstable/kit/controls/TextArea/TextArea.d.ts +6 -0
- package/build/esm/lib/unstable/kit/controls/TextArea/TextArea.js +8 -0
- package/build/esm/lib/unstable/kit/controls/TextArea/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/controls/TextArea/index.js +1 -0
- package/build/esm/lib/unstable/kit/controls/index.d.ts +16 -0
- package/build/esm/lib/unstable/kit/controls/index.js +16 -0
- package/build/esm/lib/unstable/kit/styles/functions.css +0 -0
- package/build/esm/lib/unstable/kit/styles/variables.css +0 -0
- package/build/esm/lib/unstable/kit/utils/cn.d.ts +1 -0
- package/build/esm/lib/unstable/kit/utils/cn.js +3 -0
- package/build/esm/lib/unstable/kit/utils/common.d.ts +7 -0
- package/build/esm/lib/unstable/kit/utils/common.js +19 -0
- package/build/esm/lib/unstable/kit/utils/index.d.ts +2 -0
- package/build/esm/lib/unstable/kit/utils/index.js +2 -0
- package/build/esm/lib/unstable/kit/wrappers/Row/Row.css +27 -0
- package/build/esm/lib/unstable/kit/wrappers/Row/Row.d.ts +7 -0
- package/build/esm/lib/unstable/kit/wrappers/Row/Row.js +31 -0
- package/build/esm/lib/unstable/kit/wrappers/Row/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/wrappers/Row/index.js +1 -0
- package/build/esm/lib/unstable/kit/wrappers/Transparent/Transparent.css +6 -0
- package/build/esm/lib/unstable/kit/wrappers/Transparent/Transparent.d.ts +4 -0
- package/build/esm/lib/unstable/kit/wrappers/Transparent/Transparent.js +12 -0
- package/build/esm/lib/unstable/kit/wrappers/Transparent/index.d.ts +1 -0
- package/build/esm/lib/unstable/kit/wrappers/Transparent/index.js +1 -0
- package/build/esm/lib/unstable/kit/wrappers/index.d.ts +2 -0
- package/build/esm/lib/unstable/kit/wrappers/index.js +2 -0
- package/build/esm/unstable.d.ts +4 -0
- package/build/esm/unstable.js +4 -0
- package/package.json +24 -2
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
import { type SchemaRendererConfig } from '../../core';
|
|
2
|
+
export declare const untypedConfig: {
|
|
3
|
+
readonly any: {
|
|
4
|
+
readonly controls: {
|
|
5
|
+
readonly date_input: {
|
|
6
|
+
readonly Component: import("react").NamedExoticComponent<import("../../core").ControlProps<import("../../core").JsonSchemaAny<any>, import("../controls").DateInputProps, {}>>;
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
readonly views: {};
|
|
10
|
+
readonly wrappers: {
|
|
11
|
+
readonly row: import("react").NamedExoticComponent<import("../../core").WrapperProps<import("../../core").JsonSchema, import("../wrappers").RowProps>>;
|
|
12
|
+
readonly transparent: import("react").NamedExoticComponent<import("../../core").WrapperProps<import("../../core").JsonSchema, {}>>;
|
|
13
|
+
};
|
|
14
|
+
readonly validators: {};
|
|
15
|
+
};
|
|
16
|
+
readonly array: {
|
|
17
|
+
readonly controls: {
|
|
18
|
+
readonly base: {
|
|
19
|
+
readonly Component: import("react").NamedExoticComponent<import("../../core").ControlProps<import("../../core").JsonSchemaArray<any>, import("../controls").ArrayBaseProps, {}>>;
|
|
20
|
+
};
|
|
21
|
+
readonly checkbox_group: {
|
|
22
|
+
readonly Component: import("react").NamedExoticComponent<import("../../core").ControlProps<import("../../core").JsonSchemaArray<any>, import("../controls").CheckboxGroupProps, {}>>;
|
|
23
|
+
};
|
|
24
|
+
readonly select: {
|
|
25
|
+
readonly Component: import("react").NamedExoticComponent<import("../../core").ControlProps<import("../../core").JsonSchemaArray<any>, import("../controls").MultiSelectProps, {}>>;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
readonly views: {};
|
|
29
|
+
readonly wrappers: {
|
|
30
|
+
readonly row: import("react").NamedExoticComponent<import("../../core").WrapperProps<import("../../core").JsonSchema, import("../wrappers").RowProps>>;
|
|
31
|
+
readonly transparent: import("react").NamedExoticComponent<import("../../core").WrapperProps<import("../../core").JsonSchema, {}>>;
|
|
32
|
+
};
|
|
33
|
+
readonly validators: {};
|
|
34
|
+
};
|
|
35
|
+
readonly boolean: {
|
|
36
|
+
readonly controls: {
|
|
37
|
+
readonly base: {
|
|
38
|
+
readonly Component: import("react").NamedExoticComponent<import("../../core").ControlProps<import("../../core").JsonSchemaBoolean<any>, import("../controls").CheckboxProps, {}>>;
|
|
39
|
+
};
|
|
40
|
+
readonly switch: {
|
|
41
|
+
readonly Component: import("react").NamedExoticComponent<import("../../core").ControlProps<import("../../core").JsonSchemaBoolean<any>, import("../controls").SwitchProps, {}>>;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
readonly views: {};
|
|
45
|
+
readonly wrappers: {
|
|
46
|
+
readonly row: import("react").NamedExoticComponent<import("../../core").WrapperProps<import("../../core").JsonSchema, import("../wrappers").RowProps>>;
|
|
47
|
+
readonly transparent: import("react").NamedExoticComponent<import("../../core").WrapperProps<import("../../core").JsonSchema, {}>>;
|
|
48
|
+
};
|
|
49
|
+
readonly validators: {};
|
|
50
|
+
};
|
|
51
|
+
readonly number: {
|
|
52
|
+
readonly controls: {
|
|
53
|
+
readonly base: {
|
|
54
|
+
readonly Component: import("react").NamedExoticComponent<import("../../core").ControlProps<import("../../core").JsonSchemaNumber<any>, import("../controls").NumberBaseProps, {}>>;
|
|
55
|
+
};
|
|
56
|
+
readonly slider: {
|
|
57
|
+
readonly Component: import("react").NamedExoticComponent<import("../../core").ControlProps<import("../../core").JsonSchemaNumber<any>, import("../controls").SliderProps, {}>>;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
readonly views: {};
|
|
61
|
+
readonly wrappers: {
|
|
62
|
+
readonly row: import("react").NamedExoticComponent<import("../../core").WrapperProps<import("../../core").JsonSchema, import("../wrappers").RowProps>>;
|
|
63
|
+
readonly transparent: import("react").NamedExoticComponent<import("../../core").WrapperProps<import("../../core").JsonSchema, {}>>;
|
|
64
|
+
};
|
|
65
|
+
readonly validators: {};
|
|
66
|
+
};
|
|
67
|
+
readonly object: {
|
|
68
|
+
readonly controls: {
|
|
69
|
+
readonly base: {
|
|
70
|
+
readonly Component: import("react").NamedExoticComponent<import("../../core").ControlProps<import("../../core").JsonSchemaObject<any>, import("../controls").ObjectBaseProps, {}>>;
|
|
71
|
+
};
|
|
72
|
+
readonly range_slider: {
|
|
73
|
+
readonly Component: import("react").NamedExoticComponent<import("../../core").ControlProps<import("../../core").JsonSchemaObject<any>, import("../controls").RangeSliderProps, {}>>;
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
readonly views: {};
|
|
77
|
+
readonly wrappers: {
|
|
78
|
+
readonly row: import("react").NamedExoticComponent<import("../../core").WrapperProps<import("../../core").JsonSchema, import("../wrappers").RowProps>>;
|
|
79
|
+
readonly transparent: import("react").NamedExoticComponent<import("../../core").WrapperProps<import("../../core").JsonSchema, {}>>;
|
|
80
|
+
};
|
|
81
|
+
readonly validators: {};
|
|
82
|
+
};
|
|
83
|
+
readonly string: {
|
|
84
|
+
readonly controls: {
|
|
85
|
+
readonly base: {
|
|
86
|
+
readonly Component: import("react").NamedExoticComponent<import("../../core").ControlProps<import("../../core").JsonSchemaString<any>, import("../controls").StringBaseProps, {}>>;
|
|
87
|
+
};
|
|
88
|
+
readonly color_picker: {
|
|
89
|
+
readonly Component: import("react").NamedExoticComponent<import("../../core").ControlProps<import("../../core").JsonSchemaString<any>, import("../controls").ColorPickerProps, {}>>;
|
|
90
|
+
};
|
|
91
|
+
readonly password: {
|
|
92
|
+
readonly Component: import("react").NamedExoticComponent<import("../../core").ControlProps<import("../../core").JsonSchemaString<any>, import("../controls").PasswordProps, {}>>;
|
|
93
|
+
};
|
|
94
|
+
readonly radio_group: {
|
|
95
|
+
readonly Component: import("react").NamedExoticComponent<import("../../core").ControlProps<import("../../core").JsonSchemaString<any>, import("../controls").RadioGroupProps, {}>>;
|
|
96
|
+
};
|
|
97
|
+
readonly select: {
|
|
98
|
+
readonly Component: import("react").NamedExoticComponent<import("../../core").ControlProps<import("../../core").JsonSchemaString<any>, import("../controls").SelectProps, {}>>;
|
|
99
|
+
};
|
|
100
|
+
readonly textarea: {
|
|
101
|
+
readonly Component: import("react").NamedExoticComponent<import("../../core").ControlProps<import("../../core").JsonSchemaString<any>, import("../controls").TextAreaProps, {}>>;
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
readonly views: {};
|
|
105
|
+
readonly wrappers: {
|
|
106
|
+
readonly row: import("react").NamedExoticComponent<import("../../core").WrapperProps<import("../../core").JsonSchema, import("../wrappers").RowProps>>;
|
|
107
|
+
readonly transparent: import("react").NamedExoticComponent<import("../../core").WrapperProps<import("../../core").JsonSchema, {}>>;
|
|
108
|
+
};
|
|
109
|
+
readonly validators: {};
|
|
110
|
+
};
|
|
111
|
+
};
|
|
112
|
+
export declare const config: SchemaRendererConfig;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { EntityType } from '../../core';
|
|
2
|
+
import { ArrayBase, Checkbox, CheckboxGroup, ColorPicker, DateInput, MultiSelect, NumberBase, ObjectBase, Password, RadioGroup, RangeSlider, Select, Slider, StringBase, Switch, TextArea, } from '../controls';
|
|
3
|
+
import { Row, Transparent } from '../wrappers';
|
|
4
|
+
export const untypedConfig = {
|
|
5
|
+
[EntityType.Any]: {
|
|
6
|
+
controls: { date_input: { Component: DateInput } },
|
|
7
|
+
views: {},
|
|
8
|
+
wrappers: { row: Row, transparent: Transparent },
|
|
9
|
+
validators: {},
|
|
10
|
+
},
|
|
11
|
+
[EntityType.Array]: {
|
|
12
|
+
controls: {
|
|
13
|
+
base: { Component: ArrayBase },
|
|
14
|
+
checkbox_group: { Component: CheckboxGroup },
|
|
15
|
+
select: { Component: MultiSelect },
|
|
16
|
+
},
|
|
17
|
+
views: {},
|
|
18
|
+
wrappers: { row: Row, transparent: Transparent },
|
|
19
|
+
validators: {},
|
|
20
|
+
},
|
|
21
|
+
[EntityType.Boolean]: {
|
|
22
|
+
controls: { base: { Component: Checkbox }, switch: { Component: Switch } },
|
|
23
|
+
views: {},
|
|
24
|
+
wrappers: { row: Row, transparent: Transparent },
|
|
25
|
+
validators: {},
|
|
26
|
+
},
|
|
27
|
+
[EntityType.Number]: {
|
|
28
|
+
controls: {
|
|
29
|
+
base: { Component: NumberBase },
|
|
30
|
+
slider: { Component: Slider },
|
|
31
|
+
},
|
|
32
|
+
views: {},
|
|
33
|
+
wrappers: { row: Row, transparent: Transparent },
|
|
34
|
+
validators: {},
|
|
35
|
+
},
|
|
36
|
+
[EntityType.Object]: {
|
|
37
|
+
controls: {
|
|
38
|
+
base: { Component: ObjectBase },
|
|
39
|
+
range_slider: { Component: RangeSlider },
|
|
40
|
+
},
|
|
41
|
+
views: {},
|
|
42
|
+
wrappers: { row: Row, transparent: Transparent },
|
|
43
|
+
validators: {},
|
|
44
|
+
},
|
|
45
|
+
[EntityType.String]: {
|
|
46
|
+
controls: {
|
|
47
|
+
base: { Component: StringBase },
|
|
48
|
+
color_picker: { Component: ColorPicker },
|
|
49
|
+
password: { Component: Password },
|
|
50
|
+
radio_group: { Component: RadioGroup },
|
|
51
|
+
select: { Component: Select },
|
|
52
|
+
textarea: { Component: TextArea },
|
|
53
|
+
},
|
|
54
|
+
views: {},
|
|
55
|
+
wrappers: { row: Row, transparent: Transparent },
|
|
56
|
+
validators: {},
|
|
57
|
+
},
|
|
58
|
+
};
|
|
59
|
+
export const config = untypedConfig;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { config, untypedConfig } from './config';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { config, untypedConfig } from './config';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { type JsonSchemaArray } from '../../../core';
|
|
3
|
+
export interface ArrayBaseProps {
|
|
4
|
+
addButtonText?: string;
|
|
5
|
+
addButtonPosition?: string;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
}
|
|
8
|
+
export declare const ArrayBase: React.NamedExoticComponent<import("../../../core").ControlProps<JsonSchemaArray<any>, ArrayBaseProps, {}>>;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Plus } from '@gravity-ui/icons';
|
|
3
|
+
import { Button, Flex, Icon } from '@gravity-ui/uikit';
|
|
4
|
+
import { Entity } from '../../../core';
|
|
5
|
+
import { ControlError } from '../../components';
|
|
6
|
+
import { getValidationState } from '../../utils';
|
|
7
|
+
const Component = ({ controlProps, input, meta, schema, }) => {
|
|
8
|
+
var _a;
|
|
9
|
+
const addButton = React.useMemo(() => {
|
|
10
|
+
const itemsSchema = schema.items;
|
|
11
|
+
if (Array.isArray(itemsSchema)) {
|
|
12
|
+
return null;
|
|
13
|
+
}
|
|
14
|
+
const onClick = () => input.onChange([...(input.value || []), itemsSchema === null || itemsSchema === void 0 ? void 0 : itemsSchema.default]);
|
|
15
|
+
return (React.createElement(Button, { onClick: onClick, disabled: controlProps.disabled || schema.readOnly, qa: `${input.name}-add-button` },
|
|
16
|
+
React.createElement(Icon, { data: Plus, size: 14 }),
|
|
17
|
+
controlProps.addButtonText || null));
|
|
18
|
+
}, [
|
|
19
|
+
controlProps.addButtonText,
|
|
20
|
+
controlProps.disabled,
|
|
21
|
+
input.onChange,
|
|
22
|
+
input.value,
|
|
23
|
+
schema.default,
|
|
24
|
+
schema.items,
|
|
25
|
+
schema.readOnly,
|
|
26
|
+
]);
|
|
27
|
+
const items = React.useMemo(() => {
|
|
28
|
+
var _a;
|
|
29
|
+
const itemsSchema = schema.items;
|
|
30
|
+
if (Array.isArray(itemsSchema)) {
|
|
31
|
+
return itemsSchema.map((item, index) => (React.createElement(Entity, { name: `${input.name}[${index}]`, schema: item, key: index })));
|
|
32
|
+
}
|
|
33
|
+
return new Array((_a = input.value) === null || _a === void 0 ? void 0 : _a.length)
|
|
34
|
+
.fill(null)
|
|
35
|
+
.map((_, index) => (React.createElement(Entity, { name: `${input.name}[${index}]`, schema: itemsSchema, key: index })));
|
|
36
|
+
}, [input.name, (_a = input.value) === null || _a === void 0 ? void 0 : _a.length, schema.items]);
|
|
37
|
+
return (React.createElement(ControlError, { errorMessage: meta.error, validationState: getValidationState(meta) },
|
|
38
|
+
React.createElement(Flex, { direction: "column", gap: 2 },
|
|
39
|
+
React.createElement(Flex, { direction: "column" }, items),
|
|
40
|
+
addButton)));
|
|
41
|
+
};
|
|
42
|
+
export const ArrayBase = React.memo(Component);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ArrayBase';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ArrayBase';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { CheckboxProps as CheckboxBaseProps } from '@gravity-ui/uikit';
|
|
3
|
+
import type { JsonSchemaBoolean } from '../../../core';
|
|
4
|
+
import './Checkbox.css';
|
|
5
|
+
export interface CheckboxProps extends Omit<CheckboxBaseProps, 'checked' | 'onFocus' | 'onBlur' | 'onChange' | 'onUpdate' | 'qa'> {
|
|
6
|
+
}
|
|
7
|
+
export declare const Checkbox: React.NamedExoticComponent<import("../../../core").ControlProps<JsonSchemaBoolean<any>, CheckboxProps, {}>>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Checkbox as CheckboxBase } from '@gravity-ui/uikit';
|
|
3
|
+
import { ControlError } from '../../components';
|
|
4
|
+
import { block, getValidationState } from '../../utils';
|
|
5
|
+
import './Checkbox.css';
|
|
6
|
+
const b = block('checkbox');
|
|
7
|
+
const Component = ({ controlProps, input, meta, schema, }) => {
|
|
8
|
+
var _a;
|
|
9
|
+
return (React.createElement(ControlError, { errorMessage: meta.error, validationState: getValidationState(meta) },
|
|
10
|
+
React.createElement("div", { className: b() },
|
|
11
|
+
React.createElement(CheckboxBase, Object.assign({ disabled: schema.readOnly }, controlProps, { className: b(), checked: (_a = input.value) !== null && _a !== void 0 ? _a : false, onFocus: input.onFocus, onBlur: input.onBlur, onUpdate: input.onChange, qa: input.name })))));
|
|
12
|
+
};
|
|
13
|
+
export const Checkbox = React.memo(Component);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Checkbox, type CheckboxProps } from './Checkbox';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Checkbox } from './Checkbox';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { JsonSchemaArray } from '../../../core';
|
|
3
|
+
import './CheckboxGroup.css';
|
|
4
|
+
export interface CheckboxGroupProps {
|
|
5
|
+
enumDescriptions?: Record<string, string>;
|
|
6
|
+
optionsDisabled?: Record<string, boolean>;
|
|
7
|
+
direction?: 'row' | 'column';
|
|
8
|
+
disabled?: boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare const CheckboxGroup: React.NamedExoticComponent<import("../../../core").ControlProps<JsonSchemaArray<any>, CheckboxGroupProps, {}>>;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Checkbox, Flex } from '@gravity-ui/uikit';
|
|
3
|
+
import { ControlError } from '../../components';
|
|
4
|
+
import { block, getValidationState } from '../../utils';
|
|
5
|
+
import './CheckboxGroup.css';
|
|
6
|
+
const b = block('checkbox-group');
|
|
7
|
+
const Component = ({ controlProps, input, meta, schema, }) => {
|
|
8
|
+
const { direction, disabled, enumDescriptions, optionsDisabled } = controlProps;
|
|
9
|
+
const value = React.useMemo(() => (Array.isArray(input.value) ? input.value : []), [input.value]);
|
|
10
|
+
const options = React.useMemo(() => {
|
|
11
|
+
var _a, _b;
|
|
12
|
+
if (schema.items && 'enum' in schema.items) {
|
|
13
|
+
return (_b = (_a = schema === null || schema === void 0 ? void 0 : schema.items) === null || _a === void 0 ? void 0 : _a.enum) === null || _b === void 0 ? void 0 : _b.map((el) => {
|
|
14
|
+
const value = `${el}`;
|
|
15
|
+
return {
|
|
16
|
+
value,
|
|
17
|
+
text: (enumDescriptions === null || enumDescriptions === void 0 ? void 0 : enumDescriptions[value]) || value,
|
|
18
|
+
};
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
return;
|
|
22
|
+
}, [enumDescriptions, schema]);
|
|
23
|
+
const onUpdate = React.useCallback((optionValue, selected) => {
|
|
24
|
+
if (selected) {
|
|
25
|
+
input.onChange([...value, optionValue]);
|
|
26
|
+
}
|
|
27
|
+
else {
|
|
28
|
+
input.onChange(value.filter((el) => el !== optionValue));
|
|
29
|
+
}
|
|
30
|
+
}, [input.onChange, value]);
|
|
31
|
+
return (React.createElement(ControlError, { errorMessage: meta.error, validationState: getValidationState(meta) },
|
|
32
|
+
React.createElement(Flex, { className: b(), direction: direction, gap: 2 }, options === null || options === void 0 ? void 0 : options.map(({ value: optionValue, text }) => (React.createElement(Checkbox, { checked: value.includes(optionValue), onFocus: input.onFocus, onBlur: input.onBlur, onUpdate: (checked) => onUpdate(optionValue, checked), content: text, disabled: disabled || (optionsDisabled === null || optionsDisabled === void 0 ? void 0 : optionsDisabled[optionValue]) || schema.readOnly, qa: `${input.name}-${optionValue}`, key: optionValue }))))));
|
|
33
|
+
};
|
|
34
|
+
export const CheckboxGroup = React.memo(Component);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CheckboxGroup, type CheckboxGroupProps } from './CheckboxGroup';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { CheckboxGroup } from './CheckboxGroup';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { type unstable_ColorPickerProps as ColorPickerBaseProps } from '@gravity-ui/uikit/unstable';
|
|
3
|
+
import type { JsonSchemaString } from '../../../core';
|
|
4
|
+
export interface ColorPickerProps extends Omit<ColorPickerBaseProps, 'value' | 'onUpdate'> {
|
|
5
|
+
}
|
|
6
|
+
export declare const ColorPicker: React.NamedExoticComponent<import("../../../core").ControlProps<JsonSchemaString<any>, ColorPickerProps, {}>>;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { __rest } from "tslib";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { unstable_ColorPicker as ColorPickerBase, } from '@gravity-ui/uikit/unstable';
|
|
4
|
+
import { ControlError } from '../../components';
|
|
5
|
+
import { getValidationState } from '../../utils';
|
|
6
|
+
const Component = ({ controlProps, input, meta, schema, }) => {
|
|
7
|
+
var _a;
|
|
8
|
+
const { onOpenChange: onOpenChangeProps } = controlProps, restControlProps = __rest(controlProps, ["onOpenChange"]);
|
|
9
|
+
const onOpenChange = React.useCallback((open) => {
|
|
10
|
+
onOpenChangeProps === null || onOpenChangeProps === void 0 ? void 0 : onOpenChangeProps(open);
|
|
11
|
+
if (open) {
|
|
12
|
+
input.onFocus();
|
|
13
|
+
}
|
|
14
|
+
else {
|
|
15
|
+
input.onBlur();
|
|
16
|
+
}
|
|
17
|
+
}, [input.onBlur, input.onFocus, onOpenChangeProps]);
|
|
18
|
+
return (React.createElement(ControlError, { errorMessage: meta.error, validationState: getValidationState(meta) },
|
|
19
|
+
React.createElement(ColorPickerBase, Object.assign({ disabled: schema.readOnly }, restControlProps, { value: (_a = input.value) !== null && _a !== void 0 ? _a : '', onUpdate: input.onChange, onOpenChange: onOpenChange }))));
|
|
20
|
+
};
|
|
21
|
+
export const ColorPicker = React.memo(Component);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ColorPicker, type ColorPickerProps } from './ColorPicker';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ColorPicker } from './ColorPicker';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { DatePickerProps } from '@gravity-ui/date-components';
|
|
3
|
+
import type { JsonSchemaAny } from '../../../core';
|
|
4
|
+
import './DateInput.css';
|
|
5
|
+
export declare const DEFAULT_DATE_FORMAT = "DD.MM.YYYY HH:mm";
|
|
6
|
+
export interface DateInputProps extends Omit<DatePickerProps, 'value' | 'onFocus' | 'onBlur' | 'onChange' | 'onUpdate' | 'qa'> {
|
|
7
|
+
outputFormat?: string;
|
|
8
|
+
}
|
|
9
|
+
export declare const DateInput: React.NamedExoticComponent<import("../../../core").ControlProps<JsonSchemaAny<any>, DateInputProps, {}>>;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { __rest } from "tslib";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { DatePicker } from '@gravity-ui/date-components';
|
|
4
|
+
import { dateTimeParse, isValidTimeZone } from '@gravity-ui/date-utils';
|
|
5
|
+
import { ControlError } from '../../components';
|
|
6
|
+
import { block, getValidationState } from '../../utils';
|
|
7
|
+
import './DateInput.css';
|
|
8
|
+
export const DEFAULT_DATE_FORMAT = 'DD.MM.YYYY HH:mm';
|
|
9
|
+
const b = block('date-input');
|
|
10
|
+
const Component = ({ controlProps, input, meta, schema }) => {
|
|
11
|
+
var _a;
|
|
12
|
+
const { outputFormat, timeZone: timeZoneProp } = controlProps, restControlProps = __rest(controlProps, ["outputFormat", "timeZone"]);
|
|
13
|
+
const timeZone = timeZoneProp && isValidTimeZone(timeZoneProp) ? timeZoneProp : undefined;
|
|
14
|
+
const onUpdate = React.useCallback((date) => {
|
|
15
|
+
if (!date) {
|
|
16
|
+
input.onChange(undefined);
|
|
17
|
+
return;
|
|
18
|
+
}
|
|
19
|
+
if (outputFormat === 'date_time') {
|
|
20
|
+
input.onChange(date);
|
|
21
|
+
return;
|
|
22
|
+
}
|
|
23
|
+
if (outputFormat === 'date') {
|
|
24
|
+
input.onChange(date.toDate());
|
|
25
|
+
return;
|
|
26
|
+
}
|
|
27
|
+
if (outputFormat === 'timestamp') {
|
|
28
|
+
input.onChange({
|
|
29
|
+
seconds: Math.floor(date.toDate().getTime() / 1000),
|
|
30
|
+
nanos: 0,
|
|
31
|
+
});
|
|
32
|
+
return;
|
|
33
|
+
}
|
|
34
|
+
if (outputFormat === 'string' || !outputFormat) {
|
|
35
|
+
input.onChange(date.toISOString());
|
|
36
|
+
return;
|
|
37
|
+
}
|
|
38
|
+
input.onChange(date.format(outputFormat));
|
|
39
|
+
}, [outputFormat, input.onChange]);
|
|
40
|
+
const value = React.useMemo(() => {
|
|
41
|
+
if (!input.value) {
|
|
42
|
+
return null;
|
|
43
|
+
}
|
|
44
|
+
let raw = input.value;
|
|
45
|
+
if (typeof raw === 'object' && raw !== null && 'seconds' in raw && raw.seconds) {
|
|
46
|
+
raw = raw.seconds * 1000;
|
|
47
|
+
}
|
|
48
|
+
return dateTimeParse(raw, { format: outputFormat, timeZone }) || null;
|
|
49
|
+
}, [input.value, outputFormat, timeZone]);
|
|
50
|
+
return (React.createElement(ControlError, { errorMessage: meta.error, validationState: getValidationState(meta) },
|
|
51
|
+
React.createElement(DatePicker, Object.assign({ className: b(), format: DEFAULT_DATE_FORMAT, popupPlacement: "bottom-start", disabled: schema.readOnly, hasClear: true }, restControlProps, { value: value, onFocus: input.onFocus, onBlur: input.onBlur, onUpdate: onUpdate, placeholder: `${(_a = schema.examples) === null || _a === void 0 ? void 0 : _a[0]}`, timeZone: timeZone, "data-qa": input.name }))));
|
|
52
|
+
};
|
|
53
|
+
export const DateInput = React.memo(Component);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { DateInput, type DateInputProps } from './DateInput';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { DateInput } from './DateInput';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { type SelectProps as SelectBaseProps } from '@gravity-ui/uikit';
|
|
3
|
+
import type { JsonSchemaArray } from '../../../core';
|
|
4
|
+
export interface MultiSelectProps extends Omit<SelectBaseProps, 'value' | 'onFocus' | 'onBlur' | 'onChange' | 'onUpdate' | 'multiple' | 'qa'> {
|
|
5
|
+
enumDescriptions?: Record<string, string>;
|
|
6
|
+
optionsMeta?: Record<string, string>;
|
|
7
|
+
}
|
|
8
|
+
export declare const MultiSelect: React.NamedExoticComponent<import("../../../core").ControlProps<JsonSchemaArray<any>, MultiSelectProps, {}>>;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { __rest } from "tslib";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { Flex, Select as SelectBase, Text, } from '@gravity-ui/uikit';
|
|
4
|
+
import isString from 'lodash/isString';
|
|
5
|
+
import { getValidationState } from '../../utils';
|
|
6
|
+
const Component = ({ controlProps, input, meta, schema, }) => {
|
|
7
|
+
var _a, _b;
|
|
8
|
+
const { enumDescriptions, optionsMeta } = controlProps, restControlProps = __rest(controlProps, ["enumDescriptions", "optionsMeta"]);
|
|
9
|
+
const value = React.useMemo(() => (Array.isArray(input.value) && input.value.every(isString) ? input.value : undefined), [input.value]);
|
|
10
|
+
const enumValues = schema.items && 'enum' in schema.items ? schema.items.enum : undefined;
|
|
11
|
+
const options = React.useMemo(() => {
|
|
12
|
+
if (enumValues) {
|
|
13
|
+
return enumValues === null || enumValues === void 0 ? void 0 : enumValues.map((el) => {
|
|
14
|
+
const value = `${el}`;
|
|
15
|
+
const text = (enumDescriptions === null || enumDescriptions === void 0 ? void 0 : enumDescriptions[value]) || value;
|
|
16
|
+
const optionMeta = optionsMeta === null || optionsMeta === void 0 ? void 0 : optionsMeta[value];
|
|
17
|
+
let content = text;
|
|
18
|
+
if (optionMeta) {
|
|
19
|
+
content = (React.createElement(Flex, { direction: "column", gap: "0.5" },
|
|
20
|
+
React.createElement(Text, null, text),
|
|
21
|
+
React.createElement(Text, { color: "secondary" }, optionMeta)));
|
|
22
|
+
}
|
|
23
|
+
return { value, text, content, key: value, data: { optionMeta } };
|
|
24
|
+
});
|
|
25
|
+
}
|
|
26
|
+
return;
|
|
27
|
+
}, [enumDescriptions, enumValues, optionsMeta]);
|
|
28
|
+
const renderOption = React.useCallback((option) => (React.createElement(React.Fragment, { key: option.value }, option.content || option.text || option.value)), []);
|
|
29
|
+
const getOptionHeight = React.useCallback((option) => { var _a; return (((_a = option.data) === null || _a === void 0 ? void 0 : _a.optionMeta) ? 44 : 28); }, []);
|
|
30
|
+
return (React.createElement(SelectBase, Object.assign({ width: "max", options: options, filterable: ((enumValues === null || enumValues === void 0 ? void 0 : enumValues.length) || 0) > 9, renderOption: renderOption, getOptionHeight: getOptionHeight, disabled: schema.readOnly }, restControlProps, { value: value, onFocus: input.onFocus, onBlur: input.onBlur, onUpdate: input.onChange, errorMessage: meta.error, validationState: getValidationState(meta), placeholder: `${(_b = (_a = schema.examples) === null || _a === void 0 ? void 0 : _a[0]) === null || _b === void 0 ? void 0 : _b[0]}`, multiple: true, qa: input.name })));
|
|
31
|
+
};
|
|
32
|
+
export const MultiSelect = React.memo(Component);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { MultiSelect, type MultiSelectProps } from './MultiSelect';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { MultiSelect } from './MultiSelect';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { type NumberInputProps } from '@gravity-ui/uikit';
|
|
3
|
+
import { type JsonSchemaNumber } from '../../../core';
|
|
4
|
+
export interface NumberBaseProps extends Omit<NumberInputProps, 'value' | 'defaultValue' | 'onFocus' | 'onBlur' | 'onChange' | 'onUpdate' | 'errorMessage' | 'validationState' | 'placeholder' | 'qa'> {
|
|
5
|
+
}
|
|
6
|
+
export declare const NumberBase: React.NamedExoticComponent<import("../../../core").ControlProps<JsonSchemaNumber<any>, NumberBaseProps, {}>>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { NumberInput } from '@gravity-ui/uikit';
|
|
3
|
+
import { getValidationState } from '../../utils';
|
|
4
|
+
const Component = ({ controlProps, input, meta, schema, }) => {
|
|
5
|
+
var _a;
|
|
6
|
+
return (React.createElement(NumberInput, Object.assign({ allowDecimal: true, hiddenControls: true, hasClear: true, disabled: schema.readOnly }, controlProps, { value: input.value, defaultValue: schema.default, onBlur: input.onBlur, onFocus: input.onFocus, onUpdate: input.onChange, errorMessage: meta.error, validationState: getValidationState(meta), placeholder: `${((_a = schema.examples) === null || _a === void 0 ? void 0 : _a[0]) || ''}`, qa: input.name })));
|
|
7
|
+
};
|
|
8
|
+
export const NumberBase = React.memo(Component);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { NumberBase, type NumberBaseProps } from './Number';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { NumberBase } from './Number';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { type JsonSchemaObject } from '../../../core';
|
|
3
|
+
export interface ObjectBaseProps {
|
|
4
|
+
addButtonText?: string;
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
order?: string[];
|
|
7
|
+
}
|
|
8
|
+
export declare const ObjectBase: React.NamedExoticComponent<import("../../../core").ControlProps<JsonSchemaObject<any>, ObjectBaseProps, {}>>;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Plus } from '@gravity-ui/icons';
|
|
3
|
+
import { Button, Flex, Icon } from '@gravity-ui/uikit';
|
|
4
|
+
import { Entity } from '../../../core';
|
|
5
|
+
import { ControlError } from '../../components';
|
|
6
|
+
import { getValidationState } from '../../utils';
|
|
7
|
+
const Component = ({ controlProps, input, meta, schema, }) => {
|
|
8
|
+
const addButton = React.useMemo(() => {
|
|
9
|
+
const onClick = () => input.onChange(schema.default);
|
|
10
|
+
return (React.createElement(Button, { onClick: onClick, disabled: controlProps.disabled || schema.readOnly, qa: `${input.name}-add-button` },
|
|
11
|
+
React.createElement(Icon, { data: Plus, size: 14 }),
|
|
12
|
+
controlProps.addButtonText || null));
|
|
13
|
+
}, [
|
|
14
|
+
controlProps.addButtonText,
|
|
15
|
+
controlProps.disabled,
|
|
16
|
+
input.onChange,
|
|
17
|
+
schema.default,
|
|
18
|
+
schema.readOnly,
|
|
19
|
+
]);
|
|
20
|
+
return (React.createElement(ControlError, { errorMessage: meta.error, validationState: getValidationState(meta) },
|
|
21
|
+
React.createElement(Flex, { direction: "column", gap: 2 },
|
|
22
|
+
React.createElement(Flex, { direction: "column" },
|
|
23
|
+
(controlProps.order || Object.keys(schema.properties || {})).map((property) => {
|
|
24
|
+
var _a;
|
|
25
|
+
return (React.createElement(Entity, { name: `${input.name ? input.name + '.' : ''}${property}`, schema: (_a = schema.properties) === null || _a === void 0 ? void 0 : _a[property], key: property }));
|
|
26
|
+
}),
|
|
27
|
+
input.value ? null : addButton))));
|
|
28
|
+
};
|
|
29
|
+
export const ObjectBase = React.memo(Component);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ObjectBase, type ObjectBaseProps } from './ObjectBase';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ObjectBase } from './ObjectBase';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { type PasswordInputProps } from '@gravity-ui/uikit';
|
|
3
|
+
import type { JsonSchemaString } from '../../../core';
|
|
4
|
+
export interface PasswordProps extends Omit<PasswordInputProps, 'value' | 'onFocus' | 'onBlur' | 'onChange' | 'onUpdate' | 'errorMessage' | 'validationState' | 'placeholder' | 'qa'> {
|
|
5
|
+
}
|
|
6
|
+
export declare const Password: React.NamedExoticComponent<import("../../../core").ControlProps<JsonSchemaString<any>, PasswordProps, {}>>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { PasswordInput } from '@gravity-ui/uikit';
|
|
3
|
+
import { getValidationState } from '../../utils';
|
|
4
|
+
const Component = ({ controlProps, input, meta, schema, }) => {
|
|
5
|
+
var _a, _b;
|
|
6
|
+
return (React.createElement(PasswordInput, Object.assign({ autoComplete: "new-password", hasClear: true, disabled: schema.readOnly }, controlProps, { value: (_a = input.value) !== null && _a !== void 0 ? _a : '', onFocus: input.onFocus, onBlur: input.onBlur, onUpdate: input.onChange, errorMessage: meta.error, validationState: getValidationState(meta), placeholder: (_b = schema.examples) === null || _b === void 0 ? void 0 : _b[0], qa: input.name })));
|
|
7
|
+
};
|
|
8
|
+
export const Password = React.memo(Component);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Password, type PasswordProps } from './Password';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Password } from './Password';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { type RadioGroupProps as RadioGroupBaseProps } from '@gravity-ui/uikit';
|
|
3
|
+
import type { JsonSchemaString } from '../../../core';
|
|
4
|
+
import './RadioGroup.css';
|
|
5
|
+
export interface RadioGroupProps extends Omit<RadioGroupBaseProps, 'value' | 'onFocus' | 'onBlur' | 'onChange' | 'onUpdate' | 'qa'> {
|
|
6
|
+
enumDescriptions?: Record<string, string>;
|
|
7
|
+
optionsDisabled?: Record<string, boolean>;
|
|
8
|
+
}
|
|
9
|
+
export declare const RadioGroup: React.NamedExoticComponent<import("../../../core").ControlProps<JsonSchemaString<any>, RadioGroupProps, {}>>;
|