zc-lowcode 0.0.1 → 0.0.2

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.
Files changed (39) hide show
  1. package/dist/lowcode-editor.es.js +4379 -38447
  2. package/dist/lowcode-editor.umd.js +5857 -39927
  3. package/dist/packages/install.d.ts +4 -0
  4. package/dist/packages/locale/en-US.d.ts +315 -0
  5. package/dist/packages/locale/index.d.ts +635 -0
  6. package/dist/packages/locale/zh-CN.d.ts +315 -0
  7. package/dist/packages/lowcode-editor/components/design-panel/components/wrapper.vue.d.ts +40 -0
  8. package/dist/packages/lowcode-editor/components/design-panel/index.vue.d.ts +64 -0
  9. package/dist/packages/lowcode-editor/components/layout-panel/index.vue.d.ts +33 -0
  10. package/dist/packages/lowcode-editor/components/setter-panel/index.vue.d.ts +22 -0
  11. package/dist/packages/lowcode-editor/components/widget-panel/index.vue.d.ts +100 -0
  12. package/dist/packages/lowcode-editor/index.vue.d.ts +349 -0
  13. package/dist/packages/lowcode-editor-renderer/index.vue.d.ts +100 -0
  14. package/dist/packages/lowcode-editor-widgets/components/property-editor/property.d.ts +4 -0
  15. package/dist/packages/lowcode-editor-widgets/components/property.vue.d.ts +53 -0
  16. package/dist/packages/lowcode-editor-widgets/components/setter-base/index.vue.d.ts +20 -0
  17. package/dist/packages/lowcode-editor-widgets/components/usePropertyRegister.d.ts +7 -0
  18. package/dist/packages/lowcode-editor-widgets/index.d.ts +4 -0
  19. package/dist/packages/lowcode-editor-widgets/widgets/container/card/index.d.ts +38 -0
  20. package/dist/packages/lowcode-editor-widgets/widgets/container/card/setter.vue.d.ts +15 -0
  21. package/dist/packages/lowcode-editor-widgets/widgets/container/card/view.vue.d.ts +15 -0
  22. package/dist/packages/lowcode-editor-widgets/widgets/container/grid/index.d.ts +67 -0
  23. package/dist/packages/lowcode-editor-widgets/widgets/container/grid/setter.vue.d.ts +18 -0
  24. package/dist/packages/lowcode-editor-widgets/widgets/container/grid/view.vue.d.ts +24 -0
  25. package/dist/packages/lowcode-editor-widgets/widgets/container/grid-col/index.d.ts +68 -0
  26. package/dist/packages/lowcode-editor-widgets/widgets/container/grid-col/setter.vue.d.ts +15 -0
  27. package/dist/packages/lowcode-editor-widgets/widgets/container/grid-col/view.vue.d.ts +40 -0
  28. package/dist/packages/lowcode-editor-widgets/widgets/container/tab/index.d.ts +38 -0
  29. package/dist/packages/lowcode-editor-widgets/widgets/container/tab/setter.vue.d.ts +15 -0
  30. package/dist/packages/lowcode-editor-widgets/widgets/container/tab/view.vue.d.ts +15 -0
  31. package/dist/packages/lowcode-editor-widgets/widgets/form/radio/index.d.ts +38 -0
  32. package/dist/packages/lowcode-editor-widgets/widgets/form/radio/setter.vue.d.ts +15 -0
  33. package/dist/packages/lowcode-editor-widgets/widgets/form/radio/view.vue.d.ts +15 -0
  34. package/dist/packages/lowcode-editor-widgets/widgets/form/text/index.d.ts +38 -0
  35. package/dist/packages/lowcode-editor-widgets/widgets/form/text/setter.vue.d.ts +15 -0
  36. package/dist/packages/lowcode-editor-widgets/widgets/form/text/view.vue.d.ts +15 -0
  37. package/dist/style.css +28 -28
  38. package/package.json +11 -15
  39. /package/dist/{type.d.ts → packages/type.d.ts} +0 -0
@@ -0,0 +1,315 @@
1
+ declare const _default: {
2
+ application: {
3
+ 'zh-CN': string;
4
+ 'en-US': string;
5
+ productTitle: string;
6
+ github: string;
7
+ document: string;
8
+ qqGroup: string;
9
+ deployment: string;
10
+ subscription: string;
11
+ };
12
+ designer: {
13
+ componentLib: string;
14
+ pageLib: string;
15
+ widgetSetting: string;
16
+ pageSetting: string;
17
+ containerTitle: string;
18
+ dragHandlerHint: string;
19
+ dragAction: string;
20
+ containerGroupTitle: string;
21
+ basicGroupTitle: string;
22
+ advancedGroupTitle: string;
23
+ noWidgetHint: string;
24
+ widgetLabel: {
25
+ grid: string;
26
+ table: string;
27
+ tab: string;
28
+ card: string;
29
+ section: string;
30
+ 'sub-form': string;
31
+ 'grid-col': string;
32
+ 'table-cell': string;
33
+ 'tab-pane': string;
34
+ 'data-table': string;
35
+ input: string;
36
+ textarea: string;
37
+ number: string;
38
+ radio: string;
39
+ checkbox: string;
40
+ select: string;
41
+ time: string;
42
+ 'time-range': string;
43
+ date: string;
44
+ 'date-range': string;
45
+ switch: string;
46
+ rate: string;
47
+ color: string;
48
+ slider: string;
49
+ 'static-text': string;
50
+ 'html-text': string;
51
+ button: string;
52
+ divider: string;
53
+ 'picture-upload': string;
54
+ 'file-upload': string;
55
+ 'rich-editor': string;
56
+ cascader: string;
57
+ slot: string;
58
+ custom: string;
59
+ };
60
+ hint: {
61
+ selectParentWidget: string;
62
+ moveUpWidget: string;
63
+ moveDownWidget: string;
64
+ cloneWidget: string;
65
+ insertRow: string;
66
+ insertColumn: string;
67
+ remove: string;
68
+ cellSetting: string;
69
+ dragHandler: string;
70
+ copyField: string;
71
+ onlyFieldWidgetAcceptable: string;
72
+ moveUpFirstChildHint: string;
73
+ moveDownLastChildHint: string;
74
+ closePreview: string;
75
+ copyJson: string;
76
+ saveFormJson: string;
77
+ copyVueCode: string;
78
+ copyHtmlCode: string;
79
+ copyJsonSuccess: string;
80
+ importJsonSuccess: string;
81
+ invalidJsonFormat: string;
82
+ jsonVersionMismatch: string;
83
+ copyJsonFail: string;
84
+ copyVueCodeSuccess: string;
85
+ copyVueCodeFail: string;
86
+ copyHtmlCodeSuccess: string;
87
+ copyHtmlCodeFail: string;
88
+ saveVueCode: string;
89
+ saveHtmlCode: string;
90
+ getFormData: string;
91
+ resetForm: string;
92
+ disableForm: string;
93
+ enableForm: string;
94
+ exportFormData: string;
95
+ copyFormData: string;
96
+ saveFormData: string;
97
+ copyVue2SFC: string;
98
+ copyVue3SFC: string;
99
+ copySFCFail: string;
100
+ copySFCSuccess: string;
101
+ saveVue2SFC: string;
102
+ saveVue3SFC: string;
103
+ fileNameForSave: string;
104
+ saveFileTitle: string;
105
+ fileNameInputPlaceholder: string;
106
+ sampleLoadedSuccess: string;
107
+ sampleLoadedFail: string;
108
+ loadFormTemplate: string;
109
+ loadFormTemplateHint: string;
110
+ loadFormTemplateSuccess: string;
111
+ loadFormTemplateFailed: string;
112
+ currentNodeCannotBeSelected: string;
113
+ prompt: string;
114
+ confirm: string;
115
+ cancel: string;
116
+ import: string;
117
+ importJsonHint: string;
118
+ invalidOptionsData: string;
119
+ lastPaneCannotBeDeleted: string;
120
+ duplicateName: string;
121
+ nameRequired: string;
122
+ numberValidator: string;
123
+ letterValidator: string;
124
+ letterAndNumberValidator: string;
125
+ mobilePhoneValidator: string;
126
+ emailValidator: string;
127
+ urlValidator: string;
128
+ noChineseValidator: string;
129
+ chineseValidator: string;
130
+ rowspanNotConsistentForMergeEntireRow: string;
131
+ colspanNotConsistentForMergeEntireColumn: string;
132
+ rowspanNotConsistentForDeleteEntireRow: string;
133
+ colspanNotConsistentForDeleteEntireColumn: string;
134
+ lastColCannotBeDeleted: string;
135
+ lastRowCannotBeDeleted: string;
136
+ };
137
+ toolbar: {
138
+ undoHint: string;
139
+ redoHint: string;
140
+ pcLayout: string;
141
+ padLayout: string;
142
+ mobileLayout: string;
143
+ nodeTreeHint: string;
144
+ nodeTreeTitle: string;
145
+ clear: string;
146
+ preview: string;
147
+ save: string;
148
+ importJson: string;
149
+ exportJson: string;
150
+ exportCode: string;
151
+ generateCode: string;
152
+ generateSFC: string;
153
+ };
154
+ setting: {
155
+ basicSetting: string;
156
+ attributeSetting: string;
157
+ commonSetting: string;
158
+ advancedSetting: string;
159
+ eventSetting: string;
160
+ uniqueName: string;
161
+ editNameHelp: string;
162
+ label: string;
163
+ displayType: string;
164
+ defaultValue: string;
165
+ placeholder: string;
166
+ startPlaceholder: string;
167
+ endPlaceholder: string;
168
+ widgetColumnWidth: string;
169
+ widgetSize: string;
170
+ fontSize: string;
171
+ textAlign: string;
172
+ autoFullWidth: string;
173
+ showStops: string;
174
+ displayStyle: string;
175
+ inlineLayout: string;
176
+ blockLayout: string;
177
+ buttonStyle: string;
178
+ border: string;
179
+ labelWidth: string;
180
+ rows: string;
181
+ labelHidden: string;
182
+ required: string;
183
+ requiredHint: string;
184
+ validation: string;
185
+ validationHelp: string;
186
+ validationHint: string;
187
+ readonly: string;
188
+ disabled: string;
189
+ hidden: string;
190
+ textContent: string;
191
+ preWrap: string;
192
+ htmlContent: string;
193
+ clearable: string;
194
+ editable: string;
195
+ format: string;
196
+ valueFormat: string;
197
+ showPassword: string;
198
+ filterable: string;
199
+ allowCreate: string;
200
+ remote: string;
201
+ automaticDropdown: string;
202
+ multiple: string;
203
+ multipleLimit: string;
204
+ checkStrictly: string;
205
+ showAllLevels: string;
206
+ contentPosition: string;
207
+ plain: string;
208
+ round: string;
209
+ circle: string;
210
+ icon: string;
211
+ optionsSetting: string;
212
+ addOption: string;
213
+ importOptions: string;
214
+ resetDefault: string;
215
+ uploadSetting: string;
216
+ uploadURL: string;
217
+ uploadTip: string;
218
+ withCredentials: string;
219
+ multipleSelect: string;
220
+ showFileList: string;
221
+ limit: string;
222
+ fileMaxSize: string;
223
+ fileTypes: string;
224
+ fileTypesHelp: string;
225
+ headers: string;
226
+ cellWidth: string;
227
+ cellHeight: string;
228
+ wordBreak: string;
229
+ gridColHeight: string;
230
+ gutter: string;
231
+ columnSetting: string;
232
+ colsOfGrid: string;
233
+ colSpanTitle: string;
234
+ colOffsetTitle: string;
235
+ colPushTitle: string;
236
+ colPullTitle: string;
237
+ addColumn: string;
238
+ responsive: string;
239
+ tabPaneSetting: string;
240
+ addTabPane: string;
241
+ paneActive: string;
242
+ customLabelIcon: string;
243
+ labelIconClass: string;
244
+ labelIconPosition: string;
245
+ labelTooltip: string;
246
+ minValue: string;
247
+ maxValue: string;
248
+ precision: string;
249
+ step: string;
250
+ controlsPosition: string;
251
+ minLength: string;
252
+ maxLength: string;
253
+ showWordLimit: string;
254
+ prefixIcon: string;
255
+ suffixIcon: string;
256
+ inputButton: string;
257
+ appendButton: string;
258
+ appendButtonDisabled: string;
259
+ appendButtonIcon: string;
260
+ buttonIcon: string;
261
+ switchWidth: string;
262
+ activeText: string;
263
+ inactiveText: string;
264
+ activeColor: string;
265
+ inactiveColor: string;
266
+ maxStars: string;
267
+ lowThreshold: string;
268
+ highThreshold: string;
269
+ allowHalf: string;
270
+ showText: string;
271
+ showScore: string;
272
+ range: string;
273
+ vertical: string;
274
+ showBlankRow: string;
275
+ showRowNumber: string;
276
+ contentHeight: string;
277
+ insertColumnToLeft: string;
278
+ insertColumnToRight: string;
279
+ insertRowAbove: string;
280
+ insertRowBelow: string;
281
+ mergeLeftColumn: string;
282
+ mergeRightColumn: string;
283
+ mergeEntireRow: string;
284
+ mergeRowAbove: string;
285
+ mergeRowBelow: string;
286
+ mergeEntireColumn: string;
287
+ undoMergeCol: string;
288
+ undoMergeRow: string;
289
+ deleteEntireCol: string;
290
+ deleteEntireRow: string;
291
+ widgetName: string;
292
+ formSize: string;
293
+ labelPosition: string;
294
+ topPosition: string;
295
+ leftPosition: string;
296
+ labelAlign: string;
297
+ leftAlign: string;
298
+ centerAlign: string;
299
+ rightAlign: string;
300
+ formCss: string;
301
+ addCss: string;
302
+ customClass: string;
303
+ globalFunctions: string;
304
+ addEventHandler: string;
305
+ editWidgetEventHandler: string;
306
+ editFormEventHandler: string;
307
+ formSFCSetting: string;
308
+ formModelName: string;
309
+ formRefName: string;
310
+ formRulesName: string;
311
+ syntaxCheckWarning: string;
312
+ };
313
+ };
314
+ };
315
+ export default _default;
@@ -0,0 +1,40 @@
1
+ import { WidgetContainerSchema, WidgetSchema } from '../../../../type';
2
+ import { PropType } from 'vue';
3
+ import { IDesigner } from '../../../../../utils/useDesigner';
4
+
5
+ declare const _default: import('vue').DefineComponent<{
6
+ designer: {
7
+ type: PropType<IDesigner>;
8
+ required: true;
9
+ };
10
+ parentWidget: {
11
+ type: PropType<WidgetContainerSchema>;
12
+ required: false;
13
+ };
14
+ widget: {
15
+ type: PropType<WidgetSchema | WidgetContainerSchema>;
16
+ required: true;
17
+ };
18
+ index: {
19
+ type: NumberConstructor;
20
+ required: true;
21
+ };
22
+ }, unknown, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
23
+ designer: {
24
+ type: PropType<IDesigner>;
25
+ required: true;
26
+ };
27
+ parentWidget: {
28
+ type: PropType<WidgetContainerSchema>;
29
+ required: false;
30
+ };
31
+ widget: {
32
+ type: PropType<WidgetSchema | WidgetContainerSchema>;
33
+ required: true;
34
+ };
35
+ index: {
36
+ type: NumberConstructor;
37
+ required: true;
38
+ };
39
+ }>>, {}, {}>;
40
+ export default _default;
@@ -0,0 +1,64 @@
1
+ import { PropType } from 'vue';
2
+ import { IDesigner } from '../../../../utils/useDesigner';
3
+ import { WidgetContainerSchema, WidgetSchema } from '../../../type';
4
+
5
+ declare const _default: import('vue').DefineComponent<{
6
+ designer: {
7
+ type: PropType<IDesigner>;
8
+ required: true;
9
+ };
10
+ parentWidget: {
11
+ type: PropType<WidgetContainerSchema>;
12
+ required: false;
13
+ };
14
+ widgetList: {
15
+ type: {
16
+ (arrayLength: number): (WidgetSchema | WidgetContainerSchema)[];
17
+ (...items: (WidgetSchema | WidgetContainerSchema)[]): (WidgetSchema | WidgetContainerSchema)[];
18
+ new (arrayLength: number): (WidgetSchema | WidgetContainerSchema)[];
19
+ new (...items: (WidgetSchema | WidgetContainerSchema)[]): (WidgetSchema | WidgetContainerSchema)[];
20
+ isArray(arg: any): arg is any[];
21
+ readonly prototype: any[];
22
+ from<T>(arrayLike: ArrayLike<T>): T[];
23
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
24
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
25
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
26
+ of<T>(...items: T[]): T[];
27
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
28
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
29
+ readonly [Symbol.species]: ArrayConstructor;
30
+ };
31
+ required: true;
32
+ };
33
+ }, unknown, unknown, {}, {
34
+ getWidget(widget: WidgetSchema | WidgetContainerSchema): string;
35
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
36
+ designer: {
37
+ type: PropType<IDesigner>;
38
+ required: true;
39
+ };
40
+ parentWidget: {
41
+ type: PropType<WidgetContainerSchema>;
42
+ required: false;
43
+ };
44
+ widgetList: {
45
+ type: {
46
+ (arrayLength: number): (WidgetSchema | WidgetContainerSchema)[];
47
+ (...items: (WidgetSchema | WidgetContainerSchema)[]): (WidgetSchema | WidgetContainerSchema)[];
48
+ new (arrayLength: number): (WidgetSchema | WidgetContainerSchema)[];
49
+ new (...items: (WidgetSchema | WidgetContainerSchema)[]): (WidgetSchema | WidgetContainerSchema)[];
50
+ isArray(arg: any): arg is any[];
51
+ readonly prototype: any[];
52
+ from<T>(arrayLike: ArrayLike<T>): T[];
53
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
54
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
55
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
56
+ of<T>(...items: T[]): T[];
57
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
58
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
59
+ readonly [Symbol.species]: ArrayConstructor;
60
+ };
61
+ required: true;
62
+ };
63
+ }>>, {}, {}>;
64
+ export default _default;
@@ -0,0 +1,33 @@
1
+ import { PropType } from 'vue';
2
+ import { IDesigner } from '../../../../utils/useDesigner';
3
+
4
+ declare const _default: import('vue').DefineComponent<{
5
+ designer: {
6
+ type: PropType<IDesigner>;
7
+ required: true;
8
+ };
9
+ }, {
10
+ isPreview: import('vue').Ref<boolean>;
11
+ preview: () => void;
12
+ device: import('vue').Ref<string>;
13
+ getPreviewWidth: import('vue').ComputedRef<"100%" | "768px" | "375px">;
14
+ isPreviewWidgetList: import('vue').Ref<boolean>;
15
+ previewWidgetList: () => void;
16
+ handleSelectWidget: (_keys: any, info: any) => void;
17
+ previewJSON: () => void;
18
+ isPreviewJSON: import('vue').Ref<boolean>;
19
+ pageJSON: import('vue').Ref<string>;
20
+ toolbarStyle: {
21
+ background: string;
22
+ padding: string;
23
+ };
24
+ deviceStyle: import('vue').ComputedRef<{
25
+ background: string;
26
+ }>;
27
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
28
+ designer: {
29
+ type: PropType<IDesigner>;
30
+ required: true;
31
+ };
32
+ }>>, {}, {}>;
33
+ export default _default;
@@ -0,0 +1,22 @@
1
+ import { PropType } from 'vue';
2
+ import { IDesigner } from '../../../../utils/useDesigner';
3
+
4
+ declare const _default: import('vue').DefineComponent<{
5
+ designer: {
6
+ type: PropType<IDesigner>;
7
+ required: true;
8
+ };
9
+ }, {
10
+ libTab: import('vue').Ref<number>;
11
+ widgetBasePropertyStyle: {
12
+ borderBottom: string;
13
+ padding: string;
14
+ marginBottom: string;
15
+ };
16
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
17
+ designer: {
18
+ type: PropType<IDesigner>;
19
+ required: true;
20
+ };
21
+ }>>, {}, {}>;
22
+ export default _default;
@@ -0,0 +1,100 @@
1
+ import { PropType } from 'vue';
2
+ import { LowCodePage, WidgetPackage } from '../../../type';
3
+ import { IDesigner } from '../../../../utils/useDesigner';
4
+
5
+ declare const _default: import('vue').DefineComponent<{
6
+ designer: {
7
+ type: PropType<IDesigner>;
8
+ required: true;
9
+ };
10
+ widgetPackage: {
11
+ type: {
12
+ (arrayLength: number): WidgetPackage[];
13
+ (...items: WidgetPackage[]): WidgetPackage[];
14
+ new (arrayLength: number): WidgetPackage[];
15
+ new (...items: WidgetPackage[]): WidgetPackage[];
16
+ isArray(arg: any): arg is any[];
17
+ readonly prototype: any[];
18
+ from<T>(arrayLike: ArrayLike<T>): T[];
19
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
20
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
21
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
22
+ of<T>(...items: T[]): T[];
23
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
24
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
25
+ readonly [Symbol.species]: ArrayConstructor;
26
+ };
27
+ default: () => any[];
28
+ };
29
+ templatePackage: {
30
+ type: {
31
+ (arrayLength: number): LowCodePage[];
32
+ (...items: LowCodePage[]): LowCodePage[];
33
+ new (arrayLength: number): LowCodePage[];
34
+ new (...items: LowCodePage[]): LowCodePage[];
35
+ isArray(arg: any): arg is any[];
36
+ readonly prototype: any[];
37
+ from<T>(arrayLike: ArrayLike<T>): T[];
38
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
39
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
40
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
41
+ of<T>(...items: T[]): T[];
42
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
43
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
44
+ readonly [Symbol.species]: ArrayConstructor;
45
+ };
46
+ default: () => any[];
47
+ };
48
+ }, {
49
+ libTab: import('vue').Ref<number>;
50
+ pkgKeys: import('vue').Ref<any>;
51
+ handleClone: (widget: any) => import('../../../type').WidgetSchema | import('../../../type').WidgetContainerSchema;
52
+ handleUseTemplate: (template: LowCodePage) => void;
53
+ }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
54
+ designer: {
55
+ type: PropType<IDesigner>;
56
+ required: true;
57
+ };
58
+ widgetPackage: {
59
+ type: {
60
+ (arrayLength: number): WidgetPackage[];
61
+ (...items: WidgetPackage[]): WidgetPackage[];
62
+ new (arrayLength: number): WidgetPackage[];
63
+ new (...items: WidgetPackage[]): WidgetPackage[];
64
+ isArray(arg: any): arg is any[];
65
+ readonly prototype: any[];
66
+ from<T>(arrayLike: ArrayLike<T>): T[];
67
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
68
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
69
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
70
+ of<T>(...items: T[]): T[];
71
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
72
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
73
+ readonly [Symbol.species]: ArrayConstructor;
74
+ };
75
+ default: () => any[];
76
+ };
77
+ templatePackage: {
78
+ type: {
79
+ (arrayLength: number): LowCodePage[];
80
+ (...items: LowCodePage[]): LowCodePage[];
81
+ new (arrayLength: number): LowCodePage[];
82
+ new (...items: LowCodePage[]): LowCodePage[];
83
+ isArray(arg: any): arg is any[];
84
+ readonly prototype: any[];
85
+ from<T>(arrayLike: ArrayLike<T>): T[];
86
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
87
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
88
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
89
+ of<T>(...items: T[]): T[];
90
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
91
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>) => U, thisArg?: any): Promise<Awaited<U>[]>;
92
+ readonly [Symbol.species]: ArrayConstructor;
93
+ };
94
+ default: () => any[];
95
+ };
96
+ }>>, {
97
+ widgetPackage: WidgetPackage[];
98
+ templatePackage: LowCodePage[];
99
+ }, {}>;
100
+ export default _default;