@overmap-ai/forms 1.0.32-react-flow-david.1 → 1.0.32-react-flow-david-fixes.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.
- package/dist/form/builder/Root.d.ts +13 -0
- package/dist/form/builder/{FieldBuilder.d.ts → components/FieldBuilder.d.ts} +3 -3
- package/dist/form/builder/components/FieldDropdownMenu.d.ts +9 -0
- package/dist/form/builder/components/FieldSectionBuilder.d.ts +5 -0
- package/dist/form/builder/components/FieldSectionDropdownMenu.d.ts +9 -0
- package/dist/form/builder/{FieldSectionWithActions.d.ts → components/FieldSectionWithActions.d.ts} +2 -5
- package/dist/form/builder/{FieldWithActions.d.ts → components/FieldWithActions.d.ts} +4 -3
- package/dist/form/builder/components/index.d.ts +6 -0
- package/dist/form/builder/constants.d.ts +3 -18
- package/dist/form/builder/context.d.ts +1 -1
- package/dist/form/builder/flow/FieldSectionConditionEdge.d.ts +3 -0
- package/dist/form/builder/flow/FieldSectionNode.d.ts +3 -0
- package/dist/form/builder/flow/FlowBuilder.d.ts +1 -0
- package/dist/form/builder/flow/constants.d.ts +3 -0
- package/dist/form/builder/flow/index.d.ts +2 -0
- package/dist/form/builder/flow/layout.d.ts +2 -0
- package/dist/form/builder/flow/typings.d.ts +14 -0
- package/dist/form/builder/hooks.d.ts +3 -3
- package/dist/form/builder/index.d.ts +8 -1
- package/dist/form/builder/list/FieldSectionConditionalItem.d.ts +7 -0
- package/dist/form/builder/list/ListBuilder.d.ts +1 -0
- package/dist/form/builder/list/index.d.ts +1 -0
- package/dist/form/builder/preview/Preview.d.ts +4 -0
- package/dist/form/builder/preview/index.d.ts +1 -0
- package/dist/form/builder/utils.d.ts +4 -25
- package/dist/form/conditions/BaseCondition/BaseCondition.d.ts +29 -0
- package/dist/form/conditions/BaseCondition/index.d.ts +2 -0
- package/dist/form/conditions/BaseCondition/typings.d.ts +18 -0
- package/dist/form/conditions/BooleanFieldCondition/BooleanFieldCondition.d.ts +17 -0
- package/dist/form/conditions/BooleanFieldCondition/BooleanFieldConditionCell.d.ts +6 -0
- package/dist/form/conditions/BooleanFieldCondition/index.d.ts +3 -0
- package/dist/form/conditions/BooleanFieldCondition/typings.d.ts +4 -0
- package/dist/form/conditions/CheckboxListFieldCondition/CheckboxListFieldCondition.d.ts +20 -0
- package/dist/form/conditions/CheckboxListFieldCondition/CheckboxListFieldConditionCell.d.ts +6 -0
- package/dist/form/conditions/CheckboxListFieldCondition/index.d.ts +3 -0
- package/dist/form/conditions/CheckboxListFieldCondition/typings.d.ts +4 -0
- package/dist/form/conditions/DateFieldCondition/DateFieldCondition.d.ts +22 -0
- package/dist/form/conditions/DateFieldCondition/DateFieldConditionCell.d.ts +6 -0
- package/dist/form/conditions/DateFieldCondition/index.d.ts +3 -0
- package/dist/form/conditions/DateFieldCondition/typings.d.ts +4 -0
- package/dist/form/conditions/MultiSelectFieldCondition/MultiSelectFieldCondition.d.ts +28 -0
- package/dist/form/conditions/MultiSelectFieldCondition/MultiSelectFieldConditionCell.d.ts +6 -0
- package/dist/form/conditions/MultiSelectFieldCondition/index.d.ts +3 -0
- package/dist/form/conditions/MultiSelectFieldCondition/typings.d.ts +4 -0
- package/dist/form/conditions/MultiStringFieldCondition/MultiStringFieldCondition.d.ts +20 -0
- package/dist/form/conditions/MultiStringFieldCondition/MultiStringFieldConditionCell.d.ts +6 -0
- package/dist/form/conditions/MultiStringFieldCondition/index.d.ts +3 -0
- package/dist/form/conditions/MultiStringFieldCondition/typings.d.ts +4 -0
- package/dist/form/conditions/NumberFieldCondition/NumberFieldCondition.d.ts +34 -0
- package/dist/form/conditions/NumberFieldCondition/NumberFieldConditionCell.d.ts +6 -0
- package/dist/form/conditions/NumberFieldCondition/index.d.ts +3 -0
- package/dist/form/conditions/NumberFieldCondition/typings.d.ts +4 -0
- package/dist/form/conditions/RadioFieldCondition/RadioFieldCondition.d.ts +19 -0
- package/dist/form/conditions/RadioFieldCondition/RadioFieldConditionCell.d.ts +6 -0
- package/dist/form/conditions/RadioFieldCondition/index.d.ts +3 -0
- package/dist/form/conditions/RadioFieldCondition/typings.d.ts +4 -0
- package/dist/form/conditions/ScanFieldCondition/ScanFieldCondition.d.ts +19 -0
- package/dist/form/conditions/ScanFieldCondition/ScanFieldConditionCell.d.ts +6 -0
- package/dist/form/conditions/ScanFieldCondition/index.d.ts +3 -0
- package/dist/form/conditions/ScanFieldCondition/typings.d.ts +4 -0
- package/dist/form/conditions/SelectFieldCondition/SelectFieldCondition.d.ts +19 -0
- package/dist/form/conditions/SelectFieldCondition/SelectFieldConditionCell.d.ts +6 -0
- package/dist/form/conditions/SelectFieldCondition/index.d.ts +3 -0
- package/dist/form/conditions/SelectFieldCondition/typings.d.ts +4 -0
- package/dist/form/conditions/StringFieldCondition/StringFieldCondition.d.ts +19 -0
- package/dist/form/conditions/StringFieldCondition/StringFieldConditionCell.d.ts +6 -0
- package/dist/form/conditions/StringFieldCondition/index.d.ts +3 -0
- package/dist/form/conditions/StringFieldCondition/typings.d.ts +4 -0
- package/dist/form/conditions/TextFieldCondition/TextFieldCondition.d.ts +20 -0
- package/dist/form/conditions/TextFieldCondition/TextFieldConditionCell.d.ts +6 -0
- package/dist/form/conditions/TextFieldCondition/index.d.ts +3 -0
- package/dist/form/conditions/TextFieldCondition/typings.d.ts +4 -0
- package/dist/form/conditions/UploadFieldCondition/UploadFieldCondition.d.ts +17 -0
- package/dist/form/conditions/UploadFieldCondition/UploadFieldConditionCell.d.ts +6 -0
- package/dist/form/conditions/UploadFieldCondition/index.d.ts +3 -0
- package/dist/form/conditions/UploadFieldCondition/typings.d.ts +4 -0
- package/dist/form/conditions/components/ConditionModifierDropdown.d.ts +4 -8
- package/dist/form/conditions/components/RemoveConditionButton.d.ts +8 -6
- package/dist/form/conditions/components/index.d.ts +7 -0
- package/dist/form/conditions/index.d.ts +15 -1
- package/dist/form/conditions/typings.d.ts +25 -13
- package/dist/form/conditions/utils.d.ts +19 -2
- package/dist/form/fields/BaseField/BaseField.d.ts +17 -48
- package/dist/form/fields/BaseField/hooks.d.ts +21 -17
- package/dist/form/fields/BaseField/typings.d.ts +9 -17
- package/dist/form/fields/BaseFormElement/BaseFormElement.d.ts +14 -0
- package/dist/form/fields/BaseFormElement/index.d.ts +2 -0
- package/dist/form/fields/BaseFormElement/typings.d.ts +9 -0
- package/dist/form/fields/BaseOptionsField/BaseOptionsField.d.ts +18 -0
- package/dist/form/fields/BaseOptionsField/index.d.ts +2 -0
- package/dist/form/fields/BaseOptionsField/typings.d.ts +9 -0
- package/dist/form/fields/BaseStringField/BaseStringField.d.ts +25 -0
- package/dist/form/fields/BaseStringField/index.d.ts +2 -0
- package/dist/form/fields/{StringOrTextField → BaseStringField}/typings.d.ts +1 -1
- package/dist/form/fields/BooleanField/BooleanField.d.ts +15 -23
- package/dist/form/fields/BooleanField/BooleanInput.d.ts +5 -1
- package/dist/form/fields/BooleanField/typings.d.ts +1 -2
- package/dist/form/fields/CheckboxListField/CheckboxListField.d.ts +12 -33
- package/dist/form/fields/CheckboxListField/CheckboxListInput.d.ts +5 -1
- package/dist/form/fields/CheckboxListField/typings.d.ts +2 -3
- package/dist/form/fields/DateField/DateField.d.ts +19 -23
- package/dist/form/fields/DateField/DateInput.d.ts +5 -1
- package/dist/form/fields/DateField/typings.d.ts +1 -2
- package/dist/form/fields/FieldSection/FieldSection.d.ts +38 -21
- package/dist/form/fields/FieldSection/FieldSectionLayout.d.ts +5 -4
- package/dist/form/fields/FieldSection/typings.d.ts +9 -7
- package/dist/form/fields/MultiSelectField/MultiSelectField.d.ts +15 -29
- package/dist/form/fields/MultiSelectField/MultiSelectInput.d.ts +4 -1
- package/dist/form/fields/MultiSelectField/typings.d.ts +2 -5
- package/dist/form/fields/MultiStringField/MultiStringField.d.ts +18 -38
- package/dist/form/fields/MultiStringField/MultiStringInput.d.ts +5 -5
- package/dist/form/fields/MultiStringField/typings.d.ts +5 -3
- package/dist/form/fields/NumberField/NumberField.d.ts +20 -34
- package/dist/form/fields/NumberField/NumberInput.d.ts +5 -1
- package/dist/form/fields/NumberField/typings.d.ts +1 -2
- package/dist/form/fields/RadioField/RadioField.d.ts +13 -33
- package/dist/form/fields/RadioField/RadioInput.d.ts +5 -1
- package/dist/form/fields/RadioField/typings.d.ts +2 -3
- package/dist/form/fields/ScanField/ScanField.d.ts +14 -23
- package/dist/form/fields/ScanField/ScanInput.d.ts +4 -1
- package/dist/form/fields/ScanField/typings.d.ts +1 -2
- package/dist/form/fields/SelectField/SelectField.d.ts +14 -27
- package/dist/form/fields/SelectField/SelectInput.d.ts +5 -1
- package/dist/form/fields/SelectField/typings.d.ts +2 -5
- package/dist/form/fields/StringField/StringField.d.ts +11 -21
- package/dist/form/fields/StringField/StringInput.d.ts +5 -1
- package/dist/form/fields/StringField/typings.d.ts +2 -6
- package/dist/form/fields/TextField/TextField.d.ts +10 -17
- package/dist/form/fields/TextField/TextInput.d.ts +5 -1
- package/dist/form/fields/TextField/typings.d.ts +2 -3
- package/dist/form/fields/UploadField/UploadField.d.ts +17 -29
- package/dist/form/fields/UploadField/UploadInput.d.ts +5 -1
- package/dist/form/fields/UploadField/typings.d.ts +1 -2
- package/dist/form/fields/constants.d.ts +3 -91
- package/dist/form/fields/hooks.d.ts +4 -4
- package/dist/form/fields/index.d.ts +4 -3
- package/dist/form/fields/typings.d.ts +36 -30
- package/dist/form/fields/utils.d.ts +10 -15
- package/dist/form/index.d.ts +1 -1
- package/dist/form/{conditions/modifiers → modifiers}/boolean.d.ts +1 -1
- package/dist/form/{conditions/modifier → modifiers}/conditionModifier.d.ts +3 -3
- package/dist/form/modifiers/date.d.ts +9 -0
- package/dist/form/{conditions/modifiers → modifiers}/file.d.ts +1 -1
- package/dist/form/{conditions/modifiers → modifiers}/index.d.ts +3 -0
- package/dist/form/{conditions/modifiers → modifiers}/number.d.ts +4 -1
- package/dist/form/{conditions/modifiers → modifiers}/string.d.ts +1 -1
- package/dist/form/modifiers/typings.d.ts +11 -0
- package/dist/form/modifiers/utils.d.ts +2 -0
- package/dist/form/observable/Observable.d.ts +5 -0
- package/dist/form/renderer/{FormRenderer/FormRenderer.d.ts → FormRenderer.d.ts} +4 -4
- package/dist/form/renderer/constants.d.ts +2 -0
- package/dist/form/renderer/context.d.ts +2 -7
- package/dist/form/renderer/index.d.ts +1 -2
- package/dist/form/schema/FieldSchema.d.ts +16 -0
- package/dist/form/schema/context.d.ts +2 -0
- package/dist/form/schema/index.d.ts +1 -0
- package/dist/form/typings.d.ts +6 -19
- package/dist/form/utils.d.ts +5 -5
- package/dist/forms.js +25675 -16112
- package/dist/forms.umd.cjs +35993 -62
- package/package.json +7 -5
- package/dist/form/builder/DropDispatch.d.ts +0 -27
- package/dist/form/builder/FieldActions.d.ts +0 -13
- package/dist/form/builder/FieldSectionBuilder.d.ts +0 -9
- package/dist/form/builder/FieldSectionConditionEdge.d.ts +0 -4
- package/dist/form/builder/FieldSectionConditionMenu.d.ts +0 -10
- package/dist/form/builder/FieldSectionConditionalItem.d.ts +0 -11
- package/dist/form/builder/FieldSectionNode.d.ts +0 -16
- package/dist/form/builder/FieldsEditor.d.ts +0 -1
- package/dist/form/builder/FormBuilder.d.ts +0 -26
- package/dist/form/builder/flow/CustomNode.d.ts +0 -1
- package/dist/form/builder/flow/FlowEditor.d.ts +0 -1
- package/dist/form/builder/flow/NodeSectionEditor.d.ts +0 -5
- package/dist/form/builder/flow/SectionSidePanel.d.ts +0 -5
- package/dist/form/conditions/components/BooleanFieldConditionCell.d.ts +0 -5
- package/dist/form/conditions/components/CheckboxListFieldConditionCell.d.ts +0 -5
- package/dist/form/conditions/components/DateFieldConditionCell.d.ts +0 -5
- package/dist/form/conditions/components/MultiSelectFieldConditionCell.d.ts +0 -5
- package/dist/form/conditions/components/MultiStringFieldConditionCell.d.ts +0 -5
- package/dist/form/conditions/components/NumberFieldConditionCell.d.ts +0 -5
- package/dist/form/conditions/components/RadioFieldConditionCell.d.ts +0 -5
- package/dist/form/conditions/components/ScanFieldConditionCell.d.ts +0 -5
- package/dist/form/conditions/components/SelectFieldConditionCell.d.ts +0 -5
- package/dist/form/conditions/components/StringFieldConditionCell.d.ts +0 -5
- package/dist/form/conditions/components/TextFieldConditionCell.d.ts +0 -5
- package/dist/form/conditions/components/UploadFieldConditionCell.d.ts +0 -5
- package/dist/form/conditions/condition/condition.d.ts +0 -26
- package/dist/form/conditions/condition/index.d.ts +0 -1
- package/dist/form/conditions/condition/typings.d.ts +0 -16
- package/dist/form/conditions/hooks.d.ts +0 -10
- package/dist/form/conditions/manager/conditionManager.d.ts +0 -24
- package/dist/form/conditions/manager/index.d.ts +0 -2
- package/dist/form/conditions/manager/typings.d.ts +0 -1
- package/dist/form/conditions/modifiers/date.d.ts +0 -5
- package/dist/form/fields/BaseSelectField/BaseSelectField.d.ts +0 -35
- package/dist/form/fields/BaseSelectField/index.d.ts +0 -2
- package/dist/form/fields/BaseSelectField/typings.d.ts +0 -5
- package/dist/form/fields/StringOrTextField/StringOrTextField.d.ts +0 -42
- package/dist/form/fields/StringOrTextField/index.d.ts +0 -2
- package/dist/form/renderer/FormRenderer/constants.d.ts +0 -2
- package/dist/form/renderer/PatchForm/Field.d.ts +0 -17
- package/dist/form/renderer/PatchForm/Provider.d.ts +0 -28
- package/dist/form/renderer/PatchForm/index.d.ts +0 -2
- package/dist/forms.css +0 -1
- /package/dist/form/builder/{FieldSettingsPopover.d.ts → components/FieldSettingsPopover.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@overmap-ai/forms",
|
|
3
|
-
"version": "1.0.32-react-flow-david.1",
|
|
3
|
+
"version": "1.0.32-react-flow-david-fixes.1",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"main": "dist/forms.umd.cjs",
|
|
6
6
|
"module": "dist/forms.js",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"build-storybook": "storybook build"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
|
-
"@overmap-ai/blocks": "1.0.
|
|
31
|
+
"@overmap-ai/blocks": "1.0.40-alpha.1",
|
|
32
32
|
"react": ">=18.2.0 <20.0.0",
|
|
33
33
|
"react-dom": ">=18.2.0 <20.0.0",
|
|
34
34
|
"tailwindcss": "^4.0.0"
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@chromatic-com/storybook": "^4.0.1",
|
|
38
38
|
"@eslint/js": "^9.31.0",
|
|
39
|
-
"@overmap-ai/blocks": "1.0.
|
|
39
|
+
"@overmap-ai/blocks": "1.0.40-alpha.1",
|
|
40
40
|
"@radix-ui/colors": "^3.0.0",
|
|
41
41
|
"@rollup/plugin-commonjs": "^28.0.6",
|
|
42
42
|
"@storybook/addon-a11y": "^9.0.18",
|
|
@@ -52,7 +52,6 @@
|
|
|
52
52
|
"@types/node": "^22.13.0",
|
|
53
53
|
"@types/react": "^19.0.0",
|
|
54
54
|
"@types/react-dom": "^19.0.0",
|
|
55
|
-
"@types/react-icons": "^3.0.0",
|
|
56
55
|
"@vitejs/plugin-react": "^4.7.0",
|
|
57
56
|
"@vitejs/plugin-react-swc": "^3.11.0",
|
|
58
57
|
"eslint": "^9.31.0",
|
|
@@ -66,6 +65,7 @@
|
|
|
66
65
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
67
66
|
"eslint-plugin-storybook": "^9.0.18",
|
|
68
67
|
"globals": "^16.3.0",
|
|
68
|
+
"graphology-types": "^0.24.8",
|
|
69
69
|
"husky": "^9.1.7",
|
|
70
70
|
"jiti": "^2.5.1",
|
|
71
71
|
"prettier": "^3.6.2",
|
|
@@ -93,10 +93,12 @@
|
|
|
93
93
|
"class-variance-authority": "^0.7.0",
|
|
94
94
|
"file-saver": "^2.0.5",
|
|
95
95
|
"formik": "^2.4.6",
|
|
96
|
+
"graphology": "^0.26.0",
|
|
97
|
+
"graphology-dag": "^0.4.1",
|
|
96
98
|
"lodash.clonedeep": "^4.5.0",
|
|
97
99
|
"lodash.get": "^4.4.2",
|
|
98
100
|
"lodash.set": "^4.3.2",
|
|
99
|
-
"react
|
|
101
|
+
"lucide-react": "^0.542.0",
|
|
100
102
|
"react-zxing": "^2.1.0",
|
|
101
103
|
"uuid": "^11.1.0"
|
|
102
104
|
},
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { Reducer } from 'react';
|
|
2
|
-
import { SerializedFieldSection } from '../fields';
|
|
3
|
-
export interface SmallFieldSection {
|
|
4
|
-
/** is dropping disabled in this section? */
|
|
5
|
-
disabled: boolean;
|
|
6
|
-
/** id's of field that may not be dropped on this section */
|
|
7
|
-
conditionFields: Set<string>;
|
|
8
|
-
/** the index of the section the condition is in */
|
|
9
|
-
conditionIndex?: number;
|
|
10
|
-
/** the index of the section */
|
|
11
|
-
index: number;
|
|
12
|
-
/** label of the section */
|
|
13
|
-
label: string | null;
|
|
14
|
-
}
|
|
15
|
-
export type DropState = Record<string, SmallFieldSection>;
|
|
16
|
-
export type DropAction = {
|
|
17
|
-
type: "release";
|
|
18
|
-
} | {
|
|
19
|
-
type: "hold";
|
|
20
|
-
fieldId: string;
|
|
21
|
-
} | {
|
|
22
|
-
type: "update";
|
|
23
|
-
state: DropState;
|
|
24
|
-
};
|
|
25
|
-
export declare const reducer: Reducer<DropState, DropAction>;
|
|
26
|
-
/** creates a `DropState` from a list of `SerializedFieldSection` objects */
|
|
27
|
-
export declare const initializer: (fields: SerializedFieldSection[]) => DropState;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { ChangeEvent } from 'react';
|
|
2
|
-
import { FieldTypeIdentifier } from '../fields';
|
|
3
|
-
interface FieldActionsProps {
|
|
4
|
-
index: number;
|
|
5
|
-
type: FieldTypeIdentifier;
|
|
6
|
-
sectionIndex?: number;
|
|
7
|
-
remove: () => void;
|
|
8
|
-
duplicate: () => void;
|
|
9
|
-
move: (direction: "up" | "down") => void;
|
|
10
|
-
upload?: (event: ChangeEvent<HTMLInputElement>) => void;
|
|
11
|
-
}
|
|
12
|
-
export declare const FieldActions: import('react').MemoExoticComponent<(props: FieldActionsProps) => import("react/jsx-runtime").JSX.Element>;
|
|
13
|
-
export {};
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { ISerializedField, SerializedFieldSection } from '../fields';
|
|
2
|
-
import { NestedFieldPath } from './typings';
|
|
3
|
-
export interface FieldSectionBuilderProps {
|
|
4
|
-
index: number;
|
|
5
|
-
parentPath: NestedFieldPath;
|
|
6
|
-
section: SerializedFieldSection;
|
|
7
|
-
conditionalSourceFields?: ISerializedField[];
|
|
8
|
-
}
|
|
9
|
-
export declare const FieldSectionBuilder: import('react').MemoExoticComponent<(props: FieldSectionBuilderProps) => import("react/jsx-runtime").JSX.Element>;
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { Edge, EdgeProps } from '@xyflow/react';
|
|
2
|
-
export type FieldSectionConditionEdgeData = {};
|
|
3
|
-
export type FieldSectionConditionEdge = Edge<FieldSectionConditionEdgeData, "fieldSectionCondition">;
|
|
4
|
-
export declare const FieldSectionConditionEdgeComponent: import('react').MemoExoticComponent<(props: EdgeProps<FieldSectionConditionEdge>) => import("react/jsx-runtime").JSX.Element>;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { MenuRootProps, MenuVariantProps } from '@overmap-ai/blocks';
|
|
2
|
-
import { ReactElement } from 'react';
|
|
3
|
-
import { ConditionManager } from '../conditions/manager';
|
|
4
|
-
import { FieldSection } from '../fields';
|
|
5
|
-
export interface FieldSectionConditionMenuProps extends MenuRootProps, MenuVariantProps {
|
|
6
|
-
children: ReactElement;
|
|
7
|
-
fieldSection: FieldSection;
|
|
8
|
-
conditionManager: ConditionManager;
|
|
9
|
-
}
|
|
10
|
-
export declare const FieldSectionConditionMenu: import('react').NamedExoticComponent<FieldSectionConditionMenuProps>;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { AnySerializedCondition } from '../conditions/condition/typings';
|
|
2
|
-
import { FieldSection } from '../fields';
|
|
3
|
-
import { NestedFieldPath } from './typings';
|
|
4
|
-
interface FieldSectionConditionalItemProps {
|
|
5
|
-
fieldSection: FieldSection;
|
|
6
|
-
fieldSectionIndex: number;
|
|
7
|
-
parentPath: NestedFieldPath;
|
|
8
|
-
serializedConditions: AnySerializedCondition[];
|
|
9
|
-
}
|
|
10
|
-
export declare const FieldSectionConditionalItem: import('react').NamedExoticComponent<FieldSectionConditionalItemProps>;
|
|
11
|
-
export {};
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { Node, NodeProps } from '@xyflow/react';
|
|
2
|
-
import { SerializedFieldSection } from '../fields';
|
|
3
|
-
export type FieldSectionNodeData = {
|
|
4
|
-
field: SerializedFieldSection;
|
|
5
|
-
index: number;
|
|
6
|
-
fieldsOnly: boolean;
|
|
7
|
-
};
|
|
8
|
-
export type FieldSectionNode = Node<FieldSectionNodeData, "fieldSection">;
|
|
9
|
-
interface FlowFieldsSectionWithActionsNodeType extends Node<{
|
|
10
|
-
field: SerializedFieldSection;
|
|
11
|
-
index: number;
|
|
12
|
-
fieldsOnly: boolean;
|
|
13
|
-
}> {
|
|
14
|
-
}
|
|
15
|
-
export declare const FieldSectionNodeComponent: import('react').MemoExoticComponent<(props: NodeProps<FlowFieldsSectionWithActionsNodeType>) => import("react/jsx-runtime").JSX.Element>;
|
|
16
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const FieldsEditor: import('react').MemoExoticComponent<() => import("react/jsx-runtime").JSX.Element>;
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { ISerializedField } from '../fields';
|
|
2
|
-
import { FormBuilderSaveHandler } from './typings';
|
|
3
|
-
interface FormBuilderProps {
|
|
4
|
-
onCancel?: () => void;
|
|
5
|
-
onSave: FormBuilderSaveHandler;
|
|
6
|
-
initialTitle?: string;
|
|
7
|
-
initialDescription?: string;
|
|
8
|
-
initialFields?: ISerializedField[];
|
|
9
|
-
/** @default true */
|
|
10
|
-
showExplainerText?: boolean;
|
|
11
|
-
/** @default true */
|
|
12
|
-
showFormTitle?: boolean;
|
|
13
|
-
/** Show and edit non-section fields only. Functionally, these fields will be in a single section with no label
|
|
14
|
-
* @default false
|
|
15
|
-
*/
|
|
16
|
-
fieldsOnly?: boolean;
|
|
17
|
-
/** Show the Edit and Preview tabs at the top of the component. If false, the preview is entirely inaccessible.
|
|
18
|
-
* @default true
|
|
19
|
-
*/
|
|
20
|
-
showTabs?: boolean;
|
|
21
|
-
disableRequiredFields?: boolean;
|
|
22
|
-
enableReinitialize?: boolean;
|
|
23
|
-
tabsListClassName?: string;
|
|
24
|
-
}
|
|
25
|
-
export declare const FormBuilder: import('react').NamedExoticComponent<FormBuilderProps & import('react').RefAttributes<HTMLDivElement>>;
|
|
26
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const CustomNode: import('react').MemoExoticComponent<(props: any) => import("react/jsx-runtime").JSX.Element>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const FlowEditor: import('react').MemoExoticComponent<() => import("react/jsx-runtime").JSX.Element>;
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { BooleanField, ConditionRenderProps } from '../../fields';
|
|
2
|
-
interface BooleanFieldConditionCellProps extends ConditionRenderProps<BooleanField> {
|
|
3
|
-
}
|
|
4
|
-
export declare const BooleanFieldConditionCell: (props: BooleanFieldConditionCellProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export {};
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { CheckboxListField, ConditionRenderProps } from '../../fields';
|
|
2
|
-
interface CheckboxListFieldConditionCellProps extends ConditionRenderProps<CheckboxListField> {
|
|
3
|
-
}
|
|
4
|
-
export declare const CheckboxListFieldConditionCell: (props: CheckboxListFieldConditionCellProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export {};
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { ConditionRenderProps, DateField } from '../../fields';
|
|
2
|
-
interface DateFieldConditionCellProps extends ConditionRenderProps<DateField> {
|
|
3
|
-
}
|
|
4
|
-
export declare const DateFieldConditionCell: (props: DateFieldConditionCellProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export {};
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { ConditionRenderProps, MultiSelectField } from '../../fields';
|
|
2
|
-
interface MultiSelectFieldConditionCellProps extends ConditionRenderProps<MultiSelectField> {
|
|
3
|
-
}
|
|
4
|
-
export declare const MultiSelectFieldConditionCell: (props: MultiSelectFieldConditionCellProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export {};
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { ConditionRenderProps, MultiStringField } from '../../fields';
|
|
2
|
-
interface MultiStringFieldConditionCellProps extends ConditionRenderProps<MultiStringField> {
|
|
3
|
-
}
|
|
4
|
-
export declare const MultiStringFieldConditionCell: (props: MultiStringFieldConditionCellProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export {};
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { ConditionRenderProps, NumberField } from '../../fields';
|
|
2
|
-
interface NumberFieldConditionCellProps extends ConditionRenderProps<NumberField> {
|
|
3
|
-
}
|
|
4
|
-
export declare const NumberFieldConditionCell: (props: NumberFieldConditionCellProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export {};
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { ConditionRenderProps, RadioField } from '../../fields';
|
|
2
|
-
interface RadioFieldConditionCellProps extends ConditionRenderProps<RadioField> {
|
|
3
|
-
}
|
|
4
|
-
export declare const RadioFieldConditionCell: (props: RadioFieldConditionCellProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export {};
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { ConditionRenderProps, ScanField } from '../../fields';
|
|
2
|
-
interface ScanFieldConditionCellProps extends ConditionRenderProps<ScanField> {
|
|
3
|
-
}
|
|
4
|
-
export declare const ScanFieldConditionCell: (props: ScanFieldConditionCellProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export {};
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { ConditionRenderProps, SelectField } from '../../fields';
|
|
2
|
-
interface SelectFieldConditionCellProps extends ConditionRenderProps<SelectField> {
|
|
3
|
-
}
|
|
4
|
-
export declare const SelectFieldConditionCell: (props: SelectFieldConditionCellProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export {};
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { ConditionRenderProps, StringField } from '../../fields';
|
|
2
|
-
interface StringFieldConditionCellProps extends ConditionRenderProps<StringField> {
|
|
3
|
-
}
|
|
4
|
-
export declare const StringFieldConditionCell: (props: StringFieldConditionCellProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export {};
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { ConditionRenderProps, TextField } from '../../fields';
|
|
2
|
-
interface TextFieldConditionCellProps extends ConditionRenderProps<TextField> {
|
|
3
|
-
}
|
|
4
|
-
export declare const TextFieldConditionCell: (props: TextFieldConditionCellProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export {};
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { ConditionRenderProps, UploadField } from '../../fields';
|
|
2
|
-
interface UploadFieldConditionCellProps extends ConditionRenderProps<UploadField> {
|
|
3
|
-
}
|
|
4
|
-
export declare const UploadFieldConditionCell: (props: UploadFieldConditionCellProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export {};
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { AnyField, ConditionValueOfField, ValueOfField } from '../../fields';
|
|
2
|
-
import { ConditionManager } from '../manager';
|
|
3
|
-
import { ConditionModifiersOfField } from '../typings';
|
|
4
|
-
import { AnyCondition } from './typings';
|
|
5
|
-
export interface ConditionConfig<TField extends AnyField> {
|
|
6
|
-
id: string;
|
|
7
|
-
conditionValue: ConditionValueOfField<TField> | undefined;
|
|
8
|
-
conditionModifier: ConditionModifiersOfField<TField>;
|
|
9
|
-
field: TField;
|
|
10
|
-
}
|
|
11
|
-
export declare class Condition<TField extends AnyField> {
|
|
12
|
-
readonly id: string;
|
|
13
|
-
private conditionValue;
|
|
14
|
-
private conditionModifier;
|
|
15
|
-
readonly field: TField;
|
|
16
|
-
private subscribers;
|
|
17
|
-
constructor(config: ConditionConfig<TField>);
|
|
18
|
-
subscribe: (callback: (condition: AnyCondition) => void) => () => void;
|
|
19
|
-
private notifySubscribers;
|
|
20
|
-
getConditionValue: () => ConditionValueOfField<TField> | undefined;
|
|
21
|
-
setConditionValue: (filterValue: ConditionValueOfField<TField> | undefined) => void;
|
|
22
|
-
getConditionModifier: () => ConditionModifiersOfField<TField>;
|
|
23
|
-
setConditionModifier: (filterModifier: ConditionModifiersOfField<TField>) => void;
|
|
24
|
-
render: (conditionManager: ConditionManager) => import('react').ReactNode;
|
|
25
|
-
apply: (value: ValueOfField<TField>) => boolean;
|
|
26
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './condition';
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { AnyField, ConditionValueOfField, SerializedConditionValueOfField } from '../../fields';
|
|
2
|
-
import { ConditionModifiersOfField } from '../typings';
|
|
3
|
-
import { Condition } from './condition';
|
|
4
|
-
export interface SerializedCondition<TField extends AnyField> {
|
|
5
|
-
id: string;
|
|
6
|
-
fieldId: string;
|
|
7
|
-
conditionValue?: SerializedConditionValueOfField<TField>;
|
|
8
|
-
conditionModifier: ConditionModifiersOfField<TField>;
|
|
9
|
-
}
|
|
10
|
-
export type AnySerializedCondition = SerializedCondition<any>;
|
|
11
|
-
export interface CreateConditionConfig<TField extends AnyField> {
|
|
12
|
-
id?: string;
|
|
13
|
-
conditionValue?: ConditionValueOfField<TField>;
|
|
14
|
-
conditionModifier?: ConditionModifiersOfField<TField>;
|
|
15
|
-
}
|
|
16
|
-
export type AnyCondition = Condition<AnyField>;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { FieldSection } from '../fields';
|
|
2
|
-
import { AnyCondition } from './condition/typings';
|
|
3
|
-
import { ConditionManager } from './manager';
|
|
4
|
-
interface useConditionManagerProps {
|
|
5
|
-
section: FieldSection;
|
|
6
|
-
conditions: AnyCondition[];
|
|
7
|
-
onConditionsChange?: (conditions: AnyCondition[]) => void;
|
|
8
|
-
}
|
|
9
|
-
export declare const useConditionManager: (props: useConditionManagerProps) => ConditionManager;
|
|
10
|
-
export {};
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { FieldSection } from '../../fields';
|
|
2
|
-
import { FormValues } from '../../typings';
|
|
3
|
-
import { AnyCondition } from '../condition/typings';
|
|
4
|
-
export interface ConditionManagerConfig {
|
|
5
|
-
section: FieldSection;
|
|
6
|
-
conditions: AnyCondition[];
|
|
7
|
-
}
|
|
8
|
-
export declare class ConditionManager {
|
|
9
|
-
private section;
|
|
10
|
-
private conditions;
|
|
11
|
-
private onConditionsChange?;
|
|
12
|
-
private constructor();
|
|
13
|
-
static create(config: ConditionManagerConfig): ConditionManager;
|
|
14
|
-
private initConditions;
|
|
15
|
-
private subscribeToCondition;
|
|
16
|
-
getConditions: () => AnyCondition[];
|
|
17
|
-
setConditions: (conditions: AnyCondition[]) => void;
|
|
18
|
-
setOnConditionChange: (onConditionsChange?: (conditions: AnyCondition[]) => void) => void;
|
|
19
|
-
setSection: (section: FieldSection) => void;
|
|
20
|
-
apply: (conditions: AnyCondition[], values: FormValues) => boolean;
|
|
21
|
-
addCondition: (condition: AnyCondition) => void;
|
|
22
|
-
removeCondition: (conditionId: string) => void;
|
|
23
|
-
removeAll: () => void;
|
|
24
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { ConditionModifier } from '../modifier/conditionModifier';
|
|
2
|
-
export declare const DateEqualsConditionModifier: ConditionModifier<Date, Date, string>;
|
|
3
|
-
export declare const DateNotEqualsConditionModifier: ConditionModifier<Date, Date, string>;
|
|
4
|
-
export declare const DateBeforeConditionModifier: ConditionModifier<Date, Date, string>;
|
|
5
|
-
export declare const DateAfterConditionModifier: ConditionModifier<Date, Date, string>;
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { BaseField, ChildFieldOptions } from '../BaseField';
|
|
2
|
-
import { MultiStringField } from '../MultiStringField';
|
|
3
|
-
import { FieldValue } from '../typings';
|
|
4
|
-
import { SelectFieldOption } from './typings';
|
|
5
|
-
/**
|
|
6
|
-
* The options passed to the constructor of SelectField.
|
|
7
|
-
*/
|
|
8
|
-
export interface BaseSelectFieldOptions<TValue, TIdentifier extends "select" | "multi-select"> extends ChildFieldOptions<TValue> {
|
|
9
|
-
/** When instantiating a SelectField, you can either pass an array of strings or an array of objects. User-created
|
|
10
|
-
* form only support arrays of strings. For more complex internal purposes, you can provide an array of objects
|
|
11
|
-
* where the `label` is the text to display to the user and the `value` is the value handled by Formik.*/
|
|
12
|
-
options: string[] | SelectFieldOption[];
|
|
13
|
-
type: TIdentifier;
|
|
14
|
-
placeholder?: string;
|
|
15
|
-
}
|
|
16
|
-
export declare abstract class BaseSelectField<TIdentifier extends "select" | "multi-select", TValue extends FieldValue, TConditionValue, TSerializedConditionValue = TConditionValue> extends BaseField<TIdentifier, TValue, TConditionValue, TSerializedConditionValue> {
|
|
17
|
-
readonly options: SelectFieldOption[];
|
|
18
|
-
readonly onlyValidateAfterTouched = false;
|
|
19
|
-
readonly placeholder: string;
|
|
20
|
-
protected constructor(options: BaseSelectFieldOptions<TValue, TIdentifier>);
|
|
21
|
-
protected _serialize(): {
|
|
22
|
-
options: SelectFieldOption[];
|
|
23
|
-
placeholder: string;
|
|
24
|
-
label: string;
|
|
25
|
-
required: boolean;
|
|
26
|
-
image?: File | Promise<File>;
|
|
27
|
-
description?: string | null;
|
|
28
|
-
identifier: string;
|
|
29
|
-
type: TIdentifier;
|
|
30
|
-
};
|
|
31
|
-
static getFieldCreationSchema(parentPath?: string): {
|
|
32
|
-
field: MultiStringField;
|
|
33
|
-
showDirectly: boolean;
|
|
34
|
-
}[];
|
|
35
|
-
}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import { BaseField, FieldOptions } from '../BaseField';
|
|
2
|
-
import { NumberField } from '../NumberField';
|
|
3
|
-
import { InputFieldLevelValidator, InputValidator } from '../typings';
|
|
4
|
-
import { BaseSerializedStringField } from './typings';
|
|
5
|
-
export interface StringOrTextFieldOptions extends FieldOptions<string> {
|
|
6
|
-
minLength?: number;
|
|
7
|
-
maxLength?: number;
|
|
8
|
-
placeholder?: string;
|
|
9
|
-
}
|
|
10
|
-
export type SerializedStringOrTextField<TIdentifier extends "string" | "text"> = Omit<BaseSerializedStringField, "type"> & {
|
|
11
|
-
type: TIdentifier;
|
|
12
|
-
};
|
|
13
|
-
export declare abstract class StringOrTextField<TIdentifier extends "string" | "text"> extends BaseField<TIdentifier, string, string, string> {
|
|
14
|
-
readonly minLength?: number;
|
|
15
|
-
readonly maxLength: number;
|
|
16
|
-
readonly placeholder: string;
|
|
17
|
-
readonly defaultConditionValue: string | undefined;
|
|
18
|
-
readonly defaultConditionModifier: keyof typeof this.modifiers;
|
|
19
|
-
readonly modifiers: {
|
|
20
|
-
equals: import('../../conditions/typings').FieldConditionModifierConfig<string, string, unknown, string, string, string>;
|
|
21
|
-
notEquals: import('../../conditions/typings').FieldConditionModifierConfig<string, string, unknown, string, string, string>;
|
|
22
|
-
includes: import('../../conditions/typings').FieldConditionModifierConfig<string, string, unknown, string, string, string>;
|
|
23
|
-
excludes: import('../../conditions/typings').FieldConditionModifierConfig<string, string, unknown, string, string, string>;
|
|
24
|
-
};
|
|
25
|
-
protected constructor(options: StringOrTextFieldOptions);
|
|
26
|
-
/**
|
|
27
|
-
* This function returns a function that validates that the value given for "minimum length" (when creating a new field) is less than or
|
|
28
|
-
* equal to the value given for "maximum length".
|
|
29
|
-
*/
|
|
30
|
-
static _validateMin: (path: string) => InputValidator<number>;
|
|
31
|
-
/**
|
|
32
|
-
* This function returns a function that validates that the value given for "maximum length" (when creating a new field) is greater than or
|
|
33
|
-
* equal to the value given for "minimum length".
|
|
34
|
-
*/
|
|
35
|
-
static _validateMax: (path: string) => InputValidator<number>;
|
|
36
|
-
static getFieldCreationSchema(parentPath?: string): {
|
|
37
|
-
field: NumberField;
|
|
38
|
-
showDirectly: boolean;
|
|
39
|
-
}[];
|
|
40
|
-
getFieldValidators(): InputFieldLevelValidator<string>[];
|
|
41
|
-
protected _serialize(): SerializedStringOrTextField<TIdentifier>;
|
|
42
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { FieldMetaProps } from 'formik';
|
|
2
|
-
import { ReactNode } from 'react';
|
|
3
|
-
import { FieldValue } from '../../fields';
|
|
4
|
-
interface RenderArgs {
|
|
5
|
-
value: FieldValue;
|
|
6
|
-
meta: FieldMetaProps<unknown>;
|
|
7
|
-
/** Intermediate changes to the field value */
|
|
8
|
-
setValue: (value: FieldValue) => void;
|
|
9
|
-
/** EX: when the onBlur event is fired */
|
|
10
|
-
patchValue: () => void;
|
|
11
|
-
}
|
|
12
|
-
interface PatchFieldProps {
|
|
13
|
-
name: string;
|
|
14
|
-
render: (args: RenderArgs) => ReactNode;
|
|
15
|
-
}
|
|
16
|
-
export declare const PatchField: import('react').MemoExoticComponent<(props: PatchFieldProps) => import("react/jsx-runtime").JSX.Element>;
|
|
17
|
-
export {};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { FormikErrors } from 'formik';
|
|
2
|
-
import { ReactNode } from 'react';
|
|
3
|
-
import { FormBuilderValues } from '../../builder';
|
|
4
|
-
import { FormValues, ISchema } from '../../typings';
|
|
5
|
-
interface PatchFormProviderProps {
|
|
6
|
-
children: ReactNode;
|
|
7
|
-
schema: ISchema;
|
|
8
|
-
values: FormValues;
|
|
9
|
-
/** Called when `patchValue` is called on a child `PatchField` and the form is valid.
|
|
10
|
-
* @example ```js
|
|
11
|
-
* {"field name": "field value"}
|
|
12
|
-
* ``` */
|
|
13
|
-
onPatch: (values: FormValues) => void;
|
|
14
|
-
/** Called when `patchValue` is called on a child `PatchField` and the form is not valid.
|
|
15
|
-
* After this event is fired, the form is reset to the initial values.
|
|
16
|
-
* @example ```js
|
|
17
|
-
* {"field name": "error message"}
|
|
18
|
-
* ``` */
|
|
19
|
-
onError: (error: FormikErrors<FormValues | FormBuilderValues>) => void;
|
|
20
|
-
className?: string;
|
|
21
|
-
/** If true (default), the form will only submit if there are changes. */
|
|
22
|
-
requiresDiff?: boolean;
|
|
23
|
-
/** Called when the form's dirty state changes. */
|
|
24
|
-
onDirtyChange?: (dirty: boolean) => void;
|
|
25
|
-
}
|
|
26
|
-
/** Use PatchForms to create patch edits to existing form rather than editing the entire form. */
|
|
27
|
-
export declare const PatchFormProvider: import('react').NamedExoticComponent<PatchFormProviderProps & import('react').RefAttributes<HTMLFormElement>>;
|
|
28
|
-
export {};
|
package/dist/forms.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
[data-floating-content]{z-index:3500!important}.react-flow__controls{background-color:var(--color-panel);border:1px solid var(--base-a6);box-shadow:0 1px 2px #0000000d}.react-flow__controls button{background:transparent;color:var(--base-a11);border:1px solid var(--base-a6)}.react-flow__controls button:hover,.react-flow__controls button:focus-visible{background-color:var(--base-a3);color:var(--base-a12);border-color:var(--base-a8)}.react-flow__minimap{background-color:var(--color-panel);border:1px solid var(--base-a6)}.react-flow__attribution{display:none}.react-flow__handle{background-color:var(--base-a8);border:1px solid var(--base-a6);width:10px;height:10px}.react-flow__handle:hover,.react-flow__handle:focus-visible{background-color:var(--base-a10);border-color:var(--base-a8)}.react-flow__handle-connecting{background-color:var(--base-a11);border-color:var(--base-a10)}.react-flow__handle-valid{background-color:var(--base-a9);border-color:var(--base-a9)}.react-flow__edge-path{stroke:var(--base-a8)}.react-flow__edge.selected .react-flow__edge-path{stroke:var(--base-a11);stroke-width:2.5}.react-flow__edge.animated .react-flow__edge-path{stroke:var(--base-a10)}.react-flow__selection,.react-flow__selection-rect,.react-flow__nodesselection-rect{fill:var(--base-a3)!important;stroke:var(--base-a8)!important}[data-selected=true]{box-shadow:0 0 0 2px var(--base-a8)}
|
/package/dist/form/builder/{FieldSettingsPopover.d.ts → components/FieldSettingsPopover.d.ts}
RENAMED
|
File without changes
|