@dinert/element-plus 1.0.8 → 1.1.0
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/element-plus.umd.js +1 -1
- package/dist/element-plus.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/es/node_modules/@element-plus/icons-vue/dist/index.mjs +82 -22
- package/es/node_modules/@element-plus/icons-vue/dist/index.mjs.map +1 -1
- package/es/packages/assets/scss/dinert-form.scss.mjs +1 -4
- package/es/packages/assets/scss/dinert-form.scss.mjs.map +1 -1
- package/es/packages/assets/scss/dinert-table-page.scss.mjs +1 -4
- package/es/packages/assets/scss/dinert-table-page.scss.mjs.map +1 -1
- package/es/packages/assets/scss/dinert-table.scss.mjs +1 -4
- package/es/packages/assets/scss/dinert-table.scss.mjs.map +1 -1
- package/es/packages/assets/scss/dinert-tooltip.scss.mjs +1 -4
- package/es/packages/assets/scss/dinert-tooltip.scss.mjs.map +1 -1
- package/es/packages/components/form/src/cascader.mjs +10 -16
- package/es/packages/components/form/src/cascader.mjs.map +1 -1
- package/es/packages/components/form/src/checkbox.mjs +17 -15
- package/es/packages/components/form/src/checkbox.mjs.map +1 -1
- package/es/packages/components/form/src/date.mjs +6 -8
- package/es/packages/components/form/src/date.mjs.map +1 -1
- package/es/packages/components/form/src/index.mjs +140 -149
- package/es/packages/components/form/src/index.mjs.map +1 -1
- package/es/packages/components/form/src/input-autocomplete.mjs +5 -7
- package/es/packages/components/form/src/input-autocomplete.mjs.map +1 -1
- package/es/packages/components/form/src/input-number.mjs +9 -16
- package/es/packages/components/form/src/input-number.mjs.map +1 -1
- package/es/packages/components/form/src/input.mjs +12 -19
- package/es/packages/components/form/src/input.mjs.map +1 -1
- package/es/packages/components/form/src/radio.mjs +14 -16
- package/es/packages/components/form/src/radio.mjs.map +1 -1
- package/es/packages/components/form/src/rate.mjs +7 -13
- package/es/packages/components/form/src/rate.mjs.map +1 -1
- package/es/packages/components/form/src/select.mjs +7 -8
- package/es/packages/components/form/src/select.mjs.map +1 -1
- package/es/packages/components/form/src/switch.mjs +5 -12
- package/es/packages/components/form/src/switch.mjs.map +1 -1
- package/es/packages/components/form/src/tree-select.mjs +5 -6
- package/es/packages/components/form/src/tree-select.mjs.map +1 -1
- package/es/packages/components/form/utils/index.mjs +52 -30
- package/es/packages/components/form/utils/index.mjs.map +1 -1
- package/es/packages/components/table/hooks/index.mjs +14 -14
- package/es/packages/components/table/hooks/index.mjs.map +1 -1
- package/es/packages/components/table/src/index.mjs +116 -89
- package/es/packages/components/table/src/index.mjs.map +1 -1
- package/es/packages/components/table/src/recuve-table-column.mjs +148 -133
- package/es/packages/components/table/src/recuve-table-column.mjs.map +1 -1
- package/es/packages/components/table-page/src/index.mjs.map +1 -1
- package/es/packages/components/tooltip/src/index.mjs +16 -14
- package/es/packages/components/tooltip/src/index.mjs.map +1 -1
- package/es/packages/hooks/{useTablePage → TablePage}/index.mjs +24 -18
- package/es/packages/hooks/TablePage/index.mjs.map +1 -0
- package/es/packages/index.mjs +2 -2
- package/es/packages/index.mjs.map +1 -1
- package/es/packages/utils/tools.mjs +26 -41
- package/es/packages/utils/tools.mjs.map +1 -1
- package/es/src/components/dialog/index.d.ts +2 -0
- package/es/src/components/dialog/src/drag.d.ts +5 -0
- package/es/src/components/dialog/src/type.d.ts +15 -0
- package/es/src/components/form/index.d.ts +4 -3
- package/es/src/components/form/src/cascader.d.ts +7 -9
- package/es/src/components/form/src/checkbox.d.ts +7 -8
- package/es/src/components/form/src/date.d.ts +245 -8
- package/es/src/components/form/src/index.d.ts +4 -3
- package/es/src/components/form/src/input-autocomplete.d.ts +7 -8
- package/es/src/components/form/src/input-number.d.ts +7 -8
- package/es/src/components/form/src/input.d.ts +7 -8
- package/es/src/components/form/src/radio.d.ts +7 -8
- package/es/src/components/form/src/rate.d.ts +6 -7
- package/es/src/components/form/src/select.d.ts +7 -9
- package/es/src/components/form/src/switch.d.ts +7 -8
- package/es/src/components/form/src/tree-select.d.ts +7 -19
- package/es/src/components/form/types/components.d.ts +40 -0
- package/es/src/components/form/types/index.d.ts +45 -21
- package/es/src/components/form/types/utils.d.ts +5 -0
- package/es/src/components/form/utils/index.d.ts +1 -0
- package/es/src/components/table/index.d.ts +337 -326
- package/es/src/components/table/src/index.d.ts +338 -327
- package/es/src/components/table/src/recuve-table-column.d.ts +1 -1
- package/es/src/components/table/types/index.d.ts +24 -33
- package/{lib/src/hooks/useTablePage → es/src/hooks/TablePage}/index.d.ts +14 -17
- package/{lib/src/hooks/useTablePage → es/src/hooks/TablePage}/types/index.d.ts +1 -2
- package/es/src/index.d.ts +3 -3
- package/es/src/utils/tools.d.ts +1 -1
- package/es/src/views/test-table-page/types/index.d.ts +24 -0
- package/es/style.css +1 -1
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/lib/src/components/dialog/index.d.ts +2 -0
- package/lib/src/components/dialog/src/drag.d.ts +5 -0
- package/lib/src/components/dialog/src/type.d.ts +15 -0
- package/lib/src/components/form/index.d.ts +4 -3
- package/lib/src/components/form/src/cascader.d.ts +7 -9
- package/lib/src/components/form/src/checkbox.d.ts +7 -8
- package/lib/src/components/form/src/date.d.ts +245 -8
- package/lib/src/components/form/src/index.d.ts +4 -3
- package/lib/src/components/form/src/input-autocomplete.d.ts +7 -8
- package/lib/src/components/form/src/input-number.d.ts +7 -8
- package/lib/src/components/form/src/input.d.ts +7 -8
- package/lib/src/components/form/src/radio.d.ts +7 -8
- package/lib/src/components/form/src/rate.d.ts +6 -7
- package/lib/src/components/form/src/select.d.ts +7 -9
- package/lib/src/components/form/src/switch.d.ts +7 -8
- package/lib/src/components/form/src/tree-select.d.ts +7 -19
- package/lib/src/components/form/types/components.d.ts +40 -0
- package/lib/src/components/form/types/index.d.ts +45 -21
- package/lib/src/components/form/types/utils.d.ts +5 -0
- package/lib/src/components/form/utils/index.d.ts +1 -0
- package/lib/src/components/table/index.d.ts +337 -326
- package/lib/src/components/table/src/index.d.ts +338 -327
- package/lib/src/components/table/src/recuve-table-column.d.ts +1 -1
- package/lib/src/components/table/types/index.d.ts +24 -33
- package/{es/src/hooks/useTablePage → lib/src/hooks/TablePage}/index.d.ts +14 -17
- package/{es/src/hooks/useTablePage → lib/src/hooks/TablePage}/types/index.d.ts +1 -2
- package/lib/src/index.d.ts +3 -3
- package/lib/src/utils/tools.d.ts +1 -1
- package/lib/src/views/test-table-page/types/index.d.ts +24 -0
- package/lib/style.css +1 -1
- package/package.json +87 -89
- package/es/packages/hooks/useTablePage/index.mjs.map +0 -1
|
@@ -6,7 +6,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
6
6
|
type: import("vue").PropType<import("./types").RewriteTableProps<any>>;
|
|
7
7
|
};
|
|
8
8
|
header: {
|
|
9
|
-
type:
|
|
9
|
+
type: import("vue").PropType<boolean | import("./types").HeaderListProps>;
|
|
10
10
|
default: boolean;
|
|
11
11
|
};
|
|
12
12
|
footer: {
|
|
@@ -20,26 +20,22 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
20
20
|
}, {
|
|
21
21
|
getSetting: import("vue").ComputedRef<boolean>;
|
|
22
22
|
tableColumns: import("vue").Ref<{
|
|
23
|
-
type?:
|
|
23
|
+
type?: "default" | "index" | "selection" | "expand" | undefined;
|
|
24
24
|
checked?: boolean | undefined;
|
|
25
25
|
show?: boolean | ((column: import("./types").RewriteTableColumnCtx<any>) => boolean) | undefined;
|
|
26
26
|
setting?: boolean | undefined;
|
|
27
27
|
maxOperations?: number | undefined;
|
|
28
|
-
|
|
29
|
-
[key: string]: import("./types").FunctionsProps<any>;
|
|
30
|
-
} | undefined;
|
|
28
|
+
operations?: Record<string, import("./types").OperationsProps<any>> | undefined;
|
|
31
29
|
sort?: number | undefined;
|
|
32
|
-
disabled?: boolean | undefined;
|
|
33
|
-
key?: any;
|
|
34
|
-
class?: any;
|
|
35
|
-
custom?: boolean | undefined;
|
|
36
|
-
prop?: string | undefined;
|
|
37
|
-
label?: string | undefined;
|
|
38
|
-
width?: string | number | undefined;
|
|
39
|
-
align?: string | undefined;
|
|
40
30
|
children?: any[] | undefined;
|
|
41
31
|
index?: number | ((index: number) => number) | undefined;
|
|
32
|
+
label?: string | undefined;
|
|
33
|
+
filters?: {
|
|
34
|
+
text: string;
|
|
35
|
+
value: string;
|
|
36
|
+
}[] | undefined;
|
|
42
37
|
id?: string | undefined;
|
|
38
|
+
fixed?: string | boolean | undefined;
|
|
43
39
|
formatter?: ((row: any, column: import("element-plus/es/components/table/src/table-column/defaults").TableColumnCtx<any>, cellValue: any, index: number) => string | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
44
40
|
[key: string]: any;
|
|
45
41
|
}>) | undefined;
|
|
@@ -48,14 +44,12 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
48
44
|
value: string;
|
|
49
45
|
}[] | undefined;
|
|
50
46
|
filterMethod?: import("element-plus/es/components/table/src/table-column/defaults").FilterMethods<any> | undefined;
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
}[] | undefined;
|
|
47
|
+
width?: string | number | undefined;
|
|
48
|
+
align?: string | undefined;
|
|
49
|
+
prop?: string | undefined;
|
|
55
50
|
className?: string | undefined;
|
|
56
|
-
fixed?: string | boolean | undefined;
|
|
57
51
|
showOverflowTooltip?: boolean | {
|
|
58
|
-
|
|
52
|
+
transition?: string | undefined;
|
|
59
53
|
effect?: string | undefined;
|
|
60
54
|
popperClass?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | {
|
|
61
55
|
[x: string]: boolean;
|
|
@@ -163,7 +157,9 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
163
157
|
onFirstUpdate?: ((arg0: Partial<import("@popperjs/core").State>) => void) | undefined;
|
|
164
158
|
} | undefined;
|
|
165
159
|
placement?: import("element-plus/es/utils").EpPropMergeType<StringConstructor, import("element-plus").Placement, unknown> | undefined;
|
|
160
|
+
offset?: number | undefined;
|
|
166
161
|
showArrow?: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
|
|
162
|
+
appendTo?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown> | undefined;
|
|
167
163
|
enterable?: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
|
|
168
164
|
showAfter?: number | undefined;
|
|
169
165
|
hideAfter?: number | undefined;
|
|
@@ -225,7 +221,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
225
221
|
align: string;
|
|
226
222
|
headerAlign: string;
|
|
227
223
|
showOverflowTooltip?: boolean | {
|
|
228
|
-
|
|
224
|
+
transition?: string | undefined;
|
|
229
225
|
effect?: string | undefined;
|
|
230
226
|
popperClass?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | {
|
|
231
227
|
[x: string]: boolean;
|
|
@@ -333,7 +329,9 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
333
329
|
onFirstUpdate?: ((arg0: Partial<import("@popperjs/core").State>) => void) | undefined;
|
|
334
330
|
} | undefined;
|
|
335
331
|
placement?: import("element-plus/es/utils").EpPropMergeType<StringConstructor, import("element-plus").Placement, unknown> | undefined;
|
|
332
|
+
offset?: number | undefined;
|
|
336
333
|
showArrow?: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
|
|
334
|
+
appendTo?: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown> | undefined;
|
|
337
335
|
enterable?: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
|
|
338
336
|
showAfter?: number | undefined;
|
|
339
337
|
hideAfter?: number | undefined;
|
|
@@ -383,6 +381,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
383
381
|
popoverValue: import("vue").Ref<boolean>;
|
|
384
382
|
onlyClass: import("vue").Ref<string>;
|
|
385
383
|
isAllData: import("vue").Ref<boolean>;
|
|
384
|
+
isFooter: boolean;
|
|
385
|
+
headerList: import("vue").ComputedRef<boolean | (boolean | {
|
|
386
|
+
[key: string]: import("./types").HeaderListProps;
|
|
387
|
+
} | undefined)[]>;
|
|
386
388
|
tableRef: import("vue").Ref<import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
387
389
|
data: {
|
|
388
390
|
type: import("vue").PropType<any[]>;
|
|
@@ -394,9 +396,9 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
394
396
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
395
397
|
__epPropKey: true;
|
|
396
398
|
};
|
|
397
|
-
width: (
|
|
398
|
-
height: (
|
|
399
|
-
maxHeight: (
|
|
399
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
400
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
401
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
400
402
|
fit: {
|
|
401
403
|
type: BooleanConstructor;
|
|
402
404
|
default: boolean;
|
|
@@ -420,13 +422,13 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
420
422
|
headerCellClassName: import("vue").PropType<import("element-plus/es/components/table/src/table/defaults").CellCls<any> | undefined>;
|
|
421
423
|
headerCellStyle: import("vue").PropType<import("element-plus/es/components/table/src/table/defaults").CellStyle<any> | undefined>;
|
|
422
424
|
highlightCurrentRow: BooleanConstructor;
|
|
423
|
-
currentRowKey: (
|
|
425
|
+
currentRowKey: (StringConstructor | NumberConstructor)[];
|
|
424
426
|
emptyText: StringConstructor;
|
|
425
427
|
expandRowKeys: import("vue").PropType<any[] | undefined>;
|
|
426
428
|
defaultExpandAll: BooleanConstructor;
|
|
427
429
|
defaultSort: import("vue").PropType<import("element-plus/es/components/table/src/table/defaults").Sort | undefined>;
|
|
428
430
|
tooltipEffect: StringConstructor;
|
|
429
|
-
tooltipOptions: import("vue").PropType<Partial<Pick<import("element-plus").ElTooltipProps, "
|
|
431
|
+
tooltipOptions: import("vue").PropType<Partial<Pick<import("element-plus").ElTooltipProps, "transition" | "effect" | "popperClass" | "popperOptions" | "placement" | "offset" | "showArrow" | "appendTo" | "enterable" | "showAfter" | "hideAfter">> | undefined>;
|
|
430
432
|
spanMethod: import("vue").PropType<((data: {
|
|
431
433
|
row: any;
|
|
432
434
|
rowIndex: number;
|
|
@@ -465,15 +467,12 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
465
467
|
default: string;
|
|
466
468
|
};
|
|
467
469
|
tableLayout: {
|
|
468
|
-
type: import("vue").PropType<"
|
|
470
|
+
type: import("vue").PropType<"fixed" | "auto">;
|
|
469
471
|
default: string;
|
|
470
472
|
};
|
|
471
|
-
scrollbarAlwaysOn:
|
|
472
|
-
type: BooleanConstructor;
|
|
473
|
-
default: boolean;
|
|
474
|
-
};
|
|
473
|
+
scrollbarAlwaysOn: BooleanConstructor;
|
|
475
474
|
flexible: BooleanConstructor;
|
|
476
|
-
showOverflowTooltip: import("vue").PropType<boolean | Partial<Pick<import("element-plus").ElTooltipProps, "
|
|
475
|
+
showOverflowTooltip: import("vue").PropType<boolean | Partial<Pick<import("element-plus").ElTooltipProps, "transition" | "effect" | "popperClass" | "popperOptions" | "placement" | "offset" | "showArrow" | "appendTo" | "enterable" | "showAfter" | "hideAfter">> | undefined>;
|
|
477
476
|
}>> & {
|
|
478
477
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
479
478
|
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
@@ -553,7 +552,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
553
552
|
context: import("element-plus/es/components/table/src/table/defaults").Table<any>;
|
|
554
553
|
computedSumText: import("vue").ComputedRef<string>;
|
|
555
554
|
computedEmptyText: import("vue").ComputedRef<string>;
|
|
556
|
-
tableLayout: import("vue").ComputedRef<"
|
|
555
|
+
tableLayout: import("vue").ComputedRef<"fixed" | "auto" | undefined>;
|
|
557
556
|
scrollbarViewStyle: {
|
|
558
557
|
display: string;
|
|
559
558
|
verticalAlign: string;
|
|
@@ -582,7 +581,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
582
581
|
scrollTo: (options: number | ScrollToOptions, yCoord?: number | undefined) => void;
|
|
583
582
|
setScrollLeft: (left?: number | undefined) => void;
|
|
584
583
|
setScrollTop: (top?: number | undefined) => void;
|
|
585
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("
|
|
584
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("current-change" | "select" | "select-all" | "expand-change" | "selection-change" | "cell-mouse-enter" | "cell-mouse-leave" | "cell-contextmenu" | "cell-click" | "cell-dblclick" | "row-click" | "row-contextmenu" | "row-dblclick" | "header-click" | "header-contextmenu" | "sort-change" | "filter-change" | "header-dragend")[], import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
586
585
|
data: {
|
|
587
586
|
type: import("vue").PropType<any[]>;
|
|
588
587
|
default: () => never[];
|
|
@@ -593,9 +592,9 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
593
592
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
594
593
|
__epPropKey: true;
|
|
595
594
|
};
|
|
596
|
-
width: (
|
|
597
|
-
height: (
|
|
598
|
-
maxHeight: (
|
|
595
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
596
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
597
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
599
598
|
fit: {
|
|
600
599
|
type: BooleanConstructor;
|
|
601
600
|
default: boolean;
|
|
@@ -619,13 +618,13 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
619
618
|
headerCellClassName: import("vue").PropType<import("element-plus/es/components/table/src/table/defaults").CellCls<any> | undefined>;
|
|
620
619
|
headerCellStyle: import("vue").PropType<import("element-plus/es/components/table/src/table/defaults").CellStyle<any> | undefined>;
|
|
621
620
|
highlightCurrentRow: BooleanConstructor;
|
|
622
|
-
currentRowKey: (
|
|
621
|
+
currentRowKey: (StringConstructor | NumberConstructor)[];
|
|
623
622
|
emptyText: StringConstructor;
|
|
624
623
|
expandRowKeys: import("vue").PropType<any[] | undefined>;
|
|
625
624
|
defaultExpandAll: BooleanConstructor;
|
|
626
625
|
defaultSort: import("vue").PropType<import("element-plus/es/components/table/src/table/defaults").Sort | undefined>;
|
|
627
626
|
tooltipEffect: StringConstructor;
|
|
628
|
-
tooltipOptions: import("vue").PropType<Partial<Pick<import("element-plus").ElTooltipProps, "
|
|
627
|
+
tooltipOptions: import("vue").PropType<Partial<Pick<import("element-plus").ElTooltipProps, "transition" | "effect" | "popperClass" | "popperOptions" | "placement" | "offset" | "showArrow" | "appendTo" | "enterable" | "showAfter" | "hideAfter">> | undefined>;
|
|
629
628
|
spanMethod: import("vue").PropType<((data: {
|
|
630
629
|
row: any;
|
|
631
630
|
rowIndex: number;
|
|
@@ -664,15 +663,12 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
664
663
|
default: string;
|
|
665
664
|
};
|
|
666
665
|
tableLayout: {
|
|
667
|
-
type: import("vue").PropType<"
|
|
666
|
+
type: import("vue").PropType<"fixed" | "auto">;
|
|
668
667
|
default: string;
|
|
669
668
|
};
|
|
670
|
-
scrollbarAlwaysOn:
|
|
671
|
-
type: BooleanConstructor;
|
|
672
|
-
default: boolean;
|
|
673
|
-
};
|
|
669
|
+
scrollbarAlwaysOn: BooleanConstructor;
|
|
674
670
|
flexible: BooleanConstructor;
|
|
675
|
-
showOverflowTooltip: import("vue").PropType<boolean | Partial<Pick<import("element-plus").ElTooltipProps, "
|
|
671
|
+
showOverflowTooltip: import("vue").PropType<boolean | Partial<Pick<import("element-plus").ElTooltipProps, "transition" | "effect" | "popperClass" | "popperOptions" | "placement" | "offset" | "showArrow" | "appendTo" | "enterable" | "showAfter" | "hideAfter">> | undefined>;
|
|
676
672
|
}>> & {
|
|
677
673
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
678
674
|
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
@@ -695,7 +691,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
695
691
|
}, {
|
|
696
692
|
style: import("vue").CSSProperties;
|
|
697
693
|
className: string;
|
|
698
|
-
tableLayout: "
|
|
694
|
+
tableLayout: "fixed" | "auto";
|
|
699
695
|
border: boolean;
|
|
700
696
|
data: any[];
|
|
701
697
|
fit: boolean;
|
|
@@ -731,9 +727,9 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
731
727
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
732
728
|
__epPropKey: true;
|
|
733
729
|
};
|
|
734
|
-
width: (
|
|
735
|
-
height: (
|
|
736
|
-
maxHeight: (
|
|
730
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
731
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
732
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
737
733
|
fit: {
|
|
738
734
|
type: BooleanConstructor;
|
|
739
735
|
default: boolean;
|
|
@@ -757,13 +753,13 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
757
753
|
headerCellClassName: import("vue").PropType<import("element-plus/es/components/table/src/table/defaults").CellCls<any> | undefined>;
|
|
758
754
|
headerCellStyle: import("vue").PropType<import("element-plus/es/components/table/src/table/defaults").CellStyle<any> | undefined>;
|
|
759
755
|
highlightCurrentRow: BooleanConstructor;
|
|
760
|
-
currentRowKey: (
|
|
756
|
+
currentRowKey: (StringConstructor | NumberConstructor)[];
|
|
761
757
|
emptyText: StringConstructor;
|
|
762
758
|
expandRowKeys: import("vue").PropType<any[] | undefined>;
|
|
763
759
|
defaultExpandAll: BooleanConstructor;
|
|
764
760
|
defaultSort: import("vue").PropType<import("element-plus/es/components/table/src/table/defaults").Sort | undefined>;
|
|
765
761
|
tooltipEffect: StringConstructor;
|
|
766
|
-
tooltipOptions: import("vue").PropType<Partial<Pick<import("element-plus").ElTooltipProps, "
|
|
762
|
+
tooltipOptions: import("vue").PropType<Partial<Pick<import("element-plus").ElTooltipProps, "transition" | "effect" | "popperClass" | "popperOptions" | "placement" | "offset" | "showArrow" | "appendTo" | "enterable" | "showAfter" | "hideAfter">> | undefined>;
|
|
767
763
|
spanMethod: import("vue").PropType<((data: {
|
|
768
764
|
row: any;
|
|
769
765
|
rowIndex: number;
|
|
@@ -802,15 +798,12 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
802
798
|
default: string;
|
|
803
799
|
};
|
|
804
800
|
tableLayout: {
|
|
805
|
-
type: import("vue").PropType<"
|
|
801
|
+
type: import("vue").PropType<"fixed" | "auto">;
|
|
806
802
|
default: string;
|
|
807
803
|
};
|
|
808
|
-
scrollbarAlwaysOn:
|
|
809
|
-
type: BooleanConstructor;
|
|
810
|
-
default: boolean;
|
|
811
|
-
};
|
|
804
|
+
scrollbarAlwaysOn: BooleanConstructor;
|
|
812
805
|
flexible: BooleanConstructor;
|
|
813
|
-
showOverflowTooltip: import("vue").PropType<boolean | Partial<Pick<import("element-plus").ElTooltipProps, "
|
|
806
|
+
showOverflowTooltip: import("vue").PropType<boolean | Partial<Pick<import("element-plus").ElTooltipProps, "transition" | "effect" | "popperClass" | "popperOptions" | "placement" | "offset" | "showArrow" | "appendTo" | "enterable" | "showAfter" | "hideAfter">> | undefined>;
|
|
814
807
|
}>> & {
|
|
815
808
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
816
809
|
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
@@ -890,7 +883,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
890
883
|
context: import("element-plus/es/components/table/src/table/defaults").Table<any>;
|
|
891
884
|
computedSumText: import("vue").ComputedRef<string>;
|
|
892
885
|
computedEmptyText: import("vue").ComputedRef<string>;
|
|
893
|
-
tableLayout: import("vue").ComputedRef<"
|
|
886
|
+
tableLayout: import("vue").ComputedRef<"fixed" | "auto" | undefined>;
|
|
894
887
|
scrollbarViewStyle: {
|
|
895
888
|
display: string;
|
|
896
889
|
verticalAlign: string;
|
|
@@ -922,7 +915,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
922
915
|
}, {}, {}, {}, {
|
|
923
916
|
style: import("vue").CSSProperties;
|
|
924
917
|
className: string;
|
|
925
|
-
tableLayout: "
|
|
918
|
+
tableLayout: "fixed" | "auto";
|
|
926
919
|
border: boolean;
|
|
927
920
|
data: any[];
|
|
928
921
|
fit: boolean;
|
|
@@ -946,9 +939,11 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
946
939
|
bodyRef: import("vue").Ref<HTMLElement | null>;
|
|
947
940
|
footerRef: import("vue").Ref<HTMLElement | null>;
|
|
948
941
|
selectTableRef: import("vue").Ref<import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
942
|
+
emptyValues: ArrayConstructor;
|
|
943
|
+
valueOnClear: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor, BooleanConstructor, FunctionConstructor], unknown, unknown, undefined, boolean>;
|
|
949
944
|
name: StringConstructor;
|
|
950
945
|
id: StringConstructor;
|
|
951
|
-
modelValue: import("element-plus/es/utils").EpPropFinalized<(BooleanConstructor |
|
|
946
|
+
modelValue: import("element-plus/es/utils").EpPropFinalized<(BooleanConstructor | StringConstructor | ObjectConstructor | ArrayConstructor | NumberConstructor)[], unknown, unknown, undefined, boolean>;
|
|
952
947
|
autocomplete: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, string, boolean>;
|
|
953
948
|
automaticDropdown: BooleanConstructor;
|
|
954
949
|
size: {
|
|
@@ -1002,15 +997,15 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1002
997
|
};
|
|
1003
998
|
tagType: {
|
|
1004
999
|
default: string;
|
|
1005
|
-
type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "success" | "warning" | "info" | "danger", unknown>>;
|
|
1000
|
+
type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "primary" | "success" | "warning" | "info" | "danger", unknown>>;
|
|
1006
1001
|
required: false;
|
|
1007
1002
|
validator: ((val: unknown) => boolean) | undefined;
|
|
1008
1003
|
__epPropKey: true;
|
|
1009
1004
|
};
|
|
1010
1005
|
validateEvent: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
1011
1006
|
remoteShowSuffix: BooleanConstructor;
|
|
1012
|
-
|
|
1013
|
-
|
|
1007
|
+
placement: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "auto" | "auto-start" | "auto-end" | "top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement) | ((new (...args: any[]) => "auto" | "auto-start" | "auto-end" | "top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement))[], import("element-plus").Placement, unknown, string, boolean>;
|
|
1008
|
+
fallbackPlacements: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => import("element-plus").Placement[]) | (() => import("element-plus").Placement[]) | ((new (...args: any[]) => import("element-plus").Placement[]) | (() => import("element-plus").Placement[]))[], unknown, unknown, string[], boolean>;
|
|
1014
1009
|
ariaLabel: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
|
|
1015
1010
|
}>> & {
|
|
1016
1011
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -1068,6 +1063,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1068
1063
|
selected: any;
|
|
1069
1064
|
selectionWidth: number;
|
|
1070
1065
|
calculatorWidth: number;
|
|
1066
|
+
collapseItemWidth: number;
|
|
1071
1067
|
selectedLabel: string;
|
|
1072
1068
|
hoveringIndex: number;
|
|
1073
1069
|
previousQuery: null;
|
|
@@ -1097,7 +1093,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1097
1093
|
showClose: import("vue").ComputedRef<boolean>;
|
|
1098
1094
|
iconComponent: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>))[], unknown, unknown> | undefined>;
|
|
1099
1095
|
iconReverse: import("vue").ComputedRef<string>;
|
|
1100
|
-
validateState: import("vue").ComputedRef<"" | "
|
|
1096
|
+
validateState: import("vue").ComputedRef<"" | "error" | "success" | "validating">;
|
|
1101
1097
|
validateIcon: import("vue").ComputedRef<any>;
|
|
1102
1098
|
showNewOption: import("vue").ComputedRef<boolean>;
|
|
1103
1099
|
updateOptions: () => void;
|
|
@@ -1128,6 +1124,9 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1128
1124
|
tagStyle: import("vue").ComputedRef<{
|
|
1129
1125
|
maxWidth: string;
|
|
1130
1126
|
}>;
|
|
1127
|
+
collapseTagStyle: import("vue").ComputedRef<{
|
|
1128
|
+
maxWidth: string;
|
|
1129
|
+
}>;
|
|
1131
1130
|
inputStyle: import("vue").ComputedRef<{
|
|
1132
1131
|
width: string;
|
|
1133
1132
|
}>;
|
|
@@ -1161,8 +1160,8 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1161
1160
|
persistent: boolean;
|
|
1162
1161
|
disabled: boolean;
|
|
1163
1162
|
open: boolean;
|
|
1164
|
-
role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
1165
|
-
trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "
|
|
1163
|
+
role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
1164
|
+
trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown>;
|
|
1166
1165
|
triggerKeys: string[];
|
|
1167
1166
|
arrowOffset: number;
|
|
1168
1167
|
showArrow: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -1170,7 +1169,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1170
1169
|
showArrow: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
1171
1170
|
arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
1172
1171
|
disabled: BooleanConstructor;
|
|
1173
|
-
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
1172
|
+
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
1174
1173
|
triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
1175
1174
|
virtualRef: {
|
|
1176
1175
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -1471,10 +1470,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1471
1470
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1472
1471
|
__epPropKey: true;
|
|
1473
1472
|
};
|
|
1474
|
-
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
1473
|
+
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
1475
1474
|
}>> & {
|
|
1476
1475
|
[x: `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
1477
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
|
1476
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "open" | "disabled" | "effect" | "popperOptions" | "teleported" | "persistent" | "placement" | "fallbackPlacements" | "strategy" | "offset" | "showArrow" | "arrowOffset" | "trigger" | "triggerKeys" | "virtualTriggering" | "content" | "rawContent" | "visible" | "enterable" | "pure" | "focusOnShow" | "trapping" | "stopPopperMouseEvent" | "boundariesPadding" | "gpuAcceleration" | "showAfter" | "hideAfter" | "autoClose" | "role">;
|
|
1478
1477
|
$attrs: {
|
|
1479
1478
|
[x: string]: unknown;
|
|
1480
1479
|
};
|
|
@@ -1492,7 +1491,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1492
1491
|
showArrow: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
1493
1492
|
arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
1494
1493
|
disabled: BooleanConstructor;
|
|
1495
|
-
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
1494
|
+
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
1496
1495
|
triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
1497
1496
|
virtualRef: {
|
|
1498
1497
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -1793,7 +1792,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1793
1792
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1794
1793
|
__epPropKey: true;
|
|
1795
1794
|
};
|
|
1796
|
-
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
1795
|
+
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
1797
1796
|
}>> & {
|
|
1798
1797
|
[x: `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
1799
1798
|
}, {
|
|
@@ -1801,7 +1800,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1801
1800
|
showArrow: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
1802
1801
|
arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
1803
1802
|
disabled: BooleanConstructor;
|
|
1804
|
-
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
1803
|
+
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
1805
1804
|
triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
1806
1805
|
virtualRef: {
|
|
1807
1806
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -2102,7 +2101,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2102
2101
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2103
2102
|
__epPropKey: true;
|
|
2104
2103
|
};
|
|
2105
|
-
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
2104
|
+
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
2106
2105
|
}>> & {
|
|
2107
2106
|
[x: `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
2108
2107
|
}>>;
|
|
@@ -2112,9 +2111,9 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2112
2111
|
$: import("vue").ComponentInternalInstance;
|
|
2113
2112
|
$data: {};
|
|
2114
2113
|
$props: Partial<{
|
|
2115
|
-
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
2114
|
+
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
2116
2115
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
2117
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
2116
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
2118
2117
|
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "role">;
|
|
2119
2118
|
$attrs: {
|
|
2120
2119
|
[x: string]: unknown;
|
|
@@ -2130,10 +2129,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2130
2129
|
$emit: (event: string, ...args: any[]) => void;
|
|
2131
2130
|
$el: any;
|
|
2132
2131
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
2133
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
2132
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
2134
2133
|
}>>, {
|
|
2135
2134
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
2136
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
2135
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
2137
2136
|
}>> & {
|
|
2138
2137
|
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
2139
2138
|
}>>;
|
|
@@ -2141,10 +2140,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2141
2140
|
popperInstanceRef: import("vue").Ref<import("@popperjs/core").Instance | undefined>;
|
|
2142
2141
|
contentRef: import("vue").Ref<HTMLElement | undefined>;
|
|
2143
2142
|
referenceRef: import("vue").Ref<HTMLElement | undefined>;
|
|
2144
|
-
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
2143
|
+
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>>;
|
|
2145
2144
|
popperProvides: import("element-plus").ElPopperInjectionContext;
|
|
2146
2145
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
2147
|
-
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
2146
|
+
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
2148
2147
|
}, {}, string, {}> & {
|
|
2149
2148
|
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
2150
2149
|
created?: (() => void) | (() => void)[] | undefined;
|
|
@@ -2166,10 +2165,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2166
2165
|
$nextTick: typeof import("vue").nextTick;
|
|
2167
2166
|
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
2168
2167
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
2169
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
2168
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
2170
2169
|
}>> & import("vue").ShallowUnwrapRef<{
|
|
2171
2170
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
2172
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
2171
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
2173
2172
|
}>> & {
|
|
2174
2173
|
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
2175
2174
|
}>>;
|
|
@@ -2177,7 +2176,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2177
2176
|
popperInstanceRef: import("vue").Ref<import("@popperjs/core").Instance | undefined>;
|
|
2178
2177
|
contentRef: import("vue").Ref<HTMLElement | undefined>;
|
|
2179
2178
|
referenceRef: import("vue").Ref<HTMLElement | undefined>;
|
|
2180
|
-
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
2179
|
+
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>>;
|
|
2181
2180
|
popperProvides: import("element-plus").ElPopperInjectionContext;
|
|
2182
2181
|
}> & import("vue").ComponentCustomProperties) | undefined>;
|
|
2183
2182
|
contentRef: import("vue").Ref<any>;
|
|
@@ -2192,10 +2191,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2192
2191
|
controlled: import("vue").ComputedRef<boolean>;
|
|
2193
2192
|
isFocusInsideContent: (event?: FocusEvent | undefined) => boolean | undefined;
|
|
2194
2193
|
ElPopper: import("element-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
|
|
2195
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
2194
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
2196
2195
|
}, {
|
|
2197
2196
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
2198
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
2197
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
2199
2198
|
}>> & {
|
|
2200
2199
|
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
2201
2200
|
}>>;
|
|
@@ -2203,12 +2202,12 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2203
2202
|
popperInstanceRef: import("vue").Ref<import("@popperjs/core").Instance | undefined>;
|
|
2204
2203
|
contentRef: import("vue").Ref<HTMLElement | undefined>;
|
|
2205
2204
|
referenceRef: import("vue").Ref<HTMLElement | undefined>;
|
|
2206
|
-
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
2205
|
+
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>>;
|
|
2207
2206
|
popperProvides: import("element-plus").ElPopperInjectionContext;
|
|
2208
2207
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2209
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
2208
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
2210
2209
|
}>>, {
|
|
2211
|
-
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
2210
|
+
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
2212
2211
|
}, {}>> & Record<string, any>;
|
|
2213
2212
|
ElPopperArrow: import("vue").DefineComponent<{
|
|
2214
2213
|
readonly arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
@@ -2246,7 +2245,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2246
2245
|
}, {}>;
|
|
2247
2246
|
ElTooltipTrigger: import("vue").DefineComponent<{
|
|
2248
2247
|
readonly disabled: BooleanConstructor;
|
|
2249
|
-
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
2248
|
+
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
2250
2249
|
readonly triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
2251
2250
|
readonly virtualRef: {
|
|
2252
2251
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -2302,7 +2301,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2302
2301
|
}, {
|
|
2303
2302
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
2304
2303
|
readonly disabled: BooleanConstructor;
|
|
2305
|
-
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
2304
|
+
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
2306
2305
|
readonly triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
2307
2306
|
readonly virtualRef: {
|
|
2308
2307
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -2386,7 +2385,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2386
2385
|
forwardRef: HTMLElement;
|
|
2387
2386
|
} | null>;
|
|
2388
2387
|
stopWhenControlledOrDisabled: () => true | undefined;
|
|
2389
|
-
trigger: import("vue").Ref<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "
|
|
2388
|
+
trigger: import("vue").Ref<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown>>;
|
|
2390
2389
|
onMouseenter: (event: Event) => void;
|
|
2391
2390
|
onMouseleave: (event: Event) => void;
|
|
2392
2391
|
onClick: (event: Event) => void;
|
|
@@ -2570,7 +2569,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2570
2569
|
}, {}>;
|
|
2571
2570
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2572
2571
|
readonly disabled: BooleanConstructor;
|
|
2573
|
-
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
2572
|
+
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
2574
2573
|
readonly triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
2575
2574
|
readonly virtualRef: {
|
|
2576
2575
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -2627,7 +2626,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2627
2626
|
readonly virtualTriggering: boolean;
|
|
2628
2627
|
readonly disabled: boolean;
|
|
2629
2628
|
readonly open: boolean;
|
|
2630
|
-
readonly trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "
|
|
2629
|
+
readonly trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown>;
|
|
2631
2630
|
readonly triggerKeys: string[];
|
|
2632
2631
|
}, {}>;
|
|
2633
2632
|
ElTooltipContent: import("vue").DefineComponent<{
|
|
@@ -3644,7 +3643,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3644
3643
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
3645
3644
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
3646
3645
|
}>>;
|
|
3647
|
-
focusStartRef: import("vue").Ref<HTMLElement | "
|
|
3646
|
+
focusStartRef: import("vue").Ref<HTMLElement | "container" | "first" | undefined>;
|
|
3648
3647
|
trapped: import("vue").Ref<boolean>;
|
|
3649
3648
|
onFocusAfterReleased: (event: CustomEvent<any>) => void;
|
|
3650
3649
|
onFocusAfterTrapped: () => void;
|
|
@@ -3704,7 +3703,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3704
3703
|
trapped: BooleanConstructor;
|
|
3705
3704
|
focusTrapEl: import("vue").PropType<HTMLElement>;
|
|
3706
3705
|
focusStartEl: {
|
|
3707
|
-
type: import("vue").PropType<HTMLElement | "
|
|
3706
|
+
type: import("vue").PropType<HTMLElement | "container" | "first">;
|
|
3708
3707
|
default: string;
|
|
3709
3708
|
};
|
|
3710
3709
|
}, {
|
|
@@ -3714,7 +3713,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3714
3713
|
trapped: BooleanConstructor;
|
|
3715
3714
|
focusTrapEl: import("vue").PropType<HTMLElement>;
|
|
3716
3715
|
focusStartEl: {
|
|
3717
|
-
type: import("vue").PropType<HTMLElement | "
|
|
3716
|
+
type: import("vue").PropType<HTMLElement | "container" | "first">;
|
|
3718
3717
|
default: string;
|
|
3719
3718
|
};
|
|
3720
3719
|
}>> & {
|
|
@@ -3727,7 +3726,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3727
3726
|
}, {
|
|
3728
3727
|
trapped: boolean;
|
|
3729
3728
|
loop: boolean;
|
|
3730
|
-
focusStartEl: HTMLElement | "
|
|
3729
|
+
focusStartEl: HTMLElement | "container" | "first";
|
|
3731
3730
|
}, {}>;
|
|
3732
3731
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3733
3732
|
mouseenter: (evt: MouseEvent) => boolean;
|
|
@@ -4286,8 +4285,8 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4286
4285
|
persistent: boolean;
|
|
4287
4286
|
disabled: boolean;
|
|
4288
4287
|
open: boolean;
|
|
4289
|
-
role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
4290
|
-
trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "
|
|
4288
|
+
role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
4289
|
+
trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown>;
|
|
4291
4290
|
triggerKeys: string[];
|
|
4292
4291
|
arrowOffset: number;
|
|
4293
4292
|
showArrow: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -4315,7 +4314,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4315
4314
|
showArrow: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
4316
4315
|
arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
4317
4316
|
disabled: BooleanConstructor;
|
|
4318
|
-
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
4317
|
+
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
4319
4318
|
triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
4320
4319
|
virtualRef: {
|
|
4321
4320
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -4616,7 +4615,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4616
4615
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
4617
4616
|
__epPropKey: true;
|
|
4618
4617
|
};
|
|
4619
|
-
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
4618
|
+
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
4620
4619
|
}>> & {
|
|
4621
4620
|
[x: `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
4622
4621
|
} & import("vue").ShallowUnwrapRef<{
|
|
@@ -4624,7 +4623,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4624
4623
|
showArrow: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
4625
4624
|
arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
4626
4625
|
disabled: BooleanConstructor;
|
|
4627
|
-
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
4626
|
+
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
4628
4627
|
triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
4629
4628
|
virtualRef: {
|
|
4630
4629
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -4925,7 +4924,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4925
4924
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
4926
4925
|
__epPropKey: true;
|
|
4927
4926
|
};
|
|
4928
|
-
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
4927
|
+
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
4929
4928
|
}>> & {
|
|
4930
4929
|
[x: `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
4931
4930
|
}>>;
|
|
@@ -4935,9 +4934,9 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4935
4934
|
$: import("vue").ComponentInternalInstance;
|
|
4936
4935
|
$data: {};
|
|
4937
4936
|
$props: Partial<{
|
|
4938
|
-
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
4937
|
+
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
4939
4938
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
4940
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
4939
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
4941
4940
|
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "role">;
|
|
4942
4941
|
$attrs: {
|
|
4943
4942
|
[x: string]: unknown;
|
|
@@ -4953,10 +4952,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4953
4952
|
$emit: (event: string, ...args: any[]) => void;
|
|
4954
4953
|
$el: any;
|
|
4955
4954
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
4956
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
4955
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
4957
4956
|
}>>, {
|
|
4958
4957
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
4959
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
4958
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
4960
4959
|
}>> & {
|
|
4961
4960
|
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
4962
4961
|
}>>;
|
|
@@ -4964,10 +4963,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4964
4963
|
popperInstanceRef: import("vue").Ref<import("@popperjs/core").Instance | undefined>;
|
|
4965
4964
|
contentRef: import("vue").Ref<HTMLElement | undefined>;
|
|
4966
4965
|
referenceRef: import("vue").Ref<HTMLElement | undefined>;
|
|
4967
|
-
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
4966
|
+
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>>;
|
|
4968
4967
|
popperProvides: import("element-plus").ElPopperInjectionContext;
|
|
4969
4968
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
4970
|
-
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
4969
|
+
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
4971
4970
|
}, {}, string, {}> & {
|
|
4972
4971
|
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
4973
4972
|
created?: (() => void) | (() => void)[] | undefined;
|
|
@@ -4989,10 +4988,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4989
4988
|
$nextTick: typeof import("vue").nextTick;
|
|
4990
4989
|
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
4991
4990
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
4992
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
4991
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
4993
4992
|
}>> & import("vue").ShallowUnwrapRef<{
|
|
4994
4993
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
4995
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
4994
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
4996
4995
|
}>> & {
|
|
4997
4996
|
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
4998
4997
|
}>>;
|
|
@@ -5000,7 +4999,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
5000
4999
|
popperInstanceRef: import("vue").Ref<import("@popperjs/core").Instance | undefined>;
|
|
5001
5000
|
contentRef: import("vue").Ref<HTMLElement | undefined>;
|
|
5002
5001
|
referenceRef: import("vue").Ref<HTMLElement | undefined>;
|
|
5003
|
-
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
5002
|
+
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>>;
|
|
5004
5003
|
popperProvides: import("element-plus").ElPopperInjectionContext;
|
|
5005
5004
|
}> & import("vue").ComponentCustomProperties) | undefined>;
|
|
5006
5005
|
contentRef: import("vue").Ref<any>;
|
|
@@ -5015,10 +5014,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
5015
5014
|
controlled: import("vue").ComputedRef<boolean>;
|
|
5016
5015
|
isFocusInsideContent: (event?: FocusEvent | undefined) => boolean | undefined;
|
|
5017
5016
|
ElPopper: import("element-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
|
|
5018
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
5017
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
5019
5018
|
}, {
|
|
5020
5019
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
5021
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
5020
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
5022
5021
|
}>> & {
|
|
5023
5022
|
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
5024
5023
|
}>>;
|
|
@@ -5026,12 +5025,12 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
5026
5025
|
popperInstanceRef: import("vue").Ref<import("@popperjs/core").Instance | undefined>;
|
|
5027
5026
|
contentRef: import("vue").Ref<HTMLElement | undefined>;
|
|
5028
5027
|
referenceRef: import("vue").Ref<HTMLElement | undefined>;
|
|
5029
|
-
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
5028
|
+
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>>;
|
|
5030
5029
|
popperProvides: import("element-plus").ElPopperInjectionContext;
|
|
5031
5030
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
5032
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
5031
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
5033
5032
|
}>>, {
|
|
5034
|
-
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
5033
|
+
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
5035
5034
|
}, {}>> & Record<string, any>;
|
|
5036
5035
|
ElPopperArrow: import("vue").DefineComponent<{
|
|
5037
5036
|
readonly arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
@@ -5069,7 +5068,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
5069
5068
|
}, {}>;
|
|
5070
5069
|
ElTooltipTrigger: import("vue").DefineComponent<{
|
|
5071
5070
|
readonly disabled: BooleanConstructor;
|
|
5072
|
-
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
5071
|
+
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
5073
5072
|
readonly triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
5074
5073
|
readonly virtualRef: {
|
|
5075
5074
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -5125,7 +5124,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
5125
5124
|
}, {
|
|
5126
5125
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
5127
5126
|
readonly disabled: BooleanConstructor;
|
|
5128
|
-
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
5127
|
+
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
5129
5128
|
readonly triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
5130
5129
|
readonly virtualRef: {
|
|
5131
5130
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -5209,7 +5208,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
5209
5208
|
forwardRef: HTMLElement;
|
|
5210
5209
|
} | null>;
|
|
5211
5210
|
stopWhenControlledOrDisabled: () => true | undefined;
|
|
5212
|
-
trigger: import("vue").Ref<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "
|
|
5211
|
+
trigger: import("vue").Ref<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown>>;
|
|
5213
5212
|
onMouseenter: (event: Event) => void;
|
|
5214
5213
|
onMouseleave: (event: Event) => void;
|
|
5215
5214
|
onClick: (event: Event) => void;
|
|
@@ -5393,7 +5392,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
5393
5392
|
}, {}>;
|
|
5394
5393
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
5395
5394
|
readonly disabled: BooleanConstructor;
|
|
5396
|
-
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
5395
|
+
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
5397
5396
|
readonly triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
5398
5397
|
readonly virtualRef: {
|
|
5399
5398
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -5450,7 +5449,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
5450
5449
|
readonly virtualTriggering: boolean;
|
|
5451
5450
|
readonly disabled: boolean;
|
|
5452
5451
|
readonly open: boolean;
|
|
5453
|
-
readonly trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "
|
|
5452
|
+
readonly trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown>;
|
|
5454
5453
|
readonly triggerKeys: string[];
|
|
5455
5454
|
}, {}>;
|
|
5456
5455
|
ElTooltipContent: import("vue").DefineComponent<{
|
|
@@ -6467,7 +6466,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
6467
6466
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
6468
6467
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
6469
6468
|
}>>;
|
|
6470
|
-
focusStartRef: import("vue").Ref<HTMLElement | "
|
|
6469
|
+
focusStartRef: import("vue").Ref<HTMLElement | "container" | "first" | undefined>;
|
|
6471
6470
|
trapped: import("vue").Ref<boolean>;
|
|
6472
6471
|
onFocusAfterReleased: (event: CustomEvent<any>) => void;
|
|
6473
6472
|
onFocusAfterTrapped: () => void;
|
|
@@ -6527,7 +6526,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
6527
6526
|
trapped: BooleanConstructor;
|
|
6528
6527
|
focusTrapEl: import("vue").PropType<HTMLElement>;
|
|
6529
6528
|
focusStartEl: {
|
|
6530
|
-
type: import("vue").PropType<HTMLElement | "
|
|
6529
|
+
type: import("vue").PropType<HTMLElement | "container" | "first">;
|
|
6531
6530
|
default: string;
|
|
6532
6531
|
};
|
|
6533
6532
|
}, {
|
|
@@ -6537,7 +6536,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
6537
6536
|
trapped: BooleanConstructor;
|
|
6538
6537
|
focusTrapEl: import("vue").PropType<HTMLElement>;
|
|
6539
6538
|
focusStartEl: {
|
|
6540
|
-
type: import("vue").PropType<HTMLElement | "
|
|
6539
|
+
type: import("vue").PropType<HTMLElement | "container" | "first">;
|
|
6541
6540
|
default: string;
|
|
6542
6541
|
};
|
|
6543
6542
|
}>> & {
|
|
@@ -6550,7 +6549,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
6550
6549
|
}, {
|
|
6551
6550
|
trapped: boolean;
|
|
6552
6551
|
loop: boolean;
|
|
6553
|
-
focusStartEl: HTMLElement | "
|
|
6552
|
+
focusStartEl: HTMLElement | "container" | "first";
|
|
6554
6553
|
}, {}>;
|
|
6555
6554
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6556
6555
|
mouseenter: (evt: MouseEvent) => boolean;
|
|
@@ -7113,8 +7112,8 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7113
7112
|
persistent: boolean;
|
|
7114
7113
|
disabled: boolean;
|
|
7115
7114
|
open: boolean;
|
|
7116
|
-
role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
7117
|
-
trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "
|
|
7115
|
+
role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
7116
|
+
trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown>;
|
|
7118
7117
|
triggerKeys: string[];
|
|
7119
7118
|
arrowOffset: number;
|
|
7120
7119
|
showArrow: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -7122,7 +7121,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7122
7121
|
showArrow: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
7123
7122
|
arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
7124
7123
|
disabled: BooleanConstructor;
|
|
7125
|
-
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
7124
|
+
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
7126
7125
|
triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
7127
7126
|
virtualRef: {
|
|
7128
7127
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -7423,10 +7422,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7423
7422
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
7424
7423
|
__epPropKey: true;
|
|
7425
7424
|
};
|
|
7426
|
-
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
7425
|
+
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
7427
7426
|
}>> & {
|
|
7428
7427
|
[x: `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
7429
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
|
7428
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "open" | "disabled" | "effect" | "popperOptions" | "teleported" | "persistent" | "placement" | "fallbackPlacements" | "strategy" | "offset" | "showArrow" | "arrowOffset" | "trigger" | "triggerKeys" | "virtualTriggering" | "content" | "rawContent" | "visible" | "enterable" | "pure" | "focusOnShow" | "trapping" | "stopPopperMouseEvent" | "boundariesPadding" | "gpuAcceleration" | "showAfter" | "hideAfter" | "autoClose" | "role">;
|
|
7430
7429
|
$attrs: {
|
|
7431
7430
|
[x: string]: unknown;
|
|
7432
7431
|
};
|
|
@@ -7444,7 +7443,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7444
7443
|
showArrow: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
7445
7444
|
arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
7446
7445
|
disabled: BooleanConstructor;
|
|
7447
|
-
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
7446
|
+
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
7448
7447
|
triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
7449
7448
|
virtualRef: {
|
|
7450
7449
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -7745,7 +7744,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7745
7744
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
7746
7745
|
__epPropKey: true;
|
|
7747
7746
|
};
|
|
7748
|
-
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
7747
|
+
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
7749
7748
|
}>> & {
|
|
7750
7749
|
[x: `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
7751
7750
|
}, {
|
|
@@ -7753,7 +7752,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
7753
7752
|
showArrow: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
7754
7753
|
arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
7755
7754
|
disabled: BooleanConstructor;
|
|
7756
|
-
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
7755
|
+
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
7757
7756
|
triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
7758
7757
|
virtualRef: {
|
|
7759
7758
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -8054,7 +8053,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8054
8053
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
8055
8054
|
__epPropKey: true;
|
|
8056
8055
|
};
|
|
8057
|
-
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
8056
|
+
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
8058
8057
|
}>> & {
|
|
8059
8058
|
[x: `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
8060
8059
|
}>>;
|
|
@@ -8064,9 +8063,9 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8064
8063
|
$: import("vue").ComponentInternalInstance;
|
|
8065
8064
|
$data: {};
|
|
8066
8065
|
$props: Partial<{
|
|
8067
|
-
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
8066
|
+
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
8068
8067
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
8069
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
8068
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
8070
8069
|
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "role">;
|
|
8071
8070
|
$attrs: {
|
|
8072
8071
|
[x: string]: unknown;
|
|
@@ -8082,10 +8081,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8082
8081
|
$emit: (event: string, ...args: any[]) => void;
|
|
8083
8082
|
$el: any;
|
|
8084
8083
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
8085
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
8084
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
8086
8085
|
}>>, {
|
|
8087
8086
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
8088
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
8087
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
8089
8088
|
}>> & {
|
|
8090
8089
|
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
8091
8090
|
}>>;
|
|
@@ -8093,10 +8092,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8093
8092
|
popperInstanceRef: import("vue").Ref<import("@popperjs/core").Instance | undefined>;
|
|
8094
8093
|
contentRef: import("vue").Ref<HTMLElement | undefined>;
|
|
8095
8094
|
referenceRef: import("vue").Ref<HTMLElement | undefined>;
|
|
8096
|
-
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
8095
|
+
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>>;
|
|
8097
8096
|
popperProvides: import("element-plus").ElPopperInjectionContext;
|
|
8098
8097
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
8099
|
-
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
8098
|
+
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
8100
8099
|
}, {}, string, {}> & {
|
|
8101
8100
|
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
8102
8101
|
created?: (() => void) | (() => void)[] | undefined;
|
|
@@ -8118,10 +8117,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8118
8117
|
$nextTick: typeof import("vue").nextTick;
|
|
8119
8118
|
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
8120
8119
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
8121
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
8120
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
8122
8121
|
}>> & import("vue").ShallowUnwrapRef<{
|
|
8123
8122
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
8124
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
8123
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
8125
8124
|
}>> & {
|
|
8126
8125
|
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
8127
8126
|
}>>;
|
|
@@ -8129,7 +8128,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8129
8128
|
popperInstanceRef: import("vue").Ref<import("@popperjs/core").Instance | undefined>;
|
|
8130
8129
|
contentRef: import("vue").Ref<HTMLElement | undefined>;
|
|
8131
8130
|
referenceRef: import("vue").Ref<HTMLElement | undefined>;
|
|
8132
|
-
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
8131
|
+
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>>;
|
|
8133
8132
|
popperProvides: import("element-plus").ElPopperInjectionContext;
|
|
8134
8133
|
}> & import("vue").ComponentCustomProperties) | undefined>;
|
|
8135
8134
|
contentRef: import("vue").Ref<any>;
|
|
@@ -8144,10 +8143,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8144
8143
|
controlled: import("vue").ComputedRef<boolean>;
|
|
8145
8144
|
isFocusInsideContent: (event?: FocusEvent | undefined) => boolean | undefined;
|
|
8146
8145
|
ElPopper: import("element-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
|
|
8147
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
8146
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
8148
8147
|
}, {
|
|
8149
8148
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
8150
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
8149
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
8151
8150
|
}>> & {
|
|
8152
8151
|
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
8153
8152
|
}>>;
|
|
@@ -8155,12 +8154,12 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8155
8154
|
popperInstanceRef: import("vue").Ref<import("@popperjs/core").Instance | undefined>;
|
|
8156
8155
|
contentRef: import("vue").Ref<HTMLElement | undefined>;
|
|
8157
8156
|
referenceRef: import("vue").Ref<HTMLElement | undefined>;
|
|
8158
|
-
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
8157
|
+
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>>;
|
|
8159
8158
|
popperProvides: import("element-plus").ElPopperInjectionContext;
|
|
8160
8159
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8161
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
8160
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
8162
8161
|
}>>, {
|
|
8163
|
-
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
8162
|
+
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
8164
8163
|
}, {}>> & Record<string, any>;
|
|
8165
8164
|
ElPopperArrow: import("vue").DefineComponent<{
|
|
8166
8165
|
readonly arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
@@ -8198,7 +8197,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8198
8197
|
}, {}>;
|
|
8199
8198
|
ElTooltipTrigger: import("vue").DefineComponent<{
|
|
8200
8199
|
readonly disabled: BooleanConstructor;
|
|
8201
|
-
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
8200
|
+
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
8202
8201
|
readonly triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
8203
8202
|
readonly virtualRef: {
|
|
8204
8203
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -8254,7 +8253,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8254
8253
|
}, {
|
|
8255
8254
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
8256
8255
|
readonly disabled: BooleanConstructor;
|
|
8257
|
-
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
8256
|
+
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
8258
8257
|
readonly triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
8259
8258
|
readonly virtualRef: {
|
|
8260
8259
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -8338,7 +8337,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8338
8337
|
forwardRef: HTMLElement;
|
|
8339
8338
|
} | null>;
|
|
8340
8339
|
stopWhenControlledOrDisabled: () => true | undefined;
|
|
8341
|
-
trigger: import("vue").Ref<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "
|
|
8340
|
+
trigger: import("vue").Ref<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown>>;
|
|
8342
8341
|
onMouseenter: (event: Event) => void;
|
|
8343
8342
|
onMouseleave: (event: Event) => void;
|
|
8344
8343
|
onClick: (event: Event) => void;
|
|
@@ -8522,7 +8521,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8522
8521
|
}, {}>;
|
|
8523
8522
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8524
8523
|
readonly disabled: BooleanConstructor;
|
|
8525
|
-
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
8524
|
+
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
8526
8525
|
readonly triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
8527
8526
|
readonly virtualRef: {
|
|
8528
8527
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -8579,7 +8578,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
8579
8578
|
readonly virtualTriggering: boolean;
|
|
8580
8579
|
readonly disabled: boolean;
|
|
8581
8580
|
readonly open: boolean;
|
|
8582
|
-
readonly trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "
|
|
8581
|
+
readonly trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown>;
|
|
8583
8582
|
readonly triggerKeys: string[];
|
|
8584
8583
|
}, {}>;
|
|
8585
8584
|
ElTooltipContent: import("vue").DefineComponent<{
|
|
@@ -9596,7 +9595,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
9596
9595
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
9597
9596
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
9598
9597
|
}>>;
|
|
9599
|
-
focusStartRef: import("vue").Ref<HTMLElement | "
|
|
9598
|
+
focusStartRef: import("vue").Ref<HTMLElement | "container" | "first" | undefined>;
|
|
9600
9599
|
trapped: import("vue").Ref<boolean>;
|
|
9601
9600
|
onFocusAfterReleased: (event: CustomEvent<any>) => void;
|
|
9602
9601
|
onFocusAfterTrapped: () => void;
|
|
@@ -9656,7 +9655,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
9656
9655
|
trapped: BooleanConstructor;
|
|
9657
9656
|
focusTrapEl: import("vue").PropType<HTMLElement>;
|
|
9658
9657
|
focusStartEl: {
|
|
9659
|
-
type: import("vue").PropType<HTMLElement | "
|
|
9658
|
+
type: import("vue").PropType<HTMLElement | "container" | "first">;
|
|
9660
9659
|
default: string;
|
|
9661
9660
|
};
|
|
9662
9661
|
}, {
|
|
@@ -9666,7 +9665,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
9666
9665
|
trapped: BooleanConstructor;
|
|
9667
9666
|
focusTrapEl: import("vue").PropType<HTMLElement>;
|
|
9668
9667
|
focusStartEl: {
|
|
9669
|
-
type: import("vue").PropType<HTMLElement | "
|
|
9668
|
+
type: import("vue").PropType<HTMLElement | "container" | "first">;
|
|
9670
9669
|
default: string;
|
|
9671
9670
|
};
|
|
9672
9671
|
}>> & {
|
|
@@ -9679,7 +9678,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
9679
9678
|
}, {
|
|
9680
9679
|
trapped: boolean;
|
|
9681
9680
|
loop: boolean;
|
|
9682
|
-
focusStartEl: HTMLElement | "
|
|
9681
|
+
focusStartEl: HTMLElement | "container" | "first";
|
|
9683
9682
|
}, {}>;
|
|
9684
9683
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9685
9684
|
mouseenter: (evt: MouseEvent) => boolean;
|
|
@@ -10238,8 +10237,8 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10238
10237
|
persistent: boolean;
|
|
10239
10238
|
disabled: boolean;
|
|
10240
10239
|
open: boolean;
|
|
10241
|
-
role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
10242
|
-
trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "
|
|
10240
|
+
role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
10241
|
+
trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown>;
|
|
10243
10242
|
triggerKeys: string[];
|
|
10244
10243
|
arrowOffset: number;
|
|
10245
10244
|
showArrow: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -10267,7 +10266,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10267
10266
|
showArrow: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
10268
10267
|
arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
10269
10268
|
disabled: BooleanConstructor;
|
|
10270
|
-
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
10269
|
+
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
10271
10270
|
triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
10272
10271
|
virtualRef: {
|
|
10273
10272
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -10568,7 +10567,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10568
10567
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
10569
10568
|
__epPropKey: true;
|
|
10570
10569
|
};
|
|
10571
|
-
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
10570
|
+
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
10572
10571
|
}>> & {
|
|
10573
10572
|
[x: `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
10574
10573
|
} & import("vue").ShallowUnwrapRef<{
|
|
@@ -10576,7 +10575,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10576
10575
|
showArrow: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
10577
10576
|
arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
10578
10577
|
disabled: BooleanConstructor;
|
|
10579
|
-
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
10578
|
+
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
10580
10579
|
triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
10581
10580
|
virtualRef: {
|
|
10582
10581
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -10877,7 +10876,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10877
10876
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
10878
10877
|
__epPropKey: true;
|
|
10879
10878
|
};
|
|
10880
|
-
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
10879
|
+
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
10881
10880
|
}>> & {
|
|
10882
10881
|
[x: `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
10883
10882
|
}>>;
|
|
@@ -10887,9 +10886,9 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10887
10886
|
$: import("vue").ComponentInternalInstance;
|
|
10888
10887
|
$data: {};
|
|
10889
10888
|
$props: Partial<{
|
|
10890
|
-
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
10889
|
+
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
10891
10890
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
10892
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
10891
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
10893
10892
|
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "role">;
|
|
10894
10893
|
$attrs: {
|
|
10895
10894
|
[x: string]: unknown;
|
|
@@ -10905,10 +10904,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10905
10904
|
$emit: (event: string, ...args: any[]) => void;
|
|
10906
10905
|
$el: any;
|
|
10907
10906
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
10908
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
10907
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
10909
10908
|
}>>, {
|
|
10910
10909
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
10911
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
10910
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
10912
10911
|
}>> & {
|
|
10913
10912
|
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
10914
10913
|
}>>;
|
|
@@ -10916,10 +10915,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10916
10915
|
popperInstanceRef: import("vue").Ref<import("@popperjs/core").Instance | undefined>;
|
|
10917
10916
|
contentRef: import("vue").Ref<HTMLElement | undefined>;
|
|
10918
10917
|
referenceRef: import("vue").Ref<HTMLElement | undefined>;
|
|
10919
|
-
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
10918
|
+
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>>;
|
|
10920
10919
|
popperProvides: import("element-plus").ElPopperInjectionContext;
|
|
10921
10920
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
10922
|
-
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
10921
|
+
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
10923
10922
|
}, {}, string, {}> & {
|
|
10924
10923
|
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
10925
10924
|
created?: (() => void) | (() => void)[] | undefined;
|
|
@@ -10941,10 +10940,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10941
10940
|
$nextTick: typeof import("vue").nextTick;
|
|
10942
10941
|
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
10943
10942
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
10944
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
10943
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
10945
10944
|
}>> & import("vue").ShallowUnwrapRef<{
|
|
10946
10945
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
10947
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
10946
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
10948
10947
|
}>> & {
|
|
10949
10948
|
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
10950
10949
|
}>>;
|
|
@@ -10952,7 +10951,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10952
10951
|
popperInstanceRef: import("vue").Ref<import("@popperjs/core").Instance | undefined>;
|
|
10953
10952
|
contentRef: import("vue").Ref<HTMLElement | undefined>;
|
|
10954
10953
|
referenceRef: import("vue").Ref<HTMLElement | undefined>;
|
|
10955
|
-
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
10954
|
+
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>>;
|
|
10956
10955
|
popperProvides: import("element-plus").ElPopperInjectionContext;
|
|
10957
10956
|
}> & import("vue").ComponentCustomProperties) | undefined>;
|
|
10958
10957
|
contentRef: import("vue").Ref<any>;
|
|
@@ -10967,10 +10966,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10967
10966
|
controlled: import("vue").ComputedRef<boolean>;
|
|
10968
10967
|
isFocusInsideContent: (event?: FocusEvent | undefined) => boolean | undefined;
|
|
10969
10968
|
ElPopper: import("element-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
|
|
10970
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
10969
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
10971
10970
|
}, {
|
|
10972
10971
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
10973
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
10972
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
10974
10973
|
}>> & {
|
|
10975
10974
|
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
10976
10975
|
}>>;
|
|
@@ -10978,12 +10977,12 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
10978
10977
|
popperInstanceRef: import("vue").Ref<import("@popperjs/core").Instance | undefined>;
|
|
10979
10978
|
contentRef: import("vue").Ref<HTMLElement | undefined>;
|
|
10980
10979
|
referenceRef: import("vue").Ref<HTMLElement | undefined>;
|
|
10981
|
-
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
10980
|
+
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>>;
|
|
10982
10981
|
popperProvides: import("element-plus").ElPopperInjectionContext;
|
|
10983
10982
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
10984
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
10983
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
10985
10984
|
}>>, {
|
|
10986
|
-
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
10985
|
+
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
10987
10986
|
}, {}>> & Record<string, any>;
|
|
10988
10987
|
ElPopperArrow: import("vue").DefineComponent<{
|
|
10989
10988
|
readonly arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
@@ -11021,7 +11020,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
11021
11020
|
}, {}>;
|
|
11022
11021
|
ElTooltipTrigger: import("vue").DefineComponent<{
|
|
11023
11022
|
readonly disabled: BooleanConstructor;
|
|
11024
|
-
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
11023
|
+
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
11025
11024
|
readonly triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
11026
11025
|
readonly virtualRef: {
|
|
11027
11026
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -11077,7 +11076,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
11077
11076
|
}, {
|
|
11078
11077
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
11079
11078
|
readonly disabled: BooleanConstructor;
|
|
11080
|
-
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
11079
|
+
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
11081
11080
|
readonly triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
11082
11081
|
readonly virtualRef: {
|
|
11083
11082
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -11161,7 +11160,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
11161
11160
|
forwardRef: HTMLElement;
|
|
11162
11161
|
} | null>;
|
|
11163
11162
|
stopWhenControlledOrDisabled: () => true | undefined;
|
|
11164
|
-
trigger: import("vue").Ref<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "
|
|
11163
|
+
trigger: import("vue").Ref<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown>>;
|
|
11165
11164
|
onMouseenter: (event: Event) => void;
|
|
11166
11165
|
onMouseleave: (event: Event) => void;
|
|
11167
11166
|
onClick: (event: Event) => void;
|
|
@@ -11345,7 +11344,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
11345
11344
|
}, {}>;
|
|
11346
11345
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11347
11346
|
readonly disabled: BooleanConstructor;
|
|
11348
|
-
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
11347
|
+
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
11349
11348
|
readonly triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
11350
11349
|
readonly virtualRef: {
|
|
11351
11350
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -11402,7 +11401,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
11402
11401
|
readonly virtualTriggering: boolean;
|
|
11403
11402
|
readonly disabled: boolean;
|
|
11404
11403
|
readonly open: boolean;
|
|
11405
|
-
readonly trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "
|
|
11404
|
+
readonly trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown>;
|
|
11406
11405
|
readonly triggerKeys: string[];
|
|
11407
11406
|
}, {}>;
|
|
11408
11407
|
ElTooltipContent: import("vue").DefineComponent<{
|
|
@@ -12419,7 +12418,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
12419
12418
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
12420
12419
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
12421
12420
|
}>>;
|
|
12422
|
-
focusStartRef: import("vue").Ref<HTMLElement | "
|
|
12421
|
+
focusStartRef: import("vue").Ref<HTMLElement | "container" | "first" | undefined>;
|
|
12423
12422
|
trapped: import("vue").Ref<boolean>;
|
|
12424
12423
|
onFocusAfterReleased: (event: CustomEvent<any>) => void;
|
|
12425
12424
|
onFocusAfterTrapped: () => void;
|
|
@@ -12479,7 +12478,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
12479
12478
|
trapped: BooleanConstructor;
|
|
12480
12479
|
focusTrapEl: import("vue").PropType<HTMLElement>;
|
|
12481
12480
|
focusStartEl: {
|
|
12482
|
-
type: import("vue").PropType<HTMLElement | "
|
|
12481
|
+
type: import("vue").PropType<HTMLElement | "container" | "first">;
|
|
12483
12482
|
default: string;
|
|
12484
12483
|
};
|
|
12485
12484
|
}, {
|
|
@@ -12489,7 +12488,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
12489
12488
|
trapped: BooleanConstructor;
|
|
12490
12489
|
focusTrapEl: import("vue").PropType<HTMLElement>;
|
|
12491
12490
|
focusStartEl: {
|
|
12492
|
-
type: import("vue").PropType<HTMLElement | "
|
|
12491
|
+
type: import("vue").PropType<HTMLElement | "container" | "first">;
|
|
12493
12492
|
default: string;
|
|
12494
12493
|
};
|
|
12495
12494
|
}>> & {
|
|
@@ -12502,7 +12501,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
12502
12501
|
}, {
|
|
12503
12502
|
trapped: boolean;
|
|
12504
12503
|
loop: boolean;
|
|
12505
|
-
focusStartEl: HTMLElement | "
|
|
12504
|
+
focusStartEl: HTMLElement | "container" | "first";
|
|
12506
12505
|
}, {}>;
|
|
12507
12506
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12508
12507
|
mouseenter: (evt: MouseEvent) => boolean;
|
|
@@ -13048,10 +13047,13 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
13048
13047
|
} | null>;
|
|
13049
13048
|
menuRef: import("vue").Ref<HTMLElement>;
|
|
13050
13049
|
tagMenuRef: import("vue").Ref<HTMLElement>;
|
|
13050
|
+
collapseItemRef: import("vue").Ref<HTMLElement>;
|
|
13051
13051
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("clear" | "focus" | "blur" | "update:modelValue" | "change" | "visible-change" | "remove-tag")[], import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
13052
|
+
emptyValues: ArrayConstructor;
|
|
13053
|
+
valueOnClear: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor, BooleanConstructor, FunctionConstructor], unknown, unknown, undefined, boolean>;
|
|
13052
13054
|
name: StringConstructor;
|
|
13053
13055
|
id: StringConstructor;
|
|
13054
|
-
modelValue: import("element-plus/es/utils").EpPropFinalized<(BooleanConstructor |
|
|
13056
|
+
modelValue: import("element-plus/es/utils").EpPropFinalized<(BooleanConstructor | StringConstructor | ObjectConstructor | ArrayConstructor | NumberConstructor)[], unknown, unknown, undefined, boolean>;
|
|
13055
13057
|
autocomplete: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, string, boolean>;
|
|
13056
13058
|
automaticDropdown: BooleanConstructor;
|
|
13057
13059
|
size: {
|
|
@@ -13105,15 +13107,15 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
13105
13107
|
};
|
|
13106
13108
|
tagType: {
|
|
13107
13109
|
default: string;
|
|
13108
|
-
type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "success" | "warning" | "info" | "danger", unknown>>;
|
|
13110
|
+
type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "primary" | "success" | "warning" | "info" | "danger", unknown>>;
|
|
13109
13111
|
required: false;
|
|
13110
13112
|
validator: ((val: unknown) => boolean) | undefined;
|
|
13111
13113
|
__epPropKey: true;
|
|
13112
13114
|
};
|
|
13113
13115
|
validateEvent: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
13114
13116
|
remoteShowSuffix: BooleanConstructor;
|
|
13115
|
-
|
|
13116
|
-
|
|
13117
|
+
placement: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "auto" | "auto-start" | "auto-end" | "top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement) | ((new (...args: any[]) => "auto" | "auto-start" | "auto-end" | "top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement))[], import("element-plus").Placement, unknown, string, boolean>;
|
|
13118
|
+
fallbackPlacements: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => import("element-plus").Placement[]) | (() => import("element-plus").Placement[]) | ((new (...args: any[]) => import("element-plus").Placement[]) | (() => import("element-plus").Placement[]))[], unknown, unknown, string[], boolean>;
|
|
13117
13119
|
ariaLabel: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
|
|
13118
13120
|
}>> & {
|
|
13119
13121
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -13126,9 +13128,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
13126
13128
|
}, {
|
|
13127
13129
|
effect: string;
|
|
13128
13130
|
valueKey: string;
|
|
13129
|
-
modelValue: import("element-plus/es/utils").EpPropMergeType<(BooleanConstructor |
|
|
13130
|
-
placement: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "
|
|
13131
|
+
modelValue: import("element-plus/es/utils").EpPropMergeType<(BooleanConstructor | StringConstructor | ObjectConstructor | ArrayConstructor | NumberConstructor)[], unknown, unknown>;
|
|
13132
|
+
placement: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "auto" | "auto-start" | "auto-end" | "top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement) | ((new (...args: any[]) => "auto" | "auto-start" | "auto-end" | "top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement))[], import("element-plus").Placement, unknown>;
|
|
13131
13133
|
popperClass: string;
|
|
13134
|
+
fallbackPlacements: import("element-plus").Placement[];
|
|
13132
13135
|
popperOptions: Partial<import("element-plus").Options>;
|
|
13133
13136
|
ariaLabel: string;
|
|
13134
13137
|
teleported: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -13144,7 +13147,8 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
13144
13147
|
collapseTags: boolean;
|
|
13145
13148
|
maxCollapseTags: number;
|
|
13146
13149
|
collapseTagsTooltip: boolean;
|
|
13147
|
-
tagType: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "success" | "warning" | "info" | "danger", unknown>;
|
|
13150
|
+
tagType: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "primary" | "success" | "warning" | "info" | "danger", unknown>;
|
|
13151
|
+
valueOnClear: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor, BooleanConstructor, FunctionConstructor], unknown, unknown>;
|
|
13148
13152
|
automaticDropdown: boolean;
|
|
13149
13153
|
allowCreate: boolean;
|
|
13150
13154
|
remote: boolean;
|
|
@@ -13152,7 +13156,6 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
13152
13156
|
defaultFirstOption: boolean;
|
|
13153
13157
|
reserveKeyword: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
13154
13158
|
remoteShowSuffix: boolean;
|
|
13155
|
-
suffixTransition: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
13156
13159
|
}, true, {}, {}, {
|
|
13157
13160
|
P: {};
|
|
13158
13161
|
B: {};
|
|
@@ -13161,9 +13164,11 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
13161
13164
|
M: {};
|
|
13162
13165
|
Defaults: {};
|
|
13163
13166
|
}, Readonly<import("vue").ExtractPropTypes<{
|
|
13167
|
+
emptyValues: ArrayConstructor;
|
|
13168
|
+
valueOnClear: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor, BooleanConstructor, FunctionConstructor], unknown, unknown, undefined, boolean>;
|
|
13164
13169
|
name: StringConstructor;
|
|
13165
13170
|
id: StringConstructor;
|
|
13166
|
-
modelValue: import("element-plus/es/utils").EpPropFinalized<(BooleanConstructor |
|
|
13171
|
+
modelValue: import("element-plus/es/utils").EpPropFinalized<(BooleanConstructor | StringConstructor | ObjectConstructor | ArrayConstructor | NumberConstructor)[], unknown, unknown, undefined, boolean>;
|
|
13167
13172
|
autocomplete: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, string, boolean>;
|
|
13168
13173
|
automaticDropdown: BooleanConstructor;
|
|
13169
13174
|
size: {
|
|
@@ -13217,15 +13222,15 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
13217
13222
|
};
|
|
13218
13223
|
tagType: {
|
|
13219
13224
|
default: string;
|
|
13220
|
-
type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "success" | "warning" | "info" | "danger", unknown>>;
|
|
13225
|
+
type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "primary" | "success" | "warning" | "info" | "danger", unknown>>;
|
|
13221
13226
|
required: false;
|
|
13222
13227
|
validator: ((val: unknown) => boolean) | undefined;
|
|
13223
13228
|
__epPropKey: true;
|
|
13224
13229
|
};
|
|
13225
13230
|
validateEvent: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
13226
13231
|
remoteShowSuffix: BooleanConstructor;
|
|
13227
|
-
|
|
13228
|
-
|
|
13232
|
+
placement: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "auto" | "auto-start" | "auto-end" | "top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement) | ((new (...args: any[]) => "auto" | "auto-start" | "auto-end" | "top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement))[], import("element-plus").Placement, unknown, string, boolean>;
|
|
13233
|
+
fallbackPlacements: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => import("element-plus").Placement[]) | (() => import("element-plus").Placement[]) | ((new (...args: any[]) => import("element-plus").Placement[]) | (() => import("element-plus").Placement[]))[], unknown, unknown, string[], boolean>;
|
|
13229
13234
|
ariaLabel: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
|
|
13230
13235
|
}>> & {
|
|
13231
13236
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -13283,6 +13288,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
13283
13288
|
selected: any;
|
|
13284
13289
|
selectionWidth: number;
|
|
13285
13290
|
calculatorWidth: number;
|
|
13291
|
+
collapseItemWidth: number;
|
|
13286
13292
|
selectedLabel: string;
|
|
13287
13293
|
hoveringIndex: number;
|
|
13288
13294
|
previousQuery: null;
|
|
@@ -13312,7 +13318,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
13312
13318
|
showClose: import("vue").ComputedRef<boolean>;
|
|
13313
13319
|
iconComponent: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions, {}, any>))[], unknown, unknown> | undefined>;
|
|
13314
13320
|
iconReverse: import("vue").ComputedRef<string>;
|
|
13315
|
-
validateState: import("vue").ComputedRef<"" | "
|
|
13321
|
+
validateState: import("vue").ComputedRef<"" | "error" | "success" | "validating">;
|
|
13316
13322
|
validateIcon: import("vue").ComputedRef<any>;
|
|
13317
13323
|
showNewOption: import("vue").ComputedRef<boolean>;
|
|
13318
13324
|
updateOptions: () => void;
|
|
@@ -13343,6 +13349,9 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
13343
13349
|
tagStyle: import("vue").ComputedRef<{
|
|
13344
13350
|
maxWidth: string;
|
|
13345
13351
|
}>;
|
|
13352
|
+
collapseTagStyle: import("vue").ComputedRef<{
|
|
13353
|
+
maxWidth: string;
|
|
13354
|
+
}>;
|
|
13346
13355
|
inputStyle: import("vue").ComputedRef<{
|
|
13347
13356
|
width: string;
|
|
13348
13357
|
}>;
|
|
@@ -13376,8 +13385,8 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
13376
13385
|
persistent: boolean;
|
|
13377
13386
|
disabled: boolean;
|
|
13378
13387
|
open: boolean;
|
|
13379
|
-
role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
13380
|
-
trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "
|
|
13388
|
+
role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
13389
|
+
trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown>;
|
|
13381
13390
|
triggerKeys: string[];
|
|
13382
13391
|
arrowOffset: number;
|
|
13383
13392
|
showArrow: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -13385,7 +13394,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
13385
13394
|
showArrow: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
13386
13395
|
arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
13387
13396
|
disabled: BooleanConstructor;
|
|
13388
|
-
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
13397
|
+
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
13389
13398
|
triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
13390
13399
|
virtualRef: {
|
|
13391
13400
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -13686,10 +13695,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
13686
13695
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
13687
13696
|
__epPropKey: true;
|
|
13688
13697
|
};
|
|
13689
|
-
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
13698
|
+
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
13690
13699
|
}>> & {
|
|
13691
13700
|
[x: `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
13692
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
|
13701
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "open" | "disabled" | "effect" | "popperOptions" | "teleported" | "persistent" | "placement" | "fallbackPlacements" | "strategy" | "offset" | "showArrow" | "arrowOffset" | "trigger" | "triggerKeys" | "virtualTriggering" | "content" | "rawContent" | "visible" | "enterable" | "pure" | "focusOnShow" | "trapping" | "stopPopperMouseEvent" | "boundariesPadding" | "gpuAcceleration" | "showAfter" | "hideAfter" | "autoClose" | "role">;
|
|
13693
13702
|
$attrs: {
|
|
13694
13703
|
[x: string]: unknown;
|
|
13695
13704
|
};
|
|
@@ -13707,7 +13716,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
13707
13716
|
showArrow: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
13708
13717
|
arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
13709
13718
|
disabled: BooleanConstructor;
|
|
13710
|
-
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
13719
|
+
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
13711
13720
|
triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
13712
13721
|
virtualRef: {
|
|
13713
13722
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -14008,7 +14017,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14008
14017
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
14009
14018
|
__epPropKey: true;
|
|
14010
14019
|
};
|
|
14011
|
-
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
14020
|
+
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
14012
14021
|
}>> & {
|
|
14013
14022
|
[x: `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
14014
14023
|
}, {
|
|
@@ -14016,7 +14025,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14016
14025
|
showArrow: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
14017
14026
|
arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
14018
14027
|
disabled: BooleanConstructor;
|
|
14019
|
-
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
14028
|
+
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
14020
14029
|
triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
14021
14030
|
virtualRef: {
|
|
14022
14031
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -14317,7 +14326,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14317
14326
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
14318
14327
|
__epPropKey: true;
|
|
14319
14328
|
};
|
|
14320
|
-
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
14329
|
+
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
14321
14330
|
}>> & {
|
|
14322
14331
|
[x: `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
14323
14332
|
}>>;
|
|
@@ -14327,9 +14336,9 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14327
14336
|
$: import("vue").ComponentInternalInstance;
|
|
14328
14337
|
$data: {};
|
|
14329
14338
|
$props: Partial<{
|
|
14330
|
-
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
14339
|
+
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
14331
14340
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
14332
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
14341
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
14333
14342
|
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "role">;
|
|
14334
14343
|
$attrs: {
|
|
14335
14344
|
[x: string]: unknown;
|
|
@@ -14345,10 +14354,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14345
14354
|
$emit: (event: string, ...args: any[]) => void;
|
|
14346
14355
|
$el: any;
|
|
14347
14356
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
14348
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
14357
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
14349
14358
|
}>>, {
|
|
14350
14359
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
14351
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
14360
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
14352
14361
|
}>> & {
|
|
14353
14362
|
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
14354
14363
|
}>>;
|
|
@@ -14356,10 +14365,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14356
14365
|
popperInstanceRef: import("vue").Ref<import("@popperjs/core").Instance | undefined>;
|
|
14357
14366
|
contentRef: import("vue").Ref<HTMLElement | undefined>;
|
|
14358
14367
|
referenceRef: import("vue").Ref<HTMLElement | undefined>;
|
|
14359
|
-
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
14368
|
+
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>>;
|
|
14360
14369
|
popperProvides: import("element-plus").ElPopperInjectionContext;
|
|
14361
14370
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
14362
|
-
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
14371
|
+
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
14363
14372
|
}, {}, string, {}> & {
|
|
14364
14373
|
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
14365
14374
|
created?: (() => void) | (() => void)[] | undefined;
|
|
@@ -14381,10 +14390,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14381
14390
|
$nextTick: typeof import("vue").nextTick;
|
|
14382
14391
|
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
14383
14392
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
14384
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
14393
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
14385
14394
|
}>> & import("vue").ShallowUnwrapRef<{
|
|
14386
14395
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
14387
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
14396
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
14388
14397
|
}>> & {
|
|
14389
14398
|
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
14390
14399
|
}>>;
|
|
@@ -14392,7 +14401,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14392
14401
|
popperInstanceRef: import("vue").Ref<import("@popperjs/core").Instance | undefined>;
|
|
14393
14402
|
contentRef: import("vue").Ref<HTMLElement | undefined>;
|
|
14394
14403
|
referenceRef: import("vue").Ref<HTMLElement | undefined>;
|
|
14395
|
-
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
14404
|
+
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>>;
|
|
14396
14405
|
popperProvides: import("element-plus").ElPopperInjectionContext;
|
|
14397
14406
|
}> & import("vue").ComponentCustomProperties) | undefined>;
|
|
14398
14407
|
contentRef: import("vue").Ref<any>;
|
|
@@ -14407,10 +14416,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14407
14416
|
controlled: import("vue").ComputedRef<boolean>;
|
|
14408
14417
|
isFocusInsideContent: (event?: FocusEvent | undefined) => boolean | undefined;
|
|
14409
14418
|
ElPopper: import("element-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
|
|
14410
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
14419
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
14411
14420
|
}, {
|
|
14412
14421
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
14413
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
14422
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
14414
14423
|
}>> & {
|
|
14415
14424
|
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
14416
14425
|
}>>;
|
|
@@ -14418,12 +14427,12 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14418
14427
|
popperInstanceRef: import("vue").Ref<import("@popperjs/core").Instance | undefined>;
|
|
14419
14428
|
contentRef: import("vue").Ref<HTMLElement | undefined>;
|
|
14420
14429
|
referenceRef: import("vue").Ref<HTMLElement | undefined>;
|
|
14421
|
-
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
14430
|
+
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>>;
|
|
14422
14431
|
popperProvides: import("element-plus").ElPopperInjectionContext;
|
|
14423
14432
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
14424
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
14433
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
14425
14434
|
}>>, {
|
|
14426
|
-
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
14435
|
+
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
14427
14436
|
}, {}>> & Record<string, any>;
|
|
14428
14437
|
ElPopperArrow: import("vue").DefineComponent<{
|
|
14429
14438
|
readonly arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
@@ -14461,7 +14470,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14461
14470
|
}, {}>;
|
|
14462
14471
|
ElTooltipTrigger: import("vue").DefineComponent<{
|
|
14463
14472
|
readonly disabled: BooleanConstructor;
|
|
14464
|
-
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
14473
|
+
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
14465
14474
|
readonly triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
14466
14475
|
readonly virtualRef: {
|
|
14467
14476
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -14517,7 +14526,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14517
14526
|
}, {
|
|
14518
14527
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
14519
14528
|
readonly disabled: BooleanConstructor;
|
|
14520
|
-
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
14529
|
+
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
14521
14530
|
readonly triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
14522
14531
|
readonly virtualRef: {
|
|
14523
14532
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -14601,7 +14610,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14601
14610
|
forwardRef: HTMLElement;
|
|
14602
14611
|
} | null>;
|
|
14603
14612
|
stopWhenControlledOrDisabled: () => true | undefined;
|
|
14604
|
-
trigger: import("vue").Ref<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "
|
|
14613
|
+
trigger: import("vue").Ref<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown>>;
|
|
14605
14614
|
onMouseenter: (event: Event) => void;
|
|
14606
14615
|
onMouseleave: (event: Event) => void;
|
|
14607
14616
|
onClick: (event: Event) => void;
|
|
@@ -14785,7 +14794,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14785
14794
|
}, {}>;
|
|
14786
14795
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
14787
14796
|
readonly disabled: BooleanConstructor;
|
|
14788
|
-
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
14797
|
+
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
14789
14798
|
readonly triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
14790
14799
|
readonly virtualRef: {
|
|
14791
14800
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -14842,7 +14851,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
14842
14851
|
readonly virtualTriggering: boolean;
|
|
14843
14852
|
readonly disabled: boolean;
|
|
14844
14853
|
readonly open: boolean;
|
|
14845
|
-
readonly trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "
|
|
14854
|
+
readonly trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown>;
|
|
14846
14855
|
readonly triggerKeys: string[];
|
|
14847
14856
|
}, {}>;
|
|
14848
14857
|
ElTooltipContent: import("vue").DefineComponent<{
|
|
@@ -15859,7 +15868,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
15859
15868
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
15860
15869
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
15861
15870
|
}>>;
|
|
15862
|
-
focusStartRef: import("vue").Ref<HTMLElement | "
|
|
15871
|
+
focusStartRef: import("vue").Ref<HTMLElement | "container" | "first" | undefined>;
|
|
15863
15872
|
trapped: import("vue").Ref<boolean>;
|
|
15864
15873
|
onFocusAfterReleased: (event: CustomEvent<any>) => void;
|
|
15865
15874
|
onFocusAfterTrapped: () => void;
|
|
@@ -15919,7 +15928,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
15919
15928
|
trapped: BooleanConstructor;
|
|
15920
15929
|
focusTrapEl: import("vue").PropType<HTMLElement>;
|
|
15921
15930
|
focusStartEl: {
|
|
15922
|
-
type: import("vue").PropType<HTMLElement | "
|
|
15931
|
+
type: import("vue").PropType<HTMLElement | "container" | "first">;
|
|
15923
15932
|
default: string;
|
|
15924
15933
|
};
|
|
15925
15934
|
}, {
|
|
@@ -15929,7 +15938,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
15929
15938
|
trapped: BooleanConstructor;
|
|
15930
15939
|
focusTrapEl: import("vue").PropType<HTMLElement>;
|
|
15931
15940
|
focusStartEl: {
|
|
15932
|
-
type: import("vue").PropType<HTMLElement | "
|
|
15941
|
+
type: import("vue").PropType<HTMLElement | "container" | "first">;
|
|
15933
15942
|
default: string;
|
|
15934
15943
|
};
|
|
15935
15944
|
}>> & {
|
|
@@ -15942,7 +15951,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
15942
15951
|
}, {
|
|
15943
15952
|
trapped: boolean;
|
|
15944
15953
|
loop: boolean;
|
|
15945
|
-
focusStartEl: HTMLElement | "
|
|
15954
|
+
focusStartEl: HTMLElement | "container" | "first";
|
|
15946
15955
|
}, {}>;
|
|
15947
15956
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15948
15957
|
mouseenter: (evt: MouseEvent) => boolean;
|
|
@@ -16501,8 +16510,8 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
16501
16510
|
persistent: boolean;
|
|
16502
16511
|
disabled: boolean;
|
|
16503
16512
|
open: boolean;
|
|
16504
|
-
role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
16505
|
-
trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "
|
|
16513
|
+
role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
16514
|
+
trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown>;
|
|
16506
16515
|
triggerKeys: string[];
|
|
16507
16516
|
arrowOffset: number;
|
|
16508
16517
|
showArrow: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -16530,7 +16539,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
16530
16539
|
showArrow: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
16531
16540
|
arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
16532
16541
|
disabled: BooleanConstructor;
|
|
16533
|
-
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
16542
|
+
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
16534
16543
|
triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
16535
16544
|
virtualRef: {
|
|
16536
16545
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -16831,7 +16840,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
16831
16840
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
16832
16841
|
__epPropKey: true;
|
|
16833
16842
|
};
|
|
16834
|
-
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
16843
|
+
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
16835
16844
|
}>> & {
|
|
16836
16845
|
[x: `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
16837
16846
|
} & import("vue").ShallowUnwrapRef<{
|
|
@@ -16839,7 +16848,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
16839
16848
|
showArrow: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
16840
16849
|
arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
16841
16850
|
disabled: BooleanConstructor;
|
|
16842
|
-
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
16851
|
+
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
16843
16852
|
triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
16844
16853
|
virtualRef: {
|
|
16845
16854
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -17140,7 +17149,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
17140
17149
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
17141
17150
|
__epPropKey: true;
|
|
17142
17151
|
};
|
|
17143
|
-
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
17152
|
+
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
17144
17153
|
}>> & {
|
|
17145
17154
|
[x: `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
17146
17155
|
}>>;
|
|
@@ -17150,9 +17159,9 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
17150
17159
|
$: import("vue").ComponentInternalInstance;
|
|
17151
17160
|
$data: {};
|
|
17152
17161
|
$props: Partial<{
|
|
17153
|
-
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
17162
|
+
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
17154
17163
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
17155
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
17164
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
17156
17165
|
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "role">;
|
|
17157
17166
|
$attrs: {
|
|
17158
17167
|
[x: string]: unknown;
|
|
@@ -17168,10 +17177,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
17168
17177
|
$emit: (event: string, ...args: any[]) => void;
|
|
17169
17178
|
$el: any;
|
|
17170
17179
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
17171
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
17180
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
17172
17181
|
}>>, {
|
|
17173
17182
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
17174
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
17183
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
17175
17184
|
}>> & {
|
|
17176
17185
|
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
17177
17186
|
}>>;
|
|
@@ -17179,10 +17188,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
17179
17188
|
popperInstanceRef: import("vue").Ref<import("@popperjs/core").Instance | undefined>;
|
|
17180
17189
|
contentRef: import("vue").Ref<HTMLElement | undefined>;
|
|
17181
17190
|
referenceRef: import("vue").Ref<HTMLElement | undefined>;
|
|
17182
|
-
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
17191
|
+
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>>;
|
|
17183
17192
|
popperProvides: import("element-plus").ElPopperInjectionContext;
|
|
17184
17193
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
17185
|
-
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
17194
|
+
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
17186
17195
|
}, {}, string, {}> & {
|
|
17187
17196
|
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
17188
17197
|
created?: (() => void) | (() => void)[] | undefined;
|
|
@@ -17204,10 +17213,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
17204
17213
|
$nextTick: typeof import("vue").nextTick;
|
|
17205
17214
|
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
17206
17215
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
17207
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
17216
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
17208
17217
|
}>> & import("vue").ShallowUnwrapRef<{
|
|
17209
17218
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
17210
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
17219
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
17211
17220
|
}>> & {
|
|
17212
17221
|
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
17213
17222
|
}>>;
|
|
@@ -17215,7 +17224,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
17215
17224
|
popperInstanceRef: import("vue").Ref<import("@popperjs/core").Instance | undefined>;
|
|
17216
17225
|
contentRef: import("vue").Ref<HTMLElement | undefined>;
|
|
17217
17226
|
referenceRef: import("vue").Ref<HTMLElement | undefined>;
|
|
17218
|
-
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
17227
|
+
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>>;
|
|
17219
17228
|
popperProvides: import("element-plus").ElPopperInjectionContext;
|
|
17220
17229
|
}> & import("vue").ComponentCustomProperties) | undefined>;
|
|
17221
17230
|
contentRef: import("vue").Ref<any>;
|
|
@@ -17230,10 +17239,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
17230
17239
|
controlled: import("vue").ComputedRef<boolean>;
|
|
17231
17240
|
isFocusInsideContent: (event?: FocusEvent | undefined) => boolean | undefined;
|
|
17232
17241
|
ElPopper: import("element-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
|
|
17233
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
17242
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
17234
17243
|
}, {
|
|
17235
17244
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
17236
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
17245
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
17237
17246
|
}>> & {
|
|
17238
17247
|
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
17239
17248
|
}>>;
|
|
@@ -17241,12 +17250,12 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
17241
17250
|
popperInstanceRef: import("vue").Ref<import("@popperjs/core").Instance | undefined>;
|
|
17242
17251
|
contentRef: import("vue").Ref<HTMLElement | undefined>;
|
|
17243
17252
|
referenceRef: import("vue").Ref<HTMLElement | undefined>;
|
|
17244
|
-
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
17253
|
+
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>>;
|
|
17245
17254
|
popperProvides: import("element-plus").ElPopperInjectionContext;
|
|
17246
17255
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17247
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
17256
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
17248
17257
|
}>>, {
|
|
17249
|
-
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
17258
|
+
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
17250
17259
|
}, {}>> & Record<string, any>;
|
|
17251
17260
|
ElPopperArrow: import("vue").DefineComponent<{
|
|
17252
17261
|
readonly arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
@@ -17284,7 +17293,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
17284
17293
|
}, {}>;
|
|
17285
17294
|
ElTooltipTrigger: import("vue").DefineComponent<{
|
|
17286
17295
|
readonly disabled: BooleanConstructor;
|
|
17287
|
-
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
17296
|
+
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
17288
17297
|
readonly triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
17289
17298
|
readonly virtualRef: {
|
|
17290
17299
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -17340,7 +17349,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
17340
17349
|
}, {
|
|
17341
17350
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
17342
17351
|
readonly disabled: BooleanConstructor;
|
|
17343
|
-
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
17352
|
+
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
17344
17353
|
readonly triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
17345
17354
|
readonly virtualRef: {
|
|
17346
17355
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -17424,7 +17433,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
17424
17433
|
forwardRef: HTMLElement;
|
|
17425
17434
|
} | null>;
|
|
17426
17435
|
stopWhenControlledOrDisabled: () => true | undefined;
|
|
17427
|
-
trigger: import("vue").Ref<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "
|
|
17436
|
+
trigger: import("vue").Ref<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown>>;
|
|
17428
17437
|
onMouseenter: (event: Event) => void;
|
|
17429
17438
|
onMouseleave: (event: Event) => void;
|
|
17430
17439
|
onClick: (event: Event) => void;
|
|
@@ -17608,7 +17617,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
17608
17617
|
}, {}>;
|
|
17609
17618
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17610
17619
|
readonly disabled: BooleanConstructor;
|
|
17611
|
-
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
17620
|
+
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
17612
17621
|
readonly triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
17613
17622
|
readonly virtualRef: {
|
|
17614
17623
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -17665,7 +17674,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
17665
17674
|
readonly virtualTriggering: boolean;
|
|
17666
17675
|
readonly disabled: boolean;
|
|
17667
17676
|
readonly open: boolean;
|
|
17668
|
-
readonly trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "
|
|
17677
|
+
readonly trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown>;
|
|
17669
17678
|
readonly triggerKeys: string[];
|
|
17670
17679
|
}, {}>;
|
|
17671
17680
|
ElTooltipContent: import("vue").DefineComponent<{
|
|
@@ -18682,7 +18691,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
18682
18691
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
18683
18692
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
18684
18693
|
}>>;
|
|
18685
|
-
focusStartRef: import("vue").Ref<HTMLElement | "
|
|
18694
|
+
focusStartRef: import("vue").Ref<HTMLElement | "container" | "first" | undefined>;
|
|
18686
18695
|
trapped: import("vue").Ref<boolean>;
|
|
18687
18696
|
onFocusAfterReleased: (event: CustomEvent<any>) => void;
|
|
18688
18697
|
onFocusAfterTrapped: () => void;
|
|
@@ -18742,7 +18751,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
18742
18751
|
trapped: BooleanConstructor;
|
|
18743
18752
|
focusTrapEl: import("vue").PropType<HTMLElement>;
|
|
18744
18753
|
focusStartEl: {
|
|
18745
|
-
type: import("vue").PropType<HTMLElement | "
|
|
18754
|
+
type: import("vue").PropType<HTMLElement | "container" | "first">;
|
|
18746
18755
|
default: string;
|
|
18747
18756
|
};
|
|
18748
18757
|
}, {
|
|
@@ -18752,7 +18761,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
18752
18761
|
trapped: BooleanConstructor;
|
|
18753
18762
|
focusTrapEl: import("vue").PropType<HTMLElement>;
|
|
18754
18763
|
focusStartEl: {
|
|
18755
|
-
type: import("vue").PropType<HTMLElement | "
|
|
18764
|
+
type: import("vue").PropType<HTMLElement | "container" | "first">;
|
|
18756
18765
|
default: string;
|
|
18757
18766
|
};
|
|
18758
18767
|
}>> & {
|
|
@@ -18765,7 +18774,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
18765
18774
|
}, {
|
|
18766
18775
|
trapped: boolean;
|
|
18767
18776
|
loop: boolean;
|
|
18768
|
-
focusStartEl: HTMLElement | "
|
|
18777
|
+
focusStartEl: HTMLElement | "container" | "first";
|
|
18769
18778
|
}, {}>;
|
|
18770
18779
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18771
18780
|
mouseenter: (evt: MouseEvent) => boolean;
|
|
@@ -19328,8 +19337,8 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
19328
19337
|
persistent: boolean;
|
|
19329
19338
|
disabled: boolean;
|
|
19330
19339
|
open: boolean;
|
|
19331
|
-
role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
19332
|
-
trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "
|
|
19340
|
+
role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
19341
|
+
trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown>;
|
|
19333
19342
|
triggerKeys: string[];
|
|
19334
19343
|
arrowOffset: number;
|
|
19335
19344
|
showArrow: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -19337,7 +19346,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
19337
19346
|
showArrow: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
19338
19347
|
arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
19339
19348
|
disabled: BooleanConstructor;
|
|
19340
|
-
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
19349
|
+
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
19341
19350
|
triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
19342
19351
|
virtualRef: {
|
|
19343
19352
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -19638,10 +19647,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
19638
19647
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
19639
19648
|
__epPropKey: true;
|
|
19640
19649
|
};
|
|
19641
|
-
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
19650
|
+
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
19642
19651
|
}>> & {
|
|
19643
19652
|
[x: `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
19644
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "
|
|
19653
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "open" | "disabled" | "effect" | "popperOptions" | "teleported" | "persistent" | "placement" | "fallbackPlacements" | "strategy" | "offset" | "showArrow" | "arrowOffset" | "trigger" | "triggerKeys" | "virtualTriggering" | "content" | "rawContent" | "visible" | "enterable" | "pure" | "focusOnShow" | "trapping" | "stopPopperMouseEvent" | "boundariesPadding" | "gpuAcceleration" | "showAfter" | "hideAfter" | "autoClose" | "role">;
|
|
19645
19654
|
$attrs: {
|
|
19646
19655
|
[x: string]: unknown;
|
|
19647
19656
|
};
|
|
@@ -19659,7 +19668,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
19659
19668
|
showArrow: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
19660
19669
|
arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
19661
19670
|
disabled: BooleanConstructor;
|
|
19662
|
-
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
19671
|
+
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
19663
19672
|
triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
19664
19673
|
virtualRef: {
|
|
19665
19674
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -19960,7 +19969,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
19960
19969
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
19961
19970
|
__epPropKey: true;
|
|
19962
19971
|
};
|
|
19963
|
-
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
19972
|
+
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
19964
19973
|
}>> & {
|
|
19965
19974
|
[x: `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
19966
19975
|
}, {
|
|
@@ -19968,7 +19977,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
19968
19977
|
showArrow: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
19969
19978
|
arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
19970
19979
|
disabled: BooleanConstructor;
|
|
19971
|
-
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
19980
|
+
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
19972
19981
|
triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
19973
19982
|
virtualRef: {
|
|
19974
19983
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -20269,7 +20278,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
20269
20278
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
20270
20279
|
__epPropKey: true;
|
|
20271
20280
|
};
|
|
20272
|
-
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
20281
|
+
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
20273
20282
|
}>> & {
|
|
20274
20283
|
[x: `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
20275
20284
|
}>>;
|
|
@@ -20279,9 +20288,9 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
20279
20288
|
$: import("vue").ComponentInternalInstance;
|
|
20280
20289
|
$data: {};
|
|
20281
20290
|
$props: Partial<{
|
|
20282
|
-
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
20291
|
+
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
20283
20292
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
20284
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
20293
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
20285
20294
|
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "role">;
|
|
20286
20295
|
$attrs: {
|
|
20287
20296
|
[x: string]: unknown;
|
|
@@ -20297,10 +20306,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
20297
20306
|
$emit: (event: string, ...args: any[]) => void;
|
|
20298
20307
|
$el: any;
|
|
20299
20308
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
20300
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
20309
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
20301
20310
|
}>>, {
|
|
20302
20311
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
20303
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
20312
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
20304
20313
|
}>> & {
|
|
20305
20314
|
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
20306
20315
|
}>>;
|
|
@@ -20308,10 +20317,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
20308
20317
|
popperInstanceRef: import("vue").Ref<import("@popperjs/core").Instance | undefined>;
|
|
20309
20318
|
contentRef: import("vue").Ref<HTMLElement | undefined>;
|
|
20310
20319
|
referenceRef: import("vue").Ref<HTMLElement | undefined>;
|
|
20311
|
-
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
20320
|
+
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>>;
|
|
20312
20321
|
popperProvides: import("element-plus").ElPopperInjectionContext;
|
|
20313
20322
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
20314
|
-
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
20323
|
+
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
20315
20324
|
}, {}, string, {}> & {
|
|
20316
20325
|
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
20317
20326
|
created?: (() => void) | (() => void)[] | undefined;
|
|
@@ -20333,10 +20342,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
20333
20342
|
$nextTick: typeof import("vue").nextTick;
|
|
20334
20343
|
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
20335
20344
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
20336
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
20345
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
20337
20346
|
}>> & import("vue").ShallowUnwrapRef<{
|
|
20338
20347
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
20339
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
20348
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
20340
20349
|
}>> & {
|
|
20341
20350
|
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
20342
20351
|
}>>;
|
|
@@ -20344,7 +20353,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
20344
20353
|
popperInstanceRef: import("vue").Ref<import("@popperjs/core").Instance | undefined>;
|
|
20345
20354
|
contentRef: import("vue").Ref<HTMLElement | undefined>;
|
|
20346
20355
|
referenceRef: import("vue").Ref<HTMLElement | undefined>;
|
|
20347
|
-
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
20356
|
+
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>>;
|
|
20348
20357
|
popperProvides: import("element-plus").ElPopperInjectionContext;
|
|
20349
20358
|
}> & import("vue").ComponentCustomProperties) | undefined>;
|
|
20350
20359
|
contentRef: import("vue").Ref<any>;
|
|
@@ -20359,10 +20368,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
20359
20368
|
controlled: import("vue").ComputedRef<boolean>;
|
|
20360
20369
|
isFocusInsideContent: (event?: FocusEvent | undefined) => boolean | undefined;
|
|
20361
20370
|
ElPopper: import("element-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
|
|
20362
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
20371
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
20363
20372
|
}, {
|
|
20364
20373
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
20365
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
20374
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
20366
20375
|
}>> & {
|
|
20367
20376
|
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
20368
20377
|
}>>;
|
|
@@ -20370,12 +20379,12 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
20370
20379
|
popperInstanceRef: import("vue").Ref<import("@popperjs/core").Instance | undefined>;
|
|
20371
20380
|
contentRef: import("vue").Ref<HTMLElement | undefined>;
|
|
20372
20381
|
referenceRef: import("vue").Ref<HTMLElement | undefined>;
|
|
20373
|
-
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
20382
|
+
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>>;
|
|
20374
20383
|
popperProvides: import("element-plus").ElPopperInjectionContext;
|
|
20375
20384
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
20376
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
20385
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
20377
20386
|
}>>, {
|
|
20378
|
-
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
20387
|
+
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
20379
20388
|
}, {}>> & Record<string, any>;
|
|
20380
20389
|
ElPopperArrow: import("vue").DefineComponent<{
|
|
20381
20390
|
readonly arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
@@ -20413,7 +20422,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
20413
20422
|
}, {}>;
|
|
20414
20423
|
ElTooltipTrigger: import("vue").DefineComponent<{
|
|
20415
20424
|
readonly disabled: BooleanConstructor;
|
|
20416
|
-
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
20425
|
+
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
20417
20426
|
readonly triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
20418
20427
|
readonly virtualRef: {
|
|
20419
20428
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -20469,7 +20478,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
20469
20478
|
}, {
|
|
20470
20479
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
20471
20480
|
readonly disabled: BooleanConstructor;
|
|
20472
|
-
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
20481
|
+
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
20473
20482
|
readonly triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
20474
20483
|
readonly virtualRef: {
|
|
20475
20484
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -20553,7 +20562,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
20553
20562
|
forwardRef: HTMLElement;
|
|
20554
20563
|
} | null>;
|
|
20555
20564
|
stopWhenControlledOrDisabled: () => true | undefined;
|
|
20556
|
-
trigger: import("vue").Ref<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "
|
|
20565
|
+
trigger: import("vue").Ref<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown>>;
|
|
20557
20566
|
onMouseenter: (event: Event) => void;
|
|
20558
20567
|
onMouseleave: (event: Event) => void;
|
|
20559
20568
|
onClick: (event: Event) => void;
|
|
@@ -20737,7 +20746,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
20737
20746
|
}, {}>;
|
|
20738
20747
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
20739
20748
|
readonly disabled: BooleanConstructor;
|
|
20740
|
-
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
20749
|
+
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
20741
20750
|
readonly triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
20742
20751
|
readonly virtualRef: {
|
|
20743
20752
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -20794,7 +20803,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
20794
20803
|
readonly virtualTriggering: boolean;
|
|
20795
20804
|
readonly disabled: boolean;
|
|
20796
20805
|
readonly open: boolean;
|
|
20797
|
-
readonly trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "
|
|
20806
|
+
readonly trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown>;
|
|
20798
20807
|
readonly triggerKeys: string[];
|
|
20799
20808
|
}, {}>;
|
|
20800
20809
|
ElTooltipContent: import("vue").DefineComponent<{
|
|
@@ -21811,7 +21820,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
21811
21820
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
21812
21821
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
21813
21822
|
}>>;
|
|
21814
|
-
focusStartRef: import("vue").Ref<HTMLElement | "
|
|
21823
|
+
focusStartRef: import("vue").Ref<HTMLElement | "container" | "first" | undefined>;
|
|
21815
21824
|
trapped: import("vue").Ref<boolean>;
|
|
21816
21825
|
onFocusAfterReleased: (event: CustomEvent<any>) => void;
|
|
21817
21826
|
onFocusAfterTrapped: () => void;
|
|
@@ -21871,7 +21880,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
21871
21880
|
trapped: BooleanConstructor;
|
|
21872
21881
|
focusTrapEl: import("vue").PropType<HTMLElement>;
|
|
21873
21882
|
focusStartEl: {
|
|
21874
|
-
type: import("vue").PropType<HTMLElement | "
|
|
21883
|
+
type: import("vue").PropType<HTMLElement | "container" | "first">;
|
|
21875
21884
|
default: string;
|
|
21876
21885
|
};
|
|
21877
21886
|
}, {
|
|
@@ -21881,7 +21890,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
21881
21890
|
trapped: BooleanConstructor;
|
|
21882
21891
|
focusTrapEl: import("vue").PropType<HTMLElement>;
|
|
21883
21892
|
focusStartEl: {
|
|
21884
|
-
type: import("vue").PropType<HTMLElement | "
|
|
21893
|
+
type: import("vue").PropType<HTMLElement | "container" | "first">;
|
|
21885
21894
|
default: string;
|
|
21886
21895
|
};
|
|
21887
21896
|
}>> & {
|
|
@@ -21894,7 +21903,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
21894
21903
|
}, {
|
|
21895
21904
|
trapped: boolean;
|
|
21896
21905
|
loop: boolean;
|
|
21897
|
-
focusStartEl: HTMLElement | "
|
|
21906
|
+
focusStartEl: HTMLElement | "container" | "first";
|
|
21898
21907
|
}, {}>;
|
|
21899
21908
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21900
21909
|
mouseenter: (evt: MouseEvent) => boolean;
|
|
@@ -22453,8 +22462,8 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
22453
22462
|
persistent: boolean;
|
|
22454
22463
|
disabled: boolean;
|
|
22455
22464
|
open: boolean;
|
|
22456
|
-
role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
22457
|
-
trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "
|
|
22465
|
+
role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
22466
|
+
trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown>;
|
|
22458
22467
|
triggerKeys: string[];
|
|
22459
22468
|
arrowOffset: number;
|
|
22460
22469
|
showArrow: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -22482,7 +22491,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
22482
22491
|
showArrow: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
22483
22492
|
arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
22484
22493
|
disabled: BooleanConstructor;
|
|
22485
|
-
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
22494
|
+
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
22486
22495
|
triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
22487
22496
|
virtualRef: {
|
|
22488
22497
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -22783,7 +22792,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
22783
22792
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
22784
22793
|
__epPropKey: true;
|
|
22785
22794
|
};
|
|
22786
|
-
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
22795
|
+
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
22787
22796
|
}>> & {
|
|
22788
22797
|
[x: `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
22789
22798
|
} & import("vue").ShallowUnwrapRef<{
|
|
@@ -22791,7 +22800,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
22791
22800
|
showArrow: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
22792
22801
|
arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
22793
22802
|
disabled: BooleanConstructor;
|
|
22794
|
-
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
22803
|
+
trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
22795
22804
|
triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
22796
22805
|
virtualRef: {
|
|
22797
22806
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -23092,7 +23101,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
23092
23101
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
23093
23102
|
__epPropKey: true;
|
|
23094
23103
|
};
|
|
23095
|
-
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
23104
|
+
role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
23096
23105
|
}>> & {
|
|
23097
23106
|
[x: `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
23098
23107
|
}>>;
|
|
@@ -23102,9 +23111,9 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
23102
23111
|
$: import("vue").ComponentInternalInstance;
|
|
23103
23112
|
$data: {};
|
|
23104
23113
|
$props: Partial<{
|
|
23105
|
-
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
23114
|
+
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
23106
23115
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
23107
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
23116
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
23108
23117
|
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "role">;
|
|
23109
23118
|
$attrs: {
|
|
23110
23119
|
[x: string]: unknown;
|
|
@@ -23120,10 +23129,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
23120
23129
|
$emit: (event: string, ...args: any[]) => void;
|
|
23121
23130
|
$el: any;
|
|
23122
23131
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
23123
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
23132
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
23124
23133
|
}>>, {
|
|
23125
23134
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
23126
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
23135
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
23127
23136
|
}>> & {
|
|
23128
23137
|
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
23129
23138
|
}>>;
|
|
@@ -23131,10 +23140,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
23131
23140
|
popperInstanceRef: import("vue").Ref<import("@popperjs/core").Instance | undefined>;
|
|
23132
23141
|
contentRef: import("vue").Ref<HTMLElement | undefined>;
|
|
23133
23142
|
referenceRef: import("vue").Ref<HTMLElement | undefined>;
|
|
23134
|
-
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
23143
|
+
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>>;
|
|
23135
23144
|
popperProvides: import("element-plus").ElPopperInjectionContext;
|
|
23136
23145
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
|
|
23137
|
-
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
23146
|
+
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
23138
23147
|
}, {}, string, {}> & {
|
|
23139
23148
|
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
23140
23149
|
created?: (() => void) | (() => void)[] | undefined;
|
|
@@ -23156,10 +23165,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
23156
23165
|
$nextTick: typeof import("vue").nextTick;
|
|
23157
23166
|
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
23158
23167
|
} & Readonly<import("vue").ExtractPropTypes<{
|
|
23159
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
23168
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
23160
23169
|
}>> & import("vue").ShallowUnwrapRef<{
|
|
23161
23170
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
23162
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
23171
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
23163
23172
|
}>> & {
|
|
23164
23173
|
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
23165
23174
|
}>>;
|
|
@@ -23167,7 +23176,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
23167
23176
|
popperInstanceRef: import("vue").Ref<import("@popperjs/core").Instance | undefined>;
|
|
23168
23177
|
contentRef: import("vue").Ref<HTMLElement | undefined>;
|
|
23169
23178
|
referenceRef: import("vue").Ref<HTMLElement | undefined>;
|
|
23170
|
-
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
23179
|
+
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>>;
|
|
23171
23180
|
popperProvides: import("element-plus").ElPopperInjectionContext;
|
|
23172
23181
|
}> & import("vue").ComponentCustomProperties) | undefined>;
|
|
23173
23182
|
contentRef: import("vue").Ref<any>;
|
|
@@ -23182,10 +23191,10 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
23182
23191
|
controlled: import("vue").ComputedRef<boolean>;
|
|
23183
23192
|
isFocusInsideContent: (event?: FocusEvent | undefined) => boolean | undefined;
|
|
23184
23193
|
ElPopper: import("element-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
|
|
23185
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
23194
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
23186
23195
|
}, {
|
|
23187
23196
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
23188
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
23197
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
23189
23198
|
}>> & {
|
|
23190
23199
|
[x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
|
|
23191
23200
|
}>>;
|
|
@@ -23193,12 +23202,12 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
23193
23202
|
popperInstanceRef: import("vue").Ref<import("@popperjs/core").Instance | undefined>;
|
|
23194
23203
|
contentRef: import("vue").Ref<HTMLElement | undefined>;
|
|
23195
23204
|
referenceRef: import("vue").Ref<HTMLElement | undefined>;
|
|
23196
|
-
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
23205
|
+
role: import("vue").ComputedRef<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>>;
|
|
23197
23206
|
popperProvides: import("element-plus").ElPopperInjectionContext;
|
|
23198
23207
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23199
|
-
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
23208
|
+
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown, "tooltip", boolean>;
|
|
23200
23209
|
}>>, {
|
|
23201
|
-
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation"
|
|
23210
|
+
readonly role: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "tree" | "dialog" | "menu" | "group" | "listbox" | "grid" | "tooltip" | "navigation", unknown>;
|
|
23202
23211
|
}, {}>> & Record<string, any>;
|
|
23203
23212
|
ElPopperArrow: import("vue").DefineComponent<{
|
|
23204
23213
|
readonly arrowOffset: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 5, boolean>;
|
|
@@ -23236,7 +23245,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
23236
23245
|
}, {}>;
|
|
23237
23246
|
ElTooltipTrigger: import("vue").DefineComponent<{
|
|
23238
23247
|
readonly disabled: BooleanConstructor;
|
|
23239
|
-
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
23248
|
+
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
23240
23249
|
readonly triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
23241
23250
|
readonly virtualRef: {
|
|
23242
23251
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -23292,7 +23301,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
23292
23301
|
}, {
|
|
23293
23302
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
23294
23303
|
readonly disabled: BooleanConstructor;
|
|
23295
|
-
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
23304
|
+
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
23296
23305
|
readonly triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
23297
23306
|
readonly virtualRef: {
|
|
23298
23307
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -23376,7 +23385,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
23376
23385
|
forwardRef: HTMLElement;
|
|
23377
23386
|
} | null>;
|
|
23378
23387
|
stopWhenControlledOrDisabled: () => true | undefined;
|
|
23379
|
-
trigger: import("vue").Ref<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "
|
|
23388
|
+
trigger: import("vue").Ref<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown>>;
|
|
23380
23389
|
onMouseenter: (event: Event) => void;
|
|
23381
23390
|
onMouseleave: (event: Event) => void;
|
|
23382
23391
|
onClick: (event: Event) => void;
|
|
@@ -23560,7 +23569,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
23560
23569
|
}, {}>;
|
|
23561
23570
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23562
23571
|
readonly disabled: BooleanConstructor;
|
|
23563
|
-
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "
|
|
23572
|
+
readonly trigger: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
23564
23573
|
readonly triggerKeys: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string[]) | (() => string[]) | ((new (...args: any[]) => string[]) | (() => string[]))[], unknown, unknown, () => string[], boolean>;
|
|
23565
23574
|
readonly virtualRef: {
|
|
23566
23575
|
readonly type: import("vue").PropType<import("element-plus").Measurable>;
|
|
@@ -23617,7 +23626,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
23617
23626
|
readonly virtualTriggering: boolean;
|
|
23618
23627
|
readonly disabled: boolean;
|
|
23619
23628
|
readonly open: boolean;
|
|
23620
|
-
readonly trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "
|
|
23629
|
+
readonly trigger: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>) | ((new (...args: any[]) => "click" | "focus" | "hover" | "contextmenu" | import("element-plus").TooltipTriggerType[]) | (() => import("element-plus/es/utils").Arrayable<import("element-plus").TooltipTriggerType>))[], unknown, unknown>;
|
|
23621
23630
|
readonly triggerKeys: string[];
|
|
23622
23631
|
}, {}>;
|
|
23623
23632
|
ElTooltipContent: import("vue").DefineComponent<{
|
|
@@ -24634,7 +24643,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
24634
24643
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
24635
24644
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
24636
24645
|
}>>;
|
|
24637
|
-
focusStartRef: import("vue").Ref<HTMLElement | "
|
|
24646
|
+
focusStartRef: import("vue").Ref<HTMLElement | "container" | "first" | undefined>;
|
|
24638
24647
|
trapped: import("vue").Ref<boolean>;
|
|
24639
24648
|
onFocusAfterReleased: (event: CustomEvent<any>) => void;
|
|
24640
24649
|
onFocusAfterTrapped: () => void;
|
|
@@ -24694,7 +24703,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
24694
24703
|
trapped: BooleanConstructor;
|
|
24695
24704
|
focusTrapEl: import("vue").PropType<HTMLElement>;
|
|
24696
24705
|
focusStartEl: {
|
|
24697
|
-
type: import("vue").PropType<HTMLElement | "
|
|
24706
|
+
type: import("vue").PropType<HTMLElement | "container" | "first">;
|
|
24698
24707
|
default: string;
|
|
24699
24708
|
};
|
|
24700
24709
|
}, {
|
|
@@ -24704,7 +24713,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
24704
24713
|
trapped: BooleanConstructor;
|
|
24705
24714
|
focusTrapEl: import("vue").PropType<HTMLElement>;
|
|
24706
24715
|
focusStartEl: {
|
|
24707
|
-
type: import("vue").PropType<HTMLElement | "
|
|
24716
|
+
type: import("vue").PropType<HTMLElement | "container" | "first">;
|
|
24708
24717
|
default: string;
|
|
24709
24718
|
};
|
|
24710
24719
|
}>> & {
|
|
@@ -24717,7 +24726,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
24717
24726
|
}, {
|
|
24718
24727
|
trapped: boolean;
|
|
24719
24728
|
loop: boolean;
|
|
24720
|
-
focusStartEl: HTMLElement | "
|
|
24729
|
+
focusStartEl: HTMLElement | "container" | "first";
|
|
24721
24730
|
}, {}>;
|
|
24722
24731
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24723
24732
|
mouseenter: (evt: MouseEvent) => boolean;
|
|
@@ -25263,12 +25272,14 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
25263
25272
|
} | null>;
|
|
25264
25273
|
menuRef: import("vue").Ref<HTMLElement>;
|
|
25265
25274
|
tagMenuRef: import("vue").Ref<HTMLElement>;
|
|
25275
|
+
collapseItemRef: import("vue").Ref<HTMLElement>;
|
|
25266
25276
|
}, {}, {}, {}, {
|
|
25267
25277
|
effect: string;
|
|
25268
25278
|
valueKey: string;
|
|
25269
|
-
modelValue: import("element-plus/es/utils").EpPropMergeType<(BooleanConstructor |
|
|
25270
|
-
placement: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "
|
|
25279
|
+
modelValue: import("element-plus/es/utils").EpPropMergeType<(BooleanConstructor | StringConstructor | ObjectConstructor | ArrayConstructor | NumberConstructor)[], unknown, unknown>;
|
|
25280
|
+
placement: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => "auto" | "auto-start" | "auto-end" | "top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement) | ((new (...args: any[]) => "auto" | "auto-start" | "auto-end" | "top" | "bottom" | "right" | "left" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import("element-plus").Placement))[], import("element-plus").Placement, unknown>;
|
|
25271
25281
|
popperClass: string;
|
|
25282
|
+
fallbackPlacements: import("element-plus").Placement[];
|
|
25272
25283
|
popperOptions: Partial<import("element-plus").Options>;
|
|
25273
25284
|
ariaLabel: string;
|
|
25274
25285
|
teleported: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
@@ -25284,7 +25295,8 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
25284
25295
|
collapseTags: boolean;
|
|
25285
25296
|
maxCollapseTags: number;
|
|
25286
25297
|
collapseTagsTooltip: boolean;
|
|
25287
|
-
tagType: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "success" | "warning" | "info" | "danger", unknown>;
|
|
25298
|
+
tagType: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "primary" | "success" | "warning" | "info" | "danger", unknown>;
|
|
25299
|
+
valueOnClear: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor, BooleanConstructor, FunctionConstructor], unknown, unknown>;
|
|
25288
25300
|
automaticDropdown: boolean;
|
|
25289
25301
|
allowCreate: boolean;
|
|
25290
25302
|
remote: boolean;
|
|
@@ -25292,14 +25304,13 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
25292
25304
|
defaultFirstOption: boolean;
|
|
25293
25305
|
reserveKeyword: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
25294
25306
|
remoteShowSuffix: boolean;
|
|
25295
|
-
suffixTransition: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
25296
25307
|
}> | undefined>;
|
|
25297
25308
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("SizeChange" | "CurrentChange")[], "SizeChange" | "CurrentChange", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
25298
25309
|
table: {
|
|
25299
25310
|
type: import("vue").PropType<import("./types").RewriteTableProps<any>>;
|
|
25300
25311
|
};
|
|
25301
25312
|
header: {
|
|
25302
|
-
type:
|
|
25313
|
+
type: import("vue").PropType<boolean | import("./types").HeaderListProps>;
|
|
25303
25314
|
default: boolean;
|
|
25304
25315
|
};
|
|
25305
25316
|
footer: {
|
|
@@ -25315,7 +25326,7 @@ export declare const DinertTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
25315
25326
|
onCurrentChange?: ((...args: any[]) => any) | undefined;
|
|
25316
25327
|
}, {
|
|
25317
25328
|
footer: boolean;
|
|
25318
|
-
header: boolean;
|
|
25329
|
+
header: boolean | import("./types").HeaderListProps;
|
|
25319
25330
|
tableSlot: boolean;
|
|
25320
25331
|
}, {}>>;
|
|
25321
25332
|
export default DinertTable;
|