@vc-shell/framework 1.0.117 → 1.0.119
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 +37 -0
- package/dist/framework.mjs +8937 -8593
- package/dist/index.css +1 -1
- package/dist/shared/modules/dynamic/components/FIELD_MAP.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/factories.d.ts +5 -2
- package/dist/shared/modules/dynamic/components/factories.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/Button.d.ts +8 -4
- package/dist/shared/modules/dynamic/components/fields/Button.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/Card.d.ts +8 -4
- package/dist/shared/modules/dynamic/components/fields/Card.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/Checkbox.d.ts +8 -4
- package/dist/shared/modules/dynamic/components/fields/Checkbox.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/ContentField.d.ts +135 -0
- package/dist/shared/modules/dynamic/components/fields/ContentField.d.ts.map +1 -0
- package/dist/shared/modules/dynamic/components/fields/DynamicProperty.d.ts +8 -4
- package/dist/shared/modules/dynamic/components/fields/DynamicProperty.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/EditorField.d.ts +8 -4
- package/dist/shared/modules/dynamic/components/fields/EditorField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/Fieldset.d.ts +8 -4
- package/dist/shared/modules/dynamic/components/fields/Fieldset.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/GalleryField.d.ts +8 -4
- package/dist/shared/modules/dynamic/components/fields/GalleryField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/ImageField.d.ts +135 -0
- package/dist/shared/modules/dynamic/components/fields/ImageField.d.ts.map +1 -0
- package/dist/shared/modules/dynamic/components/fields/InputCurrency.d.ts +8 -4
- package/dist/shared/modules/dynamic/components/fields/InputCurrency.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/InputField.d.ts +13 -9
- package/dist/shared/modules/dynamic/components/fields/InputField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/SelectField.d.ts +8 -4
- package/dist/shared/modules/dynamic/components/fields/SelectField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/StatusField.d.ts +8 -4
- package/dist/shared/modules/dynamic/components/fields/StatusField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/VideoField.d.ts +135 -0
- package/dist/shared/modules/dynamic/components/fields/VideoField.d.ts.map +1 -0
- package/dist/shared/modules/dynamic/components/fields/props.d.ts +9 -5
- package/dist/shared/modules/dynamic/components/fields/props.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/factories/types/index.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/helpers/nodeBuilder.d.ts +2 -2
- package/dist/shared/modules/dynamic/helpers/nodeBuilder.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/pages/dynamic-blade-list.vue.d.ts +8 -0
- package/dist/shared/modules/dynamic/pages/dynamic-blade-list.vue.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/types/index.d.ts +29 -2
- package/dist/shared/modules/dynamic/types/index.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/types/models.d.ts +15 -2
- package/dist/shared/modules/dynamic/types/models.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/ui/components/atoms/vc-col/index.d.ts +1 -80
- package/dist/ui/components/atoms/vc-col/index.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-col/vc-col.vue.d.ts +3 -3
- package/dist/ui/components/atoms/vc-col/vc-col.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-row/index.d.ts +1 -52
- package/dist/ui/components/atoms/vc-row/index.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-row/vc-row.vue.d.ts +3 -3
- package/dist/ui/components/atoms/vc-row/vc-row.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/index.d.ts +1 -0
- package/dist/ui/components/molecules/index.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-field/_internal/vc-field-type/vc-field-type.vue.d.ts +33 -0
- package/dist/ui/components/molecules/vc-field/_internal/vc-field-type/vc-field-type.vue.d.ts.map +1 -0
- package/dist/ui/components/molecules/vc-field/index.d.ts +2 -0
- package/dist/ui/components/molecules/vc-field/index.d.ts.map +1 -0
- package/dist/ui/components/molecules/vc-field/vc-field.vue.d.ts +45 -0
- package/dist/ui/components/molecules/vc-field/vc-field.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-popup/vc-popup.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue.d.ts.map +1 -1
- package/dist/ui/types/index.d.ts +1 -0
- package/dist/ui/types/index.d.ts.map +1 -1
- package/package.json +4 -4
- package/shared/modules/dynamic/components/FIELD_MAP.ts +7 -0
- package/shared/modules/dynamic/components/SchemaRender.ts +3 -3
- package/shared/modules/dynamic/components/factories.ts +35 -1
- package/shared/modules/dynamic/components/fields/ContentField.ts +25 -0
- package/shared/modules/dynamic/components/fields/EditorField.ts +3 -6
- package/shared/modules/dynamic/components/fields/Fieldset.ts +12 -5
- package/shared/modules/dynamic/components/fields/GalleryField.ts +8 -5
- package/shared/modules/dynamic/components/fields/ImageField.ts +30 -0
- package/shared/modules/dynamic/components/fields/InputField.ts +25 -3
- package/shared/modules/dynamic/components/fields/VideoField.ts +28 -0
- package/shared/modules/dynamic/components/fields/props.ts +5 -5
- package/shared/modules/dynamic/factories/types/index.ts +1 -1
- package/shared/modules/dynamic/helpers/nodeBuilder.ts +19 -14
- package/shared/modules/dynamic/pages/dynamic-blade-list.vue +39 -2
- package/shared/modules/dynamic/types/index.ts +35 -2
- package/shared/modules/dynamic/types/models.ts +22 -1
- package/ui/components/atoms/vc-col/index.ts +1 -10
- package/ui/components/atoms/vc-col/vc-col.vue +10 -5
- package/ui/components/atoms/vc-image/vc-image.vue +1 -1
- package/ui/components/atoms/vc-label/vc-label.vue +1 -1
- package/ui/components/atoms/vc-row/index.ts +1 -10
- package/ui/components/atoms/vc-row/vc-row.vue +8 -1
- package/ui/components/molecules/index.ts +1 -0
- package/ui/components/molecules/vc-field/_internal/vc-field-type/vc-field-type.vue +66 -0
- package/ui/components/molecules/vc-field/index.ts +1 -0
- package/ui/components/molecules/vc-field/vc-field.vue +67 -0
- package/ui/components/organisms/vc-popup/vc-popup.vue +5 -0
- package/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue +4 -2
- package/ui/types/index.ts +1 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FIELD_MAP.d.ts","sourceRoot":"","sources":["../../../../../shared/modules/dynamic/components/FIELD_MAP.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"FIELD_MAP.d.ts","sourceRoot":"","sources":["../../../../../shared/modules/dynamic/components/FIELD_MAP.ts"],"names":[],"mappings":"AAeA,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AACzC,OAAO,EAAE,iBAAiB,EAAE,MAAM,KAAK,CAAC;AAExC,KAAK,mBAAmB,GAAG,OAAO,CAAC,aAAa,CAAC,WAAW,CAAC,EAAE,YAAY,CAAC,CAAC;AAC7E,KAAK,SAAS,GAAG,MAAM,CAAC,mBAAmB,EAAE,iBAAiB,CAAC,CAAC;AAEhE,QAAA,MAAM,SAAS,EAAE,SAehB,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
import { IControlBaseProps, ISelectField, IInputField, ICardCollection, IEditorField, IGallery, IDynamicProperties, ICheckbox, IButton, IInputCurrency, IFieldset, IControlBaseOptions, IStatusField } from "../types/models";
|
|
1
|
+
import { IControlBaseProps, ISelectField, IInputField, ICardCollection, IEditorField, IGallery, IDynamicProperties, ICheckbox, IButton, IInputCurrency, IFieldset, IControlBaseOptions, IStatusField, IContentField, IVideoField, IImageField } from "../types/models";
|
|
2
2
|
export declare const ControlBase: ({ visibility }: IControlBaseOptions) => IControlBaseOptions;
|
|
3
3
|
export declare const ControlBaseProps: ({ rules, label, placeholder, disabled, required, name, classNames, tooltip, key, ...rest }: IControlBaseProps) => IControlBaseProps;
|
|
4
4
|
export declare const SelectField: ({ props, slots, options }: Partial<ISelectField>) => ISelectField;
|
|
5
5
|
export declare const StatusField: ({ props, slots, options }: Partial<IStatusField>) => IStatusField;
|
|
6
|
-
export declare const InputField: ({ props, options }: Partial<IInputField>) => IInputField;
|
|
6
|
+
export declare const InputField: ({ props, options, slots }: Partial<IInputField>) => IInputField;
|
|
7
|
+
export declare const ContentField: ({ props, options }: Partial<IContentField>) => IContentField;
|
|
8
|
+
export declare const ImageField: ({ props, options }: Partial<IImageField>) => IImageField;
|
|
9
|
+
export declare const VideoField: ({ props, options }: Partial<IInputField>) => IVideoField;
|
|
7
10
|
export declare const InputCurrency: ({ props, options }: Partial<IInputCurrency>) => IInputCurrency;
|
|
8
11
|
export declare const CardCollection: ({ props, options, slots }: Partial<ICardCollection>) => ICardCollection;
|
|
9
12
|
export declare const DynamicProperties: ({ props, options }: Partial<IDynamicProperties>) => IDynamicProperties;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"factories.d.ts","sourceRoot":"","sources":["../../../../../shared/modules/dynamic/components/factories.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"factories.d.ts","sourceRoot":"","sources":["../../../../../shared/modules/dynamic/components/factories.ts"],"names":[],"mappings":"AAiBA,OAAO,EACL,iBAAiB,EACjB,YAAY,EACZ,WAAW,EACX,eAAe,EACf,YAAY,EACZ,QAAQ,EACR,kBAAkB,EAClB,SAAS,EACT,OAAO,EACP,cAAc,EACd,SAAS,EACT,mBAAmB,EACnB,YAAY,EACZ,aAAa,EACb,WAAW,EACX,WAAW,EACZ,MAAM,iBAAiB,CAAC;AAEzB,eAAO,MAAM,WAAW,mBAAgC,mBAAmB,KAAG,mBAE5E,CAAC;AAEH,eAAO,MAAM,gBAAgB,+FAW1B,iBAAiB,KAAG,iBAWrB,CAAC;AAEH,eAAO,MAAM,WAAW,8BAA+B,QAAQ,YAAY,CAAC,KAAG,YAQ7E,CAAC;AAEH,eAAO,MAAM,WAAW,8BAA+B,QAAQ,YAAY,CAAC,KAAG,YAQ7E,CAAC;AAEH,eAAO,MAAM,UAAU,8BAA+B,QAAQ,WAAW,CAAC,KAAG,WAQ3E,CAAC;AAEH,eAAO,MAAM,YAAY,uBAAwB,QAAQ,aAAa,CAAC,KAAG,aAOxE,CAAC;AAEH,eAAO,MAAM,UAAU,uBAAwB,QAAQ,WAAW,CAAC,KAAG,WAOpE,CAAC;AAEH,eAAO,MAAM,UAAU,uBAAwB,QAAQ,WAAW,CAAC,KAAG,WAOpE,CAAC;AAEH,eAAO,MAAM,aAAa,uBAAwB,QAAQ,cAAc,CAAC,KAAG,cAO1E,CAAC;AAEH,eAAO,MAAM,cAAc,8BAA+B,QAAQ,eAAe,CAAC,KAAG,eAQnF,CAAC;AAEH,eAAO,MAAM,iBAAiB,uBAAwB,QAAQ,kBAAkB,CAAC,KAAG,kBAOlF,CAAC;AAEH,eAAO,MAAM,WAAW,uBAAwB,QAAQ,YAAY,CAAC,KAAG,YAOtE,CAAC;AAEH,eAAO,MAAM,OAAO,uBAAwB,QAAQ,QAAQ,CAAC,KAAG,QAO9D,CAAC;AAEH,eAAO,MAAM,QAAQ,8BAA+B,QAAQ,SAAS,CAAC,KAAG,SAQvE,CAAC;AAEH,eAAO,MAAM,MAAM,8BAA+B,QAAQ,OAAO,CAAC,KAAG,OAQnE,CAAC;AAEH,eAAO,MAAM,QAAQ,0CAA2C,SAAS,KAAG,SAK1E,CAAC"}
|
|
@@ -92,12 +92,16 @@ declare const _default: {
|
|
|
92
92
|
default: () => import("../..").DetailsBladeContext;
|
|
93
93
|
};
|
|
94
94
|
fields: {
|
|
95
|
-
type: import("vue").PropType<import("vue").ComputedRef<import("vue").
|
|
96
|
-
|
|
95
|
+
type: import("vue").PropType<import("vue").ComputedRef<import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
96
|
+
[key: string]: any;
|
|
97
|
+
}>[][]>>;
|
|
98
|
+
default: () => import("vue").ComputedRef<import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
99
|
+
[key: string]: any;
|
|
100
|
+
}>[][]>;
|
|
97
101
|
};
|
|
98
102
|
formData: {
|
|
99
|
-
type:
|
|
100
|
-
default: () =>
|
|
103
|
+
type: import("vue").PropType<import("vue").MaybeRef<Record<string, unknown>>>;
|
|
104
|
+
default: () => import("vue").MaybeRef<Record<string, unknown>>;
|
|
101
105
|
};
|
|
102
106
|
fieldContext: {
|
|
103
107
|
type: ObjectConstructor;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../../../../shared/modules/dynamic/components/fields/Button.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAY,MAAM,KAAK,CAAC;AAEjD,OAAO,cAAc,MAAM,SAAS,CAAC;AACrC,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC
|
|
1
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../../../../shared/modules/dynamic/components/fields/Button.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAY,MAAM,KAAK,CAAC;AAEjD,OAAO,cAAc,MAAM,SAAS,CAAC;AACrC,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAK5B,iBAAiB,qBAAqB,CAAC,GAAG;QAAE,OAAO,EAAE,YAAY,CAAA;KAAE;;;;AAHlF,wBAyBE"}
|
|
@@ -92,12 +92,16 @@ declare const _default: {
|
|
|
92
92
|
default: () => import("../..").DetailsBladeContext;
|
|
93
93
|
};
|
|
94
94
|
fields: {
|
|
95
|
-
type: import("vue").PropType<import("vue").ComputedRef<import("vue").
|
|
96
|
-
|
|
95
|
+
type: import("vue").PropType<import("vue").ComputedRef<VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
96
|
+
[key: string]: any;
|
|
97
|
+
}>[][]>>;
|
|
98
|
+
default: () => import("vue").ComputedRef<VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
99
|
+
[key: string]: any;
|
|
100
|
+
}>[][]>;
|
|
97
101
|
};
|
|
98
102
|
formData: {
|
|
99
|
-
type:
|
|
100
|
-
default: () =>
|
|
103
|
+
type: import("vue").PropType<import("vue").MaybeRef<Record<string, unknown>>>;
|
|
104
|
+
default: () => import("vue").MaybeRef<Record<string, unknown>>;
|
|
101
105
|
};
|
|
102
106
|
fieldContext: {
|
|
103
107
|
type: ObjectConstructor;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../../../../../../shared/modules/dynamic/components/fields/Card.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAoE,KAAK,EAAE,MAAM,KAAK,CAAC;AAEhH,OAAO,cAAc,MAAM,SAAS,CAAC;AACrC,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC
|
|
1
|
+
{"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../../../../../../shared/modules/dynamic/components/fields/Card.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAoE,KAAK,EAAE,MAAM,KAAK,CAAC;AAEhH,OAAO,cAAc,MAAM,SAAS,CAAC;AACrC,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAQ1B,iBAAiB,qBAAqB,CAAC,GAAG;QAAE,OAAO,EAAE,UAAU,CAAA;KAAE;;;;AAHhF,wBA6EE"}
|
|
@@ -92,12 +92,16 @@ declare const _default: {
|
|
|
92
92
|
default: () => import("../..").DetailsBladeContext;
|
|
93
93
|
};
|
|
94
94
|
fields: {
|
|
95
|
-
type: import("vue").PropType<import("vue").ComputedRef<import("vue").
|
|
96
|
-
|
|
95
|
+
type: import("vue").PropType<import("vue").ComputedRef<import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
96
|
+
[key: string]: any;
|
|
97
|
+
}>[][]>>;
|
|
98
|
+
default: () => import("vue").ComputedRef<import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
99
|
+
[key: string]: any;
|
|
100
|
+
}>[][]>;
|
|
97
101
|
};
|
|
98
102
|
formData: {
|
|
99
|
-
type:
|
|
100
|
-
default: () =>
|
|
103
|
+
type: import("vue").PropType<import("vue").MaybeRef<Record<string, unknown>>>;
|
|
104
|
+
default: () => import("vue").MaybeRef<Record<string, unknown>>;
|
|
101
105
|
};
|
|
102
106
|
fieldContext: {
|
|
103
107
|
type: ObjectConstructor;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../../../../../../shared/modules/dynamic/components/fields/Checkbox.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAK,MAAM,KAAK,CAAC;AAE1C,OAAO,cAAc,MAAM,SAAS,CAAC;AAErC,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC
|
|
1
|
+
{"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../../../../../../shared/modules/dynamic/components/fields/Checkbox.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAK,MAAM,KAAK,CAAC;AAE1C,OAAO,cAAc,MAAM,SAAS,CAAC;AAErC,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAK9B,iBAAiB,qBAAqB,CAAC,GAAG;QAAE,OAAO,EAAE,cAAc,CAAA;KAAE;;;;AAHpF,wBAqCE"}
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
import { ExtractPropTypes } from "vue";
|
|
2
|
+
import componentProps from "./props";
|
|
3
|
+
import { FieldSchema } from "../../types";
|
|
4
|
+
declare const _default: {
|
|
5
|
+
name: string;
|
|
6
|
+
props: {
|
|
7
|
+
baseProps: {
|
|
8
|
+
type: import("vue").PropType<{
|
|
9
|
+
key?: string | number | symbol;
|
|
10
|
+
rules?: Record<string, unknown>;
|
|
11
|
+
label?: string;
|
|
12
|
+
placeholder?: string;
|
|
13
|
+
disabled?: boolean;
|
|
14
|
+
required?: boolean;
|
|
15
|
+
name?: string;
|
|
16
|
+
classNames?: string;
|
|
17
|
+
modelValue?: any;
|
|
18
|
+
tooltip?: string;
|
|
19
|
+
"onUpdate:modelValue"?: (event: any) => void;
|
|
20
|
+
multilanguage?: boolean;
|
|
21
|
+
}>;
|
|
22
|
+
default: () => import("../../types/models").IControlBaseProps;
|
|
23
|
+
};
|
|
24
|
+
baseOptions: {
|
|
25
|
+
type: import("vue").PropType<{
|
|
26
|
+
visibility?: boolean;
|
|
27
|
+
}>;
|
|
28
|
+
default: () => import("../../types/models").IControlBaseOptions;
|
|
29
|
+
};
|
|
30
|
+
element: {
|
|
31
|
+
type: import("vue").PropType<import("../../types").ControlSchema>;
|
|
32
|
+
default: () => import("../../types").ControlSchema;
|
|
33
|
+
};
|
|
34
|
+
bladeContext: {
|
|
35
|
+
type: import("vue").PropType<{
|
|
36
|
+
settings: import("../../types").SettingsSchema;
|
|
37
|
+
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
38
|
+
saveChanges: import("../../../../..").AsyncAction<Record<string, any>>;
|
|
39
|
+
remove: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
40
|
+
loading: boolean;
|
|
41
|
+
item: Record<string, any>;
|
|
42
|
+
validationState: import("../..").IValidationState<Record<string, any>>;
|
|
43
|
+
scope?: {
|
|
44
|
+
[x: string]: any;
|
|
45
|
+
disabled?: boolean;
|
|
46
|
+
multilanguage?: {
|
|
47
|
+
loading: boolean;
|
|
48
|
+
currentLocale: string;
|
|
49
|
+
languages: string[];
|
|
50
|
+
setLocale: (locale: string) => void;
|
|
51
|
+
localesOptions: {
|
|
52
|
+
label: string;
|
|
53
|
+
value: string;
|
|
54
|
+
}[];
|
|
55
|
+
getLanguages: import("../../../../..").AsyncAction<void, void>;
|
|
56
|
+
};
|
|
57
|
+
dynamicProperties?: {
|
|
58
|
+
loading: boolean;
|
|
59
|
+
loadDictionaries: (property: Record<string, any>, keyword?: string, locale?: string) => Promise<Record<string, any>[]>;
|
|
60
|
+
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
61
|
+
setPropertyValue: (data: {
|
|
62
|
+
property: Record<string, any>;
|
|
63
|
+
value: string | Record<string, any>[];
|
|
64
|
+
dictionary?: Record<string, any>[];
|
|
65
|
+
locale?: string;
|
|
66
|
+
}) => void;
|
|
67
|
+
};
|
|
68
|
+
assetsHandler?: {
|
|
69
|
+
assets?: {
|
|
70
|
+
loading: boolean;
|
|
71
|
+
upload: (files: FileList, assetArr: import("../../../../..").Asset[], uploadCatalog: string, uploadFolder: string) => Promise<import("../../../../..").Asset[]>;
|
|
72
|
+
edit: (assetsArr: import("../../../../..").Asset[], asset: import("../../../../..").Asset) => Promise<import("../../../../..").Asset[]>;
|
|
73
|
+
editBulk: (assets: import("../../../../..").Asset[]) => import("../../../../..").Asset[];
|
|
74
|
+
remove: (assetArr: import("../../../../..").Asset[], asset: import("../../../../..").Asset) => Promise<import("../../../../..").Asset[]>;
|
|
75
|
+
removeBulk: (assetArr: import("../../../../..").Asset[], assetsArrEdited: import("../../../../..").Asset[]) => Promise<import("../../../../..").Asset[]>;
|
|
76
|
+
};
|
|
77
|
+
images?: {
|
|
78
|
+
loading: boolean;
|
|
79
|
+
upload: (files: FileList, assetArr: import("../../../../..").IImage[], uploadCatalog: string, uploadFolder: string) => Promise<import("../../../../..").IImage[]>;
|
|
80
|
+
edit: (assetsArr: import("../../../../..").IImage[], asset: import("../../../../..").IImage) => Promise<import("../../../../..").IImage[]>;
|
|
81
|
+
editBulk: (assets: import("../../../../..").IImage[]) => import("../../../../..").IImage[];
|
|
82
|
+
remove: (assetArr: import("../../../../..").IImage[], asset: import("../../../../..").IImage) => Promise<import("../../../../..").IImage[]>;
|
|
83
|
+
removeBulk: (assetArr: import("../../../../..").IImage[], assetsArrEdited: import("../../../../..").IImage[]) => Promise<import("../../../../..").IImage[]>;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
toolbarOverrides?: {
|
|
87
|
+
[x: string]: import("../../../../..").IBladeToolbar<import("vue").ComponentPublicInstance>;
|
|
88
|
+
} | ((...args: any[]) => any);
|
|
89
|
+
};
|
|
90
|
+
bladeTitle?: string;
|
|
91
|
+
}>;
|
|
92
|
+
default: () => import("../..").DetailsBladeContext;
|
|
93
|
+
};
|
|
94
|
+
fields: {
|
|
95
|
+
type: import("vue").PropType<import("vue").ComputedRef<import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
96
|
+
[key: string]: any;
|
|
97
|
+
}>[][]>>;
|
|
98
|
+
default: () => import("vue").ComputedRef<import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
99
|
+
[key: string]: any;
|
|
100
|
+
}>[][]>;
|
|
101
|
+
};
|
|
102
|
+
formData: {
|
|
103
|
+
type: import("vue").PropType<import("vue").MaybeRef<Record<string, unknown>>>;
|
|
104
|
+
default: () => import("vue").MaybeRef<Record<string, unknown>>;
|
|
105
|
+
};
|
|
106
|
+
fieldContext: {
|
|
107
|
+
type: ObjectConstructor;
|
|
108
|
+
default: any;
|
|
109
|
+
};
|
|
110
|
+
nodeBuilder: {
|
|
111
|
+
type: FunctionConstructor;
|
|
112
|
+
default: () => {};
|
|
113
|
+
};
|
|
114
|
+
currentLocale: {
|
|
115
|
+
type: StringConstructor;
|
|
116
|
+
};
|
|
117
|
+
elIndex: {
|
|
118
|
+
type: NumberConstructor;
|
|
119
|
+
};
|
|
120
|
+
rows: {
|
|
121
|
+
type: NumberConstructor;
|
|
122
|
+
};
|
|
123
|
+
onSetModelData: {
|
|
124
|
+
type: FunctionConstructor;
|
|
125
|
+
default: () => {};
|
|
126
|
+
};
|
|
127
|
+
};
|
|
128
|
+
setup(props: ExtractPropTypes<typeof componentProps> & {
|
|
129
|
+
element: FieldSchema;
|
|
130
|
+
}): () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
131
|
+
[key: string]: any;
|
|
132
|
+
}>;
|
|
133
|
+
};
|
|
134
|
+
export default _default;
|
|
135
|
+
//# sourceMappingURL=ContentField.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ContentField.d.ts","sourceRoot":"","sources":["../../../../../../shared/modules/dynamic/components/fields/ContentField.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAK,MAAM,KAAK,CAAC;AAE1C,OAAO,cAAc,MAAM,SAAS,CAAC;AACrC,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAK3B,iBAAiB,qBAAqB,CAAC,GAAG;QAAE,OAAO,EAAE,WAAW,CAAA;KAAE;;;;AAHjF,wBAmBE"}
|
|
@@ -92,12 +92,16 @@ declare const _default: {
|
|
|
92
92
|
default: () => import("../..").DetailsBladeContext;
|
|
93
93
|
};
|
|
94
94
|
fields: {
|
|
95
|
-
type: import("vue").PropType<import("vue").ComputedRef<import("vue").
|
|
96
|
-
|
|
95
|
+
type: import("vue").PropType<import("vue").ComputedRef<import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
96
|
+
[key: string]: any;
|
|
97
|
+
}>[][]>>;
|
|
98
|
+
default: () => import("vue").ComputedRef<import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
99
|
+
[key: string]: any;
|
|
100
|
+
}>[][]>;
|
|
97
101
|
};
|
|
98
102
|
formData: {
|
|
99
|
-
type:
|
|
100
|
-
default: () =>
|
|
103
|
+
type: import("vue").PropType<import("vue").MaybeRef<Record<string, unknown>>>;
|
|
104
|
+
default: () => import("vue").MaybeRef<Record<string, unknown>>;
|
|
101
105
|
};
|
|
102
106
|
fieldContext: {
|
|
103
107
|
type: ObjectConstructor;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DynamicProperty.d.ts","sourceRoot":"","sources":["../../../../../../shared/modules/dynamic/components/fields/DynamicProperty.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAsD,MAAM,KAAK,CAAC;AAE3F,OAAO,cAAc,MAAM,SAAS,CAAC;AAIrC,OAAO,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC
|
|
1
|
+
{"version":3,"file":"DynamicProperty.d.ts","sourceRoot":"","sources":["../../../../../../shared/modules/dynamic/components/fields/DynamicProperty.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAsD,MAAM,KAAK,CAAC;AAE3F,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,wBA0FE"}
|
|
@@ -91,12 +91,16 @@ declare const _default: {
|
|
|
91
91
|
default: () => import("../..").DetailsBladeContext;
|
|
92
92
|
};
|
|
93
93
|
fields: {
|
|
94
|
-
type: import("vue").PropType<import("vue").ComputedRef<import("vue").
|
|
95
|
-
|
|
94
|
+
type: import("vue").PropType<import("vue").ComputedRef<import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
95
|
+
[key: string]: any;
|
|
96
|
+
}>[][]>>;
|
|
97
|
+
default: () => import("vue").ComputedRef<import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
98
|
+
[key: string]: any;
|
|
99
|
+
}>[][]>;
|
|
96
100
|
};
|
|
97
101
|
formData: {
|
|
98
|
-
type:
|
|
99
|
-
default: () =>
|
|
102
|
+
type: import("vue").PropType<import("vue").MaybeRef<Record<string, unknown>>>;
|
|
103
|
+
default: () => import("vue").MaybeRef<Record<string, unknown>>;
|
|
100
104
|
};
|
|
101
105
|
fieldContext: {
|
|
102
106
|
type: ObjectConstructor;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EditorField.d.ts","sourceRoot":"","sources":["../../../../../../shared/modules/dynamic/components/fields/EditorField.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"EditorField.d.ts","sourceRoot":"","sources":["../../../../../../shared/modules/dynamic/components/fields/EditorField.ts"],"names":[],"mappings":"AAAA,OAAO,EAAK,gBAAgB,EAAoB,MAAM,KAAK,CAAC;AAE5D,OAAO,cAAc,MAAM,SAAS,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAMtB,iBAAiB,qBAAqB,CAAC;;;;AAHtD,wBAkCE"}
|
|
@@ -92,12 +92,16 @@ declare const _default: {
|
|
|
92
92
|
default: () => import("../..").DetailsBladeContext;
|
|
93
93
|
};
|
|
94
94
|
fields: {
|
|
95
|
-
type: import("vue").PropType<import("vue").ComputedRef<import("vue").
|
|
96
|
-
|
|
95
|
+
type: import("vue").PropType<import("vue").ComputedRef<import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
96
|
+
[key: string]: any;
|
|
97
|
+
}>[][]>>;
|
|
98
|
+
default: () => import("vue").ComputedRef<import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
99
|
+
[key: string]: any;
|
|
100
|
+
}>[][]>;
|
|
97
101
|
};
|
|
98
102
|
formData: {
|
|
99
|
-
type:
|
|
100
|
-
default: () =>
|
|
103
|
+
type: import("vue").PropType<import("vue").MaybeRef<Record<string, unknown>>>;
|
|
104
|
+
default: () => import("vue").MaybeRef<Record<string, unknown>>;
|
|
101
105
|
};
|
|
102
106
|
fieldContext: {
|
|
103
107
|
type: ObjectConstructor;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Fieldset.d.ts","sourceRoot":"","sources":["../../../../../../shared/modules/dynamic/components/fields/Fieldset.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoC,gBAAgB,
|
|
1
|
+
{"version":3,"file":"Fieldset.d.ts","sourceRoot":"","sources":["../../../../../../shared/modules/dynamic/components/fields/Fieldset.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoC,gBAAgB,EAAW,MAAM,KAAK,CAAC;AAClF,OAAO,cAAc,MAAM,SAAS,CAAC;AAGrC,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAK9B,iBAAiB,qBAAqB,CAAC,GAAG;QAAE,OAAO,EAAE,cAAc,CAAA;KAAE;;;;AAHpF,wBA6EE"}
|
|
@@ -93,12 +93,16 @@ declare const _default: {
|
|
|
93
93
|
default: () => import("../..").DetailsBladeContext;
|
|
94
94
|
};
|
|
95
95
|
fields: {
|
|
96
|
-
type: import("vue").PropType<import("vue").ComputedRef<import("vue").
|
|
97
|
-
|
|
96
|
+
type: import("vue").PropType<import("vue").ComputedRef<import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
97
|
+
[key: string]: any;
|
|
98
|
+
}>[][]>>;
|
|
99
|
+
default: () => import("vue").ComputedRef<import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
100
|
+
[key: string]: any;
|
|
101
|
+
}>[][]>;
|
|
98
102
|
};
|
|
99
103
|
formData: {
|
|
100
|
-
type:
|
|
101
|
-
default: () =>
|
|
104
|
+
type: import("vue").PropType<import("vue").MaybeRef<Record<string, unknown>>>;
|
|
105
|
+
default: () => import("vue").MaybeRef<Record<string, unknown>>;
|
|
102
106
|
};
|
|
103
107
|
fieldContext: {
|
|
104
108
|
type: ObjectConstructor;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GalleryField.d.ts","sourceRoot":"","sources":["../../../../../../shared/modules/dynamic/components/fields/GalleryField.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,
|
|
1
|
+
{"version":3,"file":"GalleryField.d.ts","sourceRoot":"","sources":["../../../../../../shared/modules/dynamic/components/fields/GalleryField.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAsE,MAAM,KAAK,CAAC;AAE3G,OAAO,cAAc,MAAM,SAAS,CAAC;AACrC,OAAO,EAAE,MAAM,EAAE,MAAM,2BAA2B,CAAC;AAKnD,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAO7B,iBAAiB,qBAAqB,CAAC,GAAG;QAAE,OAAO,EAAE,aAAa,CAAA;KAAE;;;;AAHnF,wBA+GE"}
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
import { ExtractPropTypes } from "vue";
|
|
2
|
+
import componentProps from "./props";
|
|
3
|
+
import { ImageSchema } from "../../types";
|
|
4
|
+
declare const _default: {
|
|
5
|
+
name: string;
|
|
6
|
+
props: {
|
|
7
|
+
baseProps: {
|
|
8
|
+
type: import("vue").PropType<{
|
|
9
|
+
key?: string | number | symbol;
|
|
10
|
+
rules?: Record<string, unknown>;
|
|
11
|
+
label?: string;
|
|
12
|
+
placeholder?: string;
|
|
13
|
+
disabled?: boolean;
|
|
14
|
+
required?: boolean;
|
|
15
|
+
name?: string;
|
|
16
|
+
classNames?: string;
|
|
17
|
+
modelValue?: any;
|
|
18
|
+
tooltip?: string;
|
|
19
|
+
"onUpdate:modelValue"?: (event: any) => void;
|
|
20
|
+
multilanguage?: boolean;
|
|
21
|
+
}>;
|
|
22
|
+
default: () => import("../../types/models").IControlBaseProps;
|
|
23
|
+
};
|
|
24
|
+
baseOptions: {
|
|
25
|
+
type: import("vue").PropType<{
|
|
26
|
+
visibility?: boolean;
|
|
27
|
+
}>;
|
|
28
|
+
default: () => import("../../types/models").IControlBaseOptions;
|
|
29
|
+
};
|
|
30
|
+
element: {
|
|
31
|
+
type: import("vue").PropType<import("../../types").ControlSchema>;
|
|
32
|
+
default: () => import("../../types").ControlSchema;
|
|
33
|
+
};
|
|
34
|
+
bladeContext: {
|
|
35
|
+
type: import("vue").PropType<{
|
|
36
|
+
settings: import("../../types").SettingsSchema;
|
|
37
|
+
load: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
38
|
+
saveChanges: import("../../../../..").AsyncAction<Record<string, any>>;
|
|
39
|
+
remove: import("../../../../..").AsyncAction<import("../..").ItemId>;
|
|
40
|
+
loading: boolean;
|
|
41
|
+
item: Record<string, any>;
|
|
42
|
+
validationState: import("../..").IValidationState<Record<string, any>>;
|
|
43
|
+
scope?: {
|
|
44
|
+
[x: string]: any;
|
|
45
|
+
disabled?: boolean;
|
|
46
|
+
multilanguage?: {
|
|
47
|
+
loading: boolean;
|
|
48
|
+
currentLocale: string;
|
|
49
|
+
languages: string[];
|
|
50
|
+
setLocale: (locale: string) => void;
|
|
51
|
+
localesOptions: {
|
|
52
|
+
label: string;
|
|
53
|
+
value: string;
|
|
54
|
+
}[];
|
|
55
|
+
getLanguages: import("../../../../..").AsyncAction<void, void>;
|
|
56
|
+
};
|
|
57
|
+
dynamicProperties?: {
|
|
58
|
+
loading: boolean;
|
|
59
|
+
loadDictionaries: (property: Record<string, any>, keyword?: string, locale?: string) => Promise<Record<string, any>[]>;
|
|
60
|
+
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
61
|
+
setPropertyValue: (data: {
|
|
62
|
+
property: Record<string, any>;
|
|
63
|
+
value: string | Record<string, any>[];
|
|
64
|
+
dictionary?: Record<string, any>[];
|
|
65
|
+
locale?: string;
|
|
66
|
+
}) => void;
|
|
67
|
+
};
|
|
68
|
+
assetsHandler?: {
|
|
69
|
+
assets?: {
|
|
70
|
+
loading: boolean;
|
|
71
|
+
upload: (files: FileList, assetArr: import("../../../../..").Asset[], uploadCatalog: string, uploadFolder: string) => Promise<import("../../../../..").Asset[]>;
|
|
72
|
+
edit: (assetsArr: import("../../../../..").Asset[], asset: import("../../../../..").Asset) => Promise<import("../../../../..").Asset[]>;
|
|
73
|
+
editBulk: (assets: import("../../../../..").Asset[]) => import("../../../../..").Asset[];
|
|
74
|
+
remove: (assetArr: import("../../../../..").Asset[], asset: import("../../../../..").Asset) => Promise<import("../../../../..").Asset[]>;
|
|
75
|
+
removeBulk: (assetArr: import("../../../../..").Asset[], assetsArrEdited: import("../../../../..").Asset[]) => Promise<import("../../../../..").Asset[]>;
|
|
76
|
+
};
|
|
77
|
+
images?: {
|
|
78
|
+
loading: boolean;
|
|
79
|
+
upload: (files: FileList, assetArr: import("../../../../..").IImage[], uploadCatalog: string, uploadFolder: string) => Promise<import("../../../../..").IImage[]>;
|
|
80
|
+
edit: (assetsArr: import("../../../../..").IImage[], asset: import("../../../../..").IImage) => Promise<import("../../../../..").IImage[]>;
|
|
81
|
+
editBulk: (assets: import("../../../../..").IImage[]) => import("../../../../..").IImage[];
|
|
82
|
+
remove: (assetArr: import("../../../../..").IImage[], asset: import("../../../../..").IImage) => Promise<import("../../../../..").IImage[]>;
|
|
83
|
+
removeBulk: (assetArr: import("../../../../..").IImage[], assetsArrEdited: import("../../../../..").IImage[]) => Promise<import("../../../../..").IImage[]>;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
toolbarOverrides?: {
|
|
87
|
+
[x: string]: import("../../../../..").IBladeToolbar<import("vue").ComponentPublicInstance>;
|
|
88
|
+
} | ((...args: any[]) => any);
|
|
89
|
+
};
|
|
90
|
+
bladeTitle?: string;
|
|
91
|
+
}>;
|
|
92
|
+
default: () => import("../..").DetailsBladeContext;
|
|
93
|
+
};
|
|
94
|
+
fields: {
|
|
95
|
+
type: import("vue").PropType<import("vue").ComputedRef<import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
96
|
+
[key: string]: any;
|
|
97
|
+
}>[][]>>;
|
|
98
|
+
default: () => import("vue").ComputedRef<import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
99
|
+
[key: string]: any;
|
|
100
|
+
}>[][]>;
|
|
101
|
+
};
|
|
102
|
+
formData: {
|
|
103
|
+
type: import("vue").PropType<import("vue").MaybeRef<Record<string, unknown>>>;
|
|
104
|
+
default: () => import("vue").MaybeRef<Record<string, unknown>>;
|
|
105
|
+
};
|
|
106
|
+
fieldContext: {
|
|
107
|
+
type: ObjectConstructor;
|
|
108
|
+
default: any;
|
|
109
|
+
};
|
|
110
|
+
nodeBuilder: {
|
|
111
|
+
type: FunctionConstructor;
|
|
112
|
+
default: () => {};
|
|
113
|
+
};
|
|
114
|
+
currentLocale: {
|
|
115
|
+
type: StringConstructor;
|
|
116
|
+
};
|
|
117
|
+
elIndex: {
|
|
118
|
+
type: NumberConstructor;
|
|
119
|
+
};
|
|
120
|
+
rows: {
|
|
121
|
+
type: NumberConstructor;
|
|
122
|
+
};
|
|
123
|
+
onSetModelData: {
|
|
124
|
+
type: FunctionConstructor;
|
|
125
|
+
default: () => {};
|
|
126
|
+
};
|
|
127
|
+
};
|
|
128
|
+
setup(props: ExtractPropTypes<typeof componentProps> & {
|
|
129
|
+
element: ImageSchema;
|
|
130
|
+
}): () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
131
|
+
[key: string]: any;
|
|
132
|
+
}>;
|
|
133
|
+
};
|
|
134
|
+
export default _default;
|
|
135
|
+
//# sourceMappingURL=ImageField.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ImageField.d.ts","sourceRoot":"","sources":["../../../../../../shared/modules/dynamic/components/fields/ImageField.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAK,MAAM,KAAK,CAAC;AAE1C,OAAO,cAAc,MAAM,SAAS,CAAC;AACrC,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAK3B,iBAAiB,qBAAqB,CAAC,GAAG;QAAE,OAAO,EAAE,WAAW,CAAA;KAAE;;;;AAHjF,wBAwBE"}
|
|
@@ -92,12 +92,16 @@ declare const _default: {
|
|
|
92
92
|
default: () => import("../..").DetailsBladeContext;
|
|
93
93
|
};
|
|
94
94
|
fields: {
|
|
95
|
-
type: import("vue").PropType<import("vue").ComputedRef<import("vue").
|
|
96
|
-
|
|
95
|
+
type: import("vue").PropType<import("vue").ComputedRef<import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
96
|
+
[key: string]: any;
|
|
97
|
+
}>[][]>>;
|
|
98
|
+
default: () => import("vue").ComputedRef<import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
99
|
+
[key: string]: any;
|
|
100
|
+
}>[][]>;
|
|
97
101
|
};
|
|
98
102
|
formData: {
|
|
99
|
-
type:
|
|
100
|
-
default: () =>
|
|
103
|
+
type: import("vue").PropType<import("vue").MaybeRef<Record<string, unknown>>>;
|
|
104
|
+
default: () => import("vue").MaybeRef<Record<string, unknown>>;
|
|
101
105
|
};
|
|
102
106
|
fieldContext: {
|
|
103
107
|
type: ObjectConstructor;
|
|
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAMnC,iBAAiB,qBAAqB,CAAC,GAAG;QAAE,OAAO,EAAE,mBAAmB,CAAA;KAAE;;;;AAHzF,wBAuCE"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { ExtractPropTypes } from "vue";
|
|
1
|
+
import { ExtractPropTypes, VNode } from "vue";
|
|
2
2
|
import componentProps from "./props";
|
|
3
|
-
import { InputSchema } from "../../types";
|
|
3
|
+
import { InputSchema, ControlSchema } from "../../types";
|
|
4
4
|
declare const _default: {
|
|
5
5
|
name: string;
|
|
6
6
|
props: {
|
|
@@ -28,8 +28,8 @@ declare const _default: {
|
|
|
28
28
|
default: () => import("../../types/models").IControlBaseOptions;
|
|
29
29
|
};
|
|
30
30
|
element: {
|
|
31
|
-
type: import("vue").PropType<
|
|
32
|
-
default: () =>
|
|
31
|
+
type: import("vue").PropType<ControlSchema>;
|
|
32
|
+
default: () => ControlSchema;
|
|
33
33
|
};
|
|
34
34
|
bladeContext: {
|
|
35
35
|
type: import("vue").PropType<{
|
|
@@ -92,12 +92,16 @@ declare const _default: {
|
|
|
92
92
|
default: () => import("../..").DetailsBladeContext;
|
|
93
93
|
};
|
|
94
94
|
fields: {
|
|
95
|
-
type: import("vue").PropType<import("vue").ComputedRef<import("vue").
|
|
96
|
-
|
|
95
|
+
type: import("vue").PropType<import("vue").ComputedRef<VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
96
|
+
[key: string]: any;
|
|
97
|
+
}>[][]>>;
|
|
98
|
+
default: () => import("vue").ComputedRef<VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
99
|
+
[key: string]: any;
|
|
100
|
+
}>[][]>;
|
|
97
101
|
};
|
|
98
102
|
formData: {
|
|
99
|
-
type:
|
|
100
|
-
default: () =>
|
|
103
|
+
type: import("vue").PropType<import("vue").MaybeRef<Record<string, unknown>>>;
|
|
104
|
+
default: () => import("vue").MaybeRef<Record<string, unknown>>;
|
|
101
105
|
};
|
|
102
106
|
fieldContext: {
|
|
103
107
|
type: ObjectConstructor;
|
|
@@ -123,7 +127,7 @@ declare const _default: {
|
|
|
123
127
|
};
|
|
124
128
|
setup(props: ExtractPropTypes<typeof componentProps> & {
|
|
125
129
|
element: InputSchema;
|
|
126
|
-
}): () =>
|
|
130
|
+
}): () => VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
127
131
|
[key: string]: any;
|
|
128
132
|
}>;
|
|
129
133
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"InputField.d.ts","sourceRoot":"","sources":["../../../../../../shared/modules/dynamic/components/fields/InputField.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAK,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"InputField.d.ts","sourceRoot":"","sources":["../../../../../../shared/modules/dynamic/components/fields/InputField.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAK,KAAK,EAAE,MAAM,KAAK,CAAC;AAEjD,OAAO,cAAc,MAAM,SAAS,CAAC;AAErC,OAAO,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAa1C,iBAAiB,qBAAqB,CAAC,GAAG;QAAE,OAAO,EAAE,WAAW,CAAA;KAAE;;;;AAHjF,wBAiDE"}
|
|
@@ -92,12 +92,16 @@ declare const _default: {
|
|
|
92
92
|
default: () => import("../..").DetailsBladeContext;
|
|
93
93
|
};
|
|
94
94
|
fields: {
|
|
95
|
-
type: import("vue").PropType<import("vue").ComputedRef<import("vue").
|
|
96
|
-
|
|
95
|
+
type: import("vue").PropType<import("vue").ComputedRef<VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
96
|
+
[key: string]: any;
|
|
97
|
+
}>[][]>>;
|
|
98
|
+
default: () => import("vue").ComputedRef<VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
99
|
+
[key: string]: any;
|
|
100
|
+
}>[][]>;
|
|
97
101
|
};
|
|
98
102
|
formData: {
|
|
99
|
-
type:
|
|
100
|
-
default: () =>
|
|
103
|
+
type: import("vue").PropType<import("vue").MaybeRef<Record<string, unknown>>>;
|
|
104
|
+
default: () => import("vue").MaybeRef<Record<string, unknown>>;
|
|
101
105
|
};
|
|
102
106
|
fieldContext: {
|
|
103
107
|
type: ObjectConstructor;
|