@a2simcode/ui 0.0.107 → 0.0.109
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/table/index.d.ts +15 -0
- package/dist/components/table/src/table.vue.d.ts +15 -0
- package/dist/simcode-ui.es.js +2807 -2792
- package/dist/simcode-ui.umd.js +2 -2
- package/dist/stats.html +1 -1
- package/dist/ui.css +1 -1
- package/docs/components/meta/autocomplete.ts +11 -0
- package/docs/examples/form/basic.vue +3 -0
- package/package.json +1 -1
|
@@ -37,6 +37,10 @@ declare const JTable: {
|
|
|
37
37
|
type: BooleanConstructor;
|
|
38
38
|
default: boolean;
|
|
39
39
|
};
|
|
40
|
+
selectStateKey: {
|
|
41
|
+
type: StringConstructor;
|
|
42
|
+
default: string;
|
|
43
|
+
};
|
|
40
44
|
isPage: {
|
|
41
45
|
type: BooleanConstructor;
|
|
42
46
|
default: boolean;
|
|
@@ -194,6 +198,7 @@ declare const JTable: {
|
|
|
194
198
|
parentKey: string;
|
|
195
199
|
isShowNumber: boolean;
|
|
196
200
|
isMultiple: boolean;
|
|
201
|
+
selectStateKey: string;
|
|
197
202
|
isPage: boolean;
|
|
198
203
|
pageLayoutSimple: boolean;
|
|
199
204
|
pageTotal: number;
|
|
@@ -272,6 +277,10 @@ declare const JTable: {
|
|
|
272
277
|
type: BooleanConstructor;
|
|
273
278
|
default: boolean;
|
|
274
279
|
};
|
|
280
|
+
selectStateKey: {
|
|
281
|
+
type: StringConstructor;
|
|
282
|
+
default: string;
|
|
283
|
+
};
|
|
275
284
|
isPage: {
|
|
276
285
|
type: BooleanConstructor;
|
|
277
286
|
default: boolean;
|
|
@@ -405,6 +414,7 @@ declare const JTable: {
|
|
|
405
414
|
parentKey: string;
|
|
406
415
|
isShowNumber: boolean;
|
|
407
416
|
isMultiple: boolean;
|
|
417
|
+
selectStateKey: string;
|
|
408
418
|
isPage: boolean;
|
|
409
419
|
pageLayoutSimple: boolean;
|
|
410
420
|
pageTotal: number;
|
|
@@ -478,6 +488,10 @@ declare const JTable: {
|
|
|
478
488
|
type: BooleanConstructor;
|
|
479
489
|
default: boolean;
|
|
480
490
|
};
|
|
491
|
+
selectStateKey: {
|
|
492
|
+
type: StringConstructor;
|
|
493
|
+
default: string;
|
|
494
|
+
};
|
|
481
495
|
isPage: {
|
|
482
496
|
type: BooleanConstructor;
|
|
483
497
|
default: boolean;
|
|
@@ -635,6 +649,7 @@ declare const JTable: {
|
|
|
635
649
|
parentKey: string;
|
|
636
650
|
isShowNumber: boolean;
|
|
637
651
|
isMultiple: boolean;
|
|
652
|
+
selectStateKey: string;
|
|
638
653
|
isPage: boolean;
|
|
639
654
|
pageLayoutSimple: boolean;
|
|
640
655
|
pageTotal: number;
|
|
@@ -65,6 +65,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
65
65
|
type: BooleanConstructor;
|
|
66
66
|
default: boolean;
|
|
67
67
|
};
|
|
68
|
+
/**
|
|
69
|
+
* @zh 选状态字段名
|
|
70
|
+
*/
|
|
71
|
+
selectStateKey: {
|
|
72
|
+
type: StringConstructor;
|
|
73
|
+
default: string;
|
|
74
|
+
};
|
|
68
75
|
/**
|
|
69
76
|
* @zh 是否分页
|
|
70
77
|
*/
|
|
@@ -314,6 +321,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
314
321
|
type: BooleanConstructor;
|
|
315
322
|
default: boolean;
|
|
316
323
|
};
|
|
324
|
+
/**
|
|
325
|
+
* @zh 选状态字段名
|
|
326
|
+
*/
|
|
327
|
+
selectStateKey: {
|
|
328
|
+
type: StringConstructor;
|
|
329
|
+
default: string;
|
|
330
|
+
};
|
|
317
331
|
/**
|
|
318
332
|
* @zh 是否分页
|
|
319
333
|
*/
|
|
@@ -503,6 +517,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
503
517
|
parentKey: string;
|
|
504
518
|
isShowNumber: boolean;
|
|
505
519
|
isMultiple: boolean;
|
|
520
|
+
selectStateKey: string;
|
|
506
521
|
isPage: boolean;
|
|
507
522
|
pageLayoutSimple: boolean;
|
|
508
523
|
pageTotal: number;
|