@vc-shell/framework 1.0.212 → 1.0.213
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/CHANGELOG.md +15 -0
- package/dist/framework.js +11 -5
- package/dist/index.css +1 -1
- package/dist/shared/modules/dynamic/components/SchemaRender.d.ts +3 -3
- package/dist/shared/modules/dynamic/components/fields/Button.d.ts +1 -1
- package/dist/shared/modules/dynamic/components/fields/Card.d.ts +1 -1
- package/dist/shared/modules/dynamic/components/fields/Checkbox.d.ts +1 -1
- package/dist/shared/modules/dynamic/components/fields/ContentField.d.ts +1 -1
- package/dist/shared/modules/dynamic/components/fields/CustomComponent.d.ts +1 -1
- package/dist/shared/modules/dynamic/components/fields/DynamicProperty.d.ts +1 -1
- package/dist/shared/modules/dynamic/components/fields/EditorField.d.ts +1 -1
- package/dist/shared/modules/dynamic/components/fields/Fieldset.d.ts +1 -1
- package/dist/shared/modules/dynamic/components/fields/GalleryField.d.ts +1 -1
- package/dist/shared/modules/dynamic/components/fields/ImageField.d.ts +1 -1
- package/dist/shared/modules/dynamic/components/fields/InputCurrency.d.ts +1 -1
- package/dist/shared/modules/dynamic/components/fields/InputField.d.ts +1 -1
- package/dist/shared/modules/dynamic/components/fields/MultivalueField.d.ts +1 -1
- package/dist/shared/modules/dynamic/components/fields/RatingField.d.ts +1 -1
- package/dist/shared/modules/dynamic/components/fields/SelectField.d.ts +1 -1
- package/dist/shared/modules/dynamic/components/fields/StatusField.d.ts +1 -1
- package/dist/shared/modules/dynamic/components/fields/SwitchField.d.ts +1 -1
- package/dist/shared/modules/dynamic/components/fields/Table.d.ts +1 -1
- package/dist/shared/modules/dynamic/components/fields/TextareaField.d.ts +1 -1
- package/dist/shared/modules/dynamic/components/fields/VideoField.d.ts +1 -1
- package/dist/shared/modules/dynamic/components/fields/props.d.ts +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/Button.stories.d.ts +3 -3
- package/dist/shared/modules/dynamic/components/fields/storybook/Card.stories.d.ts +3 -3
- package/dist/shared/modules/dynamic/components/fields/storybook/Checkbox.stories.d.ts +3 -3
- package/dist/shared/modules/dynamic/components/fields/storybook/ContentField.stories.d.ts +3 -3
- package/dist/shared/modules/dynamic/components/fields/storybook/EditorField.stories.d.ts +3 -3
- package/dist/shared/modules/dynamic/components/fields/storybook/Fieldset.stories.d.ts +3 -3
- package/dist/shared/modules/dynamic/components/fields/storybook/GalleryField.stories.d.ts +3 -3
- package/dist/shared/modules/dynamic/components/fields/storybook/ImageField.stories.d.ts +3 -3
- package/dist/shared/modules/dynamic/components/fields/storybook/InputCurrency.stories.d.ts +3 -3
- package/dist/shared/modules/dynamic/components/fields/storybook/InputField.stories.d.ts +3 -3
- package/dist/shared/modules/dynamic/components/fields/storybook/MultivalueField.stories.d.ts +3 -3
- package/dist/shared/modules/dynamic/components/fields/storybook/RatingField.stories.d.ts +3 -3
- package/dist/shared/modules/dynamic/components/fields/storybook/SelectField.stories.d.ts +3 -3
- package/dist/shared/modules/dynamic/components/fields/storybook/StatusField.stories.d.ts +3 -3
- package/dist/shared/modules/dynamic/components/fields/storybook/TextareaField.stories.d.ts +3 -3
- package/dist/shared/modules/dynamic/components/fields/storybook/VideoField.stories.d.ts +3 -3
- package/dist/shared/modules/dynamic/components/fields/storybook/pages/DynamicRender.d.ts +3 -3
- package/dist/shared/modules/dynamic/factories/base/useDetailsFactory.d.ts +3 -3
- package/dist/shared/modules/dynamic/factories/base/useDetailsFactory.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/factories/base/useListFactory.d.ts +2 -2
- package/dist/shared/modules/dynamic/factories/base/useListFactory.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/factories/types/index.d.ts +5 -2
- package/dist/shared/modules/dynamic/factories/types/index.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/pages/dynamic-blade-form.vue.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/pages/dynamic-blade-list.vue.d.ts +1 -1
- package/dist/shared/modules/dynamic/pages/dynamic-blade-list.vue.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/shared/modules/dynamic/factories/base/useDetailsFactory.ts +3 -3
- package/shared/modules/dynamic/factories/base/useListFactory.ts +2 -2
- package/shared/modules/dynamic/factories/types/index.ts +11 -2
- package/shared/modules/dynamic/pages/dynamic-blade-form.vue +11 -8
- package/shared/modules/dynamic/pages/dynamic-blade-list.vue +17 -7
- package/ui/components/atoms/vc-widget/vc-widget.vue +1 -1
|
@@ -7,7 +7,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
7
7
|
settings: import("../types").SettingsSchema;
|
|
8
8
|
load: import("../../../..").AsyncAction<import("../factories/types").ItemId>;
|
|
9
9
|
saveChanges: import("../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
10
|
-
remove?: import("../../../..").AsyncAction<import("../factories/types").ItemId> | undefined;
|
|
10
|
+
remove?: import("../../../..").AsyncAction<Record<string, any> | import("../factories/types").ItemId> | undefined;
|
|
11
11
|
loading: boolean;
|
|
12
12
|
item: Record<string, any> | undefined;
|
|
13
13
|
validationState: import("../factories/types").IValidationState<Record<string, any>>;
|
|
@@ -94,7 +94,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
94
94
|
settings: import("../types").SettingsSchema;
|
|
95
95
|
load: import("../../../..").AsyncAction<import("../factories/types").ItemId>;
|
|
96
96
|
saveChanges: import("../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
97
|
-
remove?: import("../../../..").AsyncAction<import("../factories/types").ItemId> | undefined;
|
|
97
|
+
remove?: import("../../../..").AsyncAction<Record<string, any> | import("../factories/types").ItemId> | undefined;
|
|
98
98
|
loading: boolean;
|
|
99
99
|
item: Record<string, any> | undefined;
|
|
100
100
|
validationState: import("../factories/types").IValidationState<Record<string, any>>;
|
|
@@ -181,7 +181,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
181
181
|
settings: import("../types").SettingsSchema;
|
|
182
182
|
load: import("../../../..").AsyncAction<import("../factories/types").ItemId>;
|
|
183
183
|
saveChanges: import("../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
184
|
-
remove?: import("../../../..").AsyncAction<import("../factories/types").ItemId> | undefined;
|
|
184
|
+
remove?: import("../../../..").AsyncAction<Record<string, any> | import("../factories/types").ItemId> | undefined;
|
|
185
185
|
loading: boolean;
|
|
186
186
|
item: Record<string, any> | undefined;
|
|
187
187
|
validationState: import("../factories/types").IValidationState<Record<string, any>>;
|
|
@@ -17,7 +17,7 @@ declare const _default: {
|
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
19
|
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
|
-
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
20
|
+
remove?: import("../../../../..").AsyncAction<Record<string, any> | import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
23
23
|
validationState: import("../..").IValidationState<Record<string, any>>;
|
|
@@ -17,7 +17,7 @@ declare const _default: {
|
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
19
|
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
|
-
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
20
|
+
remove?: import("../../../../..").AsyncAction<Record<string, any> | import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
23
23
|
validationState: import("../..").IValidationState<Record<string, any>>;
|
|
@@ -17,7 +17,7 @@ declare const _default: {
|
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
19
|
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
|
-
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
20
|
+
remove?: import("../../../../..").AsyncAction<Record<string, any> | import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
23
23
|
validationState: import("../..").IValidationState<Record<string, any>>;
|
|
@@ -17,7 +17,7 @@ declare const _default: {
|
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
19
|
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
|
-
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
20
|
+
remove?: import("../../../../..").AsyncAction<Record<string, any> | import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
23
23
|
validationState: import("../..").IValidationState<Record<string, any>>;
|
|
@@ -17,7 +17,7 @@ declare const _default: {
|
|
|
17
17
|
settings: import("./../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
19
|
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
|
-
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
20
|
+
remove?: import("../../../../..").AsyncAction<Record<string, any> | import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
23
23
|
validationState: import("../..").IValidationState<Record<string, any>>;
|
|
@@ -17,7 +17,7 @@ declare const _default: {
|
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
19
|
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
|
-
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
20
|
+
remove?: import("../../../../..").AsyncAction<Record<string, any> | import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
23
23
|
validationState: import("../..").IValidationState<Record<string, any>>;
|
|
@@ -17,7 +17,7 @@ declare const _default: {
|
|
|
17
17
|
settings: import("../..").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
19
|
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
|
-
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
20
|
+
remove?: import("../../../../..").AsyncAction<Record<string, any> | import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
23
23
|
validationState: import("../..").IValidationState<Record<string, any>>;
|
|
@@ -17,7 +17,7 @@ declare const _default: {
|
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
19
|
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
|
-
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
20
|
+
remove?: import("../../../../..").AsyncAction<Record<string, any> | import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
23
23
|
validationState: import("../..").IValidationState<Record<string, any>>;
|
|
@@ -18,7 +18,7 @@ declare const _default: {
|
|
|
18
18
|
settings: import("../../types").SettingsSchema;
|
|
19
19
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
20
20
|
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
21
|
-
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
21
|
+
remove?: import("../../../../..").AsyncAction<Record<string, any> | import("../..").ItemId> | undefined;
|
|
22
22
|
loading: boolean;
|
|
23
23
|
item: Record<string, any> | undefined;
|
|
24
24
|
validationState: import("../..").IValidationState<Record<string, any>>;
|
|
@@ -17,7 +17,7 @@ declare const _default: {
|
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
19
|
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
|
-
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
20
|
+
remove?: import("../../../../..").AsyncAction<Record<string, any> | import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
23
23
|
validationState: import("../..").IValidationState<Record<string, any>>;
|
|
@@ -17,7 +17,7 @@ declare const _default: {
|
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
19
|
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
|
-
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
20
|
+
remove?: import("../../../../..").AsyncAction<Record<string, any> | import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
23
23
|
validationState: import("../..").IValidationState<Record<string, any>>;
|
|
@@ -17,7 +17,7 @@ declare const _default: {
|
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
19
|
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
|
-
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
20
|
+
remove?: import("../../../../..").AsyncAction<Record<string, any> | import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
23
23
|
validationState: import("../..").IValidationState<Record<string, any>>;
|
|
@@ -17,7 +17,7 @@ declare const _default: {
|
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
19
|
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
|
-
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
20
|
+
remove?: import("../../../../..").AsyncAction<Record<string, any> | import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
23
23
|
validationState: import("../..").IValidationState<Record<string, any>>;
|
|
@@ -17,7 +17,7 @@ declare const _default: {
|
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
19
|
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
|
-
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
20
|
+
remove?: import("../../../../..").AsyncAction<Record<string, any> | import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
23
23
|
validationState: import("../..").IValidationState<Record<string, any>>;
|
|
@@ -17,7 +17,7 @@ declare const _default: {
|
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
19
|
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
|
-
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
20
|
+
remove?: import("../../../../..").AsyncAction<Record<string, any> | import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
23
23
|
validationState: import("../..").IValidationState<Record<string, any>>;
|
|
@@ -17,7 +17,7 @@ declare const _default: {
|
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
19
|
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
|
-
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
20
|
+
remove?: import("../../../../..").AsyncAction<Record<string, any> | import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
23
23
|
validationState: import("../..").IValidationState<Record<string, any>>;
|
|
@@ -17,7 +17,7 @@ declare const _default: {
|
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
19
|
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
|
-
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
20
|
+
remove?: import("../../../../..").AsyncAction<Record<string, any> | import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
23
23
|
validationState: import("../..").IValidationState<Record<string, any>>;
|
|
@@ -17,7 +17,7 @@ declare const _default: {
|
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
19
|
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
|
-
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
20
|
+
remove?: import("../../../../..").AsyncAction<Record<string, any> | import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
23
23
|
validationState: import("../..").IValidationState<Record<string, any>>;
|
|
@@ -17,7 +17,7 @@ declare const _default: {
|
|
|
17
17
|
settings: import("./../../types/index").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
19
|
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
|
-
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
20
|
+
remove?: import("../../../../..").AsyncAction<Record<string, any> | import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
23
23
|
validationState: import("../..").IValidationState<Record<string, any>>;
|
|
@@ -17,7 +17,7 @@ declare const _default: {
|
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
19
|
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
|
-
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
20
|
+
remove?: import("../../../../..").AsyncAction<Record<string, any> | import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
23
23
|
validationState: import("../..").IValidationState<Record<string, any>>;
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
settings: import("../../types").SettingsSchema;
|
|
17
17
|
load: import("../../../../..").AsyncAction<import("../../factories").ItemId>;
|
|
18
18
|
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
19
|
-
remove?: import("../../../../..").AsyncAction<import("../../factories").ItemId> | undefined;
|
|
19
|
+
remove?: import("../../../../..").AsyncAction<Record<string, any> | import("../../factories").ItemId> | undefined;
|
|
20
20
|
loading: boolean;
|
|
21
21
|
item: Record<string, any> | undefined;
|
|
22
22
|
validationState: import("../../factories").IValidationState<Record<string, any>>;
|
|
@@ -8,7 +8,7 @@ declare const _default: {
|
|
|
8
8
|
settings: import("../../..").SettingsSchema;
|
|
9
9
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
10
10
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
11
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
11
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
12
12
|
loading: boolean;
|
|
13
13
|
item: Record<string, any> | undefined;
|
|
14
14
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -90,7 +90,7 @@ declare const _default: {
|
|
|
90
90
|
settings: import("../../..").SettingsSchema;
|
|
91
91
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
92
92
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
93
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
93
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
94
94
|
loading: boolean;
|
|
95
95
|
item: Record<string, any> | undefined;
|
|
96
96
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -171,7 +171,7 @@ declare const _default: {
|
|
|
171
171
|
settings: import("../../..").SettingsSchema;
|
|
172
172
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
173
173
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
174
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
174
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
175
175
|
loading: boolean;
|
|
176
176
|
item: Record<string, any> | undefined;
|
|
177
177
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -8,7 +8,7 @@ declare const _default: {
|
|
|
8
8
|
settings: import("../../..").SettingsSchema;
|
|
9
9
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
10
10
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
11
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
11
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
12
12
|
loading: boolean;
|
|
13
13
|
item: Record<string, any> | undefined;
|
|
14
14
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -90,7 +90,7 @@ declare const _default: {
|
|
|
90
90
|
settings: import("../../..").SettingsSchema;
|
|
91
91
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
92
92
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
93
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
93
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
94
94
|
loading: boolean;
|
|
95
95
|
item: Record<string, any> | undefined;
|
|
96
96
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -171,7 +171,7 @@ declare const _default: {
|
|
|
171
171
|
settings: import("../../..").SettingsSchema;
|
|
172
172
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
173
173
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
174
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
174
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
175
175
|
loading: boolean;
|
|
176
176
|
item: Record<string, any> | undefined;
|
|
177
177
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -8,7 +8,7 @@ declare const _default: {
|
|
|
8
8
|
settings: import("../../..").SettingsSchema;
|
|
9
9
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
10
10
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
11
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
11
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
12
12
|
loading: boolean;
|
|
13
13
|
item: Record<string, any> | undefined;
|
|
14
14
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -90,7 +90,7 @@ declare const _default: {
|
|
|
90
90
|
settings: import("../../..").SettingsSchema;
|
|
91
91
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
92
92
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
93
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
93
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
94
94
|
loading: boolean;
|
|
95
95
|
item: Record<string, any> | undefined;
|
|
96
96
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -171,7 +171,7 @@ declare const _default: {
|
|
|
171
171
|
settings: import("../../..").SettingsSchema;
|
|
172
172
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
173
173
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
174
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
174
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
175
175
|
loading: boolean;
|
|
176
176
|
item: Record<string, any> | undefined;
|
|
177
177
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -8,7 +8,7 @@ declare const _default: {
|
|
|
8
8
|
settings: import("../../..").SettingsSchema;
|
|
9
9
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
10
10
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
11
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
11
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
12
12
|
loading: boolean;
|
|
13
13
|
item: Record<string, any> | undefined;
|
|
14
14
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -90,7 +90,7 @@ declare const _default: {
|
|
|
90
90
|
settings: import("../../..").SettingsSchema;
|
|
91
91
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
92
92
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
93
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
93
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
94
94
|
loading: boolean;
|
|
95
95
|
item: Record<string, any> | undefined;
|
|
96
96
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -171,7 +171,7 @@ declare const _default: {
|
|
|
171
171
|
settings: import("../../..").SettingsSchema;
|
|
172
172
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
173
173
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
174
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
174
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
175
175
|
loading: boolean;
|
|
176
176
|
item: Record<string, any> | undefined;
|
|
177
177
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -8,7 +8,7 @@ declare const _default: {
|
|
|
8
8
|
settings: import("../../..").SettingsSchema;
|
|
9
9
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
10
10
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
11
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
11
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
12
12
|
loading: boolean;
|
|
13
13
|
item: Record<string, any> | undefined;
|
|
14
14
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -90,7 +90,7 @@ declare const _default: {
|
|
|
90
90
|
settings: import("../../..").SettingsSchema;
|
|
91
91
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
92
92
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
93
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
93
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
94
94
|
loading: boolean;
|
|
95
95
|
item: Record<string, any> | undefined;
|
|
96
96
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -171,7 +171,7 @@ declare const _default: {
|
|
|
171
171
|
settings: import("../../..").SettingsSchema;
|
|
172
172
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
173
173
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
174
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
174
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
175
175
|
loading: boolean;
|
|
176
176
|
item: Record<string, any> | undefined;
|
|
177
177
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -8,7 +8,7 @@ declare const _default: {
|
|
|
8
8
|
settings: import("../../../types").SettingsSchema;
|
|
9
9
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
10
10
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
11
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
11
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
12
12
|
loading: boolean;
|
|
13
13
|
item: Record<string, any> | undefined;
|
|
14
14
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -90,7 +90,7 @@ declare const _default: {
|
|
|
90
90
|
settings: import("../../../types").SettingsSchema;
|
|
91
91
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
92
92
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
93
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
93
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
94
94
|
loading: boolean;
|
|
95
95
|
item: Record<string, any> | undefined;
|
|
96
96
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -171,7 +171,7 @@ declare const _default: {
|
|
|
171
171
|
settings: import("../../../types").SettingsSchema;
|
|
172
172
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
173
173
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
174
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
174
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
175
175
|
loading: boolean;
|
|
176
176
|
item: Record<string, any> | undefined;
|
|
177
177
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -9,7 +9,7 @@ declare const _default: {
|
|
|
9
9
|
settings: import("../../..").SettingsSchema;
|
|
10
10
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
11
11
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
12
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
12
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
13
13
|
loading: boolean;
|
|
14
14
|
item: Record<string, any> | undefined;
|
|
15
15
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -91,7 +91,7 @@ declare const _default: {
|
|
|
91
91
|
settings: import("../../..").SettingsSchema;
|
|
92
92
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
93
93
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
94
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
94
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
95
95
|
loading: boolean;
|
|
96
96
|
item: Record<string, any> | undefined;
|
|
97
97
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -172,7 +172,7 @@ declare const _default: {
|
|
|
172
172
|
settings: import("../../..").SettingsSchema;
|
|
173
173
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
174
174
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
175
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
175
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
176
176
|
loading: boolean;
|
|
177
177
|
item: Record<string, any> | undefined;
|
|
178
178
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -8,7 +8,7 @@ declare const _default: {
|
|
|
8
8
|
settings: import("../../..").SettingsSchema;
|
|
9
9
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
10
10
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
11
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
11
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
12
12
|
loading: boolean;
|
|
13
13
|
item: Record<string, any> | undefined;
|
|
14
14
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -90,7 +90,7 @@ declare const _default: {
|
|
|
90
90
|
settings: import("../../..").SettingsSchema;
|
|
91
91
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
92
92
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
93
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
93
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
94
94
|
loading: boolean;
|
|
95
95
|
item: Record<string, any> | undefined;
|
|
96
96
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -171,7 +171,7 @@ declare const _default: {
|
|
|
171
171
|
settings: import("../../..").SettingsSchema;
|
|
172
172
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
173
173
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
174
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
174
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
175
175
|
loading: boolean;
|
|
176
176
|
item: Record<string, any> | undefined;
|
|
177
177
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -8,7 +8,7 @@ declare const _default: {
|
|
|
8
8
|
settings: import("../../..").SettingsSchema;
|
|
9
9
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
10
10
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
11
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
11
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
12
12
|
loading: boolean;
|
|
13
13
|
item: Record<string, any> | undefined;
|
|
14
14
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -90,7 +90,7 @@ declare const _default: {
|
|
|
90
90
|
settings: import("../../..").SettingsSchema;
|
|
91
91
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
92
92
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
93
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
93
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
94
94
|
loading: boolean;
|
|
95
95
|
item: Record<string, any> | undefined;
|
|
96
96
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -171,7 +171,7 @@ declare const _default: {
|
|
|
171
171
|
settings: import("../../..").SettingsSchema;
|
|
172
172
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
173
173
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
174
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
174
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
175
175
|
loading: boolean;
|
|
176
176
|
item: Record<string, any> | undefined;
|
|
177
177
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -8,7 +8,7 @@ declare const _default: {
|
|
|
8
8
|
settings: import("../../..").SettingsSchema;
|
|
9
9
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
10
10
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
11
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
11
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
12
12
|
loading: boolean;
|
|
13
13
|
item: Record<string, any> | undefined;
|
|
14
14
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -90,7 +90,7 @@ declare const _default: {
|
|
|
90
90
|
settings: import("../../..").SettingsSchema;
|
|
91
91
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
92
92
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
93
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
93
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
94
94
|
loading: boolean;
|
|
95
95
|
item: Record<string, any> | undefined;
|
|
96
96
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -171,7 +171,7 @@ declare const _default: {
|
|
|
171
171
|
settings: import("../../..").SettingsSchema;
|
|
172
172
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
173
173
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
174
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
174
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
175
175
|
loading: boolean;
|
|
176
176
|
item: Record<string, any> | undefined;
|
|
177
177
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
package/dist/shared/modules/dynamic/components/fields/storybook/MultivalueField.stories.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ declare const _default: {
|
|
|
8
8
|
settings: import("../../..").SettingsSchema;
|
|
9
9
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
10
10
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
11
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
11
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
12
12
|
loading: boolean;
|
|
13
13
|
item: Record<string, any> | undefined;
|
|
14
14
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -90,7 +90,7 @@ declare const _default: {
|
|
|
90
90
|
settings: import("../../..").SettingsSchema;
|
|
91
91
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
92
92
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
93
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
93
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
94
94
|
loading: boolean;
|
|
95
95
|
item: Record<string, any> | undefined;
|
|
96
96
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
@@ -171,7 +171,7 @@ declare const _default: {
|
|
|
171
171
|
settings: import("../../..").SettingsSchema;
|
|
172
172
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
173
173
|
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
174
|
-
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
174
|
+
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
175
175
|
loading: boolean;
|
|
176
176
|
item: Record<string, any> | undefined;
|
|
177
177
|
validationState: import("../../..").IValidationState<Record<string, any>>;
|