@vc-shell/framework 1.0.200 → 1.0.202
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 +23 -0
- package/dist/framework.js +1925 -1919
- 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/InputCurrency.d.ts.map +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.map +1 -1
- package/dist/shared/modules/dynamic/factories/types/index.d.ts +1 -1
- package/dist/shared/modules/dynamic/factories/types/index.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/helpers/setters.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/shared/modules/dynamic/components/fields/InputCurrency.ts +0 -1
- package/shared/modules/dynamic/components/fields/storybook/InputField.stories.ts +2 -2
- package/shared/modules/dynamic/components/fields/storybook/MultivalueField.stories.ts +2 -2
- package/shared/modules/dynamic/factories/base/useDetailsFactory.ts +4 -3
- package/shared/modules/dynamic/factories/types/index.ts +1 -1
- package/shared/modules/dynamic/helpers/setters.ts +3 -4
|
@@ -6,7 +6,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6
6
|
type: PropType<{
|
|
7
7
|
settings: import("../types").SettingsSchema;
|
|
8
8
|
load: import("../../../..").AsyncAction<import("../factories/types").ItemId>;
|
|
9
|
-
saveChanges: import("../../../..").AsyncAction<Record<string, any>>;
|
|
9
|
+
saveChanges: import("../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
10
10
|
remove?: import("../../../..").AsyncAction<import("../factories/types").ItemId> | undefined;
|
|
11
11
|
loading: boolean;
|
|
12
12
|
item: Record<string, any> | undefined;
|
|
@@ -92,7 +92,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
92
92
|
type: PropType<{
|
|
93
93
|
settings: import("../types").SettingsSchema;
|
|
94
94
|
load: import("../../../..").AsyncAction<import("../factories/types").ItemId>;
|
|
95
|
-
saveChanges: import("../../../..").AsyncAction<Record<string, any>>;
|
|
95
|
+
saveChanges: import("../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
96
96
|
remove?: import("../../../..").AsyncAction<import("../factories/types").ItemId> | undefined;
|
|
97
97
|
loading: boolean;
|
|
98
98
|
item: Record<string, any> | undefined;
|
|
@@ -178,7 +178,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
178
178
|
context: {
|
|
179
179
|
settings: import("../types").SettingsSchema;
|
|
180
180
|
load: import("../../../..").AsyncAction<import("../factories/types").ItemId>;
|
|
181
|
-
saveChanges: import("../../../..").AsyncAction<Record<string, any>>;
|
|
181
|
+
saveChanges: import("../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
182
182
|
remove?: import("../../../..").AsyncAction<import("../factories/types").ItemId> | undefined;
|
|
183
183
|
loading: boolean;
|
|
184
184
|
item: Record<string, any> | undefined;
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
type: import("vue").PropType<{
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
|
-
saveChanges: import("../../../../..").AsyncAction<Record<string, any>>;
|
|
19
|
+
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
20
|
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
type: import("vue").PropType<{
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
|
-
saveChanges: import("../../../../..").AsyncAction<Record<string, any>>;
|
|
19
|
+
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
20
|
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
type: import("vue").PropType<{
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
|
-
saveChanges: import("../../../../..").AsyncAction<Record<string, any>>;
|
|
19
|
+
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
20
|
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
type: import("vue").PropType<{
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
|
-
saveChanges: import("../../../../..").AsyncAction<Record<string, any>>;
|
|
19
|
+
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
20
|
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
type: import("vue").PropType<{
|
|
17
17
|
settings: import("./../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
|
-
saveChanges: import("../../../../..").AsyncAction<Record<string, any>>;
|
|
19
|
+
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
20
|
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
type: import("vue").PropType<{
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
|
-
saveChanges: import("../../../../..").AsyncAction<Record<string, any>>;
|
|
19
|
+
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
20
|
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
type: import("vue").PropType<{
|
|
17
17
|
settings: import("../..").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
|
-
saveChanges: import("../../../../..").AsyncAction<Record<string, any>>;
|
|
19
|
+
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
20
|
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
type: import("vue").PropType<{
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
|
-
saveChanges: import("../../../../..").AsyncAction<Record<string, any>>;
|
|
19
|
+
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
20
|
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
@@ -17,7 +17,7 @@ declare const _default: {
|
|
|
17
17
|
type: import("vue").PropType<{
|
|
18
18
|
settings: import("../../types").SettingsSchema;
|
|
19
19
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
20
|
-
saveChanges: import("../../../../..").AsyncAction<Record<string, any>>;
|
|
20
|
+
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
21
21
|
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
22
22
|
loading: boolean;
|
|
23
23
|
item: Record<string, any> | undefined;
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
type: import("vue").PropType<{
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
|
-
saveChanges: import("../../../../..").AsyncAction<Record<string, any>>;
|
|
19
|
+
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
20
|
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
type: import("vue").PropType<{
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
|
-
saveChanges: import("../../../../..").AsyncAction<Record<string, any>>;
|
|
19
|
+
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
20
|
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"InputCurrency.d.ts","sourceRoot":"","sources":["../../../../../../shared/modules/dynamic/components/fields/InputCurrency.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,gBAAgB,EAAY,MAAM,KAAK,CAAC;AAE5D,OAAO,cAAc,MAAM,SAAS,CAAC;AAIrC,OAAO,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"InputCurrency.d.ts","sourceRoot":"","sources":["../../../../../../shared/modules/dynamic/components/fields/InputCurrency.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,gBAAgB,EAAY,MAAM,KAAK,CAAC;AAE5D,OAAO,cAAc,MAAM,SAAS,CAAC;AAIrC,OAAO,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAOnC,iBAAiB,qBAAqB,CAAC,GAAG;QAAE,OAAO,EAAE,mBAAmB,CAAA;KAAE;;;;AAHzF,wBA+CE"}
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
type: import("vue").PropType<{
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
|
-
saveChanges: import("../../../../..").AsyncAction<Record<string, any>>;
|
|
19
|
+
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
20
|
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
type: import("vue").PropType<{
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
|
-
saveChanges: import("../../../../..").AsyncAction<Record<string, any>>;
|
|
19
|
+
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
20
|
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
type: import("vue").PropType<{
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
|
-
saveChanges: import("../../../../..").AsyncAction<Record<string, any>>;
|
|
19
|
+
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
20
|
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
type: import("vue").PropType<{
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
|
-
saveChanges: import("../../../../..").AsyncAction<Record<string, any>>;
|
|
19
|
+
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
20
|
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
type: import("vue").PropType<{
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
|
-
saveChanges: import("../../../../..").AsyncAction<Record<string, any>>;
|
|
19
|
+
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
20
|
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
type: import("vue").PropType<{
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
|
-
saveChanges: import("../../../../..").AsyncAction<Record<string, any>>;
|
|
19
|
+
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
20
|
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
type: import("vue").PropType<{
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
|
-
saveChanges: import("../../../../..").AsyncAction<Record<string, any>>;
|
|
19
|
+
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
20
|
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
type: import("vue").PropType<{
|
|
17
17
|
settings: import("./../../types/index").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
|
-
saveChanges: import("../../../../..").AsyncAction<Record<string, any>>;
|
|
19
|
+
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
20
|
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
|
16
16
|
type: import("vue").PropType<{
|
|
17
17
|
settings: import("../../types").SettingsSchema;
|
|
18
18
|
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
19
|
-
saveChanges: import("../../../../..").AsyncAction<Record<string, any>>;
|
|
19
|
+
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
20
20
|
remove?: import("../../../../..").AsyncAction<import("../..").ItemId> | undefined;
|
|
21
21
|
loading: boolean;
|
|
22
22
|
item: Record<string, any> | undefined;
|
|
@@ -15,7 +15,7 @@ declare const _default: {
|
|
|
15
15
|
type: PropType<{
|
|
16
16
|
settings: import("../../types").SettingsSchema;
|
|
17
17
|
load: import("../../../../..").AsyncAction<import("../../factories").ItemId>;
|
|
18
|
-
saveChanges: import("../../../../..").AsyncAction<Record<string, any>>;
|
|
18
|
+
saveChanges: import("../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
19
19
|
remove?: import("../../../../..").AsyncAction<import("../../factories").ItemId> | undefined;
|
|
20
20
|
loading: boolean;
|
|
21
21
|
item: Record<string, any> | undefined;
|
|
@@ -7,7 +7,7 @@ declare const _default: {
|
|
|
7
7
|
type: import("vue").PropType<{
|
|
8
8
|
settings: import("../../..").SettingsSchema;
|
|
9
9
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
10
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
10
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
11
11
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
12
12
|
loading: boolean;
|
|
13
13
|
item: Record<string, any> | undefined;
|
|
@@ -88,7 +88,7 @@ declare const _default: {
|
|
|
88
88
|
type: import("vue").PropType<{
|
|
89
89
|
settings: import("../../..").SettingsSchema;
|
|
90
90
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
91
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
91
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
92
92
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
93
93
|
loading: boolean;
|
|
94
94
|
item: Record<string, any> | undefined;
|
|
@@ -168,7 +168,7 @@ declare const _default: {
|
|
|
168
168
|
context: {
|
|
169
169
|
settings: import("../../..").SettingsSchema;
|
|
170
170
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
171
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
171
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
172
172
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
173
173
|
loading: boolean;
|
|
174
174
|
item: Record<string, any> | undefined;
|
|
@@ -7,7 +7,7 @@ declare const _default: {
|
|
|
7
7
|
type: import("vue").PropType<{
|
|
8
8
|
settings: import("../../..").SettingsSchema;
|
|
9
9
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
10
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
10
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
11
11
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
12
12
|
loading: boolean;
|
|
13
13
|
item: Record<string, any> | undefined;
|
|
@@ -88,7 +88,7 @@ declare const _default: {
|
|
|
88
88
|
type: import("vue").PropType<{
|
|
89
89
|
settings: import("../../..").SettingsSchema;
|
|
90
90
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
91
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
91
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
92
92
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
93
93
|
loading: boolean;
|
|
94
94
|
item: Record<string, any> | undefined;
|
|
@@ -168,7 +168,7 @@ declare const _default: {
|
|
|
168
168
|
context: {
|
|
169
169
|
settings: import("../../..").SettingsSchema;
|
|
170
170
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
171
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
171
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
172
172
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
173
173
|
loading: boolean;
|
|
174
174
|
item: Record<string, any> | undefined;
|
|
@@ -7,7 +7,7 @@ declare const _default: {
|
|
|
7
7
|
type: import("vue").PropType<{
|
|
8
8
|
settings: import("../../..").SettingsSchema;
|
|
9
9
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
10
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
10
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
11
11
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
12
12
|
loading: boolean;
|
|
13
13
|
item: Record<string, any> | undefined;
|
|
@@ -88,7 +88,7 @@ declare const _default: {
|
|
|
88
88
|
type: import("vue").PropType<{
|
|
89
89
|
settings: import("../../..").SettingsSchema;
|
|
90
90
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
91
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
91
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
92
92
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
93
93
|
loading: boolean;
|
|
94
94
|
item: Record<string, any> | undefined;
|
|
@@ -168,7 +168,7 @@ declare const _default: {
|
|
|
168
168
|
context: {
|
|
169
169
|
settings: import("../../..").SettingsSchema;
|
|
170
170
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
171
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
171
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
172
172
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
173
173
|
loading: boolean;
|
|
174
174
|
item: Record<string, any> | undefined;
|
|
@@ -7,7 +7,7 @@ declare const _default: {
|
|
|
7
7
|
type: import("vue").PropType<{
|
|
8
8
|
settings: import("../../..").SettingsSchema;
|
|
9
9
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
10
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
10
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
11
11
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
12
12
|
loading: boolean;
|
|
13
13
|
item: Record<string, any> | undefined;
|
|
@@ -88,7 +88,7 @@ declare const _default: {
|
|
|
88
88
|
type: import("vue").PropType<{
|
|
89
89
|
settings: import("../../..").SettingsSchema;
|
|
90
90
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
91
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
91
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
92
92
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
93
93
|
loading: boolean;
|
|
94
94
|
item: Record<string, any> | undefined;
|
|
@@ -168,7 +168,7 @@ declare const _default: {
|
|
|
168
168
|
context: {
|
|
169
169
|
settings: import("../../..").SettingsSchema;
|
|
170
170
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
171
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
171
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
172
172
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
173
173
|
loading: boolean;
|
|
174
174
|
item: Record<string, any> | undefined;
|
|
@@ -7,7 +7,7 @@ declare const _default: {
|
|
|
7
7
|
type: import("vue").PropType<{
|
|
8
8
|
settings: import("../../..").SettingsSchema;
|
|
9
9
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
10
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
10
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
11
11
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
12
12
|
loading: boolean;
|
|
13
13
|
item: Record<string, any> | undefined;
|
|
@@ -88,7 +88,7 @@ declare const _default: {
|
|
|
88
88
|
type: import("vue").PropType<{
|
|
89
89
|
settings: import("../../..").SettingsSchema;
|
|
90
90
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
91
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
91
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
92
92
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
93
93
|
loading: boolean;
|
|
94
94
|
item: Record<string, any> | undefined;
|
|
@@ -168,7 +168,7 @@ declare const _default: {
|
|
|
168
168
|
context: {
|
|
169
169
|
settings: import("../../..").SettingsSchema;
|
|
170
170
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
171
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
171
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
172
172
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
173
173
|
loading: boolean;
|
|
174
174
|
item: Record<string, any> | undefined;
|
|
@@ -7,7 +7,7 @@ declare const _default: {
|
|
|
7
7
|
type: import("vue").PropType<{
|
|
8
8
|
settings: import("../../../types").SettingsSchema;
|
|
9
9
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
10
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
10
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
11
11
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
12
12
|
loading: boolean;
|
|
13
13
|
item: Record<string, any> | undefined;
|
|
@@ -88,7 +88,7 @@ declare const _default: {
|
|
|
88
88
|
type: import("vue").PropType<{
|
|
89
89
|
settings: import("../../../types").SettingsSchema;
|
|
90
90
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
91
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
91
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
92
92
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
93
93
|
loading: boolean;
|
|
94
94
|
item: Record<string, any> | undefined;
|
|
@@ -168,7 +168,7 @@ declare const _default: {
|
|
|
168
168
|
context: {
|
|
169
169
|
settings: import("../../../types").SettingsSchema;
|
|
170
170
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
171
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
171
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
172
172
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
173
173
|
loading: boolean;
|
|
174
174
|
item: Record<string, any> | undefined;
|
|
@@ -8,7 +8,7 @@ declare const _default: {
|
|
|
8
8
|
type: import("vue").PropType<{
|
|
9
9
|
settings: import("../../..").SettingsSchema;
|
|
10
10
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
11
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
11
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
12
12
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
13
13
|
loading: boolean;
|
|
14
14
|
item: Record<string, any> | undefined;
|
|
@@ -89,7 +89,7 @@ declare const _default: {
|
|
|
89
89
|
type: import("vue").PropType<{
|
|
90
90
|
settings: import("../../..").SettingsSchema;
|
|
91
91
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
92
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
92
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
93
93
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
94
94
|
loading: boolean;
|
|
95
95
|
item: Record<string, any> | undefined;
|
|
@@ -169,7 +169,7 @@ declare const _default: {
|
|
|
169
169
|
context: {
|
|
170
170
|
settings: import("../../..").SettingsSchema;
|
|
171
171
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
172
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
172
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
173
173
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
174
174
|
loading: boolean;
|
|
175
175
|
item: Record<string, any> | undefined;
|
|
@@ -7,7 +7,7 @@ declare const _default: {
|
|
|
7
7
|
type: import("vue").PropType<{
|
|
8
8
|
settings: import("../../..").SettingsSchema;
|
|
9
9
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
10
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
10
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
11
11
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
12
12
|
loading: boolean;
|
|
13
13
|
item: Record<string, any> | undefined;
|
|
@@ -88,7 +88,7 @@ declare const _default: {
|
|
|
88
88
|
type: import("vue").PropType<{
|
|
89
89
|
settings: import("../../..").SettingsSchema;
|
|
90
90
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
91
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
91
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
92
92
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
93
93
|
loading: boolean;
|
|
94
94
|
item: Record<string, any> | undefined;
|
|
@@ -168,7 +168,7 @@ declare const _default: {
|
|
|
168
168
|
context: {
|
|
169
169
|
settings: import("../../..").SettingsSchema;
|
|
170
170
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
171
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
171
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
172
172
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
173
173
|
loading: boolean;
|
|
174
174
|
item: Record<string, any> | undefined;
|
|
@@ -7,7 +7,7 @@ declare const _default: {
|
|
|
7
7
|
type: import("vue").PropType<{
|
|
8
8
|
settings: import("../../..").SettingsSchema;
|
|
9
9
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
10
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
10
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
11
11
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
12
12
|
loading: boolean;
|
|
13
13
|
item: Record<string, any> | undefined;
|
|
@@ -88,7 +88,7 @@ declare const _default: {
|
|
|
88
88
|
type: import("vue").PropType<{
|
|
89
89
|
settings: import("../../..").SettingsSchema;
|
|
90
90
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
91
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
91
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
92
92
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
93
93
|
loading: boolean;
|
|
94
94
|
item: Record<string, any> | undefined;
|
|
@@ -168,7 +168,7 @@ declare const _default: {
|
|
|
168
168
|
context: {
|
|
169
169
|
settings: import("../../..").SettingsSchema;
|
|
170
170
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
171
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
171
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
172
172
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
173
173
|
loading: boolean;
|
|
174
174
|
item: Record<string, any> | undefined;
|
|
@@ -7,7 +7,7 @@ declare const _default: {
|
|
|
7
7
|
type: import("vue").PropType<{
|
|
8
8
|
settings: import("../../..").SettingsSchema;
|
|
9
9
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
10
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
10
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
11
11
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
12
12
|
loading: boolean;
|
|
13
13
|
item: Record<string, any> | undefined;
|
|
@@ -88,7 +88,7 @@ declare const _default: {
|
|
|
88
88
|
type: import("vue").PropType<{
|
|
89
89
|
settings: import("../../..").SettingsSchema;
|
|
90
90
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
91
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
91
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
92
92
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
93
93
|
loading: boolean;
|
|
94
94
|
item: Record<string, any> | undefined;
|
|
@@ -168,7 +168,7 @@ declare const _default: {
|
|
|
168
168
|
context: {
|
|
169
169
|
settings: import("../../..").SettingsSchema;
|
|
170
170
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
171
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
171
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
172
172
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
173
173
|
loading: boolean;
|
|
174
174
|
item: Record<string, any> | undefined;
|
package/dist/shared/modules/dynamic/components/fields/storybook/MultivalueField.stories.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ declare const _default: {
|
|
|
7
7
|
type: import("vue").PropType<{
|
|
8
8
|
settings: import("../../..").SettingsSchema;
|
|
9
9
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
10
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
10
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
11
11
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
12
12
|
loading: boolean;
|
|
13
13
|
item: Record<string, any> | undefined;
|
|
@@ -88,7 +88,7 @@ declare const _default: {
|
|
|
88
88
|
type: import("vue").PropType<{
|
|
89
89
|
settings: import("../../..").SettingsSchema;
|
|
90
90
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
91
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
91
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
92
92
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
93
93
|
loading: boolean;
|
|
94
94
|
item: Record<string, any> | undefined;
|
|
@@ -168,7 +168,7 @@ declare const _default: {
|
|
|
168
168
|
context: {
|
|
169
169
|
settings: import("../../..").SettingsSchema;
|
|
170
170
|
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
171
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>>;
|
|
171
|
+
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
172
172
|
remove?: import("../../../../../..").AsyncAction<import("../../..").ItemId> | undefined;
|
|
173
173
|
loading: boolean;
|
|
174
174
|
item: Record<string, any> | undefined;
|