@bpmn-io/form-js-editor 0.10.0 → 0.10.1

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.
Files changed (95) hide show
  1. package/LICENSE +22 -22
  2. package/README.md +119 -119
  3. package/dist/assets/form-js-editor.css +295 -287
  4. package/dist/index.cjs +202 -202
  5. package/dist/index.cjs.map +1 -1
  6. package/dist/index.es.js +202 -202
  7. package/dist/index.es.js.map +1 -1
  8. package/dist/types/FormEditor.d.ts +155 -155
  9. package/dist/types/core/Debounce.d.ts +10 -10
  10. package/dist/types/core/EventBus.d.ts +1 -1
  11. package/dist/types/core/FieldFactory.d.ts +18 -18
  12. package/dist/types/core/FormFieldRegistry.d.ts +19 -19
  13. package/dist/types/core/index.d.ts +17 -17
  14. package/dist/types/features/editor-actions/FormEditorActions.d.ts +8 -8
  15. package/dist/types/features/editor-actions/index.d.ts +6 -6
  16. package/dist/types/features/keyboard/FormEditorKeyboardBindings.d.ts +8 -8
  17. package/dist/types/features/keyboard/index.d.ts +7 -7
  18. package/dist/types/features/modeling/Modeling.d.ts +34 -34
  19. package/dist/types/features/modeling/behavior/IdBehavior.d.ts +7 -7
  20. package/dist/types/features/modeling/behavior/KeyBehavior.d.ts +7 -7
  21. package/dist/types/features/modeling/behavior/index.d.ts +8 -8
  22. package/dist/types/features/modeling/cmd/AddFormFieldHandler.d.ts +16 -16
  23. package/dist/types/features/modeling/cmd/EditFormFieldHandler.d.ts +16 -16
  24. package/dist/types/features/modeling/cmd/MoveFormFieldHandler.d.ts +17 -17
  25. package/dist/types/features/modeling/cmd/RemoveFormFieldHandler.d.ts +16 -16
  26. package/dist/types/features/modeling/cmd/UpdateIdClaimHandler.d.ts +14 -14
  27. package/dist/types/features/modeling/cmd/UpdateKeyClaimHandler.d.ts +14 -14
  28. package/dist/types/features/modeling/cmd/Util.d.ts +4 -4
  29. package/dist/types/features/modeling/index.d.ts +7 -7
  30. package/dist/types/features/palette/PaletteRenderer.d.ts +33 -33
  31. package/dist/types/features/palette/components/Palette.d.ts +1 -1
  32. package/dist/types/features/palette/index.d.ts +5 -5
  33. package/dist/types/features/properties-panel/PropertiesPanel.d.ts +1 -1
  34. package/dist/types/features/properties-panel/PropertiesPanelHeaderProvider.d.ts +5 -5
  35. package/dist/types/features/properties-panel/PropertiesPanelPlaceholderProvider.d.ts +8 -8
  36. package/dist/types/features/properties-panel/PropertiesPanelRenderer.d.ts +37 -37
  37. package/dist/types/features/properties-panel/Util.d.ts +9 -9
  38. package/dist/types/features/properties-panel/context/FormPropertiesPanelContext.d.ts +11 -11
  39. package/dist/types/features/properties-panel/context/index.d.ts +1 -1
  40. package/dist/types/features/properties-panel/entries/ActionEntry.d.ts +9 -9
  41. package/dist/types/features/properties-panel/entries/AdornerEntry.d.ts +11 -11
  42. package/dist/types/features/properties-panel/entries/AltTextEntry.d.ts +9 -9
  43. package/dist/types/features/properties-panel/entries/ColumnsEntry.d.ts +9 -9
  44. package/dist/types/features/properties-panel/entries/ConditionEntry.d.ts +9 -9
  45. package/dist/types/features/properties-panel/entries/CustomValueEntry.d.ts +11 -11
  46. package/dist/types/features/properties-panel/entries/DateTimeConstraintsEntry.d.ts +9 -9
  47. package/dist/types/features/properties-panel/entries/DateTimeEntry.d.ts +9 -9
  48. package/dist/types/features/properties-panel/entries/DateTimeSerializationEntry.d.ts +9 -9
  49. package/dist/types/features/properties-panel/entries/DefaultValueEntry.d.ts +1 -1
  50. package/dist/types/features/properties-panel/entries/DescriptionEntry.d.ts +9 -9
  51. package/dist/types/features/properties-panel/entries/DisabledEntry.d.ts +9 -9
  52. package/dist/types/features/properties-panel/entries/IdEntry.d.ts +9 -9
  53. package/dist/types/features/properties-panel/entries/ImageSourceEntry.d.ts +9 -9
  54. package/dist/types/features/properties-panel/entries/InputKeyValuesSourceEntry.d.ts +11 -11
  55. package/dist/types/features/properties-panel/entries/KeyEntry.d.ts +9 -9
  56. package/dist/types/features/properties-panel/entries/LabelEntry.d.ts +9 -9
  57. package/dist/types/features/properties-panel/entries/NumberEntries.d.ts +9 -9
  58. package/dist/types/features/properties-panel/entries/NumberSerializationEntry.d.ts +9 -9
  59. package/dist/types/features/properties-panel/entries/StaticValuesSourceEntry.d.ts +5 -5
  60. package/dist/types/features/properties-panel/entries/TextEntry.d.ts +9 -9
  61. package/dist/types/features/properties-panel/entries/ValueEntry.d.ts +11 -11
  62. package/dist/types/features/properties-panel/entries/ValuesSourceSelectEntry.d.ts +9 -9
  63. package/dist/types/features/properties-panel/entries/factories/index.d.ts +1 -1
  64. package/dist/types/features/properties-panel/entries/factories/simpleStringEntryFactory.d.ts +9 -9
  65. package/dist/types/features/properties-panel/entries/index.d.ts +23 -23
  66. package/dist/types/features/properties-panel/groups/AppearanceGroup.d.ts +13 -13
  67. package/dist/types/features/properties-panel/groups/ConditionGroup.d.ts +11 -11
  68. package/dist/types/features/properties-panel/groups/ConstraintsGroup.d.ts +11 -11
  69. package/dist/types/features/properties-panel/groups/CustomValuesGroup.d.ts +31 -31
  70. package/dist/types/features/properties-panel/groups/GeneralGroup.d.ts +5 -5
  71. package/dist/types/features/properties-panel/groups/SerializationGroup.d.ts +11 -11
  72. package/dist/types/features/properties-panel/groups/ValidationGroup.d.ts +14 -14
  73. package/dist/types/features/properties-panel/groups/ValuesGroups.d.ts +1 -1
  74. package/dist/types/features/properties-panel/groups/index.d.ts +8 -8
  75. package/dist/types/features/properties-panel/hooks/index.d.ts +2 -2
  76. package/dist/types/features/properties-panel/hooks/usePropertiesPanelService.d.ts +1 -1
  77. package/dist/types/features/properties-panel/hooks/useVariables.d.ts +6 -6
  78. package/dist/types/features/properties-panel/icons/index.d.ts +1 -1
  79. package/dist/types/features/properties-panel/index.d.ts +6 -6
  80. package/dist/types/features/selection/Selection.d.ts +14 -14
  81. package/dist/types/features/selection/SelectionBehavior.d.ts +7 -7
  82. package/dist/types/features/selection/index.d.ts +8 -8
  83. package/dist/types/import/Importer.d.ts +51 -51
  84. package/dist/types/import/index.d.ts +5 -5
  85. package/dist/types/index.d.ts +15 -15
  86. package/dist/types/render/Renderer.d.ts +26 -26
  87. package/dist/types/render/components/FormEditor.d.ts +1 -1
  88. package/dist/types/render/components/icons/index.d.ts +1 -1
  89. package/dist/types/render/context/DragAndDropContext.d.ts +4 -4
  90. package/dist/types/render/context/FormEditorContext.d.ts +11 -11
  91. package/dist/types/render/context/index.d.ts +2 -2
  92. package/dist/types/render/hooks/useService.d.ts +1 -1
  93. package/dist/types/render/index.d.ts +8 -8
  94. package/dist/types/src/types.d.ts +28 -28
  95. package/package.json +3 -3
@@ -1,9 +1,9 @@
1
- export default function DateTimeFormatEntry(props: any): {
2
- id: string;
3
- component: typeof TimeFormatSelect;
4
- isEdited: any;
5
- editField: any;
6
- field: any;
7
- }[];
8
- declare function TimeFormatSelect(props: any): any;
9
- export {};
1
+ export default function DateTimeFormatEntry(props: any): {
2
+ id: string;
3
+ component: typeof TimeFormatSelect;
4
+ isEdited: any;
5
+ editField: any;
6
+ field: any;
7
+ }[];
8
+ declare function TimeFormatSelect(props: any): any;
9
+ export {};
@@ -1 +1 @@
1
- export default function DefaultOptionEntry(props: any): any[];
1
+ export default function DefaultOptionEntry(props: any): any[];
@@ -1,9 +1,9 @@
1
- export default function DescriptionEntry(props: any): {
2
- id: string;
3
- component: typeof Description;
4
- editField: any;
5
- field: any;
6
- isEdited: any;
7
- }[];
8
- declare function Description(props: any): any;
9
- export {};
1
+ export default function DescriptionEntry(props: any): {
2
+ id: string;
3
+ component: typeof Description;
4
+ editField: any;
5
+ field: any;
6
+ isEdited: any;
7
+ }[];
8
+ declare function Description(props: any): any;
9
+ export {};
@@ -1,9 +1,9 @@
1
- export default function DisabledEntry(props: any): {
2
- id: string;
3
- component: typeof Disabled;
4
- editField: any;
5
- field: any;
6
- isEdited: any;
7
- }[];
8
- declare function Disabled(props: any): any;
9
- export {};
1
+ export default function DisabledEntry(props: any): {
2
+ id: string;
3
+ component: typeof Disabled;
4
+ editField: any;
5
+ field: any;
6
+ isEdited: any;
7
+ }[];
8
+ declare function Disabled(props: any): any;
9
+ export {};
@@ -1,9 +1,9 @@
1
- export default function IdEntry(props: any): {
2
- id: string;
3
- component: typeof Id;
4
- editField: any;
5
- field: any;
6
- isEdited: any;
7
- }[];
8
- declare function Id(props: any): any;
9
- export {};
1
+ export default function IdEntry(props: any): {
2
+ id: string;
3
+ component: typeof Id;
4
+ editField: any;
5
+ field: any;
6
+ isEdited: any;
7
+ }[];
8
+ declare function Id(props: any): any;
9
+ export {};
@@ -1,9 +1,9 @@
1
- export default function SourceEntry(props: any): {
2
- id: string;
3
- component: typeof Source;
4
- editField: any;
5
- field: any;
6
- isEdited: any;
7
- }[];
8
- declare function Source(props: any): any;
9
- export {};
1
+ export default function SourceEntry(props: any): {
2
+ id: string;
3
+ component: typeof Source;
4
+ editField: any;
5
+ field: any;
6
+ isEdited: any;
7
+ }[];
8
+ declare function Source(props: any): any;
9
+ export {};
@@ -1,11 +1,11 @@
1
- export default function InputKeyValuesSourceEntry(props: any): {
2
- id: string;
3
- component: typeof InputValuesKey;
4
- label: string;
5
- description: string;
6
- isEdited: any;
7
- editField: any;
8
- field: any;
9
- }[];
10
- declare function InputValuesKey(props: any): any;
11
- export {};
1
+ export default function InputKeyValuesSourceEntry(props: any): {
2
+ id: string;
3
+ component: typeof InputValuesKey;
4
+ label: string;
5
+ description: string;
6
+ isEdited: any;
7
+ editField: any;
8
+ field: any;
9
+ }[];
10
+ declare function InputValuesKey(props: any): any;
11
+ export {};
@@ -1,9 +1,9 @@
1
- export default function KeyEntry(props: any): {
2
- id: string;
3
- component: typeof Key;
4
- editField: any;
5
- field: any;
6
- isEdited: any;
7
- }[];
8
- declare function Key(props: any): any;
9
- export {};
1
+ export default function KeyEntry(props: any): {
2
+ id: string;
3
+ component: typeof Key;
4
+ editField: any;
5
+ field: any;
6
+ isEdited: any;
7
+ }[];
8
+ declare function Key(props: any): any;
9
+ export {};
@@ -1,9 +1,9 @@
1
- export default function LabelEntry(props: any): {
2
- id: any;
3
- label: any;
4
- path: any;
5
- field: any;
6
- editField: any;
7
- component: (props: any) => any;
8
- isEdited: any;
9
- }[];
1
+ export default function LabelEntry(props: any): {
2
+ id: any;
3
+ label: any;
4
+ path: any;
5
+ field: any;
6
+ editField: any;
7
+ component: (props: any) => any;
8
+ isEdited: any;
9
+ }[];
@@ -1,9 +1,9 @@
1
- export default function NumberEntries(props: any): {
2
- id: string;
3
- component: typeof NumberDecimalDigits;
4
- isEdited: any;
5
- editField: any;
6
- field: any;
7
- }[];
8
- declare function NumberDecimalDigits(props: any): any;
9
- export {};
1
+ export default function NumberEntries(props: any): {
2
+ id: string;
3
+ component: typeof NumberDecimalDigits;
4
+ isEdited: any;
5
+ editField: any;
6
+ field: any;
7
+ }[];
8
+ declare function NumberDecimalDigits(props: any): any;
9
+ export {};
@@ -1,9 +1,9 @@
1
- export default function NumberSerializationEntry(props: any): {
2
- id: string;
3
- component: typeof SerializeToString;
4
- isEdited: any;
5
- editField: any;
6
- field: any;
7
- }[];
8
- declare function SerializeToString(props: any): any;
9
- export {};
1
+ export default function NumberSerializationEntry(props: any): {
2
+ id: string;
3
+ component: typeof SerializeToString;
4
+ isEdited: any;
5
+ editField: any;
6
+ field: any;
7
+ }[];
8
+ declare function SerializeToString(props: any): any;
9
+ export {};
@@ -1,5 +1,5 @@
1
- export default function StaticValuesSourceEntry(props: any): {
2
- items: any;
3
- add: (e: any) => void;
4
- shouldSort: boolean;
5
- };
1
+ export default function StaticValuesSourceEntry(props: any): {
2
+ items: any;
3
+ add: (e: any) => void;
4
+ shouldSort: boolean;
5
+ };
@@ -1,9 +1,9 @@
1
- export default function TextEntry(props: any): {
2
- id: string;
3
- component: typeof Text;
4
- editField: any;
5
- field: any;
6
- isEdited: any;
7
- }[];
8
- declare function Text(props: any): any;
9
- export {};
1
+ export default function TextEntry(props: any): {
2
+ id: string;
3
+ component: typeof Text;
4
+ editField: any;
5
+ field: any;
6
+ isEdited: any;
7
+ }[];
8
+ declare function Text(props: any): any;
9
+ export {};
@@ -1,11 +1,11 @@
1
- export default function ValueEntry(props: any): {
2
- component: typeof Label;
3
- editField: any;
4
- field: any;
5
- id: string;
6
- idPrefix: any;
7
- index: any;
8
- validateFactory: any;
9
- }[];
10
- declare function Label(props: any): any;
11
- export {};
1
+ export default function ValueEntry(props: any): {
2
+ component: typeof Label;
3
+ editField: any;
4
+ field: any;
5
+ id: string;
6
+ idPrefix: any;
7
+ index: any;
8
+ validateFactory: any;
9
+ }[];
10
+ declare function Label(props: any): any;
11
+ export {};
@@ -1,9 +1,9 @@
1
- export default function ValuesSourceSelectEntry(props: any): {
2
- id: string;
3
- component: typeof ValuesSourceSelect;
4
- isEdited: any;
5
- editField: any;
6
- field: any;
7
- }[];
8
- declare function ValuesSourceSelect(props: any): any;
9
- export {};
1
+ export default function ValuesSourceSelectEntry(props: any): {
2
+ id: string;
3
+ component: typeof ValuesSourceSelect;
4
+ isEdited: any;
5
+ editField: any;
6
+ field: any;
7
+ }[];
8
+ declare function ValuesSourceSelect(props: any): any;
9
+ export {};
@@ -1 +1 @@
1
- export { default as simpleStringEntryFactory } from "./simpleStringEntryFactory";
1
+ export { default as simpleStringEntryFactory } from "./simpleStringEntryFactory";
@@ -1,9 +1,9 @@
1
- export default function simpleStringEntryFactory(options: any): {
2
- id: any;
3
- label: any;
4
- path: any;
5
- field: any;
6
- editField: any;
7
- component: (props: any) => any;
8
- isEdited: any;
9
- };
1
+ export default function simpleStringEntryFactory(options: any): {
2
+ id: any;
3
+ label: any;
4
+ path: any;
5
+ field: any;
6
+ editField: any;
7
+ component: (props: any) => any;
8
+ isEdited: any;
9
+ };
@@ -1,23 +1,23 @@
1
- export { default as ActionEntry } from "./ActionEntry";
2
- export { default as AltTextEntry } from "./AltTextEntry";
3
- export { default as ColumnsEntry } from "./ColumnsEntry";
4
- export { default as DescriptionEntry } from "./DescriptionEntry";
5
- export { default as DefaultValueEntry } from "./DefaultValueEntry";
6
- export { default as DisabledEntry } from "./DisabledEntry";
7
- export { default as IdEntry } from "./IdEntry";
8
- export { default as KeyEntry } from "./KeyEntry";
9
- export { default as LabelEntry } from "./LabelEntry";
10
- export { default as ImageSourceEntry } from "./ImageSourceEntry";
11
- export { default as TextEntry } from "./TextEntry";
12
- export { default as NumberEntries } from "./NumberEntries";
13
- export { default as NumberSerializationEntry } from "./NumberSerializationEntry";
14
- export { default as DateTimeEntry } from "./DateTimeEntry";
15
- export { default as DateTimeConstraintsEntry } from "./DateTimeConstraintsEntry";
16
- export { default as DateTimeSerializationEntry } from "./DateTimeSerializationEntry";
17
- export { default as ValueEntry } from "./ValueEntry";
18
- export { default as CustomValueEntry } from "./CustomValueEntry";
19
- export { default as ValuesSourceSelectEntry } from "./ValuesSourceSelectEntry";
20
- export { default as InputKeyValuesSourceEntry } from "./InputKeyValuesSourceEntry";
21
- export { default as StaticValuesSourceEntry } from "./StaticValuesSourceEntry";
22
- export { default as AdornerEntry } from "./AdornerEntry";
23
- export { ConditionEntry } from "./ConditionEntry";
1
+ export { default as ActionEntry } from "./ActionEntry";
2
+ export { default as AltTextEntry } from "./AltTextEntry";
3
+ export { default as ColumnsEntry } from "./ColumnsEntry";
4
+ export { default as DescriptionEntry } from "./DescriptionEntry";
5
+ export { default as DefaultValueEntry } from "./DefaultValueEntry";
6
+ export { default as DisabledEntry } from "./DisabledEntry";
7
+ export { default as IdEntry } from "./IdEntry";
8
+ export { default as KeyEntry } from "./KeyEntry";
9
+ export { default as LabelEntry } from "./LabelEntry";
10
+ export { default as ImageSourceEntry } from "./ImageSourceEntry";
11
+ export { default as TextEntry } from "./TextEntry";
12
+ export { default as NumberEntries } from "./NumberEntries";
13
+ export { default as NumberSerializationEntry } from "./NumberSerializationEntry";
14
+ export { default as DateTimeEntry } from "./DateTimeEntry";
15
+ export { default as DateTimeConstraintsEntry } from "./DateTimeConstraintsEntry";
16
+ export { default as DateTimeSerializationEntry } from "./DateTimeSerializationEntry";
17
+ export { default as ValueEntry } from "./ValueEntry";
18
+ export { default as CustomValueEntry } from "./CustomValueEntry";
19
+ export { default as ValuesSourceSelectEntry } from "./ValuesSourceSelectEntry";
20
+ export { default as InputKeyValuesSourceEntry } from "./InputKeyValuesSourceEntry";
21
+ export { default as StaticValuesSourceEntry } from "./StaticValuesSourceEntry";
22
+ export { default as AdornerEntry } from "./AdornerEntry";
23
+ export { ConditionEntry } from "./ConditionEntry";
@@ -1,13 +1,13 @@
1
- export default function AppearanceGroup(field: any, editField: any): {
2
- id: string;
3
- label: string;
4
- entries: {
5
- id: string;
6
- component: (props: any) => any;
7
- isEdited: any;
8
- editField: any;
9
- field: any;
10
- onChange: (key: any) => (value: any) => void;
11
- getValue: (key: any) => () => any;
12
- }[];
13
- };
1
+ export default function AppearanceGroup(field: any, editField: any): {
2
+ id: string;
3
+ label: string;
4
+ entries: {
5
+ id: string;
6
+ component: (props: any) => any;
7
+ isEdited: any;
8
+ editField: any;
9
+ field: any;
10
+ onChange: (key: any) => (value: any) => void;
11
+ getValue: (key: any) => () => any;
12
+ }[];
13
+ };
@@ -1,11 +1,11 @@
1
- export function ConditionGroup(field: any, editField: any): {
2
- id: string;
3
- label: string;
4
- entries: {
5
- id: string;
6
- component: (props: any) => any;
7
- editField: any;
8
- field: any;
9
- isEdited: any;
10
- }[];
11
- };
1
+ export function ConditionGroup(field: any, editField: any): {
2
+ id: string;
3
+ label: string;
4
+ entries: {
5
+ id: string;
6
+ component: (props: any) => any;
7
+ editField: any;
8
+ field: any;
9
+ isEdited: any;
10
+ }[];
11
+ };
@@ -1,11 +1,11 @@
1
- export default function ConstraintsGroup(field: any, editField: any): {
2
- id: string;
3
- label: string;
4
- entries: {
5
- id: string;
6
- component: (props: any) => any;
7
- isEdited: any;
8
- editField: any;
9
- field: any;
10
- }[];
11
- };
1
+ export default function ConstraintsGroup(field: any, editField: any): {
2
+ id: string;
3
+ label: string;
4
+ entries: {
5
+ id: string;
6
+ component: (props: any) => any;
7
+ isEdited: any;
8
+ editField: any;
9
+ field: any;
10
+ }[];
11
+ };
@@ -1,31 +1,31 @@
1
- export default function CustomValuesGroup(field: any, editField: any): {
2
- add: (event: any) => void;
3
- component: any;
4
- id: string;
5
- items: {
6
- autoFocusEntry: string;
7
- entries: {
8
- component: (props: any) => any;
9
- editField: any;
10
- field: any;
11
- id: string;
12
- idPrefix: any;
13
- index: any;
14
- validateFactory: any;
15
- }[];
16
- id: string;
17
- label: string;
18
- remove: (event: any) => any;
19
- }[];
20
- label: string;
21
- shouldSort: boolean;
22
- };
23
- /**
24
- * Returns copy of object without key.
25
- *
26
- * @param {Object} properties
27
- * @param {string} oldKey
28
- *
29
- * @returns {Object}
30
- */
31
- export function removeKey(properties: any, oldKey: string): any;
1
+ export default function CustomValuesGroup(field: any, editField: any): {
2
+ add: (event: any) => void;
3
+ component: any;
4
+ id: string;
5
+ items: {
6
+ autoFocusEntry: string;
7
+ entries: {
8
+ component: (props: any) => any;
9
+ editField: any;
10
+ field: any;
11
+ id: string;
12
+ idPrefix: any;
13
+ index: any;
14
+ validateFactory: any;
15
+ }[];
16
+ id: string;
17
+ label: string;
18
+ remove: (event: any) => any;
19
+ }[];
20
+ label: string;
21
+ shouldSort: boolean;
22
+ };
23
+ /**
24
+ * Returns copy of object without key.
25
+ *
26
+ * @param {Object} properties
27
+ * @param {string} oldKey
28
+ *
29
+ * @returns {Object}
30
+ */
31
+ export function removeKey(properties: any, oldKey: string): any;
@@ -1,5 +1,5 @@
1
- export default function GeneralGroup(field: any, editField: any): {
2
- id: string;
3
- label: string;
4
- entries: any[];
5
- };
1
+ export default function GeneralGroup(field: any, editField: any): {
2
+ id: string;
3
+ label: string;
4
+ entries: any[];
5
+ };
@@ -1,11 +1,11 @@
1
- export default function SerializationGroup(field: any, editField: any): {
2
- id: string;
3
- label: string;
4
- entries: {
5
- id: string;
6
- component: (props: any) => any;
7
- isEdited: any;
8
- editField: any;
9
- field: any;
10
- }[];
11
- };
1
+ export default function SerializationGroup(field: any, editField: any): {
2
+ id: string;
3
+ label: string;
4
+ entries: {
5
+ id: string;
6
+ component: (props: any) => any;
7
+ isEdited: any;
8
+ editField: any;
9
+ field: any;
10
+ }[];
11
+ };
@@ -1,14 +1,14 @@
1
- export default function ValidationGroup(field: any, editField: any): {
2
- id: string;
3
- label: string;
4
- entries: {
5
- id: string;
6
- component: typeof Required;
7
- getValue: (key: any) => () => any;
8
- field: any;
9
- isEdited: any;
10
- onChange: (key: any) => (value: any) => void;
11
- }[];
12
- };
13
- declare function Required(props: any): any;
14
- export {};
1
+ export default function ValidationGroup(field: any, editField: any): {
2
+ id: string;
3
+ label: string;
4
+ entries: {
5
+ id: string;
6
+ component: typeof Required;
7
+ getValue: (key: any) => () => any;
8
+ field: any;
9
+ isEdited: any;
10
+ onChange: (key: any) => (value: any) => void;
11
+ }[];
12
+ };
13
+ declare function Required(props: any): any;
14
+ export {};
@@ -1 +1 @@
1
- export default function ValuesGroups(field: any, editField: any): any[];
1
+ export default function ValuesGroups(field: any, editField: any): any[];
@@ -1,8 +1,8 @@
1
- export { default as GeneralGroup } from "./GeneralGroup";
2
- export { default as SerializationGroup } from "./SerializationGroup";
3
- export { default as ConstraintsGroup } from "./ConstraintsGroup";
4
- export { default as ValidationGroup } from "./ValidationGroup";
5
- export { default as ValuesGroups } from "./ValuesGroups";
6
- export { default as CustomValuesGroup } from "./CustomValuesGroup";
7
- export { default as AppearanceGroup } from "./AppearanceGroup";
8
- export { ConditionGroup } from "./ConditionGroup";
1
+ export { default as GeneralGroup } from "./GeneralGroup";
2
+ export { default as SerializationGroup } from "./SerializationGroup";
3
+ export { default as ConstraintsGroup } from "./ConstraintsGroup";
4
+ export { default as ValidationGroup } from "./ValidationGroup";
5
+ export { default as ValuesGroups } from "./ValuesGroups";
6
+ export { default as CustomValuesGroup } from "./CustomValuesGroup";
7
+ export { default as AppearanceGroup } from "./AppearanceGroup";
8
+ export { ConditionGroup } from "./ConditionGroup";
@@ -1,2 +1,2 @@
1
- export { default as useService } from "./usePropertiesPanelService";
2
- export { useVariables } from "./useVariables";
1
+ export { default as useService } from "./usePropertiesPanelService";
2
+ export { useVariables } from "./useVariables";
@@ -1 +1 @@
1
- export default function _default(type: any, strict: any): any;
1
+ export default function _default(type: any, strict: any): any;
@@ -1,6 +1,6 @@
1
- /**
2
- * Retrieve list of variables from the form schema.
3
- *
4
- * @returns { string[] } list of variables used in form schema
5
- */
6
- export function useVariables(): string[];
1
+ /**
2
+ * Retrieve list of variables from the form schema.
3
+ *
4
+ * @returns { string[] } list of variables used in form schema
5
+ */
6
+ export function useVariables(): string[];
@@ -1 +1 @@
1
- export {};
1
+ export {};
@@ -1,6 +1,6 @@
1
- declare namespace _default {
2
- const __init__: string[];
3
- const propertiesPanel: (string | typeof PropertiesPanelRenderer)[];
4
- }
5
- export default _default;
6
- import PropertiesPanelRenderer from "./PropertiesPanelRenderer";
1
+ declare namespace _default {
2
+ const __init__: string[];
3
+ const propertiesPanel: (string | typeof PropertiesPanelRenderer)[];
4
+ }
5
+ export default _default;
6
+ import PropertiesPanelRenderer from "./PropertiesPanelRenderer";