@a2simcode/ui 0.0.38 → 0.0.40
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/buttons/src/interface.d.ts +2 -2
- package/dist/components/comp/index.d.ts +6 -6
- package/dist/components/comp/src/comp.vue.d.ts +4 -4
- package/dist/components/comp/src/interface.d.ts +34 -18
- package/dist/components/dynamic-layer/index.d.ts +3 -3
- package/dist/components/dynamic-layer/src/dynamic-layer.vue.d.ts +2 -2
- package/dist/components/dynamic-layer/src/interface.d.ts +1 -1
- package/dist/components/dynamic-layer/src/useLayer.d.ts +2 -2
- package/dist/components/form/src/form.vue.d.ts +1 -1
- package/dist/components/form/src/interface.d.ts +5 -20
- package/dist/components/form-item/index.d.ts +6 -6
- package/dist/components/form-item/src/form-item.vue.d.ts +4 -4
- package/dist/components/guid/index.d.ts +3 -3
- package/dist/components/guid/src/guid.vue.d.ts +2 -7
- package/dist/components/index.d.ts +7 -7
- package/dist/components/input-layer/index.d.ts +20 -20
- package/dist/components/input-layer/src/input-layer.vue.d.ts +20 -20
- package/dist/components/input-rows/index.d.ts +6 -6
- package/dist/components/input-rows/src/input-rows.vue.d.ts +4 -4
- package/dist/components/layer-form/index.d.ts +6 -6
- package/dist/components/layer-form/src/layer-form.vue.d.ts +4 -4
- package/dist/components/page/src/interface.d.ts +2 -9
- package/dist/components/table/index.d.ts +6 -6
- package/dist/components/table/src/interface.d.ts +85 -0
- package/dist/components/table/src/table.vue.d.ts +5 -79
- package/dist/components/table-panel/index.d.ts +22 -22
- package/dist/components/table-panel/src/column-panel.vue.d.ts +4 -4
- package/dist/components/table-panel/src/filter-panel.vue.d.ts +4 -4
- package/dist/components/table-panel/src/keyword-panel.vue.d.ts +4 -4
- package/dist/components/table-panel/src/order-panel.vue.d.ts +4 -4
- package/dist/components/table-panel/src/table-panel.vue.d.ts +20 -20
- package/dist/ui.css +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const JTablePanel: {
|
|
2
2
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
3
3
|
columns: {
|
|
4
|
-
type: import('vue').PropType<import('..').
|
|
4
|
+
type: import('vue').PropType<import('..').SchemaConfig[]>;
|
|
5
5
|
required: true;
|
|
6
6
|
default: () => never[];
|
|
7
7
|
};
|
|
@@ -77,7 +77,7 @@ declare const JTablePanel: {
|
|
|
77
77
|
}, import('vue').PublicProps, {
|
|
78
78
|
immediate: boolean;
|
|
79
79
|
buttons: import('..').ButtonCompType[];
|
|
80
|
-
columns: import('..').
|
|
80
|
+
columns: import('..').SchemaConfig[];
|
|
81
81
|
isTree: boolean;
|
|
82
82
|
isShowNumber: boolean;
|
|
83
83
|
isMultiple: boolean;
|
|
@@ -93,7 +93,7 @@ declare const JTablePanel: {
|
|
|
93
93
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
94
94
|
keywordPanelRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
95
95
|
columns: {
|
|
96
|
-
type: import('vue').PropType<import('..').
|
|
96
|
+
type: import('vue').PropType<import('..').SchemaConfig[]>;
|
|
97
97
|
default: () => never[];
|
|
98
98
|
};
|
|
99
99
|
checkAll: {
|
|
@@ -111,7 +111,7 @@ declare const JTablePanel: {
|
|
|
111
111
|
"update:checkAll": (value: boolean) => any;
|
|
112
112
|
"update:checkFields": (value: string[]) => any;
|
|
113
113
|
}, import('vue').PublicProps, {
|
|
114
|
-
columns: import('..').
|
|
114
|
+
columns: import('..').SchemaConfig[];
|
|
115
115
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
116
116
|
P: {};
|
|
117
117
|
B: {};
|
|
@@ -121,7 +121,7 @@ declare const JTablePanel: {
|
|
|
121
121
|
Defaults: {};
|
|
122
122
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
123
123
|
columns: {
|
|
124
|
-
type: import('vue').PropType<import('..').
|
|
124
|
+
type: import('vue').PropType<import('..').SchemaConfig[]>;
|
|
125
125
|
default: () => never[];
|
|
126
126
|
};
|
|
127
127
|
checkAll: {
|
|
@@ -136,11 +136,11 @@ declare const JTablePanel: {
|
|
|
136
136
|
}>, {
|
|
137
137
|
init: () => void;
|
|
138
138
|
}, {}, {}, {}, {
|
|
139
|
-
columns: import('..').
|
|
139
|
+
columns: import('..').SchemaConfig[];
|
|
140
140
|
}> | null;
|
|
141
141
|
filterPanelRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
142
142
|
columns: {
|
|
143
|
-
type: import('vue').PropType<import('..').
|
|
143
|
+
type: import('vue').PropType<import('..').SchemaConfig[]>;
|
|
144
144
|
default: () => never[];
|
|
145
145
|
};
|
|
146
146
|
searchFieldList: {
|
|
@@ -166,7 +166,7 @@ declare const JTablePanel: {
|
|
|
166
166
|
"update:relation": (value: string) => void;
|
|
167
167
|
"update:isPin": (value: boolean) => void;
|
|
168
168
|
}, import('vue').PublicProps, {
|
|
169
|
-
columns: import('..').
|
|
169
|
+
columns: import('..').SchemaConfig[];
|
|
170
170
|
searchFieldList: Record<string, any>[];
|
|
171
171
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
172
172
|
P: {};
|
|
@@ -177,7 +177,7 @@ declare const JTablePanel: {
|
|
|
177
177
|
Defaults: {};
|
|
178
178
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
179
179
|
columns: {
|
|
180
|
-
type: import('vue').PropType<import('..').
|
|
180
|
+
type: import('vue').PropType<import('..').SchemaConfig[]>;
|
|
181
181
|
default: () => never[];
|
|
182
182
|
};
|
|
183
183
|
searchFieldList: {
|
|
@@ -198,12 +198,12 @@ declare const JTablePanel: {
|
|
|
198
198
|
}>, {
|
|
199
199
|
getSearchFields: () => Record<string, any>[];
|
|
200
200
|
}, {}, {}, {}, {
|
|
201
|
-
columns: import('..').
|
|
201
|
+
columns: import('..').SchemaConfig[];
|
|
202
202
|
searchFieldList: Record<string, any>[];
|
|
203
203
|
}> | null;
|
|
204
204
|
orderPanelRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
205
205
|
columns: {
|
|
206
|
-
type: import('vue').PropType<import('..').
|
|
206
|
+
type: import('vue').PropType<import('..').SchemaConfig[]>;
|
|
207
207
|
default: () => never[];
|
|
208
208
|
};
|
|
209
209
|
}>> & Readonly<{
|
|
@@ -215,7 +215,7 @@ declare const JTablePanel: {
|
|
|
215
215
|
clear: (...args: any[]) => void;
|
|
216
216
|
save: (...args: any[]) => void;
|
|
217
217
|
}, import('vue').PublicProps, {
|
|
218
|
-
columns: import('..').
|
|
218
|
+
columns: import('..').SchemaConfig[];
|
|
219
219
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
220
220
|
P: {};
|
|
221
221
|
B: {};
|
|
@@ -225,7 +225,7 @@ declare const JTablePanel: {
|
|
|
225
225
|
Defaults: {};
|
|
226
226
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
227
227
|
columns: {
|
|
228
|
-
type: import('vue').PropType<import('..').
|
|
228
|
+
type: import('vue').PropType<import('..').SchemaConfig[]>;
|
|
229
229
|
default: () => never[];
|
|
230
230
|
};
|
|
231
231
|
}>> & Readonly<{
|
|
@@ -234,11 +234,11 @@ declare const JTablePanel: {
|
|
|
234
234
|
}>, {
|
|
235
235
|
init: (data: Record<string, any>[]) => void;
|
|
236
236
|
}, {}, {}, {}, {
|
|
237
|
-
columns: import('..').
|
|
237
|
+
columns: import('..').SchemaConfig[];
|
|
238
238
|
}> | null;
|
|
239
239
|
columnPanelRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
240
240
|
columns: {
|
|
241
|
-
type: import('vue').PropType<import('..').
|
|
241
|
+
type: import('vue').PropType<import('..').SchemaConfig[]>;
|
|
242
242
|
default: () => never[];
|
|
243
243
|
};
|
|
244
244
|
columnConfig: {
|
|
@@ -251,7 +251,7 @@ declare const JTablePanel: {
|
|
|
251
251
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
252
252
|
save: (...args: any[]) => void;
|
|
253
253
|
}, import('vue').PublicProps, {
|
|
254
|
-
columns: import('..').
|
|
254
|
+
columns: import('..').SchemaConfig[];
|
|
255
255
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
256
256
|
treeRef: unknown;
|
|
257
257
|
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
@@ -263,7 +263,7 @@ declare const JTablePanel: {
|
|
|
263
263
|
Defaults: {};
|
|
264
264
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
265
265
|
columns: {
|
|
266
|
-
type: import('vue').PropType<import('..').
|
|
266
|
+
type: import('vue').PropType<import('..').SchemaConfig[]>;
|
|
267
267
|
default: () => never[];
|
|
268
268
|
};
|
|
269
269
|
columnConfig: {
|
|
@@ -274,7 +274,7 @@ declare const JTablePanel: {
|
|
|
274
274
|
}>, {
|
|
275
275
|
init: () => void;
|
|
276
276
|
}, {}, {}, {}, {
|
|
277
|
-
columns: import('..').
|
|
277
|
+
columns: import('..').SchemaConfig[];
|
|
278
278
|
}> | null;
|
|
279
279
|
tableRef: unknown;
|
|
280
280
|
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
@@ -286,7 +286,7 @@ declare const JTablePanel: {
|
|
|
286
286
|
Defaults: {};
|
|
287
287
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
288
288
|
columns: {
|
|
289
|
-
type: import('vue').PropType<import('..').
|
|
289
|
+
type: import('vue').PropType<import('..').SchemaConfig[]>;
|
|
290
290
|
required: true;
|
|
291
291
|
default: () => never[];
|
|
292
292
|
};
|
|
@@ -359,7 +359,7 @@ declare const JTablePanel: {
|
|
|
359
359
|
}, {}, {}, {}, {
|
|
360
360
|
immediate: boolean;
|
|
361
361
|
buttons: import('..').ButtonCompType[];
|
|
362
|
-
columns: import('..').
|
|
362
|
+
columns: import('..').SchemaConfig[];
|
|
363
363
|
isTree: boolean;
|
|
364
364
|
isShowNumber: boolean;
|
|
365
365
|
isMultiple: boolean;
|
|
@@ -378,7 +378,7 @@ declare const JTablePanel: {
|
|
|
378
378
|
__isSuspense?: never;
|
|
379
379
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
380
380
|
columns: {
|
|
381
|
-
type: import('vue').PropType<import('..').
|
|
381
|
+
type: import('vue').PropType<import('..').SchemaConfig[]>;
|
|
382
382
|
required: true;
|
|
383
383
|
default: () => never[];
|
|
384
384
|
};
|
|
@@ -454,7 +454,7 @@ declare const JTablePanel: {
|
|
|
454
454
|
}, string, {
|
|
455
455
|
immediate: boolean;
|
|
456
456
|
buttons: import('..').ButtonCompType[];
|
|
457
|
-
columns: import('..').
|
|
457
|
+
columns: import('..').SchemaConfig[];
|
|
458
458
|
isTree: boolean;
|
|
459
459
|
isShowNumber: boolean;
|
|
460
460
|
isMultiple: boolean;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SchemaConfig } from '../../comp/src/interface';
|
|
2
2
|
import { PropType } from 'vue';
|
|
3
3
|
export interface TreeNode {
|
|
4
4
|
id: string;
|
|
@@ -9,7 +9,7 @@ export interface TreeNode {
|
|
|
9
9
|
}
|
|
10
10
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
11
11
|
columns: {
|
|
12
|
-
type: PropType<
|
|
12
|
+
type: PropType<SchemaConfig[]>;
|
|
13
13
|
default: () => never[];
|
|
14
14
|
};
|
|
15
15
|
columnConfig: {
|
|
@@ -21,7 +21,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
21
21
|
save: (...args: any[]) => void;
|
|
22
22
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
23
23
|
columns: {
|
|
24
|
-
type: PropType<
|
|
24
|
+
type: PropType<SchemaConfig[]>;
|
|
25
25
|
default: () => never[];
|
|
26
26
|
};
|
|
27
27
|
columnConfig: {
|
|
@@ -30,7 +30,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
30
30
|
}>> & Readonly<{
|
|
31
31
|
onSave?: ((...args: any[]) => any) | undefined;
|
|
32
32
|
}>, {
|
|
33
|
-
columns:
|
|
33
|
+
columns: SchemaConfig[];
|
|
34
34
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
35
35
|
treeRef: unknown;
|
|
36
36
|
}, HTMLDivElement>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SchemaConfig } from '../../comp/src/interface';
|
|
2
2
|
import { PropType } from 'vue';
|
|
3
3
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
4
|
columns: {
|
|
5
|
-
type: PropType<
|
|
5
|
+
type: PropType<SchemaConfig[]>;
|
|
6
6
|
default: () => never[];
|
|
7
7
|
};
|
|
8
8
|
searchFieldList: {
|
|
@@ -24,7 +24,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
24
24
|
"update:isPin": (value: boolean) => void;
|
|
25
25
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
26
26
|
columns: {
|
|
27
|
-
type: PropType<
|
|
27
|
+
type: PropType<SchemaConfig[]>;
|
|
28
28
|
default: () => never[];
|
|
29
29
|
};
|
|
30
30
|
searchFieldList: {
|
|
@@ -43,7 +43,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
43
43
|
"onUpdate:relation"?: ((value: string) => any) | undefined;
|
|
44
44
|
"onUpdate:isPin"?: ((value: boolean) => any) | undefined;
|
|
45
45
|
}>, {
|
|
46
|
-
columns:
|
|
46
|
+
columns: SchemaConfig[];
|
|
47
47
|
searchFieldList: Record<string, any>[];
|
|
48
48
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
49
49
|
export default _default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SchemaConfig } from '../../comp/src/interface';
|
|
2
2
|
import { PropType } from 'vue';
|
|
3
3
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
4
|
columns: {
|
|
5
|
-
type: PropType<
|
|
5
|
+
type: PropType<SchemaConfig[]>;
|
|
6
6
|
default: () => never[];
|
|
7
7
|
};
|
|
8
8
|
checkAll: {
|
|
@@ -18,7 +18,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
18
18
|
"update:checkFields": (value: string[]) => any;
|
|
19
19
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
20
20
|
columns: {
|
|
21
|
-
type: PropType<
|
|
21
|
+
type: PropType<SchemaConfig[]>;
|
|
22
22
|
default: () => never[];
|
|
23
23
|
};
|
|
24
24
|
checkAll: {
|
|
@@ -31,6 +31,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
31
31
|
"onUpdate:checkAll"?: ((value: boolean) => any) | undefined;
|
|
32
32
|
"onUpdate:checkFields"?: ((value: string[]) => any) | undefined;
|
|
33
33
|
}>, {
|
|
34
|
-
columns:
|
|
34
|
+
columns: SchemaConfig[];
|
|
35
35
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
36
36
|
export default _default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SchemaConfig } from '../../comp/src/interface';
|
|
2
2
|
import { PropType } from 'vue';
|
|
3
3
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
4
|
columns: {
|
|
5
|
-
type: PropType<
|
|
5
|
+
type: PropType<SchemaConfig[]>;
|
|
6
6
|
default: () => never[];
|
|
7
7
|
};
|
|
8
8
|
}>, {
|
|
@@ -12,13 +12,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
12
12
|
save: (...args: any[]) => void;
|
|
13
13
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
14
14
|
columns: {
|
|
15
|
-
type: PropType<
|
|
15
|
+
type: PropType<SchemaConfig[]>;
|
|
16
16
|
default: () => never[];
|
|
17
17
|
};
|
|
18
18
|
}>> & Readonly<{
|
|
19
19
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
20
20
|
onSave?: ((...args: any[]) => any) | undefined;
|
|
21
21
|
}>, {
|
|
22
|
-
columns:
|
|
22
|
+
columns: SchemaConfig[];
|
|
23
23
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
24
24
|
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ButtonCompType } from '../../buttons/src/interface';
|
|
2
|
-
import {
|
|
2
|
+
import { SchemaConfig } from '../../comp/src/interface';
|
|
3
3
|
import { PropType } from 'vue';
|
|
4
4
|
import { TreeNode } from './column-panel.vue';
|
|
5
5
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -7,7 +7,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
7
7
|
* @zh 表格列配置
|
|
8
8
|
*/
|
|
9
9
|
columns: {
|
|
10
|
-
type: PropType<
|
|
10
|
+
type: PropType<SchemaConfig[]>;
|
|
11
11
|
required: true;
|
|
12
12
|
default: () => never[];
|
|
13
13
|
};
|
|
@@ -133,7 +133,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
133
133
|
* @zh 表格列配置
|
|
134
134
|
*/
|
|
135
135
|
columns: {
|
|
136
|
-
type: PropType<
|
|
136
|
+
type: PropType<SchemaConfig[]>;
|
|
137
137
|
required: true;
|
|
138
138
|
default: () => never[];
|
|
139
139
|
};
|
|
@@ -250,7 +250,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
250
250
|
}>, {
|
|
251
251
|
immediate: boolean;
|
|
252
252
|
buttons: ButtonCompType[];
|
|
253
|
-
columns:
|
|
253
|
+
columns: SchemaConfig[];
|
|
254
254
|
isTree: boolean;
|
|
255
255
|
isShowNumber: boolean;
|
|
256
256
|
isMultiple: boolean;
|
|
@@ -266,7 +266,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
266
266
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
267
267
|
keywordPanelRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
268
268
|
columns: {
|
|
269
|
-
type: PropType<
|
|
269
|
+
type: PropType<SchemaConfig[]>;
|
|
270
270
|
default: () => never[];
|
|
271
271
|
};
|
|
272
272
|
checkAll: {
|
|
@@ -284,7 +284,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
284
284
|
"update:checkAll": (value: boolean) => any;
|
|
285
285
|
"update:checkFields": (value: string[]) => any;
|
|
286
286
|
}, import('vue').PublicProps, {
|
|
287
|
-
columns:
|
|
287
|
+
columns: SchemaConfig[];
|
|
288
288
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
289
289
|
P: {};
|
|
290
290
|
B: {};
|
|
@@ -294,7 +294,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
294
294
|
Defaults: {};
|
|
295
295
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
296
296
|
columns: {
|
|
297
|
-
type: PropType<
|
|
297
|
+
type: PropType<SchemaConfig[]>;
|
|
298
298
|
default: () => never[];
|
|
299
299
|
};
|
|
300
300
|
checkAll: {
|
|
@@ -309,11 +309,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
309
309
|
}>, {
|
|
310
310
|
init: () => void;
|
|
311
311
|
}, {}, {}, {}, {
|
|
312
|
-
columns:
|
|
312
|
+
columns: SchemaConfig[];
|
|
313
313
|
}> | null;
|
|
314
314
|
filterPanelRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
315
315
|
columns: {
|
|
316
|
-
type: PropType<
|
|
316
|
+
type: PropType<SchemaConfig[]>;
|
|
317
317
|
default: () => never[];
|
|
318
318
|
};
|
|
319
319
|
searchFieldList: {
|
|
@@ -339,7 +339,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
339
339
|
"update:relation": (value: string) => void;
|
|
340
340
|
"update:isPin": (value: boolean) => void;
|
|
341
341
|
}, import('vue').PublicProps, {
|
|
342
|
-
columns:
|
|
342
|
+
columns: SchemaConfig[];
|
|
343
343
|
searchFieldList: Record<string, any>[];
|
|
344
344
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
345
345
|
P: {};
|
|
@@ -350,7 +350,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
350
350
|
Defaults: {};
|
|
351
351
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
352
352
|
columns: {
|
|
353
|
-
type: PropType<
|
|
353
|
+
type: PropType<SchemaConfig[]>;
|
|
354
354
|
default: () => never[];
|
|
355
355
|
};
|
|
356
356
|
searchFieldList: {
|
|
@@ -371,12 +371,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
371
371
|
}>, {
|
|
372
372
|
getSearchFields: () => Record<string, any>[];
|
|
373
373
|
}, {}, {}, {}, {
|
|
374
|
-
columns:
|
|
374
|
+
columns: SchemaConfig[];
|
|
375
375
|
searchFieldList: Record<string, any>[];
|
|
376
376
|
}> | null;
|
|
377
377
|
orderPanelRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
378
378
|
columns: {
|
|
379
|
-
type: PropType<
|
|
379
|
+
type: PropType<SchemaConfig[]>;
|
|
380
380
|
default: () => never[];
|
|
381
381
|
};
|
|
382
382
|
}>> & Readonly<{
|
|
@@ -388,7 +388,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
388
388
|
clear: (...args: any[]) => void;
|
|
389
389
|
save: (...args: any[]) => void;
|
|
390
390
|
}, import('vue').PublicProps, {
|
|
391
|
-
columns:
|
|
391
|
+
columns: SchemaConfig[];
|
|
392
392
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
393
393
|
P: {};
|
|
394
394
|
B: {};
|
|
@@ -398,7 +398,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
398
398
|
Defaults: {};
|
|
399
399
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
400
400
|
columns: {
|
|
401
|
-
type: PropType<
|
|
401
|
+
type: PropType<SchemaConfig[]>;
|
|
402
402
|
default: () => never[];
|
|
403
403
|
};
|
|
404
404
|
}>> & Readonly<{
|
|
@@ -407,11 +407,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
407
407
|
}>, {
|
|
408
408
|
init: (data: Record<string, any>[]) => void;
|
|
409
409
|
}, {}, {}, {}, {
|
|
410
|
-
columns:
|
|
410
|
+
columns: SchemaConfig[];
|
|
411
411
|
}> | null;
|
|
412
412
|
columnPanelRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
413
413
|
columns: {
|
|
414
|
-
type: PropType<
|
|
414
|
+
type: PropType<SchemaConfig[]>;
|
|
415
415
|
default: () => never[];
|
|
416
416
|
};
|
|
417
417
|
columnConfig: {
|
|
@@ -424,7 +424,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
424
424
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
425
425
|
save: (...args: any[]) => void;
|
|
426
426
|
}, import('vue').PublicProps, {
|
|
427
|
-
columns:
|
|
427
|
+
columns: SchemaConfig[];
|
|
428
428
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
429
429
|
treeRef: unknown;
|
|
430
430
|
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
@@ -436,7 +436,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
436
436
|
Defaults: {};
|
|
437
437
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
438
438
|
columns: {
|
|
439
|
-
type: PropType<
|
|
439
|
+
type: PropType<SchemaConfig[]>;
|
|
440
440
|
default: () => never[];
|
|
441
441
|
};
|
|
442
442
|
columnConfig: {
|
|
@@ -447,7 +447,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
447
447
|
}>, {
|
|
448
448
|
init: () => void;
|
|
449
449
|
}, {}, {}, {}, {
|
|
450
|
-
columns:
|
|
450
|
+
columns: SchemaConfig[];
|
|
451
451
|
}> | null;
|
|
452
452
|
tableRef: unknown;
|
|
453
453
|
}, HTMLDivElement>;
|