@a2simcode/ui 0.0.297 → 0.0.298
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 +3 -9
- package/dist/components/comp/src/comp.vue.d.ts +2 -6
- 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 +1573 -1577
- package/dist/simcode-ui.umd.js +2 -2
- package/dist/stats.html +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,7 @@
|
|
|
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: symbol;
|
|
4
|
+
type: import('vue').PropType<string | number | boolean | any[] | Record<string, any>>;
|
|
6
5
|
};
|
|
7
6
|
id: {
|
|
8
7
|
type: StringConstructor;
|
|
@@ -55,7 +54,6 @@ declare const JComp: {
|
|
|
55
54
|
id: string;
|
|
56
55
|
children: import('..').SchemaConfig[];
|
|
57
56
|
config: Record<string, any>;
|
|
58
|
-
modelValue: string | number | boolean | symbol | any[] | Record<string, any>;
|
|
59
57
|
getCompType: Function;
|
|
60
58
|
getCompConfig: Function;
|
|
61
59
|
row: Record<string, any>;
|
|
@@ -73,8 +71,7 @@ declare const JComp: {
|
|
|
73
71
|
Defaults: {};
|
|
74
72
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
75
73
|
modelValue: {
|
|
76
|
-
type: import('vue').PropType<string | number | boolean | any[] | Record<string, any
|
|
77
|
-
default: symbol;
|
|
74
|
+
type: import('vue').PropType<string | number | boolean | any[] | Record<string, any>>;
|
|
78
75
|
};
|
|
79
76
|
id: {
|
|
80
77
|
type: StringConstructor;
|
|
@@ -124,7 +121,6 @@ declare const JComp: {
|
|
|
124
121
|
id: string;
|
|
125
122
|
children: import('..').SchemaConfig[];
|
|
126
123
|
config: Record<string, any>;
|
|
127
|
-
modelValue: string | number | boolean | symbol | any[] | Record<string, any>;
|
|
128
124
|
getCompType: Function;
|
|
129
125
|
getCompConfig: Function;
|
|
130
126
|
row: Record<string, any>;
|
|
@@ -137,8 +133,7 @@ declare const JComp: {
|
|
|
137
133
|
__isSuspense?: never;
|
|
138
134
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
139
135
|
modelValue: {
|
|
140
|
-
type: import('vue').PropType<string | number | boolean | any[] | Record<string, any
|
|
141
|
-
default: symbol;
|
|
136
|
+
type: import('vue').PropType<string | number | boolean | any[] | Record<string, any>>;
|
|
142
137
|
};
|
|
143
138
|
id: {
|
|
144
139
|
type: StringConstructor;
|
|
@@ -191,7 +186,6 @@ declare const JComp: {
|
|
|
191
186
|
id: string;
|
|
192
187
|
children: import('..').SchemaConfig[];
|
|
193
188
|
config: Record<string, any>;
|
|
194
|
-
modelValue: string | number | boolean | symbol | any[] | Record<string, any>;
|
|
195
189
|
getCompType: Function;
|
|
196
190
|
getCompConfig: Function;
|
|
197
191
|
row: Record<string, any>;
|
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { SchemaConfig } from './interface';
|
|
3
|
-
export declare const MODEL_VALUE_UNSET: unique symbol;
|
|
4
3
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
5
4
|
/**
|
|
6
5
|
* @zh 输入值
|
|
7
6
|
* @vModel
|
|
8
7
|
*/
|
|
9
8
|
modelValue: {
|
|
10
|
-
type: PropType<string | number | boolean | any[] | Record<string, any
|
|
11
|
-
default: symbol;
|
|
9
|
+
type: PropType<string | number | boolean | any[] | Record<string, any>>;
|
|
12
10
|
};
|
|
13
11
|
/**
|
|
14
12
|
* @zh 组件 id
|
|
@@ -89,8 +87,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
89
87
|
* @vModel
|
|
90
88
|
*/
|
|
91
89
|
modelValue: {
|
|
92
|
-
type: PropType<string | number | boolean | any[] | Record<string, any
|
|
93
|
-
default: symbol;
|
|
90
|
+
type: PropType<string | number | boolean | any[] | Record<string, any>>;
|
|
94
91
|
};
|
|
95
92
|
/**
|
|
96
93
|
* @zh 组件 id
|
|
@@ -170,7 +167,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
170
167
|
id: string;
|
|
171
168
|
children: SchemaConfig[];
|
|
172
169
|
config: Record<string, any>;
|
|
173
|
-
modelValue: string | number | boolean | symbol | any[] | Record<string, any>;
|
|
174
170
|
getCompType: Function;
|
|
175
171
|
getCompConfig: Function;
|
|
176
172
|
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;
|
|
29
30
|
columns: any[];
|
|
30
31
|
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;
|
|
69
70
|
columns: any[];
|
|
70
71
|
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;
|
|
109
110
|
columns: any[];
|
|
110
111
|
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;
|
|
106
107
|
columns: any[];
|
|
107
108
|
searchList: any[];
|
|
108
|
-
isPage: boolean;
|
|
109
109
|
isMultiSelect: boolean;
|
|
110
110
|
isTree: boolean;
|
|
111
111
|
defaultExpandAll: boolean;
|
|
@@ -228,8 +228,8 @@ declare const JTable: {
|
|
|
228
228
|
id: string;
|
|
229
229
|
modelValue: Record<string, any>[];
|
|
230
230
|
rowNum: number;
|
|
231
|
-
columns: import('.').ColumnSchemaConfig[];
|
|
232
231
|
isPage: boolean;
|
|
232
|
+
columns: import('.').ColumnSchemaConfig[];
|
|
233
233
|
mergeHeader: import('.').MergeHeaderOption[];
|
|
234
234
|
columnFilter: string[];
|
|
235
235
|
records: Record<string, any>[];
|
|
@@ -485,8 +485,8 @@ declare const JTable: {
|
|
|
485
485
|
id: string;
|
|
486
486
|
modelValue: Record<string, any>[];
|
|
487
487
|
rowNum: number;
|
|
488
|
-
columns: import('.').ColumnSchemaConfig[];
|
|
489
488
|
isPage: boolean;
|
|
489
|
+
columns: import('.').ColumnSchemaConfig[];
|
|
490
490
|
mergeHeader: import('.').MergeHeaderOption[];
|
|
491
491
|
columnFilter: string[];
|
|
492
492
|
records: Record<string, any>[];
|
|
@@ -762,8 +762,8 @@ declare const JTable: {
|
|
|
762
762
|
id: string;
|
|
763
763
|
modelValue: Record<string, any>[];
|
|
764
764
|
rowNum: number;
|
|
765
|
-
columns: import('.').ColumnSchemaConfig[];
|
|
766
765
|
isPage: boolean;
|
|
766
|
+
columns: import('.').ColumnSchemaConfig[];
|
|
767
767
|
mergeHeader: import('.').MergeHeaderOption[];
|
|
768
768
|
columnFilter: string[];
|
|
769
769
|
records: Record<string, any>[];
|
|
@@ -620,8 +620,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
620
620
|
id: string;
|
|
621
621
|
modelValue: Record<string, any>[];
|
|
622
622
|
rowNum: number;
|
|
623
|
-
columns: ColumnSchemaConfig[];
|
|
624
623
|
isPage: boolean;
|
|
624
|
+
columns: ColumnSchemaConfig[];
|
|
625
625
|
mergeHeader: MergeHeaderOption[];
|
|
626
626
|
columnFilter: string[];
|
|
627
627
|
records: Record<string, any>[];
|
|
@@ -203,9 +203,9 @@ declare const JTablePanel: {
|
|
|
203
203
|
immediate: boolean;
|
|
204
204
|
buttons: import('..').ButtonCompType[];
|
|
205
205
|
modelValue: Record<string, any>[];
|
|
206
|
+
isPage: boolean;
|
|
206
207
|
columns: import('..').SchemaConfig[];
|
|
207
208
|
searchList: Record<string, any>[];
|
|
208
|
-
isPage: boolean;
|
|
209
209
|
columnFilter: string[];
|
|
210
210
|
isTree: boolean;
|
|
211
211
|
defaultExpandAll: boolean;
|
|
@@ -664,9 +664,9 @@ declare const JTablePanel: {
|
|
|
664
664
|
immediate: boolean;
|
|
665
665
|
buttons: import('..').ButtonCompType[];
|
|
666
666
|
modelValue: Record<string, any>[];
|
|
667
|
+
isPage: boolean;
|
|
667
668
|
columns: import('..').SchemaConfig[];
|
|
668
669
|
searchList: Record<string, any>[];
|
|
669
|
-
isPage: boolean;
|
|
670
670
|
columnFilter: string[];
|
|
671
671
|
isTree: boolean;
|
|
672
672
|
defaultExpandAll: boolean;
|
|
@@ -922,9 +922,9 @@ declare const JTablePanel: {
|
|
|
922
922
|
immediate: boolean;
|
|
923
923
|
buttons: import('..').ButtonCompType[];
|
|
924
924
|
modelValue: Record<string, any>[];
|
|
925
|
+
isPage: boolean;
|
|
925
926
|
columns: import('..').SchemaConfig[];
|
|
926
927
|
searchList: Record<string, any>[];
|
|
927
|
-
isPage: boolean;
|
|
928
928
|
columnFilter: string[];
|
|
929
929
|
isTree: boolean;
|
|
930
930
|
defaultExpandAll: boolean;
|
|
@@ -682,9 +682,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
682
682
|
immediate: boolean;
|
|
683
683
|
buttons: ButtonCompType[];
|
|
684
684
|
modelValue: Record<string, any>[];
|
|
685
|
+
isPage: boolean;
|
|
685
686
|
columns: SchemaConfig[];
|
|
686
687
|
searchList: Record<string, any>[];
|
|
687
|
-
isPage: boolean;
|
|
688
688
|
columnFilter: string[];
|
|
689
689
|
isTree: boolean;
|
|
690
690
|
defaultExpandAll: boolean;
|