@a2simcode/dui 0.0.29 → 0.0.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components-dui/formDesign/index.d.ts +6 -0
- package/dist/components-dui/formDesign/src/formDesign.vue.d.ts +2 -0
- package/dist/dui.es.js +3904 -3898
- package/dist/dui.umd.js +5 -5
- package/package.json +6 -6
- package/LICENSE +0 -53
|
@@ -12,6 +12,8 @@ declare const DFormDesign: {
|
|
|
12
12
|
setSchema: (data: Record<string, any>) => void;
|
|
13
13
|
reset: () => void;
|
|
14
14
|
validate: () => boolean;
|
|
15
|
+
preview: () => void;
|
|
16
|
+
clear: () => void;
|
|
15
17
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
16
18
|
components: import('./src/interface').FormDesignComponents[];
|
|
17
19
|
flowComponents: Record<string, any>[];
|
|
@@ -100,6 +102,8 @@ declare const DFormDesign: {
|
|
|
100
102
|
setSchema: (data: Record<string, any>) => void;
|
|
101
103
|
reset: () => void;
|
|
102
104
|
validate: () => boolean;
|
|
105
|
+
preview: () => void;
|
|
106
|
+
clear: () => void;
|
|
103
107
|
}, {}, {}, {}, {
|
|
104
108
|
components: import('./src/interface').FormDesignComponents[];
|
|
105
109
|
flowComponents: Record<string, any>[];
|
|
@@ -129,6 +133,8 @@ declare const DFormDesign: {
|
|
|
129
133
|
setSchema: (data: Record<string, any>) => void;
|
|
130
134
|
reset: () => void;
|
|
131
135
|
validate: () => boolean;
|
|
136
|
+
preview: () => void;
|
|
137
|
+
clear: () => void;
|
|
132
138
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
133
139
|
components: import('./src/interface').FormDesignComponents[];
|
|
134
140
|
flowComponents: Record<string, any>[];
|
|
@@ -42,6 +42,8 @@ declare const _default: import('vue').DefineComponent<Props, {
|
|
|
42
42
|
setSchema: (data: Record<string, any>) => void;
|
|
43
43
|
reset: () => void;
|
|
44
44
|
validate: () => boolean;
|
|
45
|
+
preview: () => void;
|
|
46
|
+
clear: () => void;
|
|
45
47
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
46
48
|
components: FormDesignComponents[];
|
|
47
49
|
flowComponents: Record<string, any>[];
|