orion-design 0.1.56 → 0.1.58
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +5 -5
- package/dist/Throne/hooks/use-throne-context.js.map +1 -1
- package/dist/components/Button/index.d.ts +41 -2
- package/dist/components/Card/index.d.ts +3 -1
- package/dist/components/Form/FileInput/FileInput.vue.d.ts +98 -1
- package/dist/components/Form/Form.vue.d.ts +70 -2
- package/dist/components/Form/LovInput/LovInput.vue.d.ts +278 -4
- package/dist/components/Form/TableSelect/TableSelect.vue.d.ts +278 -4
- package/dist/components/Form/index.d.ts +38 -2
- package/dist/components/LovTable/LovPagetable.vue.d.ts +154 -2
- package/dist/components/LovTable/LovQuerytable.vue.d.ts +98 -2
- package/dist/components/LovTable/index.d.ts +139 -4
- package/dist/components/TableSelectPagetable/TableSelectPagetable.vue.d.ts +154 -2
- package/dist/components/TableSelectPagetable/index.d.ts +82 -2
- package/dist/components/Tabs/index.js +1 -1
- package/dist/components/Tree/Tree.vue.d.ts +160 -2
- package/dist/components/Tree/index.d.ts +84 -2
- package/dist/components/_util/dom/element.js +1 -1
- package/dist/components/_util/dom/style.js +1 -1
- package/dist/components/_util/error.js +1 -1
- package/dist/components/_util/functions.js +1 -1
- package/dist/components/_util/index.js +1 -1
- package/dist/components/_util/objects.js +1 -1
- package/dist/components/_util/strings.js +2 -2
- package/dist/components/_util/types.js +2 -2
- package/dist/components/_util/vue/install.js +1 -1
- package/dist/components/_util/vue/props/runtime.js +1 -1
- package/dist/components/_util/vue/refs.js +1 -1
- package/dist/components/_util/vue/vnode.js +1 -1
- package/dist/components-BZKLgLQx.js.map +1 -1
- package/dist/{functions-LOH6x_02.js → functions-DzLqXvGt.js} +2 -2
- package/dist/functions-DzLqXvGt.js.map +1 -0
- package/dist/request/error/ResponseError403.d.ts +6 -0
- package/dist/request/error/ResponseError403.js +10 -0
- package/dist/request/error/ResponseError403.js.map +1 -0
- package/dist/request/error/ResponseError404.d.ts +0 -1
- package/dist/request/error/ResponseError404.js.map +1 -1
- package/dist/request/error/ResponseErrorSessionException.d.ts +1 -1
- package/dist/request/error/ResponseErrorSessionException.js.map +1 -1
- package/dist/request/index.d.ts +1 -0
- package/dist/request/index.js +6 -4
- package/dist/request/index.js.map +1 -1
- package/dist/request/leaf7/Leaf7ErrorHandler.js +39 -36
- package/dist/request/leaf7/Leaf7ErrorHandler.js.map +1 -1
- package/dist/request/leaf7/index.d.ts +1 -0
- package/dist/request/leaf7/index.js.map +1 -1
- package/dist/utils/functions.js +1 -1
- package/dist/version/version.d.ts +1 -1
- package/dist/version/version.js +1 -1
- package/dist/version/version.js.map +1 -1
- package/package.json +1 -1
- package/dist/functions-LOH6x_02.js.map +0 -1
@@ -51,7 +51,55 @@ declare function __VLS_template(): {
|
|
51
51
|
onRowDblclick?: ((...args: any[]) => any) | undefined;
|
52
52
|
onCellClick?: ((...args: any[]) => any) | undefined;
|
53
53
|
onCellDblclick?: ((...args: any[]) => any) | undefined;
|
54
|
-
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("selectionChange" | "currentRowChange" | "rowClick" | "rowDblclick" | "cellClick" | "cellDblclick")[], import('vue').
|
54
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("selectionChange" | "currentRowChange" | "rowClick" | "rowDblclick" | "cellClick" | "cellDblclick")[], import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
55
|
+
data: ArrayConstructor;
|
56
|
+
showRowNumber: {
|
57
|
+
type: BooleanConstructor;
|
58
|
+
default: boolean;
|
59
|
+
};
|
60
|
+
selectionMode: {
|
61
|
+
type: BooleanConstructor;
|
62
|
+
default: boolean;
|
63
|
+
};
|
64
|
+
currentRowMode: {
|
65
|
+
type: BooleanConstructor;
|
66
|
+
default: boolean;
|
67
|
+
};
|
68
|
+
size: import('vue').PropType<"" | "large" | "default" | "small">;
|
69
|
+
rowClassName: import('vue').PropType<string | ((data: {
|
70
|
+
rowData: any;
|
71
|
+
rowIndex: number;
|
72
|
+
}) => string)>;
|
73
|
+
rowStyle: import('vue').PropType<import('vue').CSSProperties | ((data: {
|
74
|
+
rowData: any;
|
75
|
+
rowIndex: number;
|
76
|
+
}) => import('vue').CSSProperties)>;
|
77
|
+
cellClassName: import('vue').PropType<string | ((data: {
|
78
|
+
rowData: any;
|
79
|
+
column: {
|
80
|
+
name: string;
|
81
|
+
head: string;
|
82
|
+
};
|
83
|
+
rowIndex: number;
|
84
|
+
columnIndex: number;
|
85
|
+
}) => string)>;
|
86
|
+
cellStyle: import('vue').PropType<import('vue').CSSProperties | ((data: {
|
87
|
+
rowData: any;
|
88
|
+
column: {
|
89
|
+
name: string;
|
90
|
+
head: string;
|
91
|
+
};
|
92
|
+
rowIndex: number;
|
93
|
+
columnIndex: number;
|
94
|
+
}) => import('vue').CSSProperties)>;
|
95
|
+
}>> & Readonly<{
|
96
|
+
onSelectionChange?: ((...args: any[]) => any) | undefined;
|
97
|
+
onCurrentRowChange?: ((...args: any[]) => any) | undefined;
|
98
|
+
onRowClick?: ((...args: any[]) => any) | undefined;
|
99
|
+
onRowDblclick?: ((...args: any[]) => any) | undefined;
|
100
|
+
onCellClick?: ((...args: any[]) => any) | undefined;
|
101
|
+
onCellDblclick?: ((...args: any[]) => any) | undefined;
|
102
|
+
}>, {
|
55
103
|
showRowNumber: boolean;
|
56
104
|
selectionMode: boolean;
|
57
105
|
currentRowMode: boolean;
|
@@ -172,7 +220,55 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
172
220
|
onRowDblclick?: ((...args: any[]) => any) | undefined;
|
173
221
|
onCellClick?: ((...args: any[]) => any) | undefined;
|
174
222
|
onCellDblclick?: ((...args: any[]) => any) | undefined;
|
175
|
-
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("selectionChange" | "currentRowChange" | "rowClick" | "rowDblclick" | "cellClick" | "cellDblclick")[], import('vue').
|
223
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("selectionChange" | "currentRowChange" | "rowClick" | "rowDblclick" | "cellClick" | "cellDblclick")[], import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
224
|
+
data: ArrayConstructor;
|
225
|
+
showRowNumber: {
|
226
|
+
type: BooleanConstructor;
|
227
|
+
default: boolean;
|
228
|
+
};
|
229
|
+
selectionMode: {
|
230
|
+
type: BooleanConstructor;
|
231
|
+
default: boolean;
|
232
|
+
};
|
233
|
+
currentRowMode: {
|
234
|
+
type: BooleanConstructor;
|
235
|
+
default: boolean;
|
236
|
+
};
|
237
|
+
size: import('vue').PropType<"" | "large" | "default" | "small">;
|
238
|
+
rowClassName: import('vue').PropType<string | ((data: {
|
239
|
+
rowData: any;
|
240
|
+
rowIndex: number;
|
241
|
+
}) => string)>;
|
242
|
+
rowStyle: import('vue').PropType<import('vue').CSSProperties | ((data: {
|
243
|
+
rowData: any;
|
244
|
+
rowIndex: number;
|
245
|
+
}) => import('vue').CSSProperties)>;
|
246
|
+
cellClassName: import('vue').PropType<string | ((data: {
|
247
|
+
rowData: any;
|
248
|
+
column: {
|
249
|
+
name: string;
|
250
|
+
head: string;
|
251
|
+
};
|
252
|
+
rowIndex: number;
|
253
|
+
columnIndex: number;
|
254
|
+
}) => string)>;
|
255
|
+
cellStyle: import('vue').PropType<import('vue').CSSProperties | ((data: {
|
256
|
+
rowData: any;
|
257
|
+
column: {
|
258
|
+
name: string;
|
259
|
+
head: string;
|
260
|
+
};
|
261
|
+
rowIndex: number;
|
262
|
+
columnIndex: number;
|
263
|
+
}) => import('vue').CSSProperties)>;
|
264
|
+
}>> & Readonly<{
|
265
|
+
onSelectionChange?: ((...args: any[]) => any) | undefined;
|
266
|
+
onCurrentRowChange?: ((...args: any[]) => any) | undefined;
|
267
|
+
onRowClick?: ((...args: any[]) => any) | undefined;
|
268
|
+
onRowDblclick?: ((...args: any[]) => any) | undefined;
|
269
|
+
onCellClick?: ((...args: any[]) => any) | undefined;
|
270
|
+
onCellDblclick?: ((...args: any[]) => any) | undefined;
|
271
|
+
}>, {
|
176
272
|
showRowNumber: boolean;
|
177
273
|
selectionMode: boolean;
|
178
274
|
currentRowMode: boolean;
|
@@ -1,7 +1,9 @@
|
|
1
1
|
export declare const LovQuerytable: import('../_util').SFCWithInstall<{
|
2
2
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
3
3
|
data: any[];
|
4
|
-
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').
|
4
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<{
|
5
|
+
data: any[];
|
6
|
+
}> & Readonly<{}>, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
5
7
|
table: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
6
8
|
data: ArrayConstructor;
|
7
9
|
showRowNumber: {
|
@@ -50,7 +52,55 @@ export declare const LovQuerytable: import('../_util').SFCWithInstall<{
|
|
50
52
|
onRowDblclick?: ((...args: any[]) => any) | undefined;
|
51
53
|
onCellClick?: ((...args: any[]) => any) | undefined;
|
52
54
|
onCellDblclick?: ((...args: any[]) => any) | undefined;
|
53
|
-
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("selectionChange" | "currentRowChange" | "rowClick" | "rowDblclick" | "cellClick" | "cellDblclick")[], import('vue').
|
55
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("selectionChange" | "currentRowChange" | "rowClick" | "rowDblclick" | "cellClick" | "cellDblclick")[], import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
56
|
+
data: ArrayConstructor;
|
57
|
+
showRowNumber: {
|
58
|
+
type: BooleanConstructor;
|
59
|
+
default: boolean;
|
60
|
+
};
|
61
|
+
selectionMode: {
|
62
|
+
type: BooleanConstructor;
|
63
|
+
default: boolean;
|
64
|
+
};
|
65
|
+
currentRowMode: {
|
66
|
+
type: BooleanConstructor;
|
67
|
+
default: boolean;
|
68
|
+
};
|
69
|
+
size: import('vue').PropType<"" | "large" | "default" | "small">;
|
70
|
+
rowClassName: import('vue').PropType<string | ((data: {
|
71
|
+
rowData: any;
|
72
|
+
rowIndex: number;
|
73
|
+
}) => string)>;
|
74
|
+
rowStyle: import('vue').PropType<import('vue').CSSProperties | ((data: {
|
75
|
+
rowData: any;
|
76
|
+
rowIndex: number;
|
77
|
+
}) => import('vue').CSSProperties)>;
|
78
|
+
cellClassName: import('vue').PropType<string | ((data: {
|
79
|
+
rowData: any;
|
80
|
+
column: {
|
81
|
+
name: string;
|
82
|
+
head: string;
|
83
|
+
};
|
84
|
+
rowIndex: number;
|
85
|
+
columnIndex: number;
|
86
|
+
}) => string)>;
|
87
|
+
cellStyle: import('vue').PropType<import('vue').CSSProperties | ((data: {
|
88
|
+
rowData: any;
|
89
|
+
column: {
|
90
|
+
name: string;
|
91
|
+
head: string;
|
92
|
+
};
|
93
|
+
rowIndex: number;
|
94
|
+
columnIndex: number;
|
95
|
+
}) => import('vue').CSSProperties)>;
|
96
|
+
}>> & Readonly<{
|
97
|
+
onSelectionChange?: ((...args: any[]) => any) | undefined;
|
98
|
+
onCurrentRowChange?: ((...args: any[]) => any) | undefined;
|
99
|
+
onRowClick?: ((...args: any[]) => any) | undefined;
|
100
|
+
onRowDblclick?: ((...args: any[]) => any) | undefined;
|
101
|
+
onCellClick?: ((...args: any[]) => any) | undefined;
|
102
|
+
onCellDblclick?: ((...args: any[]) => any) | undefined;
|
103
|
+
}>, {
|
54
104
|
showRowNumber: boolean;
|
55
105
|
selectionMode: boolean;
|
56
106
|
currentRowMode: boolean;
|
@@ -146,7 +196,16 @@ export declare const LovPagetable: import('../_util').SFCWithInstall<{
|
|
146
196
|
"onUpdate:pagination"?: ((...args: any[]) => any) | undefined;
|
147
197
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
148
198
|
"update:pagination": (...args: any[]) => void;
|
149
|
-
}, import('vue').
|
199
|
+
}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<{
|
200
|
+
data: any[];
|
201
|
+
pagination: {
|
202
|
+
currentPage?: number;
|
203
|
+
pageSize?: number;
|
204
|
+
total?: number;
|
205
|
+
};
|
206
|
+
}> & Readonly<{
|
207
|
+
"onUpdate:pagination"?: ((...args: any[]) => any) | undefined;
|
208
|
+
}>, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
150
209
|
table: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
151
210
|
data: ArrayConstructor;
|
152
211
|
tailData: ObjectConstructor;
|
@@ -223,7 +282,83 @@ export declare const LovPagetable: import('../_util').SFCWithInstall<{
|
|
223
282
|
onRowDblclick?: ((...args: any[]) => any) | undefined;
|
224
283
|
onCellClick?: ((...args: any[]) => any) | undefined;
|
225
284
|
onCellDblclick?: ((...args: any[]) => any) | undefined;
|
226
|
-
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("select" | "select-all" | "selectionChange" | "currentRowChange" | "update:pagination" | "paginationChange" | "rowClick" | "rowDblclick" | "cellClick" | "cellDblclick")[], import('vue').
|
285
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("select" | "select-all" | "selectionChange" | "currentRowChange" | "update:pagination" | "paginationChange" | "rowClick" | "rowDblclick" | "cellClick" | "cellDblclick")[], import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
286
|
+
data: ArrayConstructor;
|
287
|
+
tailData: ObjectConstructor;
|
288
|
+
pagination: import('vue').PropType<{
|
289
|
+
currentPage?: number;
|
290
|
+
pageSize?: number;
|
291
|
+
pageSizes?: number[];
|
292
|
+
total?: number;
|
293
|
+
}>;
|
294
|
+
paginationTeleported: {
|
295
|
+
type: BooleanConstructor;
|
296
|
+
default: boolean;
|
297
|
+
};
|
298
|
+
paginationPagerCount: NumberConstructor;
|
299
|
+
paginationShowTotal: {
|
300
|
+
type: BooleanConstructor;
|
301
|
+
default: boolean;
|
302
|
+
};
|
303
|
+
paginationShowSizes: {
|
304
|
+
type: BooleanConstructor;
|
305
|
+
default: boolean;
|
306
|
+
};
|
307
|
+
paginationShowJumber: {
|
308
|
+
type: BooleanConstructor;
|
309
|
+
default: boolean;
|
310
|
+
};
|
311
|
+
showRowNumber: {
|
312
|
+
type: BooleanConstructor;
|
313
|
+
default: boolean;
|
314
|
+
};
|
315
|
+
selectionMode: {
|
316
|
+
type: BooleanConstructor;
|
317
|
+
default: boolean;
|
318
|
+
};
|
319
|
+
currentRowMode: {
|
320
|
+
type: BooleanConstructor;
|
321
|
+
default: boolean;
|
322
|
+
};
|
323
|
+
size: import('vue').PropType<"" | "large" | "default" | "small">;
|
324
|
+
rowClassName: import('vue').PropType<string | ((data: {
|
325
|
+
rowData: any;
|
326
|
+
rowIndex: number;
|
327
|
+
}) => string)>;
|
328
|
+
rowStyle: import('vue').PropType<import('vue').CSSProperties | ((data: {
|
329
|
+
rowData: any;
|
330
|
+
rowIndex: number;
|
331
|
+
}) => import('vue').CSSProperties)>;
|
332
|
+
cellClassName: import('vue').PropType<string | ((data: {
|
333
|
+
rowData: any;
|
334
|
+
column: {
|
335
|
+
name: string;
|
336
|
+
head: string;
|
337
|
+
};
|
338
|
+
rowIndex: number;
|
339
|
+
columnIndex: number;
|
340
|
+
}) => string)>;
|
341
|
+
cellStyle: import('vue').PropType<import('vue').CSSProperties | ((data: {
|
342
|
+
rowData: any;
|
343
|
+
column: {
|
344
|
+
name: string;
|
345
|
+
head: string;
|
346
|
+
};
|
347
|
+
rowIndex: number;
|
348
|
+
columnIndex: number;
|
349
|
+
}) => import('vue').CSSProperties)>;
|
350
|
+
}>> & Readonly<{
|
351
|
+
onSelect?: ((...args: any[]) => any) | undefined;
|
352
|
+
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
353
|
+
onSelectionChange?: ((...args: any[]) => any) | undefined;
|
354
|
+
onCurrentRowChange?: ((...args: any[]) => any) | undefined;
|
355
|
+
"onUpdate:pagination"?: ((...args: any[]) => any) | undefined;
|
356
|
+
onPaginationChange?: ((...args: any[]) => any) | undefined;
|
357
|
+
onRowClick?: ((...args: any[]) => any) | undefined;
|
358
|
+
onRowDblclick?: ((...args: any[]) => any) | undefined;
|
359
|
+
onCellClick?: ((...args: any[]) => any) | undefined;
|
360
|
+
onCellDblclick?: ((...args: any[]) => any) | undefined;
|
361
|
+
}>, {
|
227
362
|
paginationTeleported: boolean;
|
228
363
|
paginationShowTotal: boolean;
|
229
364
|
paginationShowSizes: boolean;
|
@@ -80,7 +80,83 @@ declare function __VLS_template(): {
|
|
80
80
|
onRowDblclick?: ((...args: any[]) => any) | undefined;
|
81
81
|
onCellClick?: ((...args: any[]) => any) | undefined;
|
82
82
|
onCellDblclick?: ((...args: any[]) => any) | undefined;
|
83
|
-
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("select" | "select-all" | "selectionChange" | "currentRowChange" | "update:pagination" | "paginationChange" | "rowClick" | "rowDblclick" | "cellClick" | "cellDblclick")[], import('vue').
|
83
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("select" | "select-all" | "selectionChange" | "currentRowChange" | "update:pagination" | "paginationChange" | "rowClick" | "rowDblclick" | "cellClick" | "cellDblclick")[], import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
84
|
+
data: ArrayConstructor;
|
85
|
+
tailData: ObjectConstructor;
|
86
|
+
pagination: import('vue').PropType<{
|
87
|
+
currentPage?: number;
|
88
|
+
pageSize?: number;
|
89
|
+
pageSizes?: number[];
|
90
|
+
total?: number;
|
91
|
+
}>;
|
92
|
+
paginationTeleported: {
|
93
|
+
type: BooleanConstructor;
|
94
|
+
default: boolean;
|
95
|
+
};
|
96
|
+
paginationPagerCount: NumberConstructor;
|
97
|
+
paginationShowTotal: {
|
98
|
+
type: BooleanConstructor;
|
99
|
+
default: boolean;
|
100
|
+
};
|
101
|
+
paginationShowSizes: {
|
102
|
+
type: BooleanConstructor;
|
103
|
+
default: boolean;
|
104
|
+
};
|
105
|
+
paginationShowJumber: {
|
106
|
+
type: BooleanConstructor;
|
107
|
+
default: boolean;
|
108
|
+
};
|
109
|
+
showRowNumber: {
|
110
|
+
type: BooleanConstructor;
|
111
|
+
default: boolean;
|
112
|
+
};
|
113
|
+
selectionMode: {
|
114
|
+
type: BooleanConstructor;
|
115
|
+
default: boolean;
|
116
|
+
};
|
117
|
+
currentRowMode: {
|
118
|
+
type: BooleanConstructor;
|
119
|
+
default: boolean;
|
120
|
+
};
|
121
|
+
size: import('vue').PropType<"" | "large" | "default" | "small">;
|
122
|
+
rowClassName: import('vue').PropType<string | ((data: {
|
123
|
+
rowData: any;
|
124
|
+
rowIndex: number;
|
125
|
+
}) => string)>;
|
126
|
+
rowStyle: import('vue').PropType<import('vue').CSSProperties | ((data: {
|
127
|
+
rowData: any;
|
128
|
+
rowIndex: number;
|
129
|
+
}) => import('vue').CSSProperties)>;
|
130
|
+
cellClassName: import('vue').PropType<string | ((data: {
|
131
|
+
rowData: any;
|
132
|
+
column: {
|
133
|
+
name: string;
|
134
|
+
head: string;
|
135
|
+
};
|
136
|
+
rowIndex: number;
|
137
|
+
columnIndex: number;
|
138
|
+
}) => string)>;
|
139
|
+
cellStyle: import('vue').PropType<import('vue').CSSProperties | ((data: {
|
140
|
+
rowData: any;
|
141
|
+
column: {
|
142
|
+
name: string;
|
143
|
+
head: string;
|
144
|
+
};
|
145
|
+
rowIndex: number;
|
146
|
+
columnIndex: number;
|
147
|
+
}) => import('vue').CSSProperties)>;
|
148
|
+
}>> & Readonly<{
|
149
|
+
onSelect?: ((...args: any[]) => any) | undefined;
|
150
|
+
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
151
|
+
onSelectionChange?: ((...args: any[]) => any) | undefined;
|
152
|
+
onCurrentRowChange?: ((...args: any[]) => any) | undefined;
|
153
|
+
"onUpdate:pagination"?: ((...args: any[]) => any) | undefined;
|
154
|
+
onPaginationChange?: ((...args: any[]) => any) | undefined;
|
155
|
+
onRowClick?: ((...args: any[]) => any) | undefined;
|
156
|
+
onRowDblclick?: ((...args: any[]) => any) | undefined;
|
157
|
+
onCellClick?: ((...args: any[]) => any) | undefined;
|
158
|
+
onCellDblclick?: ((...args: any[]) => any) | undefined;
|
159
|
+
}>, {
|
84
160
|
paginationTeleported: boolean;
|
85
161
|
paginationShowTotal: boolean;
|
86
162
|
paginationShowSizes: boolean;
|
@@ -270,7 +346,83 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
270
346
|
onRowDblclick?: ((...args: any[]) => any) | undefined;
|
271
347
|
onCellClick?: ((...args: any[]) => any) | undefined;
|
272
348
|
onCellDblclick?: ((...args: any[]) => any) | undefined;
|
273
|
-
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("select" | "select-all" | "selectionChange" | "currentRowChange" | "update:pagination" | "paginationChange" | "rowClick" | "rowDblclick" | "cellClick" | "cellDblclick")[], import('vue').
|
349
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("select" | "select-all" | "selectionChange" | "currentRowChange" | "update:pagination" | "paginationChange" | "rowClick" | "rowDblclick" | "cellClick" | "cellDblclick")[], import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
350
|
+
data: ArrayConstructor;
|
351
|
+
tailData: ObjectConstructor;
|
352
|
+
pagination: import('vue').PropType<{
|
353
|
+
currentPage?: number;
|
354
|
+
pageSize?: number;
|
355
|
+
pageSizes?: number[];
|
356
|
+
total?: number;
|
357
|
+
}>;
|
358
|
+
paginationTeleported: {
|
359
|
+
type: BooleanConstructor;
|
360
|
+
default: boolean;
|
361
|
+
};
|
362
|
+
paginationPagerCount: NumberConstructor;
|
363
|
+
paginationShowTotal: {
|
364
|
+
type: BooleanConstructor;
|
365
|
+
default: boolean;
|
366
|
+
};
|
367
|
+
paginationShowSizes: {
|
368
|
+
type: BooleanConstructor;
|
369
|
+
default: boolean;
|
370
|
+
};
|
371
|
+
paginationShowJumber: {
|
372
|
+
type: BooleanConstructor;
|
373
|
+
default: boolean;
|
374
|
+
};
|
375
|
+
showRowNumber: {
|
376
|
+
type: BooleanConstructor;
|
377
|
+
default: boolean;
|
378
|
+
};
|
379
|
+
selectionMode: {
|
380
|
+
type: BooleanConstructor;
|
381
|
+
default: boolean;
|
382
|
+
};
|
383
|
+
currentRowMode: {
|
384
|
+
type: BooleanConstructor;
|
385
|
+
default: boolean;
|
386
|
+
};
|
387
|
+
size: import('vue').PropType<"" | "large" | "default" | "small">;
|
388
|
+
rowClassName: import('vue').PropType<string | ((data: {
|
389
|
+
rowData: any;
|
390
|
+
rowIndex: number;
|
391
|
+
}) => string)>;
|
392
|
+
rowStyle: import('vue').PropType<import('vue').CSSProperties | ((data: {
|
393
|
+
rowData: any;
|
394
|
+
rowIndex: number;
|
395
|
+
}) => import('vue').CSSProperties)>;
|
396
|
+
cellClassName: import('vue').PropType<string | ((data: {
|
397
|
+
rowData: any;
|
398
|
+
column: {
|
399
|
+
name: string;
|
400
|
+
head: string;
|
401
|
+
};
|
402
|
+
rowIndex: number;
|
403
|
+
columnIndex: number;
|
404
|
+
}) => string)>;
|
405
|
+
cellStyle: import('vue').PropType<import('vue').CSSProperties | ((data: {
|
406
|
+
rowData: any;
|
407
|
+
column: {
|
408
|
+
name: string;
|
409
|
+
head: string;
|
410
|
+
};
|
411
|
+
rowIndex: number;
|
412
|
+
columnIndex: number;
|
413
|
+
}) => import('vue').CSSProperties)>;
|
414
|
+
}>> & Readonly<{
|
415
|
+
onSelect?: ((...args: any[]) => any) | undefined;
|
416
|
+
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
417
|
+
onSelectionChange?: ((...args: any[]) => any) | undefined;
|
418
|
+
onCurrentRowChange?: ((...args: any[]) => any) | undefined;
|
419
|
+
"onUpdate:pagination"?: ((...args: any[]) => any) | undefined;
|
420
|
+
onPaginationChange?: ((...args: any[]) => any) | undefined;
|
421
|
+
onRowClick?: ((...args: any[]) => any) | undefined;
|
422
|
+
onRowDblclick?: ((...args: any[]) => any) | undefined;
|
423
|
+
onCellClick?: ((...args: any[]) => any) | undefined;
|
424
|
+
onCellDblclick?: ((...args: any[]) => any) | undefined;
|
425
|
+
}>, {
|
274
426
|
paginationTeleported: boolean;
|
275
427
|
paginationShowTotal: boolean;
|
276
428
|
paginationShowSizes: boolean;
|
@@ -3,7 +3,11 @@ declare const _default: import('../_util').SFCWithInstall<{
|
|
3
3
|
data: any[];
|
4
4
|
width: number | string;
|
5
5
|
height: number | string;
|
6
|
-
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').
|
6
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<{
|
7
|
+
data: any[];
|
8
|
+
width: number | string;
|
9
|
+
height: number | string;
|
10
|
+
}> & Readonly<{}>, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
7
11
|
div: HTMLDivElement;
|
8
12
|
table: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
9
13
|
data: ArrayConstructor;
|
@@ -81,7 +85,83 @@ declare const _default: import('../_util').SFCWithInstall<{
|
|
81
85
|
onRowDblclick?: ((...args: any[]) => any) | undefined;
|
82
86
|
onCellClick?: ((...args: any[]) => any) | undefined;
|
83
87
|
onCellDblclick?: ((...args: any[]) => any) | undefined;
|
84
|
-
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("select" | "select-all" | "selectionChange" | "currentRowChange" | "update:pagination" | "paginationChange" | "rowClick" | "rowDblclick" | "cellClick" | "cellDblclick")[], import('vue').
|
88
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("select" | "select-all" | "selectionChange" | "currentRowChange" | "update:pagination" | "paginationChange" | "rowClick" | "rowDblclick" | "cellClick" | "cellDblclick")[], import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
89
|
+
data: ArrayConstructor;
|
90
|
+
tailData: ObjectConstructor;
|
91
|
+
pagination: import('vue').PropType<{
|
92
|
+
currentPage?: number;
|
93
|
+
pageSize?: number;
|
94
|
+
pageSizes?: number[];
|
95
|
+
total?: number;
|
96
|
+
}>;
|
97
|
+
paginationTeleported: {
|
98
|
+
type: BooleanConstructor;
|
99
|
+
default: boolean;
|
100
|
+
};
|
101
|
+
paginationPagerCount: NumberConstructor;
|
102
|
+
paginationShowTotal: {
|
103
|
+
type: BooleanConstructor;
|
104
|
+
default: boolean;
|
105
|
+
};
|
106
|
+
paginationShowSizes: {
|
107
|
+
type: BooleanConstructor;
|
108
|
+
default: boolean;
|
109
|
+
};
|
110
|
+
paginationShowJumber: {
|
111
|
+
type: BooleanConstructor;
|
112
|
+
default: boolean;
|
113
|
+
};
|
114
|
+
showRowNumber: {
|
115
|
+
type: BooleanConstructor;
|
116
|
+
default: boolean;
|
117
|
+
};
|
118
|
+
selectionMode: {
|
119
|
+
type: BooleanConstructor;
|
120
|
+
default: boolean;
|
121
|
+
};
|
122
|
+
currentRowMode: {
|
123
|
+
type: BooleanConstructor;
|
124
|
+
default: boolean;
|
125
|
+
};
|
126
|
+
size: import('vue').PropType<"" | "large" | "default" | "small">;
|
127
|
+
rowClassName: import('vue').PropType<string | ((data: {
|
128
|
+
rowData: any;
|
129
|
+
rowIndex: number;
|
130
|
+
}) => string)>;
|
131
|
+
rowStyle: import('vue').PropType<import('vue').CSSProperties | ((data: {
|
132
|
+
rowData: any;
|
133
|
+
rowIndex: number;
|
134
|
+
}) => import('vue').CSSProperties)>;
|
135
|
+
cellClassName: import('vue').PropType<string | ((data: {
|
136
|
+
rowData: any;
|
137
|
+
column: {
|
138
|
+
name: string;
|
139
|
+
head: string;
|
140
|
+
};
|
141
|
+
rowIndex: number;
|
142
|
+
columnIndex: number;
|
143
|
+
}) => string)>;
|
144
|
+
cellStyle: import('vue').PropType<import('vue').CSSProperties | ((data: {
|
145
|
+
rowData: any;
|
146
|
+
column: {
|
147
|
+
name: string;
|
148
|
+
head: string;
|
149
|
+
};
|
150
|
+
rowIndex: number;
|
151
|
+
columnIndex: number;
|
152
|
+
}) => import('vue').CSSProperties)>;
|
153
|
+
}>> & Readonly<{
|
154
|
+
onSelect?: ((...args: any[]) => any) | undefined;
|
155
|
+
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
156
|
+
onSelectionChange?: ((...args: any[]) => any) | undefined;
|
157
|
+
onCurrentRowChange?: ((...args: any[]) => any) | undefined;
|
158
|
+
"onUpdate:pagination"?: ((...args: any[]) => any) | undefined;
|
159
|
+
onPaginationChange?: ((...args: any[]) => any) | undefined;
|
160
|
+
onRowClick?: ((...args: any[]) => any) | undefined;
|
161
|
+
onRowDblclick?: ((...args: any[]) => any) | undefined;
|
162
|
+
onCellClick?: ((...args: any[]) => any) | undefined;
|
163
|
+
onCellDblclick?: ((...args: any[]) => any) | undefined;
|
164
|
+
}>, {
|
85
165
|
paginationTeleported: boolean;
|
86
166
|
paginationShowTotal: boolean;
|
87
167
|
paginationShowSizes: boolean;
|
@@ -3,7 +3,7 @@ import { ref as h, watch as B, defineComponent as M, getCurrentInstance as D, in
|
|
3
3
|
import { withInstall as Be } from "../_util/vue/install.js";
|
4
4
|
import { ElIcon as J } from "element-plus";
|
5
5
|
import { isNumber as ke, isUndefined as ze } from "../_util/types.js";
|
6
|
-
import { e as Re } from "../../functions-
|
6
|
+
import { e as Re } from "../../functions-DzLqXvGt.js";
|
7
7
|
import { buildProps as be, definePropType as pe } from "../_util/vue/props/runtime.js";
|
8
8
|
import { UPDATE_MODEL_EVENT as me } from "../_constants/event.js";
|
9
9
|
import { useNamespace as V } from "../_hooks/use-namespace/index.js";
|