cosey 0.6.21 → 0.6.23
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/components/context-menu/content.d.ts +2 -12
- package/components/context-menu/content.js +0 -6
- package/components/context-menu/context-menu-item.js +6 -5
- package/components/context-menu/context-menu.js +6 -5
- package/components/field/components/checkbox-group/checkbox-group.vue.js +1 -2
- package/components/field/components/remote-select/remote-select.d.ts +2 -2
- package/components/field/field.api.d.ts +2 -2
- package/components/form/form-item.api.d.ts +2 -2
- package/components/form/form-item.vue.js +1 -1
- package/components/form/form.api.d.ts +1 -1
- package/components/form/form.d.ts +3 -3
- package/components/form/index.d.ts +7 -7
- package/components/form-dialog/form-dialog.d.ts +33 -3
- package/components/form-drawer/form-drawer.d.ts +34 -3
- package/components/form-drawer/form-drawer.vue.d.ts +71 -6
- package/components/form-drawer/index.d.ts +111 -9
- package/components/form-list/form-list.api.d.ts +2 -2
- package/components/form-list/form-list.vue.js +1 -1
- package/components/form-list/index.d.ts +1 -1
- package/components/form-query/form-query.api.d.ts +1 -1
- package/components/form-query/form-query.d.ts +3 -3
- package/components/form-query/index.d.ts +6 -6
- package/components/horizontal-tree/{style/index.d.ts → horizontal-tree.style.d.ts} +1 -1
- package/components/horizontal-tree/{style/index.js → horizontal-tree.style.js} +1 -1
- package/components/horizontal-tree/horizontal-tree.vue.d.ts +1 -1
- package/components/horizontal-tree/horizontal-tree.vue.js +1 -1
- package/components/horizontal-tree/index.d.ts +5 -5
- package/components/image-card/image-card.api.d.ts +8 -0
- package/components/image-card/image-card.d.ts +17 -0
- package/components/image-card/index.d.ts +27 -0
- package/components/remote-select/index.d.ts +98 -32
- package/components/remote-select/remote-select.api.d.ts +26 -4
- package/components/remote-select/remote-select.d.ts +58 -14
- package/components/stack-dialog/stack-dialog.d.ts +33 -3
- package/components/table/index.d.ts +8 -2
- package/components/table/table-column/table-column.vue.d.ts +6 -6
- package/components/table/table-export/table-export.d.ts +33 -3
- package/components/table/table-export/table-export.vue.d.ts +68 -6
- package/components/table/table-query/table-query.d.ts +1 -1
- package/components/table/table-query/table-query.vue.d.ts +3 -3
- package/components/table/table.d.ts +1 -0
- package/components/table/table.vue.d.ts +3 -0
- package/components/table-action/item.api.d.ts +8 -1
- package/components/table-action/item.d.ts +16 -2
- package/layout/layout-tabbar/style/index.js +2 -1
- package/locale/lang/ar.d.ts +23 -1
- package/locale/lang/en.d.ts +1 -1
- package/locale/lang/zh-cn.d.ts +1 -0
- package/package.json +2 -2
- package/utils/components.d.ts +6 -2
- /package/components/horizontal-tree/{horizontal-tree.d.ts → horizontal-tree.api.d.ts} +0 -0
- /package/components/horizontal-tree/{horizontal-tree.js → horizontal-tree.api.js} +0 -0
|
@@ -154,7 +154,7 @@ declare const _Table: {
|
|
|
154
154
|
hideRequiredAsterisk: BooleanConstructor;
|
|
155
155
|
scrollToError: BooleanConstructor;
|
|
156
156
|
scrollIntoViewOptions: {
|
|
157
|
-
readonly type: import("vue").PropType<boolean |
|
|
157
|
+
readonly type: import("vue").PropType<boolean | ScrollIntoViewOptions>;
|
|
158
158
|
readonly required: false;
|
|
159
159
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
160
160
|
__epPropKey: true;
|
|
@@ -276,6 +276,7 @@ declare const _Table: {
|
|
|
276
276
|
default: boolean;
|
|
277
277
|
};
|
|
278
278
|
preserveExpandedContent: BooleanConstructor;
|
|
279
|
+
nativeScrollbar: BooleanConstructor;
|
|
279
280
|
}>> & Readonly<{}>, {
|
|
280
281
|
reload: () => void;
|
|
281
282
|
expandAll: () => void;
|
|
@@ -338,6 +339,7 @@ declare const _Table: {
|
|
|
338
339
|
scrollbarTabindex: string | number;
|
|
339
340
|
allowDragLastColumn: boolean;
|
|
340
341
|
preserveExpandedContent: boolean;
|
|
342
|
+
nativeScrollbar: boolean;
|
|
341
343
|
toolbarConfig: boolean | import("./table").ToolbarConfig;
|
|
342
344
|
statsData: any;
|
|
343
345
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
@@ -498,7 +500,7 @@ declare const _Table: {
|
|
|
498
500
|
hideRequiredAsterisk: BooleanConstructor;
|
|
499
501
|
scrollToError: BooleanConstructor;
|
|
500
502
|
scrollIntoViewOptions: {
|
|
501
|
-
readonly type: import("vue").PropType<boolean |
|
|
503
|
+
readonly type: import("vue").PropType<boolean | ScrollIntoViewOptions>;
|
|
502
504
|
readonly required: false;
|
|
503
505
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
504
506
|
__epPropKey: true;
|
|
@@ -620,6 +622,7 @@ declare const _Table: {
|
|
|
620
622
|
default: boolean;
|
|
621
623
|
};
|
|
622
624
|
preserveExpandedContent: BooleanConstructor;
|
|
625
|
+
nativeScrollbar: BooleanConstructor;
|
|
623
626
|
}>> & Readonly<{}>, {
|
|
624
627
|
reload: () => void;
|
|
625
628
|
expandAll: () => void;
|
|
@@ -682,6 +685,7 @@ declare const _Table: {
|
|
|
682
685
|
scrollbarTabindex: string | number;
|
|
683
686
|
allowDragLastColumn: boolean;
|
|
684
687
|
preserveExpandedContent: boolean;
|
|
688
|
+
nativeScrollbar: boolean;
|
|
685
689
|
toolbarConfig: boolean | import("./table").ToolbarConfig;
|
|
686
690
|
statsData: any;
|
|
687
691
|
}>;
|
|
@@ -819,6 +823,7 @@ declare const _Table: {
|
|
|
819
823
|
default: boolean;
|
|
820
824
|
};
|
|
821
825
|
preserveExpandedContent: BooleanConstructor;
|
|
826
|
+
nativeScrollbar: BooleanConstructor;
|
|
822
827
|
}>> & Readonly<{}>, {
|
|
823
828
|
reload: () => void;
|
|
824
829
|
expandAll: () => void;
|
|
@@ -881,6 +886,7 @@ declare const _Table: {
|
|
|
881
886
|
scrollbarTabindex: string | number;
|
|
882
887
|
allowDragLastColumn: boolean;
|
|
883
888
|
preserveExpandedContent: boolean;
|
|
889
|
+
nativeScrollbar: boolean;
|
|
884
890
|
toolbarConfig: boolean | import("./table").ToolbarConfig;
|
|
885
891
|
statsData: any;
|
|
886
892
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
@@ -11,7 +11,8 @@ declare const TableColumn: import("vue").DefineComponent<{
|
|
|
11
11
|
filterMethod?: import("element-plus/es/components/table/src/table-column/defaults.mjs").FilterMethods<any> | undefined;
|
|
12
12
|
className?: string | undefined;
|
|
13
13
|
prop?: string | undefined;
|
|
14
|
-
|
|
14
|
+
resizable?: boolean | undefined;
|
|
15
|
+
showOverflowTooltip?: boolean | Partial<Pick<import("element-plus/es/components/index.mjs").ElTooltipProps, "offset" | "transition" | "placement" | "popperClass" | "appendTo" | "effect" | "enterable" | "popperOptions" | "showArrow" | "showAfter" | "hideAfter">> | undefined;
|
|
15
16
|
labelClassName?: string | undefined;
|
|
16
17
|
property?: string | undefined;
|
|
17
18
|
renderHeader?: ((data: {
|
|
@@ -23,7 +24,6 @@ declare const TableColumn: import("vue").DefineComponent<{
|
|
|
23
24
|
sortable?: string | boolean | undefined;
|
|
24
25
|
sortMethod?: ((a: any, b: any) => number) | undefined;
|
|
25
26
|
sortBy?: string | string[] | ((row: any, index: number, array?: any[] | undefined) => string) | undefined;
|
|
26
|
-
resizable?: boolean | undefined;
|
|
27
27
|
columnKey?: string | undefined;
|
|
28
28
|
headerAlign?: string | undefined;
|
|
29
29
|
selectable?: ((row: any, index: number) => boolean) | undefined;
|
|
@@ -55,7 +55,8 @@ declare const TableColumn: import("vue").DefineComponent<{
|
|
|
55
55
|
filterMethod?: import("element-plus/es/components/table/src/table-column/defaults.mjs").FilterMethods<any> | undefined;
|
|
56
56
|
className?: string | undefined;
|
|
57
57
|
prop?: string | undefined;
|
|
58
|
-
|
|
58
|
+
resizable?: boolean | undefined;
|
|
59
|
+
showOverflowTooltip?: boolean | Partial<Pick<import("element-plus/es/components/index.mjs").ElTooltipProps, "offset" | "transition" | "placement" | "popperClass" | "appendTo" | "effect" | "enterable" | "popperOptions" | "showArrow" | "showAfter" | "hideAfter">> | undefined;
|
|
59
60
|
labelClassName?: string | undefined;
|
|
60
61
|
property?: string | undefined;
|
|
61
62
|
renderHeader?: ((data: {
|
|
@@ -67,7 +68,6 @@ declare const TableColumn: import("vue").DefineComponent<{
|
|
|
67
68
|
sortable?: string | boolean | undefined;
|
|
68
69
|
sortMethod?: ((a: any, b: any) => number) | undefined;
|
|
69
70
|
sortBy?: string | string[] | ((row: any, index: number, array?: any[] | undefined) => string) | undefined;
|
|
70
|
-
resizable?: boolean | undefined;
|
|
71
71
|
columnKey?: string | undefined;
|
|
72
72
|
headerAlign?: string | undefined;
|
|
73
73
|
selectable?: ((row: any, index: number) => boolean) | undefined;
|
|
@@ -93,9 +93,9 @@ declare const TableColumn: import("vue").DefineComponent<{
|
|
|
93
93
|
hidden: boolean;
|
|
94
94
|
type: string;
|
|
95
95
|
align: "left" | "right" | "center" | undefined;
|
|
96
|
-
showOverflowTooltip: boolean | Partial<Pick<import("element-plus/es/components/index.mjs").ElTooltipProps, "offset" | "transition" | "placement" | "popperClass" | "appendTo" | "enterable" | "popperOptions" | "showArrow" | "effect" | "showAfter" | "hideAfter">> | undefined;
|
|
97
|
-
sortable: string | boolean;
|
|
98
96
|
resizable: boolean;
|
|
97
|
+
showOverflowTooltip: boolean | Partial<Pick<import("element-plus/es/components/index.mjs").ElTooltipProps, "offset" | "transition" | "placement" | "popperClass" | "appendTo" | "effect" | "enterable" | "popperOptions" | "showArrow" | "showAfter" | "hideAfter">> | undefined;
|
|
98
|
+
sortable: string | boolean;
|
|
99
99
|
reserveSelection: boolean;
|
|
100
100
|
filterMultiple: boolean;
|
|
101
101
|
sortOrders: (import("element-plus/es/components/table/src/table/defaults.mjs").TableSortOrder | null)[];
|
|
@@ -83,6 +83,7 @@ export declare const tableExportProps: {
|
|
|
83
83
|
} & {
|
|
84
84
|
readonly default: true;
|
|
85
85
|
};
|
|
86
|
+
modalPenetrable: BooleanConstructor;
|
|
86
87
|
openDelay: {
|
|
87
88
|
readonly type: PropType<number>;
|
|
88
89
|
readonly required: false;
|
|
@@ -125,16 +126,45 @@ export declare const tableExportProps: {
|
|
|
125
126
|
} & {
|
|
126
127
|
readonly default: "2";
|
|
127
128
|
};
|
|
129
|
+
transition: {
|
|
130
|
+
readonly type: PropType<import("element-plus").DialogTransition>;
|
|
131
|
+
readonly required: false;
|
|
132
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
133
|
+
__epPropKey: true;
|
|
134
|
+
} & {
|
|
135
|
+
readonly default: undefined;
|
|
136
|
+
};
|
|
128
137
|
center: BooleanConstructor;
|
|
129
|
-
alignCenter:
|
|
138
|
+
alignCenter: {
|
|
139
|
+
readonly type: PropType<boolean>;
|
|
140
|
+
readonly required: false;
|
|
141
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
142
|
+
__epPropKey: true;
|
|
143
|
+
} & {
|
|
144
|
+
readonly default: undefined;
|
|
145
|
+
};
|
|
130
146
|
closeIcon: {
|
|
131
147
|
readonly type: PropType<string | import("vue").Component>;
|
|
132
148
|
readonly required: false;
|
|
133
149
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
134
150
|
__epPropKey: true;
|
|
135
151
|
};
|
|
136
|
-
draggable:
|
|
137
|
-
|
|
152
|
+
draggable: {
|
|
153
|
+
readonly type: PropType<boolean>;
|
|
154
|
+
readonly required: false;
|
|
155
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
156
|
+
__epPropKey: true;
|
|
157
|
+
} & {
|
|
158
|
+
readonly default: undefined;
|
|
159
|
+
};
|
|
160
|
+
overflow: {
|
|
161
|
+
readonly type: PropType<boolean>;
|
|
162
|
+
readonly required: false;
|
|
163
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
164
|
+
__epPropKey: true;
|
|
165
|
+
} & {
|
|
166
|
+
readonly default: undefined;
|
|
167
|
+
};
|
|
138
168
|
fullscreen: BooleanConstructor;
|
|
139
169
|
showClose: {
|
|
140
170
|
readonly type: PropType<boolean>;
|
|
@@ -81,6 +81,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
81
81
|
} & {
|
|
82
82
|
readonly default: true;
|
|
83
83
|
};
|
|
84
|
+
modalPenetrable: BooleanConstructor;
|
|
84
85
|
openDelay: {
|
|
85
86
|
readonly type: import("vue").PropType<number>;
|
|
86
87
|
readonly required: false;
|
|
@@ -123,16 +124,45 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
123
124
|
} & {
|
|
124
125
|
readonly default: "2";
|
|
125
126
|
};
|
|
127
|
+
transition: {
|
|
128
|
+
readonly type: import("vue").PropType<import("element-plus").DialogTransition>;
|
|
129
|
+
readonly required: false;
|
|
130
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
131
|
+
__epPropKey: true;
|
|
132
|
+
} & {
|
|
133
|
+
readonly default: undefined;
|
|
134
|
+
};
|
|
126
135
|
center: BooleanConstructor;
|
|
127
|
-
alignCenter:
|
|
136
|
+
alignCenter: {
|
|
137
|
+
readonly type: import("vue").PropType<boolean>;
|
|
138
|
+
readonly required: false;
|
|
139
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
140
|
+
__epPropKey: true;
|
|
141
|
+
} & {
|
|
142
|
+
readonly default: undefined;
|
|
143
|
+
};
|
|
128
144
|
closeIcon: {
|
|
129
145
|
readonly type: import("vue").PropType<string | import("vue").Component>;
|
|
130
146
|
readonly required: false;
|
|
131
147
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
132
148
|
__epPropKey: true;
|
|
133
149
|
};
|
|
134
|
-
draggable:
|
|
135
|
-
|
|
150
|
+
draggable: {
|
|
151
|
+
readonly type: import("vue").PropType<boolean>;
|
|
152
|
+
readonly required: false;
|
|
153
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
154
|
+
__epPropKey: true;
|
|
155
|
+
} & {
|
|
156
|
+
readonly default: undefined;
|
|
157
|
+
};
|
|
158
|
+
overflow: {
|
|
159
|
+
readonly type: import("vue").PropType<boolean>;
|
|
160
|
+
readonly required: false;
|
|
161
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
162
|
+
__epPropKey: true;
|
|
163
|
+
} & {
|
|
164
|
+
readonly default: undefined;
|
|
165
|
+
};
|
|
136
166
|
fullscreen: BooleanConstructor;
|
|
137
167
|
showClose: {
|
|
138
168
|
readonly type: import("vue").PropType<boolean>;
|
|
@@ -248,6 +278,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
248
278
|
} & {
|
|
249
279
|
readonly default: true;
|
|
250
280
|
};
|
|
281
|
+
modalPenetrable: BooleanConstructor;
|
|
251
282
|
openDelay: {
|
|
252
283
|
readonly type: import("vue").PropType<number>;
|
|
253
284
|
readonly required: false;
|
|
@@ -290,16 +321,45 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
290
321
|
} & {
|
|
291
322
|
readonly default: "2";
|
|
292
323
|
};
|
|
324
|
+
transition: {
|
|
325
|
+
readonly type: import("vue").PropType<import("element-plus").DialogTransition>;
|
|
326
|
+
readonly required: false;
|
|
327
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
328
|
+
__epPropKey: true;
|
|
329
|
+
} & {
|
|
330
|
+
readonly default: undefined;
|
|
331
|
+
};
|
|
293
332
|
center: BooleanConstructor;
|
|
294
|
-
alignCenter:
|
|
333
|
+
alignCenter: {
|
|
334
|
+
readonly type: import("vue").PropType<boolean>;
|
|
335
|
+
readonly required: false;
|
|
336
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
337
|
+
__epPropKey: true;
|
|
338
|
+
} & {
|
|
339
|
+
readonly default: undefined;
|
|
340
|
+
};
|
|
295
341
|
closeIcon: {
|
|
296
342
|
readonly type: import("vue").PropType<string | import("vue").Component>;
|
|
297
343
|
readonly required: false;
|
|
298
344
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
299
345
|
__epPropKey: true;
|
|
300
346
|
};
|
|
301
|
-
draggable:
|
|
302
|
-
|
|
347
|
+
draggable: {
|
|
348
|
+
readonly type: import("vue").PropType<boolean>;
|
|
349
|
+
readonly required: false;
|
|
350
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
351
|
+
__epPropKey: true;
|
|
352
|
+
} & {
|
|
353
|
+
readonly default: undefined;
|
|
354
|
+
};
|
|
355
|
+
overflow: {
|
|
356
|
+
readonly type: import("vue").PropType<boolean>;
|
|
357
|
+
readonly required: false;
|
|
358
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
359
|
+
__epPropKey: true;
|
|
360
|
+
} & {
|
|
361
|
+
readonly default: undefined;
|
|
362
|
+
};
|
|
303
363
|
fullscreen: BooleanConstructor;
|
|
304
364
|
showClose: {
|
|
305
365
|
readonly type: import("vue").PropType<boolean>;
|
|
@@ -337,6 +397,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
337
397
|
width: import("../..").FormDialogWidth;
|
|
338
398
|
columns: TableColumnProps[];
|
|
339
399
|
overflow: boolean;
|
|
400
|
+
transition: import("element-plus").DialogTransition;
|
|
340
401
|
center: boolean;
|
|
341
402
|
data: any[];
|
|
342
403
|
title: string;
|
|
@@ -354,6 +415,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
354
415
|
destroyOnClose: boolean;
|
|
355
416
|
lockScroll: boolean;
|
|
356
417
|
modal: boolean;
|
|
418
|
+
modalPenetrable: boolean;
|
|
357
419
|
openDelay: number;
|
|
358
420
|
closeDelay: number;
|
|
359
421
|
trapFocus: boolean;
|
|
@@ -136,7 +136,7 @@ export declare const tableQueryProps: {
|
|
|
136
136
|
hideRequiredAsterisk: BooleanConstructor;
|
|
137
137
|
scrollToError: BooleanConstructor;
|
|
138
138
|
scrollIntoViewOptions: {
|
|
139
|
-
readonly type: PropType<boolean |
|
|
139
|
+
readonly type: PropType<boolean | ScrollIntoViewOptions>;
|
|
140
140
|
readonly required: false;
|
|
141
141
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
142
142
|
__epPropKey: true;
|
|
@@ -128,7 +128,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
128
128
|
hideRequiredAsterisk: BooleanConstructor;
|
|
129
129
|
scrollToError: BooleanConstructor;
|
|
130
130
|
scrollIntoViewOptions: {
|
|
131
|
-
readonly type: import("vue").PropType<boolean |
|
|
131
|
+
readonly type: import("vue").PropType<boolean | ScrollIntoViewOptions>;
|
|
132
132
|
readonly required: false;
|
|
133
133
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
134
134
|
__epPropKey: true;
|
|
@@ -285,7 +285,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
285
285
|
hideRequiredAsterisk: BooleanConstructor;
|
|
286
286
|
scrollToError: BooleanConstructor;
|
|
287
287
|
scrollIntoViewOptions: {
|
|
288
|
-
readonly type: import("vue").PropType<boolean |
|
|
288
|
+
readonly type: import("vue").PropType<boolean | ScrollIntoViewOptions>;
|
|
289
289
|
readonly required: false;
|
|
290
290
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
291
291
|
__epPropKey: true;
|
|
@@ -338,7 +338,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
338
338
|
validateOnRuleChange: boolean;
|
|
339
339
|
hideRequiredAsterisk: boolean;
|
|
340
340
|
scrollToError: boolean;
|
|
341
|
-
scrollIntoViewOptions: boolean |
|
|
341
|
+
scrollIntoViewOptions: boolean | ScrollIntoViewOptions;
|
|
342
342
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
343
343
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
344
344
|
export default _default;
|
|
@@ -147,6 +147,7 @@ export declare const tableProps: {
|
|
|
147
147
|
default: boolean;
|
|
148
148
|
};
|
|
149
149
|
preserveExpandedContent: BooleanConstructor;
|
|
150
|
+
nativeScrollbar: BooleanConstructor;
|
|
150
151
|
};
|
|
151
152
|
export type TableProps = Partial<ExtractPropTypes<typeof tableProps>>;
|
|
152
153
|
export declare const omittedTableProps: keyof typeof tableProps;
|
|
@@ -133,6 +133,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
133
133
|
default: boolean;
|
|
134
134
|
};
|
|
135
135
|
preserveExpandedContent: BooleanConstructor;
|
|
136
|
+
nativeScrollbar: BooleanConstructor;
|
|
136
137
|
}>, {
|
|
137
138
|
reload: () => void;
|
|
138
139
|
expandAll: () => void;
|
|
@@ -303,6 +304,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
303
304
|
default: boolean;
|
|
304
305
|
};
|
|
305
306
|
preserveExpandedContent: BooleanConstructor;
|
|
307
|
+
nativeScrollbar: BooleanConstructor;
|
|
306
308
|
}>> & Readonly<{}>, {
|
|
307
309
|
tableLayout: "auto" | "fixed";
|
|
308
310
|
border: boolean;
|
|
@@ -326,6 +328,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
326
328
|
scrollbarTabindex: string | number;
|
|
327
329
|
allowDragLastColumn: boolean;
|
|
328
330
|
preserveExpandedContent: boolean;
|
|
331
|
+
nativeScrollbar: boolean;
|
|
329
332
|
toolbarConfig: boolean | ToolbarConfig;
|
|
330
333
|
statsData: any;
|
|
331
334
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -64,7 +64,14 @@ export declare const tableActionItemProps: {
|
|
|
64
64
|
} & {
|
|
65
65
|
readonly default: undefined;
|
|
66
66
|
};
|
|
67
|
-
text:
|
|
67
|
+
text: {
|
|
68
|
+
readonly type: PropType<boolean>;
|
|
69
|
+
readonly required: false;
|
|
70
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
71
|
+
__epPropKey: true;
|
|
72
|
+
} & {
|
|
73
|
+
readonly default: undefined;
|
|
74
|
+
};
|
|
68
75
|
bg: BooleanConstructor;
|
|
69
76
|
autofocus: BooleanConstructor;
|
|
70
77
|
round: {
|
|
@@ -62,7 +62,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
62
62
|
} & {
|
|
63
63
|
readonly default: undefined;
|
|
64
64
|
};
|
|
65
|
-
text:
|
|
65
|
+
text: {
|
|
66
|
+
readonly type: import("vue").PropType<boolean>;
|
|
67
|
+
readonly required: false;
|
|
68
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
69
|
+
__epPropKey: true;
|
|
70
|
+
} & {
|
|
71
|
+
readonly default: undefined;
|
|
72
|
+
};
|
|
66
73
|
bg: BooleanConstructor;
|
|
67
74
|
autofocus: BooleanConstructor;
|
|
68
75
|
round: {
|
|
@@ -156,7 +163,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
156
163
|
} & {
|
|
157
164
|
readonly default: undefined;
|
|
158
165
|
};
|
|
159
|
-
text:
|
|
166
|
+
text: {
|
|
167
|
+
readonly type: import("vue").PropType<boolean>;
|
|
168
|
+
readonly required: false;
|
|
169
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
170
|
+
__epPropKey: true;
|
|
171
|
+
} & {
|
|
172
|
+
readonly default: undefined;
|
|
173
|
+
};
|
|
160
174
|
bg: BooleanConstructor;
|
|
161
175
|
autofocus: BooleanConstructor;
|
|
162
176
|
round: {
|
|
@@ -37,7 +37,8 @@ var stdin_default = getSimpleStyleHook("CoLayoutTabbar", (token) => {
|
|
|
37
37
|
},
|
|
38
38
|
".el-tabs--card > .el-tabs__header .el-tabs__item.is-active": {
|
|
39
39
|
backgroundColor: token.colorBgLayout,
|
|
40
|
-
borderBottomColor: token.colorBgLayout
|
|
40
|
+
borderBottomColor: token.colorBgLayout,
|
|
41
|
+
marginBlockStart: 0
|
|
41
42
|
},
|
|
42
43
|
[`${componentCls}-tabs-wrapper`]: {
|
|
43
44
|
flex: 1,
|
package/locale/lang/ar.d.ts
CHANGED
|
@@ -137,6 +137,7 @@ declare const _default: {
|
|
|
137
137
|
clear: string;
|
|
138
138
|
defaultLabel: string;
|
|
139
139
|
description: string;
|
|
140
|
+
alphaLabel: string;
|
|
140
141
|
};
|
|
141
142
|
datepicker: {
|
|
142
143
|
now: string;
|
|
@@ -147,6 +148,7 @@ declare const _default: {
|
|
|
147
148
|
dateTablePrompt: string;
|
|
148
149
|
monthTablePrompt: string;
|
|
149
150
|
yearTablePrompt: string;
|
|
151
|
+
selectedDate: string;
|
|
150
152
|
selectDate: string;
|
|
151
153
|
selectTime: string;
|
|
152
154
|
startDate: string;
|
|
@@ -170,7 +172,6 @@ declare const _default: {
|
|
|
170
172
|
month10: string;
|
|
171
173
|
month11: string;
|
|
172
174
|
month12: string;
|
|
173
|
-
week: string;
|
|
174
175
|
weeks: {
|
|
175
176
|
sun: string;
|
|
176
177
|
mon: string;
|
|
@@ -180,6 +181,15 @@ declare const _default: {
|
|
|
180
181
|
fri: string;
|
|
181
182
|
sat: string;
|
|
182
183
|
};
|
|
184
|
+
weeksFull: {
|
|
185
|
+
sun: string;
|
|
186
|
+
mon: string;
|
|
187
|
+
tue: string;
|
|
188
|
+
wed: string;
|
|
189
|
+
thu: string;
|
|
190
|
+
fri: string;
|
|
191
|
+
sat: string;
|
|
192
|
+
};
|
|
183
193
|
months: {
|
|
184
194
|
jan: string;
|
|
185
195
|
feb: string;
|
|
@@ -228,6 +238,7 @@ declare const _default: {
|
|
|
228
238
|
currentPage: string;
|
|
229
239
|
prevPages: string;
|
|
230
240
|
nextPages: string;
|
|
241
|
+
deprecationWarning: string;
|
|
231
242
|
};
|
|
232
243
|
dialog: {
|
|
233
244
|
close: string;
|
|
@@ -248,6 +259,11 @@ declare const _default: {
|
|
|
248
259
|
preview: string;
|
|
249
260
|
continue: string;
|
|
250
261
|
};
|
|
262
|
+
slider: {
|
|
263
|
+
defaultLabel: string;
|
|
264
|
+
defaultRangeStartLabel: string;
|
|
265
|
+
defaultRangeEndLabel: string;
|
|
266
|
+
};
|
|
251
267
|
table: {
|
|
252
268
|
emptyText: string;
|
|
253
269
|
confirmFilter: string;
|
|
@@ -255,6 +271,12 @@ declare const _default: {
|
|
|
255
271
|
clearFilter: string;
|
|
256
272
|
sumText: string;
|
|
257
273
|
};
|
|
274
|
+
tour: {
|
|
275
|
+
next: string;
|
|
276
|
+
previous: string;
|
|
277
|
+
finish: string;
|
|
278
|
+
close: string;
|
|
279
|
+
};
|
|
258
280
|
tree: {
|
|
259
281
|
emptyText: string;
|
|
260
282
|
};
|
package/locale/lang/en.d.ts
CHANGED
|
@@ -172,7 +172,6 @@ declare const _default: {
|
|
|
172
172
|
month10: string;
|
|
173
173
|
month11: string;
|
|
174
174
|
month12: string;
|
|
175
|
-
week: string;
|
|
176
175
|
weeks: {
|
|
177
176
|
sun: string;
|
|
178
177
|
mon: string;
|
|
@@ -276,6 +275,7 @@ declare const _default: {
|
|
|
276
275
|
next: string;
|
|
277
276
|
previous: string;
|
|
278
277
|
finish: string;
|
|
278
|
+
close: string;
|
|
279
279
|
};
|
|
280
280
|
tree: {
|
|
281
281
|
emptyText: string;
|
package/locale/lang/zh-cn.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cosey",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.23",
|
|
4
4
|
"description": "基于 Vue3 + vite 的后台管理系统框架",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"csstype": "^3.1.3",
|
|
28
28
|
"dayjs": "^1.11.13",
|
|
29
29
|
"echarts": "^5.6.0",
|
|
30
|
-
"element-plus": "^2.
|
|
30
|
+
"element-plus": "^2.11.4",
|
|
31
31
|
"highlight.js": "^11.11.1",
|
|
32
32
|
"jszip": "^3.10.1",
|
|
33
33
|
"katex": "^0.16.22",
|
package/utils/components.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export declare function filterEmptyFormValue(model: Record<string, any>): {
|
|
|
5
5
|
[k: string]: any;
|
|
6
6
|
};
|
|
7
7
|
export declare function createLoading(selector: string): {
|
|
8
|
-
setText: (text: string) => void;
|
|
8
|
+
setText: (text: string | import("vue").VNode | import("vue").VNode[]) => void;
|
|
9
9
|
removeElLoadingChild: () => void;
|
|
10
10
|
close: () => void;
|
|
11
11
|
handleAfterLeave: () => void;
|
|
@@ -19,7 +19,11 @@ export declare function createLoading(selector: string): {
|
|
|
19
19
|
svg: import("vue").Ref<string>;
|
|
20
20
|
svgViewBox: import("vue").Ref<string>;
|
|
21
21
|
spinner: import("vue").Ref<string | boolean>;
|
|
22
|
-
text: import("vue").Ref<string
|
|
22
|
+
text: import("vue").Ref<string | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
23
|
+
[key: string]: any;
|
|
24
|
+
}> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
25
|
+
[key: string]: any;
|
|
26
|
+
}>[]>;
|
|
23
27
|
fullscreen: import("vue").Ref<boolean>;
|
|
24
28
|
lock: import("vue").Ref<boolean>;
|
|
25
29
|
customClass: import("vue").Ref<string>;
|
|
File without changes
|
|
File without changes
|