@a2simcode/ui 0.0.163 → 0.0.165
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/input-layer/index.d.ts +2 -2
- package/dist/components/input-layer/src/input-layer.vue.d.ts +2 -2
- package/dist/components/tree/index.d.ts +0 -54
- package/dist/components/tree/src/tree.vue.d.ts +0 -57
- package/dist/core/index.d.ts +0 -1
- package/dist/simcode-ui.es.js +4926 -5048
- package/dist/simcode-ui.umd.js +2 -2
- package/dist/stats.html +1 -1
- package/dist/ui.css +1 -1
- package/docs/components/meta/tree.ts +219 -242
- package/docs/examples/form/basic.vue +30 -3
- package/package.json +1 -1
|
@@ -268,12 +268,12 @@ export declare const JInputLayer: {
|
|
|
268
268
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
269
269
|
onClosed?: ((...args: any[]) => any) | undefined;
|
|
270
270
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
271
|
-
}>, "open" | "hideLoading" | "close" | "showLoading" | ("height" | "width" | "isStep" | "validateSteps" | "beforeClose" | "steps" | "hasBtns" | "buttons" | "btnText" | "destroyOnClose" | "hasSaveBtn" | "hasHeader")> &
|
|
271
|
+
}>, "open" | "hideLoading" | "close" | "showLoading" | ("height" | "width" | "isStep" | "validateSteps" | "beforeClose" | "steps" | "hasBtns" | "buttons" | "btnText" | "destroyOnClose" | "hasSaveBtn" | "hasHeader")> & {
|
|
272
272
|
open: (layerTitle: string, type?: string, layerSubtitle?: any) => void;
|
|
273
273
|
close: () => void;
|
|
274
274
|
showLoading: (text?: string) => void;
|
|
275
275
|
hideLoading: () => void;
|
|
276
|
-
}
|
|
276
|
+
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
277
277
|
$slots: {
|
|
278
278
|
default?(_: {}): any;
|
|
279
279
|
default?(_: {}): any;
|
|
@@ -333,12 +333,12 @@ declare const _default: import('vue').DefineComponent<InputLayerProps, {}, {}, {
|
|
|
333
333
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
334
334
|
onClosed?: ((...args: any[]) => any) | undefined;
|
|
335
335
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
336
|
-
}>, "open" | "hideLoading" | "close" | "showLoading" | ("height" | "width" | "isStep" | "validateSteps" | "beforeClose" | "steps" | "hasBtns" | "buttons" | "btnText" | "destroyOnClose" | "hasSaveBtn" | "hasHeader")> &
|
|
336
|
+
}>, "open" | "hideLoading" | "close" | "showLoading" | ("height" | "width" | "isStep" | "validateSteps" | "beforeClose" | "steps" | "hasBtns" | "buttons" | "btnText" | "destroyOnClose" | "hasSaveBtn" | "hasHeader")> & {
|
|
337
337
|
open: (layerTitle: string, type?: string, layerSubtitle?: any) => void;
|
|
338
338
|
close: () => void;
|
|
339
339
|
showLoading: (text?: string) => void;
|
|
340
340
|
hideLoading: () => void;
|
|
341
|
-
}
|
|
341
|
+
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
342
342
|
$slots: {
|
|
343
343
|
default?(_: {}): any;
|
|
344
344
|
default?(_: {}): any;
|
|
@@ -32,21 +32,6 @@ export declare const JTree: {
|
|
|
32
32
|
type: BooleanConstructor;
|
|
33
33
|
default: boolean;
|
|
34
34
|
};
|
|
35
|
-
labelKey: {
|
|
36
|
-
type: StringConstructor;
|
|
37
|
-
default: string;
|
|
38
|
-
};
|
|
39
|
-
valueKey: {
|
|
40
|
-
type: StringConstructor;
|
|
41
|
-
default: string;
|
|
42
|
-
};
|
|
43
|
-
pidKey: {
|
|
44
|
-
type: StringConstructor;
|
|
45
|
-
default: string;
|
|
46
|
-
};
|
|
47
|
-
idKey: {
|
|
48
|
-
type: StringConstructor;
|
|
49
|
-
};
|
|
50
35
|
iconKey: {
|
|
51
36
|
type: StringConstructor;
|
|
52
37
|
default: string;
|
|
@@ -122,8 +107,6 @@ export declare const JTree: {
|
|
|
122
107
|
"node-drop": (...args: any[]) => void;
|
|
123
108
|
}, import('vue').PublicProps, {
|
|
124
109
|
immediate: boolean;
|
|
125
|
-
valueKey: string;
|
|
126
|
-
labelKey: string;
|
|
127
110
|
accordion: boolean;
|
|
128
111
|
defaultExpandAll: boolean;
|
|
129
112
|
theme: string;
|
|
@@ -133,7 +116,6 @@ export declare const JTree: {
|
|
|
133
116
|
defaultExpandedKeys: any[];
|
|
134
117
|
highlightCurrent: boolean;
|
|
135
118
|
renderAfterExpand: boolean;
|
|
136
|
-
pidKey: string;
|
|
137
119
|
iconKey: string;
|
|
138
120
|
iconColorKey: string;
|
|
139
121
|
emptyDes: string;
|
|
@@ -186,21 +168,6 @@ export declare const JTree: {
|
|
|
186
168
|
type: BooleanConstructor;
|
|
187
169
|
default: boolean;
|
|
188
170
|
};
|
|
189
|
-
labelKey: {
|
|
190
|
-
type: StringConstructor;
|
|
191
|
-
default: string;
|
|
192
|
-
};
|
|
193
|
-
valueKey: {
|
|
194
|
-
type: StringConstructor;
|
|
195
|
-
default: string;
|
|
196
|
-
};
|
|
197
|
-
pidKey: {
|
|
198
|
-
type: StringConstructor;
|
|
199
|
-
default: string;
|
|
200
|
-
};
|
|
201
|
-
idKey: {
|
|
202
|
-
type: StringConstructor;
|
|
203
|
-
};
|
|
204
171
|
iconKey: {
|
|
205
172
|
type: StringConstructor;
|
|
206
173
|
default: string;
|
|
@@ -274,8 +241,6 @@ export declare const JTree: {
|
|
|
274
241
|
getCheck: (leafOnly?: boolean) => any;
|
|
275
242
|
}, {}, {}, {}, {
|
|
276
243
|
immediate: boolean;
|
|
277
|
-
valueKey: string;
|
|
278
|
-
labelKey: string;
|
|
279
244
|
accordion: boolean;
|
|
280
245
|
defaultExpandAll: boolean;
|
|
281
246
|
theme: string;
|
|
@@ -285,7 +250,6 @@ export declare const JTree: {
|
|
|
285
250
|
defaultExpandedKeys: any[];
|
|
286
251
|
highlightCurrent: boolean;
|
|
287
252
|
renderAfterExpand: boolean;
|
|
288
|
-
pidKey: string;
|
|
289
253
|
iconKey: string;
|
|
290
254
|
iconColorKey: string;
|
|
291
255
|
emptyDes: string;
|
|
@@ -333,21 +297,6 @@ export declare const JTree: {
|
|
|
333
297
|
type: BooleanConstructor;
|
|
334
298
|
default: boolean;
|
|
335
299
|
};
|
|
336
|
-
labelKey: {
|
|
337
|
-
type: StringConstructor;
|
|
338
|
-
default: string;
|
|
339
|
-
};
|
|
340
|
-
valueKey: {
|
|
341
|
-
type: StringConstructor;
|
|
342
|
-
default: string;
|
|
343
|
-
};
|
|
344
|
-
pidKey: {
|
|
345
|
-
type: StringConstructor;
|
|
346
|
-
default: string;
|
|
347
|
-
};
|
|
348
|
-
idKey: {
|
|
349
|
-
type: StringConstructor;
|
|
350
|
-
};
|
|
351
300
|
iconKey: {
|
|
352
301
|
type: StringConstructor;
|
|
353
302
|
default: string;
|
|
@@ -423,8 +372,6 @@ export declare const JTree: {
|
|
|
423
372
|
"node-drop": (...args: any[]) => void;
|
|
424
373
|
}, string, {
|
|
425
374
|
immediate: boolean;
|
|
426
|
-
valueKey: string;
|
|
427
|
-
labelKey: string;
|
|
428
375
|
accordion: boolean;
|
|
429
376
|
defaultExpandAll: boolean;
|
|
430
377
|
theme: string;
|
|
@@ -434,7 +381,6 @@ export declare const JTree: {
|
|
|
434
381
|
defaultExpandedKeys: any[];
|
|
435
382
|
highlightCurrent: boolean;
|
|
436
383
|
renderAfterExpand: boolean;
|
|
437
|
-
pidKey: string;
|
|
438
384
|
iconKey: string;
|
|
439
385
|
iconColorKey: string;
|
|
440
386
|
emptyDes: string;
|
|
@@ -66,33 +66,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
66
66
|
type: BooleanConstructor;
|
|
67
67
|
default: boolean;
|
|
68
68
|
};
|
|
69
|
-
/**
|
|
70
|
-
* @zh 显示字段
|
|
71
|
-
*/
|
|
72
|
-
labelKey: {
|
|
73
|
-
type: StringConstructor;
|
|
74
|
-
default: string;
|
|
75
|
-
};
|
|
76
|
-
/**
|
|
77
|
-
* @zh 值字段
|
|
78
|
-
*/
|
|
79
|
-
valueKey: {
|
|
80
|
-
type: StringConstructor;
|
|
81
|
-
default: string;
|
|
82
|
-
};
|
|
83
|
-
/**
|
|
84
|
-
* @zh 父级字段
|
|
85
|
-
*/
|
|
86
|
-
pidKey: {
|
|
87
|
-
type: StringConstructor;
|
|
88
|
-
default: string;
|
|
89
|
-
};
|
|
90
|
-
/**
|
|
91
|
-
* @zh id字段
|
|
92
|
-
*/
|
|
93
|
-
idKey: {
|
|
94
|
-
type: StringConstructor;
|
|
95
|
-
};
|
|
96
69
|
/**
|
|
97
70
|
* @zh 图标字段
|
|
98
71
|
*/
|
|
@@ -293,33 +266,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
293
266
|
type: BooleanConstructor;
|
|
294
267
|
default: boolean;
|
|
295
268
|
};
|
|
296
|
-
/**
|
|
297
|
-
* @zh 显示字段
|
|
298
|
-
*/
|
|
299
|
-
labelKey: {
|
|
300
|
-
type: StringConstructor;
|
|
301
|
-
default: string;
|
|
302
|
-
};
|
|
303
|
-
/**
|
|
304
|
-
* @zh 值字段
|
|
305
|
-
*/
|
|
306
|
-
valueKey: {
|
|
307
|
-
type: StringConstructor;
|
|
308
|
-
default: string;
|
|
309
|
-
};
|
|
310
|
-
/**
|
|
311
|
-
* @zh 父级字段
|
|
312
|
-
*/
|
|
313
|
-
pidKey: {
|
|
314
|
-
type: StringConstructor;
|
|
315
|
-
default: string;
|
|
316
|
-
};
|
|
317
|
-
/**
|
|
318
|
-
* @zh id字段
|
|
319
|
-
*/
|
|
320
|
-
idKey: {
|
|
321
|
-
type: StringConstructor;
|
|
322
|
-
};
|
|
323
269
|
/**
|
|
324
270
|
* @zh 图标字段
|
|
325
271
|
*/
|
|
@@ -450,8 +396,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
450
396
|
"onNode-drop"?: ((...args: any[]) => any) | undefined;
|
|
451
397
|
}>, {
|
|
452
398
|
immediate: boolean;
|
|
453
|
-
valueKey: string;
|
|
454
|
-
labelKey: string;
|
|
455
399
|
accordion: boolean;
|
|
456
400
|
defaultExpandAll: boolean;
|
|
457
401
|
theme: string;
|
|
@@ -461,7 +405,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
461
405
|
defaultExpandedKeys: any[];
|
|
462
406
|
highlightCurrent: boolean;
|
|
463
407
|
renderAfterExpand: boolean;
|
|
464
|
-
pidKey: string;
|
|
465
408
|
iconKey: string;
|
|
466
409
|
iconColorKey: string;
|
|
467
410
|
emptyDes: string;
|
package/dist/core/index.d.ts
CHANGED