@vc-shell/framework 1.0.198 → 1.0.200
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 +26 -0
- package/dist/framework.js +9962 -9878
- package/dist/index.css +1 -1
- package/dist/locales/en.json +2 -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/DynamicProperty.d.ts.map +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/types/index.d.ts +1 -1
- 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 +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/ui/components/atoms/vc-card/vc-card.stories.d.ts +26 -7
- package/dist/ui/components/atoms/vc-card/vc-card.stories.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-input/vc-input.stories.d.ts +26 -7
- package/dist/ui/components/molecules/vc-input/vc-input.stories.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-input/vc-input.vue.d.ts +9 -2
- package/dist/ui/components/molecules/vc-input/vc-input.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-multivalue/vc-multivalue.stories.d.ts +84 -63
- package/dist/ui/components/molecules/vc-multivalue/vc-multivalue.stories.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-multivalue/vc-multivalue.vue.d.ts +14 -10
- package/dist/ui/components/molecules/vc-multivalue/vc-multivalue.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-select/vc-select.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-dynamic-property/vc-dynamic-property.vue.d.ts +3 -9
- package/dist/ui/components/organisms/vc-dynamic-property/vc-dynamic-property.vue.d.ts.map +1 -1
- package/package.json +4 -4
- package/shared/modules/dynamic/components/fields/DynamicProperty.ts +7 -3
- package/shared/modules/dynamic/factories/types/index.ts +1 -1
- package/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.vue +3 -2
- package/ui/components/molecules/vc-input/vc-input.vue +58 -18
- package/ui/components/molecules/vc-multivalue/vc-multivalue.vue +135 -84
- package/ui/components/molecules/vc-select/vc-select.vue +42 -17
- package/ui/components/organisms/vc-dynamic-property/vc-dynamic-property.vue +44 -15
package/dist/locales/en.json
CHANGED
|
@@ -27,7 +27,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
27
27
|
} | undefined;
|
|
28
28
|
dynamicProperties?: {
|
|
29
29
|
loading: boolean;
|
|
30
|
-
loadDictionaries: (
|
|
30
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
31
31
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
32
32
|
setPropertyValue: (data: {
|
|
33
33
|
property: Record<string, any>;
|
|
@@ -113,7 +113,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
113
113
|
} | undefined;
|
|
114
114
|
dynamicProperties?: {
|
|
115
115
|
loading: boolean;
|
|
116
|
-
loadDictionaries: (
|
|
116
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
117
117
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
118
118
|
setPropertyValue: (data: {
|
|
119
119
|
property: Record<string, any>;
|
|
@@ -199,7 +199,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
199
199
|
} | undefined;
|
|
200
200
|
dynamicProperties?: {
|
|
201
201
|
loading: boolean;
|
|
202
|
-
loadDictionaries: (
|
|
202
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
203
203
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
204
204
|
setPropertyValue: (data: {
|
|
205
205
|
property: Record<string, any>;
|
|
@@ -37,7 +37,7 @@ declare const _default: {
|
|
|
37
37
|
} | undefined;
|
|
38
38
|
dynamicProperties?: {
|
|
39
39
|
loading: boolean;
|
|
40
|
-
loadDictionaries: (
|
|
40
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
41
41
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
42
42
|
setPropertyValue: (data: {
|
|
43
43
|
property: Record<string, any>;
|
|
@@ -37,7 +37,7 @@ declare const _default: {
|
|
|
37
37
|
} | undefined;
|
|
38
38
|
dynamicProperties?: {
|
|
39
39
|
loading: boolean;
|
|
40
|
-
loadDictionaries: (
|
|
40
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
41
41
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
42
42
|
setPropertyValue: (data: {
|
|
43
43
|
property: Record<string, any>;
|
|
@@ -37,7 +37,7 @@ declare const _default: {
|
|
|
37
37
|
} | undefined;
|
|
38
38
|
dynamicProperties?: {
|
|
39
39
|
loading: boolean;
|
|
40
|
-
loadDictionaries: (
|
|
40
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
41
41
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
42
42
|
setPropertyValue: (data: {
|
|
43
43
|
property: Record<string, any>;
|
|
@@ -37,7 +37,7 @@ declare const _default: {
|
|
|
37
37
|
} | undefined;
|
|
38
38
|
dynamicProperties?: {
|
|
39
39
|
loading: boolean;
|
|
40
|
-
loadDictionaries: (
|
|
40
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
41
41
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
42
42
|
setPropertyValue: (data: {
|
|
43
43
|
property: Record<string, any>;
|
|
@@ -37,7 +37,7 @@ declare const _default: {
|
|
|
37
37
|
} | undefined;
|
|
38
38
|
dynamicProperties?: {
|
|
39
39
|
loading: boolean;
|
|
40
|
-
loadDictionaries: (
|
|
40
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
41
41
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
42
42
|
setPropertyValue: (data: {
|
|
43
43
|
property: Record<string, any>;
|
|
@@ -37,7 +37,7 @@ declare const _default: {
|
|
|
37
37
|
} | undefined;
|
|
38
38
|
dynamicProperties?: {
|
|
39
39
|
loading: boolean;
|
|
40
|
-
loadDictionaries: (
|
|
40
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
41
41
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
42
42
|
setPropertyValue: (data: {
|
|
43
43
|
property: Record<string, any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DynamicProperty.d.ts","sourceRoot":"","sources":["../../../../../../shared/modules/dynamic/components/fields/DynamicProperty.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAiE,MAAM,KAAK,CAAC;AAEtG,OAAO,cAAc,MAAM,SAAS,CAAC;AAIrC,OAAO,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAyBvC,iBAAiB,qBAAqB,CAAC,GAAG;QAAE,OAAO,EAAE,uBAAuB,CAAA;KAAE;;;;AAJ7F,
|
|
1
|
+
{"version":3,"file":"DynamicProperty.d.ts","sourceRoot":"","sources":["../../../../../../shared/modules/dynamic/components/fields/DynamicProperty.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAiE,MAAM,KAAK,CAAC;AAEtG,OAAO,cAAc,MAAM,SAAS,CAAC;AAIrC,OAAO,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAyBvC,iBAAiB,qBAAqB,CAAC,GAAG;QAAE,OAAO,EAAE,uBAAuB,CAAA;KAAE;;;;AAJ7F,wBA8GE"}
|
|
@@ -37,7 +37,7 @@ declare const _default: {
|
|
|
37
37
|
} | undefined;
|
|
38
38
|
dynamicProperties?: {
|
|
39
39
|
loading: boolean;
|
|
40
|
-
loadDictionaries: (
|
|
40
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
41
41
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
42
42
|
setPropertyValue: (data: {
|
|
43
43
|
property: Record<string, any>;
|
|
@@ -37,7 +37,7 @@ declare const _default: {
|
|
|
37
37
|
} | undefined;
|
|
38
38
|
dynamicProperties?: {
|
|
39
39
|
loading: boolean;
|
|
40
|
-
loadDictionaries: (
|
|
40
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
41
41
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
42
42
|
setPropertyValue: (data: {
|
|
43
43
|
property: Record<string, any>;
|
|
@@ -38,7 +38,7 @@ declare const _default: {
|
|
|
38
38
|
} | undefined;
|
|
39
39
|
dynamicProperties?: {
|
|
40
40
|
loading: boolean;
|
|
41
|
-
loadDictionaries: (
|
|
41
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
42
42
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
43
43
|
setPropertyValue: (data: {
|
|
44
44
|
property: Record<string, any>;
|
|
@@ -37,7 +37,7 @@ declare const _default: {
|
|
|
37
37
|
} | undefined;
|
|
38
38
|
dynamicProperties?: {
|
|
39
39
|
loading: boolean;
|
|
40
|
-
loadDictionaries: (
|
|
40
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
41
41
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
42
42
|
setPropertyValue: (data: {
|
|
43
43
|
property: Record<string, any>;
|
|
@@ -37,7 +37,7 @@ declare const _default: {
|
|
|
37
37
|
} | undefined;
|
|
38
38
|
dynamicProperties?: {
|
|
39
39
|
loading: boolean;
|
|
40
|
-
loadDictionaries: (
|
|
40
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
41
41
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
42
42
|
setPropertyValue: (data: {
|
|
43
43
|
property: Record<string, any>;
|
|
@@ -37,7 +37,7 @@ declare const _default: {
|
|
|
37
37
|
} | undefined;
|
|
38
38
|
dynamicProperties?: {
|
|
39
39
|
loading: boolean;
|
|
40
|
-
loadDictionaries: (
|
|
40
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
41
41
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
42
42
|
setPropertyValue: (data: {
|
|
43
43
|
property: Record<string, any>;
|
|
@@ -37,7 +37,7 @@ declare const _default: {
|
|
|
37
37
|
} | undefined;
|
|
38
38
|
dynamicProperties?: {
|
|
39
39
|
loading: boolean;
|
|
40
|
-
loadDictionaries: (
|
|
40
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
41
41
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
42
42
|
setPropertyValue: (data: {
|
|
43
43
|
property: Record<string, any>;
|
|
@@ -37,7 +37,7 @@ declare const _default: {
|
|
|
37
37
|
} | undefined;
|
|
38
38
|
dynamicProperties?: {
|
|
39
39
|
loading: boolean;
|
|
40
|
-
loadDictionaries: (
|
|
40
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
41
41
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
42
42
|
setPropertyValue: (data: {
|
|
43
43
|
property: Record<string, any>;
|
|
@@ -37,7 +37,7 @@ declare const _default: {
|
|
|
37
37
|
} | undefined;
|
|
38
38
|
dynamicProperties?: {
|
|
39
39
|
loading: boolean;
|
|
40
|
-
loadDictionaries: (
|
|
40
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
41
41
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
42
42
|
setPropertyValue: (data: {
|
|
43
43
|
property: Record<string, any>;
|
|
@@ -37,7 +37,7 @@ declare const _default: {
|
|
|
37
37
|
} | undefined;
|
|
38
38
|
dynamicProperties?: {
|
|
39
39
|
loading: boolean;
|
|
40
|
-
loadDictionaries: (
|
|
40
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
41
41
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
42
42
|
setPropertyValue: (data: {
|
|
43
43
|
property: Record<string, any>;
|
|
@@ -37,7 +37,7 @@ declare const _default: {
|
|
|
37
37
|
} | undefined;
|
|
38
38
|
dynamicProperties?: {
|
|
39
39
|
loading: boolean;
|
|
40
|
-
loadDictionaries: (
|
|
40
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
41
41
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
42
42
|
setPropertyValue: (data: {
|
|
43
43
|
property: Record<string, any>;
|
|
@@ -37,7 +37,7 @@ declare const _default: {
|
|
|
37
37
|
} | undefined;
|
|
38
38
|
dynamicProperties?: {
|
|
39
39
|
loading: boolean;
|
|
40
|
-
loadDictionaries: (
|
|
40
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
41
41
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
42
42
|
setPropertyValue: (data: {
|
|
43
43
|
property: Record<string, any>;
|
|
@@ -37,7 +37,7 @@ declare const _default: {
|
|
|
37
37
|
} | undefined;
|
|
38
38
|
dynamicProperties?: {
|
|
39
39
|
loading: boolean;
|
|
40
|
-
loadDictionaries: (
|
|
40
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
41
41
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
42
42
|
setPropertyValue: (data: {
|
|
43
43
|
property: Record<string, any>;
|
|
@@ -37,7 +37,7 @@ declare const _default: {
|
|
|
37
37
|
} | undefined;
|
|
38
38
|
dynamicProperties?: {
|
|
39
39
|
loading: boolean;
|
|
40
|
-
loadDictionaries: (
|
|
40
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
41
41
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
42
42
|
setPropertyValue: (data: {
|
|
43
43
|
property: Record<string, any>;
|
|
@@ -36,7 +36,7 @@ declare const _default: {
|
|
|
36
36
|
} | undefined;
|
|
37
37
|
dynamicProperties?: {
|
|
38
38
|
loading: boolean;
|
|
39
|
-
loadDictionaries: (
|
|
39
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
40
40
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
41
41
|
setPropertyValue: (data: {
|
|
42
42
|
property: Record<string, any>;
|
|
@@ -28,7 +28,7 @@ declare const _default: {
|
|
|
28
28
|
} | undefined;
|
|
29
29
|
dynamicProperties?: {
|
|
30
30
|
loading: boolean;
|
|
31
|
-
loadDictionaries: (
|
|
31
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
32
32
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
33
33
|
setPropertyValue: (data: {
|
|
34
34
|
property: Record<string, any>;
|
|
@@ -109,7 +109,7 @@ declare const _default: {
|
|
|
109
109
|
} | undefined;
|
|
110
110
|
dynamicProperties?: {
|
|
111
111
|
loading: boolean;
|
|
112
|
-
loadDictionaries: (
|
|
112
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
113
113
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
114
114
|
setPropertyValue: (data: {
|
|
115
115
|
property: Record<string, any>;
|
|
@@ -189,7 +189,7 @@ declare const _default: {
|
|
|
189
189
|
} | undefined;
|
|
190
190
|
dynamicProperties?: {
|
|
191
191
|
loading: boolean;
|
|
192
|
-
loadDictionaries: (
|
|
192
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
193
193
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
194
194
|
setPropertyValue: (data: {
|
|
195
195
|
property: Record<string, any>;
|
|
@@ -28,7 +28,7 @@ declare const _default: {
|
|
|
28
28
|
} | undefined;
|
|
29
29
|
dynamicProperties?: {
|
|
30
30
|
loading: boolean;
|
|
31
|
-
loadDictionaries: (
|
|
31
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
32
32
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
33
33
|
setPropertyValue: (data: {
|
|
34
34
|
property: Record<string, any>;
|
|
@@ -109,7 +109,7 @@ declare const _default: {
|
|
|
109
109
|
} | undefined;
|
|
110
110
|
dynamicProperties?: {
|
|
111
111
|
loading: boolean;
|
|
112
|
-
loadDictionaries: (
|
|
112
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
113
113
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
114
114
|
setPropertyValue: (data: {
|
|
115
115
|
property: Record<string, any>;
|
|
@@ -189,7 +189,7 @@ declare const _default: {
|
|
|
189
189
|
} | undefined;
|
|
190
190
|
dynamicProperties?: {
|
|
191
191
|
loading: boolean;
|
|
192
|
-
loadDictionaries: (
|
|
192
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
193
193
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
194
194
|
setPropertyValue: (data: {
|
|
195
195
|
property: Record<string, any>;
|
|
@@ -28,7 +28,7 @@ declare const _default: {
|
|
|
28
28
|
} | undefined;
|
|
29
29
|
dynamicProperties?: {
|
|
30
30
|
loading: boolean;
|
|
31
|
-
loadDictionaries: (
|
|
31
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
32
32
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
33
33
|
setPropertyValue: (data: {
|
|
34
34
|
property: Record<string, any>;
|
|
@@ -109,7 +109,7 @@ declare const _default: {
|
|
|
109
109
|
} | undefined;
|
|
110
110
|
dynamicProperties?: {
|
|
111
111
|
loading: boolean;
|
|
112
|
-
loadDictionaries: (
|
|
112
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
113
113
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
114
114
|
setPropertyValue: (data: {
|
|
115
115
|
property: Record<string, any>;
|
|
@@ -189,7 +189,7 @@ declare const _default: {
|
|
|
189
189
|
} | undefined;
|
|
190
190
|
dynamicProperties?: {
|
|
191
191
|
loading: boolean;
|
|
192
|
-
loadDictionaries: (
|
|
192
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
193
193
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
194
194
|
setPropertyValue: (data: {
|
|
195
195
|
property: Record<string, any>;
|
|
@@ -28,7 +28,7 @@ declare const _default: {
|
|
|
28
28
|
} | undefined;
|
|
29
29
|
dynamicProperties?: {
|
|
30
30
|
loading: boolean;
|
|
31
|
-
loadDictionaries: (
|
|
31
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
32
32
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
33
33
|
setPropertyValue: (data: {
|
|
34
34
|
property: Record<string, any>;
|
|
@@ -109,7 +109,7 @@ declare const _default: {
|
|
|
109
109
|
} | undefined;
|
|
110
110
|
dynamicProperties?: {
|
|
111
111
|
loading: boolean;
|
|
112
|
-
loadDictionaries: (
|
|
112
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
113
113
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
114
114
|
setPropertyValue: (data: {
|
|
115
115
|
property: Record<string, any>;
|
|
@@ -189,7 +189,7 @@ declare const _default: {
|
|
|
189
189
|
} | undefined;
|
|
190
190
|
dynamicProperties?: {
|
|
191
191
|
loading: boolean;
|
|
192
|
-
loadDictionaries: (
|
|
192
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
193
193
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
194
194
|
setPropertyValue: (data: {
|
|
195
195
|
property: Record<string, any>;
|
|
@@ -28,7 +28,7 @@ declare const _default: {
|
|
|
28
28
|
} | undefined;
|
|
29
29
|
dynamicProperties?: {
|
|
30
30
|
loading: boolean;
|
|
31
|
-
loadDictionaries: (
|
|
31
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
32
32
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
33
33
|
setPropertyValue: (data: {
|
|
34
34
|
property: Record<string, any>;
|
|
@@ -109,7 +109,7 @@ declare const _default: {
|
|
|
109
109
|
} | undefined;
|
|
110
110
|
dynamicProperties?: {
|
|
111
111
|
loading: boolean;
|
|
112
|
-
loadDictionaries: (
|
|
112
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
113
113
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
114
114
|
setPropertyValue: (data: {
|
|
115
115
|
property: Record<string, any>;
|
|
@@ -189,7 +189,7 @@ declare const _default: {
|
|
|
189
189
|
} | undefined;
|
|
190
190
|
dynamicProperties?: {
|
|
191
191
|
loading: boolean;
|
|
192
|
-
loadDictionaries: (
|
|
192
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
193
193
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
194
194
|
setPropertyValue: (data: {
|
|
195
195
|
property: Record<string, any>;
|
|
@@ -28,7 +28,7 @@ declare const _default: {
|
|
|
28
28
|
} | undefined;
|
|
29
29
|
dynamicProperties?: {
|
|
30
30
|
loading: boolean;
|
|
31
|
-
loadDictionaries: (
|
|
31
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
32
32
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
33
33
|
setPropertyValue: (data: {
|
|
34
34
|
property: Record<string, any>;
|
|
@@ -109,7 +109,7 @@ declare const _default: {
|
|
|
109
109
|
} | undefined;
|
|
110
110
|
dynamicProperties?: {
|
|
111
111
|
loading: boolean;
|
|
112
|
-
loadDictionaries: (
|
|
112
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
113
113
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
114
114
|
setPropertyValue: (data: {
|
|
115
115
|
property: Record<string, any>;
|
|
@@ -189,7 +189,7 @@ declare const _default: {
|
|
|
189
189
|
} | undefined;
|
|
190
190
|
dynamicProperties?: {
|
|
191
191
|
loading: boolean;
|
|
192
|
-
loadDictionaries: (
|
|
192
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
193
193
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
194
194
|
setPropertyValue: (data: {
|
|
195
195
|
property: Record<string, any>;
|
|
@@ -29,7 +29,7 @@ declare const _default: {
|
|
|
29
29
|
} | undefined;
|
|
30
30
|
dynamicProperties?: {
|
|
31
31
|
loading: boolean;
|
|
32
|
-
loadDictionaries: (
|
|
32
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
33
33
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
34
34
|
setPropertyValue: (data: {
|
|
35
35
|
property: Record<string, any>;
|
|
@@ -110,7 +110,7 @@ declare const _default: {
|
|
|
110
110
|
} | undefined;
|
|
111
111
|
dynamicProperties?: {
|
|
112
112
|
loading: boolean;
|
|
113
|
-
loadDictionaries: (
|
|
113
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
114
114
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
115
115
|
setPropertyValue: (data: {
|
|
116
116
|
property: Record<string, any>;
|
|
@@ -190,7 +190,7 @@ declare const _default: {
|
|
|
190
190
|
} | undefined;
|
|
191
191
|
dynamicProperties?: {
|
|
192
192
|
loading: boolean;
|
|
193
|
-
loadDictionaries: (
|
|
193
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
194
194
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
195
195
|
setPropertyValue: (data: {
|
|
196
196
|
property: Record<string, any>;
|
|
@@ -28,7 +28,7 @@ declare const _default: {
|
|
|
28
28
|
} | undefined;
|
|
29
29
|
dynamicProperties?: {
|
|
30
30
|
loading: boolean;
|
|
31
|
-
loadDictionaries: (
|
|
31
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
32
32
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
33
33
|
setPropertyValue: (data: {
|
|
34
34
|
property: Record<string, any>;
|
|
@@ -109,7 +109,7 @@ declare const _default: {
|
|
|
109
109
|
} | undefined;
|
|
110
110
|
dynamicProperties?: {
|
|
111
111
|
loading: boolean;
|
|
112
|
-
loadDictionaries: (
|
|
112
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
113
113
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
114
114
|
setPropertyValue: (data: {
|
|
115
115
|
property: Record<string, any>;
|
|
@@ -189,7 +189,7 @@ declare const _default: {
|
|
|
189
189
|
} | undefined;
|
|
190
190
|
dynamicProperties?: {
|
|
191
191
|
loading: boolean;
|
|
192
|
-
loadDictionaries: (
|
|
192
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
193
193
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
194
194
|
setPropertyValue: (data: {
|
|
195
195
|
property: Record<string, any>;
|
|
@@ -28,7 +28,7 @@ declare const _default: {
|
|
|
28
28
|
} | undefined;
|
|
29
29
|
dynamicProperties?: {
|
|
30
30
|
loading: boolean;
|
|
31
|
-
loadDictionaries: (
|
|
31
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
32
32
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
33
33
|
setPropertyValue: (data: {
|
|
34
34
|
property: Record<string, any>;
|
|
@@ -109,7 +109,7 @@ declare const _default: {
|
|
|
109
109
|
} | undefined;
|
|
110
110
|
dynamicProperties?: {
|
|
111
111
|
loading: boolean;
|
|
112
|
-
loadDictionaries: (
|
|
112
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
113
113
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
114
114
|
setPropertyValue: (data: {
|
|
115
115
|
property: Record<string, any>;
|
|
@@ -189,7 +189,7 @@ declare const _default: {
|
|
|
189
189
|
} | undefined;
|
|
190
190
|
dynamicProperties?: {
|
|
191
191
|
loading: boolean;
|
|
192
|
-
loadDictionaries: (
|
|
192
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
193
193
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
194
194
|
setPropertyValue: (data: {
|
|
195
195
|
property: Record<string, any>;
|
|
@@ -28,7 +28,7 @@ declare const _default: {
|
|
|
28
28
|
} | undefined;
|
|
29
29
|
dynamicProperties?: {
|
|
30
30
|
loading: boolean;
|
|
31
|
-
loadDictionaries: (
|
|
31
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
32
32
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
33
33
|
setPropertyValue: (data: {
|
|
34
34
|
property: Record<string, any>;
|
|
@@ -109,7 +109,7 @@ declare const _default: {
|
|
|
109
109
|
} | undefined;
|
|
110
110
|
dynamicProperties?: {
|
|
111
111
|
loading: boolean;
|
|
112
|
-
loadDictionaries: (
|
|
112
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
113
113
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
114
114
|
setPropertyValue: (data: {
|
|
115
115
|
property: Record<string, any>;
|
|
@@ -189,7 +189,7 @@ declare const _default: {
|
|
|
189
189
|
} | undefined;
|
|
190
190
|
dynamicProperties?: {
|
|
191
191
|
loading: boolean;
|
|
192
|
-
loadDictionaries: (
|
|
192
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
193
193
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
194
194
|
setPropertyValue: (data: {
|
|
195
195
|
property: Record<string, any>;
|
package/dist/shared/modules/dynamic/components/fields/storybook/MultivalueField.stories.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ declare const _default: {
|
|
|
28
28
|
} | undefined;
|
|
29
29
|
dynamicProperties?: {
|
|
30
30
|
loading: boolean;
|
|
31
|
-
loadDictionaries: (
|
|
31
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
32
32
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
33
33
|
setPropertyValue: (data: {
|
|
34
34
|
property: Record<string, any>;
|
|
@@ -109,7 +109,7 @@ declare const _default: {
|
|
|
109
109
|
} | undefined;
|
|
110
110
|
dynamicProperties?: {
|
|
111
111
|
loading: boolean;
|
|
112
|
-
loadDictionaries: (
|
|
112
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
113
113
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
114
114
|
setPropertyValue: (data: {
|
|
115
115
|
property: Record<string, any>;
|
|
@@ -189,7 +189,7 @@ declare const _default: {
|
|
|
189
189
|
} | undefined;
|
|
190
190
|
dynamicProperties?: {
|
|
191
191
|
loading: boolean;
|
|
192
|
-
loadDictionaries: (
|
|
192
|
+
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
193
193
|
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
194
194
|
setPropertyValue: (data: {
|
|
195
195
|
property: Record<string, any>;
|