@a2simcode/ui 0.0.253 → 0.0.255
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 +6 -6
- package/dist/components/input-layer/src/input-layer.vue.d.ts +3 -3
- package/dist/components/table/index.d.ts +3 -3
- package/dist/components/table/src/table.vue.d.ts +1 -1
- package/dist/components/table-panel/index.d.ts +8 -8
- package/dist/components/table-panel/src/filter-panel.vue.d.ts +1 -1
- package/dist/components/table-panel/src/table-panel.vue.d.ts +4 -4
- package/dist/simcode-ui.es.js +3411 -3345
- package/dist/simcode-ui.umd.js +2 -2
- package/dist/stats.html +1 -1
- package/docs/components/meta/input-layer.ts +38 -8
- package/package.json +1 -1
|
@@ -26,14 +26,14 @@ export declare const JInputLayer: {
|
|
|
26
26
|
modelValue: string;
|
|
27
27
|
clearable: boolean;
|
|
28
28
|
readonly: boolean;
|
|
29
|
+
isPage: boolean;
|
|
29
30
|
columns: any[];
|
|
31
|
+
searchList: any[];
|
|
30
32
|
isTree: boolean;
|
|
31
33
|
defaultExpandAll: boolean;
|
|
32
|
-
isPage: boolean;
|
|
33
34
|
onlyButton: boolean;
|
|
34
35
|
isMultiSelect: boolean;
|
|
35
36
|
pidKey: string;
|
|
36
|
-
searchInputList: any[];
|
|
37
37
|
isSaveSelectData: boolean;
|
|
38
38
|
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
39
39
|
layerRef: unknown;
|
|
@@ -66,14 +66,14 @@ export declare const JInputLayer: {
|
|
|
66
66
|
modelValue: string;
|
|
67
67
|
clearable: boolean;
|
|
68
68
|
readonly: boolean;
|
|
69
|
+
isPage: boolean;
|
|
69
70
|
columns: any[];
|
|
71
|
+
searchList: any[];
|
|
70
72
|
isTree: boolean;
|
|
71
73
|
defaultExpandAll: boolean;
|
|
72
|
-
isPage: boolean;
|
|
73
74
|
onlyButton: boolean;
|
|
74
75
|
isMultiSelect: boolean;
|
|
75
76
|
pidKey: string;
|
|
76
|
-
searchInputList: any[];
|
|
77
77
|
isSaveSelectData: boolean;
|
|
78
78
|
}>;
|
|
79
79
|
__isFragment?: never;
|
|
@@ -106,14 +106,14 @@ export declare const JInputLayer: {
|
|
|
106
106
|
modelValue: string;
|
|
107
107
|
clearable: boolean;
|
|
108
108
|
readonly: boolean;
|
|
109
|
+
isPage: boolean;
|
|
109
110
|
columns: any[];
|
|
111
|
+
searchList: any[];
|
|
110
112
|
isTree: boolean;
|
|
111
113
|
defaultExpandAll: boolean;
|
|
112
|
-
isPage: boolean;
|
|
113
114
|
onlyButton: boolean;
|
|
114
115
|
isMultiSelect: boolean;
|
|
115
116
|
pidKey: string;
|
|
116
|
-
searchInputList: any[];
|
|
117
117
|
isSaveSelectData: boolean;
|
|
118
118
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
|
|
119
119
|
install: (app: import('vue').App) => void;
|
|
@@ -53,7 +53,7 @@ export interface InputLayerProps {
|
|
|
53
53
|
/** 数据加载方式 */
|
|
54
54
|
mode?: string;
|
|
55
55
|
/** 查询框 */
|
|
56
|
-
|
|
56
|
+
searchList?: any[];
|
|
57
57
|
/** 只显示按钮 */
|
|
58
58
|
onlyButton?: boolean;
|
|
59
59
|
/** 按钮文本 */
|
|
@@ -103,14 +103,14 @@ declare const _default: import('vue').DefineComponent<InputLayerProps, {
|
|
|
103
103
|
modelValue: string;
|
|
104
104
|
clearable: boolean;
|
|
105
105
|
readonly: boolean;
|
|
106
|
+
isPage: boolean;
|
|
106
107
|
columns: any[];
|
|
108
|
+
searchList: any[];
|
|
107
109
|
isTree: boolean;
|
|
108
110
|
defaultExpandAll: boolean;
|
|
109
|
-
isPage: boolean;
|
|
110
111
|
onlyButton: boolean;
|
|
111
112
|
isMultiSelect: boolean;
|
|
112
113
|
pidKey: string;
|
|
113
|
-
searchInputList: any[];
|
|
114
114
|
isSaveSelectData: boolean;
|
|
115
115
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
116
116
|
layerRef: unknown;
|
|
@@ -204,6 +204,7 @@ declare const JTable: {
|
|
|
204
204
|
}, import('vue').PublicProps, {
|
|
205
205
|
id: string;
|
|
206
206
|
modelValue: Record<string, any>[];
|
|
207
|
+
isPage: boolean;
|
|
207
208
|
columns: import('.').ColumnSchemaConfig[];
|
|
208
209
|
columnFilter: string[];
|
|
209
210
|
records: Record<string, any>[];
|
|
@@ -214,7 +215,6 @@ declare const JTable: {
|
|
|
214
215
|
isMultiple: boolean;
|
|
215
216
|
selectStateKey: string;
|
|
216
217
|
multipleDisabled: (record: Record<string, any>) => boolean;
|
|
217
|
-
isPage: boolean;
|
|
218
218
|
pageLayoutSimple: boolean;
|
|
219
219
|
pageTotal: number;
|
|
220
220
|
tablePage: number;
|
|
@@ -434,6 +434,7 @@ declare const JTable: {
|
|
|
434
434
|
}, {}, {}, {}, {
|
|
435
435
|
id: string;
|
|
436
436
|
modelValue: Record<string, any>[];
|
|
437
|
+
isPage: boolean;
|
|
437
438
|
columns: import('.').ColumnSchemaConfig[];
|
|
438
439
|
columnFilter: string[];
|
|
439
440
|
records: Record<string, any>[];
|
|
@@ -444,7 +445,6 @@ declare const JTable: {
|
|
|
444
445
|
isMultiple: boolean;
|
|
445
446
|
selectStateKey: string;
|
|
446
447
|
multipleDisabled: (record: Record<string, any>) => boolean;
|
|
447
|
-
isPage: boolean;
|
|
448
448
|
pageLayoutSimple: boolean;
|
|
449
449
|
pageTotal: number;
|
|
450
450
|
tablePage: number;
|
|
@@ -684,6 +684,7 @@ declare const JTable: {
|
|
|
684
684
|
}, string, {
|
|
685
685
|
id: string;
|
|
686
686
|
modelValue: Record<string, any>[];
|
|
687
|
+
isPage: boolean;
|
|
687
688
|
columns: import('.').ColumnSchemaConfig[];
|
|
688
689
|
columnFilter: string[];
|
|
689
690
|
records: Record<string, any>[];
|
|
@@ -694,7 +695,6 @@ declare const JTable: {
|
|
|
694
695
|
isMultiple: boolean;
|
|
695
696
|
selectStateKey: string;
|
|
696
697
|
multipleDisabled: (record: Record<string, any>) => boolean;
|
|
697
|
-
isPage: boolean;
|
|
698
698
|
pageLayoutSimple: boolean;
|
|
699
699
|
pageTotal: number;
|
|
700
700
|
tablePage: number;
|
|
@@ -552,6 +552,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
552
552
|
}>, {
|
|
553
553
|
id: string;
|
|
554
554
|
modelValue: Record<string, any>[];
|
|
555
|
+
isPage: boolean;
|
|
555
556
|
columns: ColumnSchemaConfig[];
|
|
556
557
|
columnFilter: string[];
|
|
557
558
|
records: Record<string, any>[];
|
|
@@ -562,7 +563,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
562
563
|
isMultiple: boolean;
|
|
563
564
|
selectStateKey: string;
|
|
564
565
|
multipleDisabled: (record: Record<string, any>) => boolean;
|
|
565
|
-
isPage: boolean;
|
|
566
566
|
pageLayoutSimple: boolean;
|
|
567
567
|
pageTotal: number;
|
|
568
568
|
tablePage: number;
|
|
@@ -198,7 +198,9 @@ declare const JTablePanel: {
|
|
|
198
198
|
immediate: boolean;
|
|
199
199
|
buttons: import('..').ButtonCompType[];
|
|
200
200
|
modelValue: Record<string, any>[];
|
|
201
|
+
isPage: boolean;
|
|
201
202
|
columns: import('..').SchemaConfig[];
|
|
203
|
+
searchList: Record<string, any>[];
|
|
202
204
|
columnFilter: string[];
|
|
203
205
|
isTree: boolean;
|
|
204
206
|
defaultExpandAll: boolean;
|
|
@@ -207,7 +209,6 @@ declare const JTablePanel: {
|
|
|
207
209
|
isMultiple: boolean;
|
|
208
210
|
selectStateKey: string;
|
|
209
211
|
multipleDisabled: (record: Record<string, any>) => boolean;
|
|
210
|
-
isPage: boolean;
|
|
211
212
|
pageSize: number;
|
|
212
213
|
rowKey: string;
|
|
213
214
|
rowDrag: boolean;
|
|
@@ -230,7 +231,6 @@ declare const JTablePanel: {
|
|
|
230
231
|
isSubShowNumber: boolean;
|
|
231
232
|
subActions: import('..').ButtonCompType[];
|
|
232
233
|
loadChildren: (record: Record<string, any>) => Promise<any[]>;
|
|
233
|
-
searchList: Record<string, any>[];
|
|
234
234
|
viewMode: "table" | "card";
|
|
235
235
|
batchButtons: import('..').ButtonCompType[];
|
|
236
236
|
noPadding: boolean;
|
|
@@ -330,8 +330,8 @@ declare const JTablePanel: {
|
|
|
330
330
|
"update:isPin": (value: boolean) => void;
|
|
331
331
|
}, import('vue').PublicProps, {
|
|
332
332
|
columns: import('..').SchemaConfig[];
|
|
333
|
-
searchFieldList: Record<string, any>[];
|
|
334
333
|
searchList: Record<string, any>[];
|
|
334
|
+
searchFieldList: Record<string, any>[];
|
|
335
335
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
336
336
|
formRef: unknown;
|
|
337
337
|
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
@@ -370,8 +370,8 @@ declare const JTablePanel: {
|
|
|
370
370
|
getFixedSearchData: () => any;
|
|
371
371
|
}, {}, {}, {}, {
|
|
372
372
|
columns: import('..').SchemaConfig[];
|
|
373
|
-
searchFieldList: Record<string, any>[];
|
|
374
373
|
searchList: Record<string, any>[];
|
|
374
|
+
searchFieldList: Record<string, any>[];
|
|
375
375
|
}> | null;
|
|
376
376
|
orderPanelRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
377
377
|
columns: {
|
|
@@ -653,7 +653,9 @@ declare const JTablePanel: {
|
|
|
653
653
|
immediate: boolean;
|
|
654
654
|
buttons: import('..').ButtonCompType[];
|
|
655
655
|
modelValue: Record<string, any>[];
|
|
656
|
+
isPage: boolean;
|
|
656
657
|
columns: import('..').SchemaConfig[];
|
|
658
|
+
searchList: Record<string, any>[];
|
|
657
659
|
columnFilter: string[];
|
|
658
660
|
isTree: boolean;
|
|
659
661
|
defaultExpandAll: boolean;
|
|
@@ -662,7 +664,6 @@ declare const JTablePanel: {
|
|
|
662
664
|
isMultiple: boolean;
|
|
663
665
|
selectStateKey: string;
|
|
664
666
|
multipleDisabled: (record: Record<string, any>) => boolean;
|
|
665
|
-
isPage: boolean;
|
|
666
667
|
pageSize: number;
|
|
667
668
|
rowKey: string;
|
|
668
669
|
rowDrag: boolean;
|
|
@@ -685,7 +686,6 @@ declare const JTablePanel: {
|
|
|
685
686
|
isSubShowNumber: boolean;
|
|
686
687
|
subActions: import('..').ButtonCompType[];
|
|
687
688
|
loadChildren: (record: Record<string, any>) => Promise<any[]>;
|
|
688
|
-
searchList: Record<string, any>[];
|
|
689
689
|
viewMode: "table" | "card";
|
|
690
690
|
batchButtons: import('..').ButtonCompType[];
|
|
691
691
|
noPadding: boolean;
|
|
@@ -905,7 +905,9 @@ declare const JTablePanel: {
|
|
|
905
905
|
immediate: boolean;
|
|
906
906
|
buttons: import('..').ButtonCompType[];
|
|
907
907
|
modelValue: Record<string, any>[];
|
|
908
|
+
isPage: boolean;
|
|
908
909
|
columns: import('..').SchemaConfig[];
|
|
910
|
+
searchList: Record<string, any>[];
|
|
909
911
|
columnFilter: string[];
|
|
910
912
|
isTree: boolean;
|
|
911
913
|
defaultExpandAll: boolean;
|
|
@@ -914,7 +916,6 @@ declare const JTablePanel: {
|
|
|
914
916
|
isMultiple: boolean;
|
|
915
917
|
selectStateKey: string;
|
|
916
918
|
multipleDisabled: (record: Record<string, any>) => boolean;
|
|
917
|
-
isPage: boolean;
|
|
918
919
|
pageSize: number;
|
|
919
920
|
rowKey: string;
|
|
920
921
|
rowDrag: boolean;
|
|
@@ -937,7 +938,6 @@ declare const JTablePanel: {
|
|
|
937
938
|
isSubShowNumber: boolean;
|
|
938
939
|
subActions: import('..').ButtonCompType[];
|
|
939
940
|
loadChildren: (record: Record<string, any>) => Promise<any[]>;
|
|
940
|
-
searchList: Record<string, any>[];
|
|
941
941
|
viewMode: "table" | "card";
|
|
942
942
|
batchButtons: import('..').ButtonCompType[];
|
|
943
943
|
noPadding: boolean;
|
|
@@ -53,8 +53,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
53
53
|
"onUpdate:isPin"?: ((value: boolean) => any) | undefined;
|
|
54
54
|
}>, {
|
|
55
55
|
columns: SchemaConfig[];
|
|
56
|
-
searchFieldList: Record<string, any>[];
|
|
57
56
|
searchList: Record<string, any>[];
|
|
57
|
+
searchFieldList: Record<string, any>[];
|
|
58
58
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
59
59
|
formRef: unknown;
|
|
60
60
|
}, HTMLDivElement>;
|
|
@@ -667,7 +667,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
667
667
|
immediate: boolean;
|
|
668
668
|
buttons: ButtonCompType[];
|
|
669
669
|
modelValue: Record<string, any>[];
|
|
670
|
+
isPage: boolean;
|
|
670
671
|
columns: SchemaConfig[];
|
|
672
|
+
searchList: Record<string, any>[];
|
|
671
673
|
columnFilter: string[];
|
|
672
674
|
isTree: boolean;
|
|
673
675
|
defaultExpandAll: boolean;
|
|
@@ -676,7 +678,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
676
678
|
isMultiple: boolean;
|
|
677
679
|
selectStateKey: string;
|
|
678
680
|
multipleDisabled: (record: Record<string, any>) => boolean;
|
|
679
|
-
isPage: boolean;
|
|
680
681
|
pageSize: number;
|
|
681
682
|
rowKey: string;
|
|
682
683
|
rowDrag: boolean;
|
|
@@ -699,7 +700,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
699
700
|
isSubShowNumber: boolean;
|
|
700
701
|
subActions: ButtonCompType[];
|
|
701
702
|
loadChildren: (record: Record<string, any>) => Promise<any[]>;
|
|
702
|
-
searchList: Record<string, any>[];
|
|
703
703
|
viewMode: "table" | "card";
|
|
704
704
|
batchButtons: ButtonCompType[];
|
|
705
705
|
noPadding: boolean;
|
|
@@ -799,8 +799,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
799
799
|
"update:isPin": (value: boolean) => void;
|
|
800
800
|
}, import('vue').PublicProps, {
|
|
801
801
|
columns: SchemaConfig[];
|
|
802
|
-
searchFieldList: Record<string, any>[];
|
|
803
802
|
searchList: Record<string, any>[];
|
|
803
|
+
searchFieldList: Record<string, any>[];
|
|
804
804
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
805
805
|
formRef: unknown;
|
|
806
806
|
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
@@ -839,8 +839,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
839
839
|
getFixedSearchData: () => any;
|
|
840
840
|
}, {}, {}, {}, {
|
|
841
841
|
columns: SchemaConfig[];
|
|
842
|
-
searchFieldList: Record<string, any>[];
|
|
843
842
|
searchList: Record<string, any>[];
|
|
843
|
+
searchFieldList: Record<string, any>[];
|
|
844
844
|
}> | null;
|
|
845
845
|
orderPanelRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
846
846
|
columns: {
|