@a2simcode/ui 0.0.279 → 0.0.281
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/comp/index.d.ts +9 -9
- package/dist/components/comp/src/comp.vue.d.ts +6 -5
- package/dist/components/input-layer/index.d.ts +3 -3
- package/dist/components/input-layer/src/input-layer.vue.d.ts +1 -1
- 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 +3 -3
- package/dist/components/table-panel/src/table-panel.vue.d.ts +1 -1
- package/dist/simcode-ui.es.js +1532 -1530
- package/dist/simcode-ui.umd.js +2 -2
- package/dist/stats.html +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
declare const JComp: {
|
|
2
2
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
3
3
|
modelValue: {
|
|
4
|
-
type: import('vue').PropType<string | number | boolean | any[] | Record<string, any
|
|
5
|
-
default:
|
|
4
|
+
type: import('vue').PropType<string | number | boolean | any[] | Record<string, any> | symbol>;
|
|
5
|
+
default: symbol;
|
|
6
6
|
};
|
|
7
7
|
id: {
|
|
8
8
|
type: StringConstructor;
|
|
@@ -55,7 +55,7 @@ declare const JComp: {
|
|
|
55
55
|
id: string;
|
|
56
56
|
children: import('..').SchemaConfig[];
|
|
57
57
|
config: Record<string, any>;
|
|
58
|
-
modelValue: string | number | boolean | any[] | Record<string, any>;
|
|
58
|
+
modelValue: string | number | boolean | symbol | any[] | Record<string, any>;
|
|
59
59
|
getCompType: Function;
|
|
60
60
|
getCompConfig: Function;
|
|
61
61
|
row: Record<string, any>;
|
|
@@ -73,8 +73,8 @@ declare const JComp: {
|
|
|
73
73
|
Defaults: {};
|
|
74
74
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
75
75
|
modelValue: {
|
|
76
|
-
type: import('vue').PropType<string | number | boolean | any[] | Record<string, any
|
|
77
|
-
default:
|
|
76
|
+
type: import('vue').PropType<string | number | boolean | any[] | Record<string, any> | symbol>;
|
|
77
|
+
default: symbol;
|
|
78
78
|
};
|
|
79
79
|
id: {
|
|
80
80
|
type: StringConstructor;
|
|
@@ -124,7 +124,7 @@ declare const JComp: {
|
|
|
124
124
|
id: string;
|
|
125
125
|
children: import('..').SchemaConfig[];
|
|
126
126
|
config: Record<string, any>;
|
|
127
|
-
modelValue: string | number | boolean | any[] | Record<string, any>;
|
|
127
|
+
modelValue: string | number | boolean | symbol | any[] | Record<string, any>;
|
|
128
128
|
getCompType: Function;
|
|
129
129
|
getCompConfig: Function;
|
|
130
130
|
row: Record<string, any>;
|
|
@@ -137,8 +137,8 @@ declare const JComp: {
|
|
|
137
137
|
__isSuspense?: never;
|
|
138
138
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
139
139
|
modelValue: {
|
|
140
|
-
type: import('vue').PropType<string | number | boolean | any[] | Record<string, any
|
|
141
|
-
default:
|
|
140
|
+
type: import('vue').PropType<string | number | boolean | any[] | Record<string, any> | symbol>;
|
|
141
|
+
default: symbol;
|
|
142
142
|
};
|
|
143
143
|
id: {
|
|
144
144
|
type: StringConstructor;
|
|
@@ -191,7 +191,7 @@ declare const JComp: {
|
|
|
191
191
|
id: string;
|
|
192
192
|
children: import('..').SchemaConfig[];
|
|
193
193
|
config: Record<string, any>;
|
|
194
|
-
modelValue: string | number | boolean | any[] | Record<string, any>;
|
|
194
|
+
modelValue: string | number | boolean | symbol | any[] | Record<string, any>;
|
|
195
195
|
getCompType: Function;
|
|
196
196
|
getCompConfig: Function;
|
|
197
197
|
row: Record<string, any>;
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { SchemaConfig } from './interface';
|
|
3
|
+
export declare const MODEL_VALUE_UNSET: unique symbol;
|
|
3
4
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
5
|
/**
|
|
5
6
|
* @zh 输入值
|
|
6
7
|
* @vModel
|
|
7
8
|
*/
|
|
8
9
|
modelValue: {
|
|
9
|
-
type: PropType<string | number | boolean | any[] | Record<string, any
|
|
10
|
-
default:
|
|
10
|
+
type: PropType<string | number | boolean | any[] | Record<string, any> | symbol>;
|
|
11
|
+
default: symbol;
|
|
11
12
|
};
|
|
12
13
|
/**
|
|
13
14
|
* @zh 组件 id
|
|
@@ -88,8 +89,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
88
89
|
* @vModel
|
|
89
90
|
*/
|
|
90
91
|
modelValue: {
|
|
91
|
-
type: PropType<string | number | boolean | any[] | Record<string, any
|
|
92
|
-
default:
|
|
92
|
+
type: PropType<string | number | boolean | any[] | Record<string, any> | symbol>;
|
|
93
|
+
default: symbol;
|
|
93
94
|
};
|
|
94
95
|
/**
|
|
95
96
|
* @zh 组件 id
|
|
@@ -169,7 +170,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
169
170
|
id: string;
|
|
170
171
|
children: SchemaConfig[];
|
|
171
172
|
config: Record<string, any>;
|
|
172
|
-
modelValue: string | number | boolean | any[] | Record<string, any>;
|
|
173
|
+
modelValue: string | number | boolean | symbol | any[] | Record<string, any>;
|
|
173
174
|
getCompType: Function;
|
|
174
175
|
getCompConfig: Function;
|
|
175
176
|
row: Record<string, any>;
|
|
@@ -26,9 +26,9 @@ export declare const JInputLayer: {
|
|
|
26
26
|
modelValue: string;
|
|
27
27
|
clearable: boolean;
|
|
28
28
|
readonly: boolean;
|
|
29
|
-
isPage: boolean;
|
|
30
29
|
columns: any[];
|
|
31
30
|
searchList: any[];
|
|
31
|
+
isPage: boolean;
|
|
32
32
|
isMultiSelect: boolean;
|
|
33
33
|
isTree: boolean;
|
|
34
34
|
defaultExpandAll: boolean;
|
|
@@ -66,9 +66,9 @@ export declare const JInputLayer: {
|
|
|
66
66
|
modelValue: string;
|
|
67
67
|
clearable: boolean;
|
|
68
68
|
readonly: boolean;
|
|
69
|
-
isPage: boolean;
|
|
70
69
|
columns: any[];
|
|
71
70
|
searchList: any[];
|
|
71
|
+
isPage: boolean;
|
|
72
72
|
isMultiSelect: boolean;
|
|
73
73
|
isTree: boolean;
|
|
74
74
|
defaultExpandAll: boolean;
|
|
@@ -106,9 +106,9 @@ export declare const JInputLayer: {
|
|
|
106
106
|
modelValue: string;
|
|
107
107
|
clearable: boolean;
|
|
108
108
|
readonly: boolean;
|
|
109
|
-
isPage: boolean;
|
|
110
109
|
columns: any[];
|
|
111
110
|
searchList: any[];
|
|
111
|
+
isPage: boolean;
|
|
112
112
|
isMultiSelect: boolean;
|
|
113
113
|
isTree: boolean;
|
|
114
114
|
defaultExpandAll: boolean;
|
|
@@ -103,9 +103,9 @@ declare const _default: import('vue').DefineComponent<InputLayerProps, {
|
|
|
103
103
|
modelValue: string;
|
|
104
104
|
clearable: boolean;
|
|
105
105
|
readonly: boolean;
|
|
106
|
-
isPage: boolean;
|
|
107
106
|
columns: any[];
|
|
108
107
|
searchList: any[];
|
|
108
|
+
isPage: boolean;
|
|
109
109
|
isMultiSelect: boolean;
|
|
110
110
|
isTree: boolean;
|
|
111
111
|
defaultExpandAll: boolean;
|
|
@@ -226,8 +226,8 @@ declare const JTable: {
|
|
|
226
226
|
id: string;
|
|
227
227
|
modelValue: Record<string, any>[];
|
|
228
228
|
rowNum: number;
|
|
229
|
-
isPage: boolean;
|
|
230
229
|
columns: import('.').ColumnSchemaConfig[];
|
|
230
|
+
isPage: boolean;
|
|
231
231
|
mergeHeader: import('.').MergeHeaderOption[];
|
|
232
232
|
columnFilter: string[];
|
|
233
233
|
records: Record<string, any>[];
|
|
@@ -481,8 +481,8 @@ declare const JTable: {
|
|
|
481
481
|
id: string;
|
|
482
482
|
modelValue: Record<string, any>[];
|
|
483
483
|
rowNum: number;
|
|
484
|
-
isPage: boolean;
|
|
485
484
|
columns: import('.').ColumnSchemaConfig[];
|
|
485
|
+
isPage: boolean;
|
|
486
486
|
mergeHeader: import('.').MergeHeaderOption[];
|
|
487
487
|
columnFilter: string[];
|
|
488
488
|
records: Record<string, any>[];
|
|
@@ -756,8 +756,8 @@ declare const JTable: {
|
|
|
756
756
|
id: string;
|
|
757
757
|
modelValue: Record<string, any>[];
|
|
758
758
|
rowNum: number;
|
|
759
|
-
isPage: boolean;
|
|
760
759
|
columns: import('.').ColumnSchemaConfig[];
|
|
760
|
+
isPage: boolean;
|
|
761
761
|
mergeHeader: import('.').MergeHeaderOption[];
|
|
762
762
|
columnFilter: string[];
|
|
763
763
|
records: Record<string, any>[];
|
|
@@ -618,8 +618,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
618
618
|
id: string;
|
|
619
619
|
modelValue: Record<string, any>[];
|
|
620
620
|
rowNum: number;
|
|
621
|
-
isPage: boolean;
|
|
622
621
|
columns: ColumnSchemaConfig[];
|
|
622
|
+
isPage: boolean;
|
|
623
623
|
mergeHeader: MergeHeaderOption[];
|
|
624
624
|
columnFilter: string[];
|
|
625
625
|
records: Record<string, any>[];
|
|
@@ -198,9 +198,9 @@ declare const JTablePanel: {
|
|
|
198
198
|
immediate: boolean;
|
|
199
199
|
buttons: import('..').ButtonCompType[];
|
|
200
200
|
modelValue: Record<string, any>[];
|
|
201
|
-
isPage: boolean;
|
|
202
201
|
columns: import('..').SchemaConfig[];
|
|
203
202
|
searchList: Record<string, any>[];
|
|
203
|
+
isPage: boolean;
|
|
204
204
|
columnFilter: string[];
|
|
205
205
|
isTree: boolean;
|
|
206
206
|
defaultExpandAll: boolean;
|
|
@@ -653,9 +653,9 @@ declare const JTablePanel: {
|
|
|
653
653
|
immediate: boolean;
|
|
654
654
|
buttons: import('..').ButtonCompType[];
|
|
655
655
|
modelValue: Record<string, any>[];
|
|
656
|
-
isPage: boolean;
|
|
657
656
|
columns: import('..').SchemaConfig[];
|
|
658
657
|
searchList: Record<string, any>[];
|
|
658
|
+
isPage: boolean;
|
|
659
659
|
columnFilter: string[];
|
|
660
660
|
isTree: boolean;
|
|
661
661
|
defaultExpandAll: boolean;
|
|
@@ -905,9 +905,9 @@ declare const JTablePanel: {
|
|
|
905
905
|
immediate: boolean;
|
|
906
906
|
buttons: import('..').ButtonCompType[];
|
|
907
907
|
modelValue: Record<string, any>[];
|
|
908
|
-
isPage: boolean;
|
|
909
908
|
columns: import('..').SchemaConfig[];
|
|
910
909
|
searchList: Record<string, any>[];
|
|
910
|
+
isPage: boolean;
|
|
911
911
|
columnFilter: string[];
|
|
912
912
|
isTree: boolean;
|
|
913
913
|
defaultExpandAll: boolean;
|
|
@@ -667,9 +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;
|
|
671
670
|
columns: SchemaConfig[];
|
|
672
671
|
searchList: Record<string, any>[];
|
|
672
|
+
isPage: boolean;
|
|
673
673
|
columnFilter: string[];
|
|
674
674
|
isTree: boolean;
|
|
675
675
|
defaultExpandAll: boolean;
|