auto-vue-basic 0.0.97 → 0.0.98
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/types/views/admin/index.vue.d.ts +307 -247
- package/dist/types/views/language/form/template.vue.d.ts +307 -247
- package/dist/types/views/language/index.vue.d.ts +307 -247
- package/dist/types/views/language/table/I18N.vue.d.ts +307 -247
- package/dist/types/views/log/error/index.vue.d.ts +250 -200
- package/dist/types/views/log/request/index.vue.d.ts +246 -198
- package/dist/types/views/log/sql/index.vue.d.ts +246 -198
- package/dist/types/views/menu/index.vue.d.ts +307 -247
- package/dist/types/views/role/index.vue.d.ts +307 -247
- package/dist/types/views/site/components/DomainProviderTableDrawer.vue.d.ts +248 -198
- package/dist/types/views/site/components/DomainTableDrawer.vue.d.ts +490 -394
- package/dist/types/views/site/components/SSLLogTableDrawer.vue.d.ts +307 -247
- package/dist/types/views/site/components/SSLTableDrawer.vue.d.ts +246 -198
- package/dist/types/views/site/index.vue.d.ts +246 -198
- package/dist/version.js +1 -1
- package/package.json +3 -3
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, Ref, VNodeProps, AllowedComponentProps, ComponentCustomProps, Slot, ComponentPublicInstance, ComponentOptionsBase, CreateComponentPublicInstanceWithMixins, ExtractPropTypes, PropType, ComputedRef, StyleValue, GlobalComponents, GlobalDirectives, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
|
|
2
2
|
import { ColumnProps, ProTableListProps, StateProps } from 'auto-vue-manual';
|
|
3
3
|
import { EpPropMergeType } from 'element-plus/es/utils';
|
|
4
|
-
import { TableProps, TableColumnCtx, Sort, Filter, Translator, Table } from 'element-plus';
|
|
5
|
-
import {
|
|
4
|
+
import { TableProps, TableColumnCtx, Sort, Filter, Translator, Table, UseTooltipProps } from 'element-plus';
|
|
5
|
+
import { TableLayout } from 'element-plus/es/components/table/src/table-layout';
|
|
6
6
|
import { TreeData } from 'element-plus/es/components/table/src/store/tree';
|
|
7
7
|
import { StoreFilter } from 'element-plus/es/components/table/src/store';
|
|
8
8
|
import { TableSortOrder, RenderExpanded, TreeProps } from 'element-plus/es/components/table/src/table/defaults';
|
|
@@ -63,7 +63,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
63
63
|
default: () => never[];
|
|
64
64
|
};
|
|
65
65
|
size: {
|
|
66
|
-
readonly type: PropType<EpPropMergeType<StringConstructor, "" | "
|
|
66
|
+
readonly type: PropType<EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
|
67
67
|
readonly required: false;
|
|
68
68
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
69
69
|
__epPropKey: true;
|
|
@@ -137,7 +137,10 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
137
137
|
};
|
|
138
138
|
scrollbarAlwaysOn: BooleanConstructor;
|
|
139
139
|
flexible: BooleanConstructor;
|
|
140
|
-
showOverflowTooltip:
|
|
140
|
+
showOverflowTooltip: {
|
|
141
|
+
type: PropType< TableProps<any>["showOverflowTooltip"]>;
|
|
142
|
+
default: undefined;
|
|
143
|
+
};
|
|
141
144
|
tooltipFormatter: PropType< TableProps<any>["tooltipFormatter"]>;
|
|
142
145
|
appendFilterPanelTo: StringConstructor;
|
|
143
146
|
scrollbarTabindex: {
|
|
@@ -151,17 +154,10 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
151
154
|
preserveExpandedContent: BooleanConstructor;
|
|
152
155
|
nativeScrollbar: BooleanConstructor;
|
|
153
156
|
}>> & {
|
|
154
|
-
onSelect?: ((...args: any[]) => any) | undefined;
|
|
155
157
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
156
|
-
|
|
157
|
-
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
158
|
+
onSelect?: ((...args: any[]) => any) | undefined;
|
|
158
159
|
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
|
159
|
-
"onHeader-click"?: ((...args: any[]) => any) | undefined;
|
|
160
|
-
"onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
161
|
-
"onHeader-dragend"?: ((...args: any[]) => any) | undefined;
|
|
162
160
|
"onSelection-change"?: ((...args: any[]) => any) | undefined;
|
|
163
|
-
"onSort-change"?: ((...args: any[]) => any) | undefined;
|
|
164
|
-
"onFilter-change"?: ((...args: any[]) => any) | undefined;
|
|
165
161
|
"onCell-mouse-enter"?: ((...args: any[]) => any) | undefined;
|
|
166
162
|
"onCell-mouse-leave"?: ((...args: any[]) => any) | undefined;
|
|
167
163
|
"onCell-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
@@ -170,6 +166,13 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
170
166
|
"onRow-click"?: ((...args: any[]) => any) | undefined;
|
|
171
167
|
"onRow-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
172
168
|
"onRow-dblclick"?: ((...args: any[]) => any) | undefined;
|
|
169
|
+
"onHeader-click"?: ((...args: any[]) => any) | undefined;
|
|
170
|
+
"onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
171
|
+
"onSort-change"?: ((...args: any[]) => any) | undefined;
|
|
172
|
+
"onFilter-change"?: ((...args: any[]) => any) | undefined;
|
|
173
|
+
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
174
|
+
"onHeader-dragend"?: ((...args: any[]) => any) | undefined;
|
|
175
|
+
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
173
176
|
}, {
|
|
174
177
|
ns: {
|
|
175
178
|
namespace: ComputedRef<string>;
|
|
@@ -189,7 +192,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
189
192
|
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
190
193
|
cssVarBlockName: (name: string) => string;
|
|
191
194
|
};
|
|
192
|
-
layout:
|
|
195
|
+
layout: TableLayout<any>;
|
|
193
196
|
store: {
|
|
194
197
|
mutations: {
|
|
195
198
|
setData(states: {
|
|
@@ -724,7 +727,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
724
727
|
handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
|
|
725
728
|
handleMouseLeave: () => void;
|
|
726
729
|
tableId: string;
|
|
727
|
-
tableSize: ComputedRef<"" | "
|
|
730
|
+
tableSize: ComputedRef<"" | "default" | "small" | "large">;
|
|
728
731
|
isHidden: Ref<boolean>;
|
|
729
732
|
isEmpty: ComputedRef<boolean>;
|
|
730
733
|
renderExpanded: Ref< RenderExpanded<any> | null>;
|
|
@@ -760,6 +763,8 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
760
763
|
context: Table<any>;
|
|
761
764
|
computedSumText: ComputedRef<string>;
|
|
762
765
|
computedEmptyText: ComputedRef<string>;
|
|
766
|
+
computedTooltipEffect: ComputedRef<string | undefined>;
|
|
767
|
+
computedTooltipOptions: ComputedRef<Partial<Pick< UseTooltipProps, "appendTo" | "effect" | "enterable" | "hideAfter" | "offset" | "placement" | "popperClass" | "popperOptions" | "showAfter" | "showArrow" | "transition">> | undefined>;
|
|
763
768
|
tableLayout: ComputedRef<"fixed" | "auto">;
|
|
764
769
|
scrollbarViewStyle: {
|
|
765
770
|
display: string;
|
|
@@ -780,28 +785,29 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
780
785
|
setScrollLeft: (left?: number) => void;
|
|
781
786
|
setScrollTop: (top?: number) => void;
|
|
782
787
|
allowDragLastColumn: boolean;
|
|
783
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "scroll" | "selection-change" | "current-change" | "row-click" | "row-dblclick" | "select-all" | "
|
|
784
|
-
data: any[];
|
|
785
|
-
style: StyleValue;
|
|
786
|
-
tableLayout: "fixed" | "auto";
|
|
788
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "scroll" | "selection-change" | "current-change" | "row-click" | "row-dblclick" | "select-all" | "cell-mouse-enter" | "cell-mouse-leave" | "cell-contextmenu" | "cell-click" | "cell-dblclick" | "row-contextmenu" | "header-click" | "header-contextmenu" | "sort-change" | "filter-change" | "header-dragend" | "expand-change")[], PublicProps, {
|
|
787
789
|
border: boolean;
|
|
788
|
-
className: string;
|
|
789
|
-
lazy: boolean;
|
|
790
|
-
fit: boolean;
|
|
791
|
-
scrollbarAlwaysOn: boolean;
|
|
792
790
|
allowDragLastColumn: boolean;
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
indent: number;
|
|
791
|
+
tableLayout: "fixed" | "auto";
|
|
792
|
+
style: StyleValue;
|
|
793
|
+
className: string;
|
|
797
794
|
stripe: boolean;
|
|
795
|
+
data: any[];
|
|
796
|
+
treeProps: TreeProps | undefined;
|
|
797
|
+
showOverflowTooltip: boolean | Partial<Pick< UseTooltipProps, "appendTo" | "effect" | "enterable" | "hideAfter" | "offset" | "placement" | "popperClass" | "popperOptions" | "showAfter" | "showArrow" | "transition">> | undefined;
|
|
798
|
+
fit: boolean;
|
|
798
799
|
showHeader: boolean;
|
|
799
800
|
showSummary: boolean;
|
|
800
801
|
highlightCurrentRow: boolean;
|
|
802
|
+
defaultExpandAll: boolean;
|
|
803
|
+
selectOnIndeterminate: boolean;
|
|
804
|
+
indent: number;
|
|
805
|
+
lazy: boolean;
|
|
806
|
+
scrollbarAlwaysOn: boolean;
|
|
801
807
|
flexible: boolean;
|
|
802
808
|
scrollbarTabindex: string | number;
|
|
803
|
-
nativeScrollbar: boolean;
|
|
804
809
|
preserveExpandedContent: boolean;
|
|
810
|
+
nativeScrollbar: boolean;
|
|
805
811
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
806
812
|
P: {};
|
|
807
813
|
B: {};
|
|
@@ -815,7 +821,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
815
821
|
default: () => never[];
|
|
816
822
|
};
|
|
817
823
|
size: {
|
|
818
|
-
readonly type: PropType<EpPropMergeType<StringConstructor, "" | "
|
|
824
|
+
readonly type: PropType<EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
|
819
825
|
readonly required: false;
|
|
820
826
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
821
827
|
__epPropKey: true;
|
|
@@ -889,7 +895,10 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
889
895
|
};
|
|
890
896
|
scrollbarAlwaysOn: BooleanConstructor;
|
|
891
897
|
flexible: BooleanConstructor;
|
|
892
|
-
showOverflowTooltip:
|
|
898
|
+
showOverflowTooltip: {
|
|
899
|
+
type: PropType< TableProps<any>["showOverflowTooltip"]>;
|
|
900
|
+
default: undefined;
|
|
901
|
+
};
|
|
893
902
|
tooltipFormatter: PropType< TableProps<any>["tooltipFormatter"]>;
|
|
894
903
|
appendFilterPanelTo: StringConstructor;
|
|
895
904
|
scrollbarTabindex: {
|
|
@@ -903,17 +912,10 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
903
912
|
preserveExpandedContent: BooleanConstructor;
|
|
904
913
|
nativeScrollbar: BooleanConstructor;
|
|
905
914
|
}>> & {
|
|
906
|
-
onSelect?: ((...args: any[]) => any) | undefined;
|
|
907
915
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
908
|
-
|
|
909
|
-
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
916
|
+
onSelect?: ((...args: any[]) => any) | undefined;
|
|
910
917
|
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
|
911
|
-
"onHeader-click"?: ((...args: any[]) => any) | undefined;
|
|
912
|
-
"onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
913
|
-
"onHeader-dragend"?: ((...args: any[]) => any) | undefined;
|
|
914
918
|
"onSelection-change"?: ((...args: any[]) => any) | undefined;
|
|
915
|
-
"onSort-change"?: ((...args: any[]) => any) | undefined;
|
|
916
|
-
"onFilter-change"?: ((...args: any[]) => any) | undefined;
|
|
917
919
|
"onCell-mouse-enter"?: ((...args: any[]) => any) | undefined;
|
|
918
920
|
"onCell-mouse-leave"?: ((...args: any[]) => any) | undefined;
|
|
919
921
|
"onCell-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
@@ -922,6 +924,13 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
922
924
|
"onRow-click"?: ((...args: any[]) => any) | undefined;
|
|
923
925
|
"onRow-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
924
926
|
"onRow-dblclick"?: ((...args: any[]) => any) | undefined;
|
|
927
|
+
"onHeader-click"?: ((...args: any[]) => any) | undefined;
|
|
928
|
+
"onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
929
|
+
"onSort-change"?: ((...args: any[]) => any) | undefined;
|
|
930
|
+
"onFilter-change"?: ((...args: any[]) => any) | undefined;
|
|
931
|
+
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
932
|
+
"onHeader-dragend"?: ((...args: any[]) => any) | undefined;
|
|
933
|
+
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
925
934
|
}, {
|
|
926
935
|
ns: {
|
|
927
936
|
namespace: ComputedRef<string>;
|
|
@@ -941,7 +950,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
941
950
|
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
942
951
|
cssVarBlockName: (name: string) => string;
|
|
943
952
|
};
|
|
944
|
-
layout:
|
|
953
|
+
layout: TableLayout<any>;
|
|
945
954
|
store: {
|
|
946
955
|
mutations: {
|
|
947
956
|
setData(states: {
|
|
@@ -1476,7 +1485,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
1476
1485
|
handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
|
|
1477
1486
|
handleMouseLeave: () => void;
|
|
1478
1487
|
tableId: string;
|
|
1479
|
-
tableSize: ComputedRef<"" | "
|
|
1488
|
+
tableSize: ComputedRef<"" | "default" | "small" | "large">;
|
|
1480
1489
|
isHidden: Ref<boolean>;
|
|
1481
1490
|
isEmpty: ComputedRef<boolean>;
|
|
1482
1491
|
renderExpanded: Ref< RenderExpanded<any> | null>;
|
|
@@ -1512,6 +1521,8 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
1512
1521
|
context: Table<any>;
|
|
1513
1522
|
computedSumText: ComputedRef<string>;
|
|
1514
1523
|
computedEmptyText: ComputedRef<string>;
|
|
1524
|
+
computedTooltipEffect: ComputedRef<string | undefined>;
|
|
1525
|
+
computedTooltipOptions: ComputedRef<Partial<Pick< UseTooltipProps, "appendTo" | "effect" | "enterable" | "hideAfter" | "offset" | "placement" | "popperClass" | "popperOptions" | "showAfter" | "showArrow" | "transition">> | undefined>;
|
|
1515
1526
|
tableLayout: ComputedRef<"fixed" | "auto">;
|
|
1516
1527
|
scrollbarViewStyle: {
|
|
1517
1528
|
display: string;
|
|
@@ -1533,34 +1544,35 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
1533
1544
|
setScrollTop: (top?: number) => void;
|
|
1534
1545
|
allowDragLastColumn: boolean;
|
|
1535
1546
|
}, {}, {}, {}, {
|
|
1536
|
-
data: any[];
|
|
1537
|
-
style: StyleValue;
|
|
1538
|
-
tableLayout: "fixed" | "auto";
|
|
1539
1547
|
border: boolean;
|
|
1540
|
-
className: string;
|
|
1541
|
-
lazy: boolean;
|
|
1542
|
-
fit: boolean;
|
|
1543
|
-
scrollbarAlwaysOn: boolean;
|
|
1544
1548
|
allowDragLastColumn: boolean;
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
indent: number;
|
|
1549
|
+
tableLayout: "fixed" | "auto";
|
|
1550
|
+
style: StyleValue;
|
|
1551
|
+
className: string;
|
|
1549
1552
|
stripe: boolean;
|
|
1553
|
+
data: any[];
|
|
1554
|
+
treeProps: TreeProps | undefined;
|
|
1555
|
+
showOverflowTooltip: boolean | Partial<Pick< UseTooltipProps, "appendTo" | "effect" | "enterable" | "hideAfter" | "offset" | "placement" | "popperClass" | "popperOptions" | "showAfter" | "showArrow" | "transition">> | undefined;
|
|
1556
|
+
fit: boolean;
|
|
1550
1557
|
showHeader: boolean;
|
|
1551
1558
|
showSummary: boolean;
|
|
1552
1559
|
highlightCurrentRow: boolean;
|
|
1560
|
+
defaultExpandAll: boolean;
|
|
1561
|
+
selectOnIndeterminate: boolean;
|
|
1562
|
+
indent: number;
|
|
1563
|
+
lazy: boolean;
|
|
1564
|
+
scrollbarAlwaysOn: boolean;
|
|
1553
1565
|
flexible: boolean;
|
|
1554
1566
|
scrollbarTabindex: string | number;
|
|
1555
|
-
nativeScrollbar: boolean;
|
|
1556
1567
|
preserveExpandedContent: boolean;
|
|
1568
|
+
nativeScrollbar: boolean;
|
|
1557
1569
|
}> | undefined, CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
|
|
1558
1570
|
data: {
|
|
1559
1571
|
type: PropType<any[]>;
|
|
1560
1572
|
default: () => never[];
|
|
1561
1573
|
};
|
|
1562
1574
|
size: {
|
|
1563
|
-
readonly type: PropType<EpPropMergeType<StringConstructor, "" | "
|
|
1575
|
+
readonly type: PropType<EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
|
1564
1576
|
readonly required: false;
|
|
1565
1577
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1566
1578
|
__epPropKey: true;
|
|
@@ -1634,7 +1646,10 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
1634
1646
|
};
|
|
1635
1647
|
scrollbarAlwaysOn: BooleanConstructor;
|
|
1636
1648
|
flexible: BooleanConstructor;
|
|
1637
|
-
showOverflowTooltip:
|
|
1649
|
+
showOverflowTooltip: {
|
|
1650
|
+
type: PropType< TableProps<any>["showOverflowTooltip"]>;
|
|
1651
|
+
default: undefined;
|
|
1652
|
+
};
|
|
1638
1653
|
tooltipFormatter: PropType< TableProps<any>["tooltipFormatter"]>;
|
|
1639
1654
|
appendFilterPanelTo: StringConstructor;
|
|
1640
1655
|
scrollbarTabindex: {
|
|
@@ -1648,17 +1663,10 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
1648
1663
|
preserveExpandedContent: BooleanConstructor;
|
|
1649
1664
|
nativeScrollbar: BooleanConstructor;
|
|
1650
1665
|
}>> & {
|
|
1651
|
-
onSelect?: ((...args: any[]) => any) | undefined;
|
|
1652
1666
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
1653
|
-
|
|
1654
|
-
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
1667
|
+
onSelect?: ((...args: any[]) => any) | undefined;
|
|
1655
1668
|
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
|
1656
|
-
"onHeader-click"?: ((...args: any[]) => any) | undefined;
|
|
1657
|
-
"onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
1658
|
-
"onHeader-dragend"?: ((...args: any[]) => any) | undefined;
|
|
1659
1669
|
"onSelection-change"?: ((...args: any[]) => any) | undefined;
|
|
1660
|
-
"onSort-change"?: ((...args: any[]) => any) | undefined;
|
|
1661
|
-
"onFilter-change"?: ((...args: any[]) => any) | undefined;
|
|
1662
1670
|
"onCell-mouse-enter"?: ((...args: any[]) => any) | undefined;
|
|
1663
1671
|
"onCell-mouse-leave"?: ((...args: any[]) => any) | undefined;
|
|
1664
1672
|
"onCell-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
@@ -1667,6 +1675,13 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
1667
1675
|
"onRow-click"?: ((...args: any[]) => any) | undefined;
|
|
1668
1676
|
"onRow-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
1669
1677
|
"onRow-dblclick"?: ((...args: any[]) => any) | undefined;
|
|
1678
|
+
"onHeader-click"?: ((...args: any[]) => any) | undefined;
|
|
1679
|
+
"onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
1680
|
+
"onSort-change"?: ((...args: any[]) => any) | undefined;
|
|
1681
|
+
"onFilter-change"?: ((...args: any[]) => any) | undefined;
|
|
1682
|
+
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
1683
|
+
"onHeader-dragend"?: ((...args: any[]) => any) | undefined;
|
|
1684
|
+
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
1670
1685
|
}, {
|
|
1671
1686
|
ns: {
|
|
1672
1687
|
namespace: ComputedRef<string>;
|
|
@@ -1686,7 +1701,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
1686
1701
|
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
1687
1702
|
cssVarBlockName: (name: string) => string;
|
|
1688
1703
|
};
|
|
1689
|
-
layout:
|
|
1704
|
+
layout: TableLayout<any>;
|
|
1690
1705
|
store: {
|
|
1691
1706
|
mutations: {
|
|
1692
1707
|
setData(states: {
|
|
@@ -2221,7 +2236,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
2221
2236
|
handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
|
|
2222
2237
|
handleMouseLeave: () => void;
|
|
2223
2238
|
tableId: string;
|
|
2224
|
-
tableSize: ComputedRef<"" | "
|
|
2239
|
+
tableSize: ComputedRef<"" | "default" | "small" | "large">;
|
|
2225
2240
|
isHidden: Ref<boolean>;
|
|
2226
2241
|
isEmpty: ComputedRef<boolean>;
|
|
2227
2242
|
renderExpanded: Ref< RenderExpanded<any> | null>;
|
|
@@ -2257,6 +2272,8 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
2257
2272
|
context: Table<any>;
|
|
2258
2273
|
computedSumText: ComputedRef<string>;
|
|
2259
2274
|
computedEmptyText: ComputedRef<string>;
|
|
2275
|
+
computedTooltipEffect: ComputedRef<string | undefined>;
|
|
2276
|
+
computedTooltipOptions: ComputedRef<Partial<Pick< UseTooltipProps, "appendTo" | "effect" | "enterable" | "hideAfter" | "offset" | "placement" | "popperClass" | "popperOptions" | "showAfter" | "showArrow" | "transition">> | undefined>;
|
|
2260
2277
|
tableLayout: ComputedRef<"fixed" | "auto">;
|
|
2261
2278
|
scrollbarViewStyle: {
|
|
2262
2279
|
display: string;
|
|
@@ -2277,28 +2294,29 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
2277
2294
|
setScrollLeft: (left?: number) => void;
|
|
2278
2295
|
setScrollTop: (top?: number) => void;
|
|
2279
2296
|
allowDragLastColumn: boolean;
|
|
2280
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "scroll" | "selection-change" | "current-change" | "row-click" | "row-dblclick" | "select-all" | "
|
|
2281
|
-
data: any[];
|
|
2282
|
-
style: StyleValue;
|
|
2283
|
-
tableLayout: "fixed" | "auto";
|
|
2297
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "scroll" | "selection-change" | "current-change" | "row-click" | "row-dblclick" | "select-all" | "cell-mouse-enter" | "cell-mouse-leave" | "cell-contextmenu" | "cell-click" | "cell-dblclick" | "row-contextmenu" | "header-click" | "header-contextmenu" | "sort-change" | "filter-change" | "header-dragend" | "expand-change")[], PublicProps, {
|
|
2284
2298
|
border: boolean;
|
|
2285
|
-
className: string;
|
|
2286
|
-
lazy: boolean;
|
|
2287
|
-
fit: boolean;
|
|
2288
|
-
scrollbarAlwaysOn: boolean;
|
|
2289
2299
|
allowDragLastColumn: boolean;
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
2293
|
-
indent: number;
|
|
2300
|
+
tableLayout: "fixed" | "auto";
|
|
2301
|
+
style: StyleValue;
|
|
2302
|
+
className: string;
|
|
2294
2303
|
stripe: boolean;
|
|
2304
|
+
data: any[];
|
|
2305
|
+
treeProps: TreeProps | undefined;
|
|
2306
|
+
showOverflowTooltip: boolean | Partial<Pick< UseTooltipProps, "appendTo" | "effect" | "enterable" | "hideAfter" | "offset" | "placement" | "popperClass" | "popperOptions" | "showAfter" | "showArrow" | "transition">> | undefined;
|
|
2307
|
+
fit: boolean;
|
|
2295
2308
|
showHeader: boolean;
|
|
2296
2309
|
showSummary: boolean;
|
|
2297
2310
|
highlightCurrentRow: boolean;
|
|
2311
|
+
defaultExpandAll: boolean;
|
|
2312
|
+
selectOnIndeterminate: boolean;
|
|
2313
|
+
indent: number;
|
|
2314
|
+
lazy: boolean;
|
|
2315
|
+
scrollbarAlwaysOn: boolean;
|
|
2298
2316
|
flexible: boolean;
|
|
2299
2317
|
scrollbarTabindex: string | number;
|
|
2300
|
-
nativeScrollbar: boolean;
|
|
2301
2318
|
preserveExpandedContent: boolean;
|
|
2319
|
+
nativeScrollbar: boolean;
|
|
2302
2320
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
2303
2321
|
P: {};
|
|
2304
2322
|
B: {};
|
|
@@ -2312,7 +2330,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
2312
2330
|
default: () => never[];
|
|
2313
2331
|
};
|
|
2314
2332
|
size: {
|
|
2315
|
-
readonly type: PropType<EpPropMergeType<StringConstructor, "" | "
|
|
2333
|
+
readonly type: PropType<EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
|
2316
2334
|
readonly required: false;
|
|
2317
2335
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
2318
2336
|
__epPropKey: true;
|
|
@@ -2386,7 +2404,10 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
2386
2404
|
};
|
|
2387
2405
|
scrollbarAlwaysOn: BooleanConstructor;
|
|
2388
2406
|
flexible: BooleanConstructor;
|
|
2389
|
-
showOverflowTooltip:
|
|
2407
|
+
showOverflowTooltip: {
|
|
2408
|
+
type: PropType< TableProps<any>["showOverflowTooltip"]>;
|
|
2409
|
+
default: undefined;
|
|
2410
|
+
};
|
|
2390
2411
|
tooltipFormatter: PropType< TableProps<any>["tooltipFormatter"]>;
|
|
2391
2412
|
appendFilterPanelTo: StringConstructor;
|
|
2392
2413
|
scrollbarTabindex: {
|
|
@@ -2400,17 +2421,10 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
2400
2421
|
preserveExpandedContent: BooleanConstructor;
|
|
2401
2422
|
nativeScrollbar: BooleanConstructor;
|
|
2402
2423
|
}>> & {
|
|
2403
|
-
onSelect?: ((...args: any[]) => any) | undefined;
|
|
2404
2424
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
2405
|
-
|
|
2406
|
-
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
2425
|
+
onSelect?: ((...args: any[]) => any) | undefined;
|
|
2407
2426
|
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
|
2408
|
-
"onHeader-click"?: ((...args: any[]) => any) | undefined;
|
|
2409
|
-
"onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
2410
|
-
"onHeader-dragend"?: ((...args: any[]) => any) | undefined;
|
|
2411
2427
|
"onSelection-change"?: ((...args: any[]) => any) | undefined;
|
|
2412
|
-
"onSort-change"?: ((...args: any[]) => any) | undefined;
|
|
2413
|
-
"onFilter-change"?: ((...args: any[]) => any) | undefined;
|
|
2414
2428
|
"onCell-mouse-enter"?: ((...args: any[]) => any) | undefined;
|
|
2415
2429
|
"onCell-mouse-leave"?: ((...args: any[]) => any) | undefined;
|
|
2416
2430
|
"onCell-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
@@ -2419,6 +2433,13 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
2419
2433
|
"onRow-click"?: ((...args: any[]) => any) | undefined;
|
|
2420
2434
|
"onRow-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
2421
2435
|
"onRow-dblclick"?: ((...args: any[]) => any) | undefined;
|
|
2436
|
+
"onHeader-click"?: ((...args: any[]) => any) | undefined;
|
|
2437
|
+
"onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
2438
|
+
"onSort-change"?: ((...args: any[]) => any) | undefined;
|
|
2439
|
+
"onFilter-change"?: ((...args: any[]) => any) | undefined;
|
|
2440
|
+
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
2441
|
+
"onHeader-dragend"?: ((...args: any[]) => any) | undefined;
|
|
2442
|
+
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
2422
2443
|
}, {
|
|
2423
2444
|
ns: {
|
|
2424
2445
|
namespace: ComputedRef<string>;
|
|
@@ -2438,7 +2459,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
2438
2459
|
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
2439
2460
|
cssVarBlockName: (name: string) => string;
|
|
2440
2461
|
};
|
|
2441
|
-
layout:
|
|
2462
|
+
layout: TableLayout<any>;
|
|
2442
2463
|
store: {
|
|
2443
2464
|
mutations: {
|
|
2444
2465
|
setData(states: {
|
|
@@ -2973,7 +2994,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
2973
2994
|
handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
|
|
2974
2995
|
handleMouseLeave: () => void;
|
|
2975
2996
|
tableId: string;
|
|
2976
|
-
tableSize: ComputedRef<"" | "
|
|
2997
|
+
tableSize: ComputedRef<"" | "default" | "small" | "large">;
|
|
2977
2998
|
isHidden: Ref<boolean>;
|
|
2978
2999
|
isEmpty: ComputedRef<boolean>;
|
|
2979
3000
|
renderExpanded: Ref< RenderExpanded<any> | null>;
|
|
@@ -3009,6 +3030,8 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
3009
3030
|
context: Table<any>;
|
|
3010
3031
|
computedSumText: ComputedRef<string>;
|
|
3011
3032
|
computedEmptyText: ComputedRef<string>;
|
|
3033
|
+
computedTooltipEffect: ComputedRef<string | undefined>;
|
|
3034
|
+
computedTooltipOptions: ComputedRef<Partial<Pick< UseTooltipProps, "appendTo" | "effect" | "enterable" | "hideAfter" | "offset" | "placement" | "popperClass" | "popperOptions" | "showAfter" | "showArrow" | "transition">> | undefined>;
|
|
3012
3035
|
tableLayout: ComputedRef<"fixed" | "auto">;
|
|
3013
3036
|
scrollbarViewStyle: {
|
|
3014
3037
|
display: string;
|
|
@@ -3030,27 +3053,28 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
3030
3053
|
setScrollTop: (top?: number) => void;
|
|
3031
3054
|
allowDragLastColumn: boolean;
|
|
3032
3055
|
}, {}, {}, {}, {
|
|
3033
|
-
data: any[];
|
|
3034
|
-
style: StyleValue;
|
|
3035
|
-
tableLayout: "fixed" | "auto";
|
|
3036
3056
|
border: boolean;
|
|
3037
|
-
className: string;
|
|
3038
|
-
lazy: boolean;
|
|
3039
|
-
fit: boolean;
|
|
3040
|
-
scrollbarAlwaysOn: boolean;
|
|
3041
3057
|
allowDragLastColumn: boolean;
|
|
3042
|
-
|
|
3043
|
-
|
|
3044
|
-
|
|
3045
|
-
indent: number;
|
|
3058
|
+
tableLayout: "fixed" | "auto";
|
|
3059
|
+
style: StyleValue;
|
|
3060
|
+
className: string;
|
|
3046
3061
|
stripe: boolean;
|
|
3062
|
+
data: any[];
|
|
3063
|
+
treeProps: TreeProps | undefined;
|
|
3064
|
+
showOverflowTooltip: boolean | Partial<Pick< UseTooltipProps, "appendTo" | "effect" | "enterable" | "hideAfter" | "offset" | "placement" | "popperClass" | "popperOptions" | "showAfter" | "showArrow" | "transition">> | undefined;
|
|
3065
|
+
fit: boolean;
|
|
3047
3066
|
showHeader: boolean;
|
|
3048
3067
|
showSummary: boolean;
|
|
3049
3068
|
highlightCurrentRow: boolean;
|
|
3069
|
+
defaultExpandAll: boolean;
|
|
3070
|
+
selectOnIndeterminate: boolean;
|
|
3071
|
+
indent: number;
|
|
3072
|
+
lazy: boolean;
|
|
3073
|
+
scrollbarAlwaysOn: boolean;
|
|
3050
3074
|
flexible: boolean;
|
|
3051
3075
|
scrollbarTabindex: string | number;
|
|
3052
|
-
nativeScrollbar: boolean;
|
|
3053
3076
|
preserveExpandedContent: boolean;
|
|
3077
|
+
nativeScrollbar: boolean;
|
|
3054
3078
|
}> | undefined>;
|
|
3055
3079
|
tableData: ComputedRef<any[]>;
|
|
3056
3080
|
pagination: Ref<{
|
|
@@ -3152,7 +3176,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
3152
3176
|
default: () => never[];
|
|
3153
3177
|
};
|
|
3154
3178
|
size: {
|
|
3155
|
-
readonly type: PropType<EpPropMergeType<StringConstructor, "" | "
|
|
3179
|
+
readonly type: PropType<EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
|
3156
3180
|
readonly required: false;
|
|
3157
3181
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
3158
3182
|
__epPropKey: true;
|
|
@@ -3226,7 +3250,10 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
3226
3250
|
};
|
|
3227
3251
|
scrollbarAlwaysOn: BooleanConstructor;
|
|
3228
3252
|
flexible: BooleanConstructor;
|
|
3229
|
-
showOverflowTooltip:
|
|
3253
|
+
showOverflowTooltip: {
|
|
3254
|
+
type: PropType< TableProps<any>["showOverflowTooltip"]>;
|
|
3255
|
+
default: undefined;
|
|
3256
|
+
};
|
|
3230
3257
|
tooltipFormatter: PropType< TableProps<any>["tooltipFormatter"]>;
|
|
3231
3258
|
appendFilterPanelTo: StringConstructor;
|
|
3232
3259
|
scrollbarTabindex: {
|
|
@@ -3240,17 +3267,10 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
3240
3267
|
preserveExpandedContent: BooleanConstructor;
|
|
3241
3268
|
nativeScrollbar: BooleanConstructor;
|
|
3242
3269
|
}>> & {
|
|
3243
|
-
onSelect?: ((...args: any[]) => any) | undefined;
|
|
3244
3270
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
3245
|
-
|
|
3246
|
-
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
3271
|
+
onSelect?: ((...args: any[]) => any) | undefined;
|
|
3247
3272
|
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
|
3248
|
-
"onHeader-click"?: ((...args: any[]) => any) | undefined;
|
|
3249
|
-
"onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
3250
|
-
"onHeader-dragend"?: ((...args: any[]) => any) | undefined;
|
|
3251
3273
|
"onSelection-change"?: ((...args: any[]) => any) | undefined;
|
|
3252
|
-
"onSort-change"?: ((...args: any[]) => any) | undefined;
|
|
3253
|
-
"onFilter-change"?: ((...args: any[]) => any) | undefined;
|
|
3254
3274
|
"onCell-mouse-enter"?: ((...args: any[]) => any) | undefined;
|
|
3255
3275
|
"onCell-mouse-leave"?: ((...args: any[]) => any) | undefined;
|
|
3256
3276
|
"onCell-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
@@ -3259,6 +3279,13 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
3259
3279
|
"onRow-click"?: ((...args: any[]) => any) | undefined;
|
|
3260
3280
|
"onRow-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
3261
3281
|
"onRow-dblclick"?: ((...args: any[]) => any) | undefined;
|
|
3282
|
+
"onHeader-click"?: ((...args: any[]) => any) | undefined;
|
|
3283
|
+
"onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
3284
|
+
"onSort-change"?: ((...args: any[]) => any) | undefined;
|
|
3285
|
+
"onFilter-change"?: ((...args: any[]) => any) | undefined;
|
|
3286
|
+
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
3287
|
+
"onHeader-dragend"?: ((...args: any[]) => any) | undefined;
|
|
3288
|
+
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
3262
3289
|
}, {
|
|
3263
3290
|
ns: {
|
|
3264
3291
|
namespace: ComputedRef<string>;
|
|
@@ -3278,7 +3305,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
3278
3305
|
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
3279
3306
|
cssVarBlockName: (name: string) => string;
|
|
3280
3307
|
};
|
|
3281
|
-
layout:
|
|
3308
|
+
layout: TableLayout<any>;
|
|
3282
3309
|
store: {
|
|
3283
3310
|
mutations: {
|
|
3284
3311
|
setData(states: {
|
|
@@ -3813,7 +3840,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
3813
3840
|
handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
|
|
3814
3841
|
handleMouseLeave: () => void;
|
|
3815
3842
|
tableId: string;
|
|
3816
|
-
tableSize: ComputedRef<"" | "
|
|
3843
|
+
tableSize: ComputedRef<"" | "default" | "small" | "large">;
|
|
3817
3844
|
isHidden: Ref<boolean>;
|
|
3818
3845
|
isEmpty: ComputedRef<boolean>;
|
|
3819
3846
|
renderExpanded: Ref< RenderExpanded<any> | null>;
|
|
@@ -3849,6 +3876,8 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
3849
3876
|
context: Table<any>;
|
|
3850
3877
|
computedSumText: ComputedRef<string>;
|
|
3851
3878
|
computedEmptyText: ComputedRef<string>;
|
|
3879
|
+
computedTooltipEffect: ComputedRef<string | undefined>;
|
|
3880
|
+
computedTooltipOptions: ComputedRef<Partial<Pick< UseTooltipProps, "appendTo" | "effect" | "enterable" | "hideAfter" | "offset" | "placement" | "popperClass" | "popperOptions" | "showAfter" | "showArrow" | "transition">> | undefined>;
|
|
3852
3881
|
tableLayout: ComputedRef<"fixed" | "auto">;
|
|
3853
3882
|
scrollbarViewStyle: {
|
|
3854
3883
|
display: string;
|
|
@@ -3869,28 +3898,29 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
3869
3898
|
setScrollLeft: (left?: number) => void;
|
|
3870
3899
|
setScrollTop: (top?: number) => void;
|
|
3871
3900
|
allowDragLastColumn: boolean;
|
|
3872
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "scroll" | "selection-change" | "current-change" | "row-click" | "row-dblclick" | "select-all" | "
|
|
3873
|
-
data: any[];
|
|
3874
|
-
style: StyleValue;
|
|
3875
|
-
tableLayout: "fixed" | "auto";
|
|
3901
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "scroll" | "selection-change" | "current-change" | "row-click" | "row-dblclick" | "select-all" | "cell-mouse-enter" | "cell-mouse-leave" | "cell-contextmenu" | "cell-click" | "cell-dblclick" | "row-contextmenu" | "header-click" | "header-contextmenu" | "sort-change" | "filter-change" | "header-dragend" | "expand-change")[], PublicProps, {
|
|
3876
3902
|
border: boolean;
|
|
3877
|
-
className: string;
|
|
3878
|
-
lazy: boolean;
|
|
3879
|
-
fit: boolean;
|
|
3880
|
-
scrollbarAlwaysOn: boolean;
|
|
3881
3903
|
allowDragLastColumn: boolean;
|
|
3882
|
-
|
|
3883
|
-
|
|
3884
|
-
|
|
3885
|
-
indent: number;
|
|
3904
|
+
tableLayout: "fixed" | "auto";
|
|
3905
|
+
style: StyleValue;
|
|
3906
|
+
className: string;
|
|
3886
3907
|
stripe: boolean;
|
|
3908
|
+
data: any[];
|
|
3909
|
+
treeProps: TreeProps | undefined;
|
|
3910
|
+
showOverflowTooltip: boolean | Partial<Pick< UseTooltipProps, "appendTo" | "effect" | "enterable" | "hideAfter" | "offset" | "placement" | "popperClass" | "popperOptions" | "showAfter" | "showArrow" | "transition">> | undefined;
|
|
3911
|
+
fit: boolean;
|
|
3887
3912
|
showHeader: boolean;
|
|
3888
3913
|
showSummary: boolean;
|
|
3889
3914
|
highlightCurrentRow: boolean;
|
|
3915
|
+
defaultExpandAll: boolean;
|
|
3916
|
+
selectOnIndeterminate: boolean;
|
|
3917
|
+
indent: number;
|
|
3918
|
+
lazy: boolean;
|
|
3919
|
+
scrollbarAlwaysOn: boolean;
|
|
3890
3920
|
flexible: boolean;
|
|
3891
3921
|
scrollbarTabindex: string | number;
|
|
3892
|
-
nativeScrollbar: boolean;
|
|
3893
3922
|
preserveExpandedContent: boolean;
|
|
3923
|
+
nativeScrollbar: boolean;
|
|
3894
3924
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
3895
3925
|
P: {};
|
|
3896
3926
|
B: {};
|
|
@@ -3904,7 +3934,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
3904
3934
|
default: () => never[];
|
|
3905
3935
|
};
|
|
3906
3936
|
size: {
|
|
3907
|
-
readonly type: PropType<EpPropMergeType<StringConstructor, "" | "
|
|
3937
|
+
readonly type: PropType<EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
|
3908
3938
|
readonly required: false;
|
|
3909
3939
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
3910
3940
|
__epPropKey: true;
|
|
@@ -3978,7 +4008,10 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
3978
4008
|
};
|
|
3979
4009
|
scrollbarAlwaysOn: BooleanConstructor;
|
|
3980
4010
|
flexible: BooleanConstructor;
|
|
3981
|
-
showOverflowTooltip:
|
|
4011
|
+
showOverflowTooltip: {
|
|
4012
|
+
type: PropType< TableProps<any>["showOverflowTooltip"]>;
|
|
4013
|
+
default: undefined;
|
|
4014
|
+
};
|
|
3982
4015
|
tooltipFormatter: PropType< TableProps<any>["tooltipFormatter"]>;
|
|
3983
4016
|
appendFilterPanelTo: StringConstructor;
|
|
3984
4017
|
scrollbarTabindex: {
|
|
@@ -3992,17 +4025,10 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
3992
4025
|
preserveExpandedContent: BooleanConstructor;
|
|
3993
4026
|
nativeScrollbar: BooleanConstructor;
|
|
3994
4027
|
}>> & {
|
|
3995
|
-
onSelect?: ((...args: any[]) => any) | undefined;
|
|
3996
4028
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
3997
|
-
|
|
3998
|
-
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
4029
|
+
onSelect?: ((...args: any[]) => any) | undefined;
|
|
3999
4030
|
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
|
4000
|
-
"onHeader-click"?: ((...args: any[]) => any) | undefined;
|
|
4001
|
-
"onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
4002
|
-
"onHeader-dragend"?: ((...args: any[]) => any) | undefined;
|
|
4003
4031
|
"onSelection-change"?: ((...args: any[]) => any) | undefined;
|
|
4004
|
-
"onSort-change"?: ((...args: any[]) => any) | undefined;
|
|
4005
|
-
"onFilter-change"?: ((...args: any[]) => any) | undefined;
|
|
4006
4032
|
"onCell-mouse-enter"?: ((...args: any[]) => any) | undefined;
|
|
4007
4033
|
"onCell-mouse-leave"?: ((...args: any[]) => any) | undefined;
|
|
4008
4034
|
"onCell-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
@@ -4011,6 +4037,13 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
4011
4037
|
"onRow-click"?: ((...args: any[]) => any) | undefined;
|
|
4012
4038
|
"onRow-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
4013
4039
|
"onRow-dblclick"?: ((...args: any[]) => any) | undefined;
|
|
4040
|
+
"onHeader-click"?: ((...args: any[]) => any) | undefined;
|
|
4041
|
+
"onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
4042
|
+
"onSort-change"?: ((...args: any[]) => any) | undefined;
|
|
4043
|
+
"onFilter-change"?: ((...args: any[]) => any) | undefined;
|
|
4044
|
+
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
4045
|
+
"onHeader-dragend"?: ((...args: any[]) => any) | undefined;
|
|
4046
|
+
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
4014
4047
|
}, {
|
|
4015
4048
|
ns: {
|
|
4016
4049
|
namespace: ComputedRef<string>;
|
|
@@ -4030,7 +4063,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
4030
4063
|
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
4031
4064
|
cssVarBlockName: (name: string) => string;
|
|
4032
4065
|
};
|
|
4033
|
-
layout:
|
|
4066
|
+
layout: TableLayout<any>;
|
|
4034
4067
|
store: {
|
|
4035
4068
|
mutations: {
|
|
4036
4069
|
setData(states: {
|
|
@@ -4565,7 +4598,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
4565
4598
|
handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
|
|
4566
4599
|
handleMouseLeave: () => void;
|
|
4567
4600
|
tableId: string;
|
|
4568
|
-
tableSize: ComputedRef<"" | "
|
|
4601
|
+
tableSize: ComputedRef<"" | "default" | "small" | "large">;
|
|
4569
4602
|
isHidden: Ref<boolean>;
|
|
4570
4603
|
isEmpty: ComputedRef<boolean>;
|
|
4571
4604
|
renderExpanded: Ref< RenderExpanded<any> | null>;
|
|
@@ -4601,6 +4634,8 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
4601
4634
|
context: Table<any>;
|
|
4602
4635
|
computedSumText: ComputedRef<string>;
|
|
4603
4636
|
computedEmptyText: ComputedRef<string>;
|
|
4637
|
+
computedTooltipEffect: ComputedRef<string | undefined>;
|
|
4638
|
+
computedTooltipOptions: ComputedRef<Partial<Pick< UseTooltipProps, "appendTo" | "effect" | "enterable" | "hideAfter" | "offset" | "placement" | "popperClass" | "popperOptions" | "showAfter" | "showArrow" | "transition">> | undefined>;
|
|
4604
4639
|
tableLayout: ComputedRef<"fixed" | "auto">;
|
|
4605
4640
|
scrollbarViewStyle: {
|
|
4606
4641
|
display: string;
|
|
@@ -4622,34 +4657,35 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
4622
4657
|
setScrollTop: (top?: number) => void;
|
|
4623
4658
|
allowDragLastColumn: boolean;
|
|
4624
4659
|
}, {}, {}, {}, {
|
|
4625
|
-
data: any[];
|
|
4626
|
-
style: StyleValue;
|
|
4627
|
-
tableLayout: "fixed" | "auto";
|
|
4628
4660
|
border: boolean;
|
|
4629
|
-
className: string;
|
|
4630
|
-
lazy: boolean;
|
|
4631
|
-
fit: boolean;
|
|
4632
|
-
scrollbarAlwaysOn: boolean;
|
|
4633
4661
|
allowDragLastColumn: boolean;
|
|
4634
|
-
|
|
4635
|
-
|
|
4636
|
-
|
|
4637
|
-
indent: number;
|
|
4662
|
+
tableLayout: "fixed" | "auto";
|
|
4663
|
+
style: StyleValue;
|
|
4664
|
+
className: string;
|
|
4638
4665
|
stripe: boolean;
|
|
4666
|
+
data: any[];
|
|
4667
|
+
treeProps: TreeProps | undefined;
|
|
4668
|
+
showOverflowTooltip: boolean | Partial<Pick< UseTooltipProps, "appendTo" | "effect" | "enterable" | "hideAfter" | "offset" | "placement" | "popperClass" | "popperOptions" | "showAfter" | "showArrow" | "transition">> | undefined;
|
|
4669
|
+
fit: boolean;
|
|
4639
4670
|
showHeader: boolean;
|
|
4640
4671
|
showSummary: boolean;
|
|
4641
4672
|
highlightCurrentRow: boolean;
|
|
4673
|
+
defaultExpandAll: boolean;
|
|
4674
|
+
selectOnIndeterminate: boolean;
|
|
4675
|
+
indent: number;
|
|
4676
|
+
lazy: boolean;
|
|
4677
|
+
scrollbarAlwaysOn: boolean;
|
|
4642
4678
|
flexible: boolean;
|
|
4643
4679
|
scrollbarTabindex: string | number;
|
|
4644
|
-
nativeScrollbar: boolean;
|
|
4645
4680
|
preserveExpandedContent: boolean;
|
|
4681
|
+
nativeScrollbar: boolean;
|
|
4646
4682
|
}> | undefined, CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
|
|
4647
4683
|
data: {
|
|
4648
4684
|
type: PropType<any[]>;
|
|
4649
4685
|
default: () => never[];
|
|
4650
4686
|
};
|
|
4651
4687
|
size: {
|
|
4652
|
-
readonly type: PropType<EpPropMergeType<StringConstructor, "" | "
|
|
4688
|
+
readonly type: PropType<EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
|
4653
4689
|
readonly required: false;
|
|
4654
4690
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
4655
4691
|
__epPropKey: true;
|
|
@@ -4723,7 +4759,10 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
4723
4759
|
};
|
|
4724
4760
|
scrollbarAlwaysOn: BooleanConstructor;
|
|
4725
4761
|
flexible: BooleanConstructor;
|
|
4726
|
-
showOverflowTooltip:
|
|
4762
|
+
showOverflowTooltip: {
|
|
4763
|
+
type: PropType< TableProps<any>["showOverflowTooltip"]>;
|
|
4764
|
+
default: undefined;
|
|
4765
|
+
};
|
|
4727
4766
|
tooltipFormatter: PropType< TableProps<any>["tooltipFormatter"]>;
|
|
4728
4767
|
appendFilterPanelTo: StringConstructor;
|
|
4729
4768
|
scrollbarTabindex: {
|
|
@@ -4737,17 +4776,10 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
4737
4776
|
preserveExpandedContent: BooleanConstructor;
|
|
4738
4777
|
nativeScrollbar: BooleanConstructor;
|
|
4739
4778
|
}>> & {
|
|
4740
|
-
onSelect?: ((...args: any[]) => any) | undefined;
|
|
4741
4779
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
4742
|
-
|
|
4743
|
-
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
4780
|
+
onSelect?: ((...args: any[]) => any) | undefined;
|
|
4744
4781
|
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
|
4745
|
-
"onHeader-click"?: ((...args: any[]) => any) | undefined;
|
|
4746
|
-
"onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
4747
|
-
"onHeader-dragend"?: ((...args: any[]) => any) | undefined;
|
|
4748
4782
|
"onSelection-change"?: ((...args: any[]) => any) | undefined;
|
|
4749
|
-
"onSort-change"?: ((...args: any[]) => any) | undefined;
|
|
4750
|
-
"onFilter-change"?: ((...args: any[]) => any) | undefined;
|
|
4751
4783
|
"onCell-mouse-enter"?: ((...args: any[]) => any) | undefined;
|
|
4752
4784
|
"onCell-mouse-leave"?: ((...args: any[]) => any) | undefined;
|
|
4753
4785
|
"onCell-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
@@ -4756,6 +4788,13 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
4756
4788
|
"onRow-click"?: ((...args: any[]) => any) | undefined;
|
|
4757
4789
|
"onRow-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
4758
4790
|
"onRow-dblclick"?: ((...args: any[]) => any) | undefined;
|
|
4791
|
+
"onHeader-click"?: ((...args: any[]) => any) | undefined;
|
|
4792
|
+
"onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
4793
|
+
"onSort-change"?: ((...args: any[]) => any) | undefined;
|
|
4794
|
+
"onFilter-change"?: ((...args: any[]) => any) | undefined;
|
|
4795
|
+
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
4796
|
+
"onHeader-dragend"?: ((...args: any[]) => any) | undefined;
|
|
4797
|
+
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
4759
4798
|
}, {
|
|
4760
4799
|
ns: {
|
|
4761
4800
|
namespace: ComputedRef<string>;
|
|
@@ -4775,7 +4814,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
4775
4814
|
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
4776
4815
|
cssVarBlockName: (name: string) => string;
|
|
4777
4816
|
};
|
|
4778
|
-
layout:
|
|
4817
|
+
layout: TableLayout<any>;
|
|
4779
4818
|
store: {
|
|
4780
4819
|
mutations: {
|
|
4781
4820
|
setData(states: {
|
|
@@ -5310,7 +5349,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
5310
5349
|
handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
|
|
5311
5350
|
handleMouseLeave: () => void;
|
|
5312
5351
|
tableId: string;
|
|
5313
|
-
tableSize: ComputedRef<"" | "
|
|
5352
|
+
tableSize: ComputedRef<"" | "default" | "small" | "large">;
|
|
5314
5353
|
isHidden: Ref<boolean>;
|
|
5315
5354
|
isEmpty: ComputedRef<boolean>;
|
|
5316
5355
|
renderExpanded: Ref< RenderExpanded<any> | null>;
|
|
@@ -5346,6 +5385,8 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
5346
5385
|
context: Table<any>;
|
|
5347
5386
|
computedSumText: ComputedRef<string>;
|
|
5348
5387
|
computedEmptyText: ComputedRef<string>;
|
|
5388
|
+
computedTooltipEffect: ComputedRef<string | undefined>;
|
|
5389
|
+
computedTooltipOptions: ComputedRef<Partial<Pick< UseTooltipProps, "appendTo" | "effect" | "enterable" | "hideAfter" | "offset" | "placement" | "popperClass" | "popperOptions" | "showAfter" | "showArrow" | "transition">> | undefined>;
|
|
5349
5390
|
tableLayout: ComputedRef<"fixed" | "auto">;
|
|
5350
5391
|
scrollbarViewStyle: {
|
|
5351
5392
|
display: string;
|
|
@@ -5366,28 +5407,29 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
5366
5407
|
setScrollLeft: (left?: number) => void;
|
|
5367
5408
|
setScrollTop: (top?: number) => void;
|
|
5368
5409
|
allowDragLastColumn: boolean;
|
|
5369
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "scroll" | "selection-change" | "current-change" | "row-click" | "row-dblclick" | "select-all" | "
|
|
5370
|
-
data: any[];
|
|
5371
|
-
style: StyleValue;
|
|
5372
|
-
tableLayout: "fixed" | "auto";
|
|
5410
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "scroll" | "selection-change" | "current-change" | "row-click" | "row-dblclick" | "select-all" | "cell-mouse-enter" | "cell-mouse-leave" | "cell-contextmenu" | "cell-click" | "cell-dblclick" | "row-contextmenu" | "header-click" | "header-contextmenu" | "sort-change" | "filter-change" | "header-dragend" | "expand-change")[], PublicProps, {
|
|
5373
5411
|
border: boolean;
|
|
5374
|
-
className: string;
|
|
5375
|
-
lazy: boolean;
|
|
5376
|
-
fit: boolean;
|
|
5377
|
-
scrollbarAlwaysOn: boolean;
|
|
5378
5412
|
allowDragLastColumn: boolean;
|
|
5379
|
-
|
|
5380
|
-
|
|
5381
|
-
|
|
5382
|
-
indent: number;
|
|
5413
|
+
tableLayout: "fixed" | "auto";
|
|
5414
|
+
style: StyleValue;
|
|
5415
|
+
className: string;
|
|
5383
5416
|
stripe: boolean;
|
|
5417
|
+
data: any[];
|
|
5418
|
+
treeProps: TreeProps | undefined;
|
|
5419
|
+
showOverflowTooltip: boolean | Partial<Pick< UseTooltipProps, "appendTo" | "effect" | "enterable" | "hideAfter" | "offset" | "placement" | "popperClass" | "popperOptions" | "showAfter" | "showArrow" | "transition">> | undefined;
|
|
5420
|
+
fit: boolean;
|
|
5384
5421
|
showHeader: boolean;
|
|
5385
5422
|
showSummary: boolean;
|
|
5386
5423
|
highlightCurrentRow: boolean;
|
|
5424
|
+
defaultExpandAll: boolean;
|
|
5425
|
+
selectOnIndeterminate: boolean;
|
|
5426
|
+
indent: number;
|
|
5427
|
+
lazy: boolean;
|
|
5428
|
+
scrollbarAlwaysOn: boolean;
|
|
5387
5429
|
flexible: boolean;
|
|
5388
5430
|
scrollbarTabindex: string | number;
|
|
5389
|
-
nativeScrollbar: boolean;
|
|
5390
5431
|
preserveExpandedContent: boolean;
|
|
5432
|
+
nativeScrollbar: boolean;
|
|
5391
5433
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
5392
5434
|
P: {};
|
|
5393
5435
|
B: {};
|
|
@@ -5401,7 +5443,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
5401
5443
|
default: () => never[];
|
|
5402
5444
|
};
|
|
5403
5445
|
size: {
|
|
5404
|
-
readonly type: PropType<EpPropMergeType<StringConstructor, "" | "
|
|
5446
|
+
readonly type: PropType<EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
|
|
5405
5447
|
readonly required: false;
|
|
5406
5448
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
5407
5449
|
__epPropKey: true;
|
|
@@ -5475,7 +5517,10 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
5475
5517
|
};
|
|
5476
5518
|
scrollbarAlwaysOn: BooleanConstructor;
|
|
5477
5519
|
flexible: BooleanConstructor;
|
|
5478
|
-
showOverflowTooltip:
|
|
5520
|
+
showOverflowTooltip: {
|
|
5521
|
+
type: PropType< TableProps<any>["showOverflowTooltip"]>;
|
|
5522
|
+
default: undefined;
|
|
5523
|
+
};
|
|
5479
5524
|
tooltipFormatter: PropType< TableProps<any>["tooltipFormatter"]>;
|
|
5480
5525
|
appendFilterPanelTo: StringConstructor;
|
|
5481
5526
|
scrollbarTabindex: {
|
|
@@ -5489,17 +5534,10 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
5489
5534
|
preserveExpandedContent: BooleanConstructor;
|
|
5490
5535
|
nativeScrollbar: BooleanConstructor;
|
|
5491
5536
|
}>> & {
|
|
5492
|
-
onSelect?: ((...args: any[]) => any) | undefined;
|
|
5493
5537
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
5494
|
-
|
|
5495
|
-
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
5538
|
+
onSelect?: ((...args: any[]) => any) | undefined;
|
|
5496
5539
|
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
|
5497
|
-
"onHeader-click"?: ((...args: any[]) => any) | undefined;
|
|
5498
|
-
"onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
5499
|
-
"onHeader-dragend"?: ((...args: any[]) => any) | undefined;
|
|
5500
5540
|
"onSelection-change"?: ((...args: any[]) => any) | undefined;
|
|
5501
|
-
"onSort-change"?: ((...args: any[]) => any) | undefined;
|
|
5502
|
-
"onFilter-change"?: ((...args: any[]) => any) | undefined;
|
|
5503
5541
|
"onCell-mouse-enter"?: ((...args: any[]) => any) | undefined;
|
|
5504
5542
|
"onCell-mouse-leave"?: ((...args: any[]) => any) | undefined;
|
|
5505
5543
|
"onCell-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
@@ -5508,6 +5546,13 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
5508
5546
|
"onRow-click"?: ((...args: any[]) => any) | undefined;
|
|
5509
5547
|
"onRow-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
5510
5548
|
"onRow-dblclick"?: ((...args: any[]) => any) | undefined;
|
|
5549
|
+
"onHeader-click"?: ((...args: any[]) => any) | undefined;
|
|
5550
|
+
"onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
5551
|
+
"onSort-change"?: ((...args: any[]) => any) | undefined;
|
|
5552
|
+
"onFilter-change"?: ((...args: any[]) => any) | undefined;
|
|
5553
|
+
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
5554
|
+
"onHeader-dragend"?: ((...args: any[]) => any) | undefined;
|
|
5555
|
+
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
5511
5556
|
}, {
|
|
5512
5557
|
ns: {
|
|
5513
5558
|
namespace: ComputedRef<string>;
|
|
@@ -5527,7 +5572,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
5527
5572
|
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
5528
5573
|
cssVarBlockName: (name: string) => string;
|
|
5529
5574
|
};
|
|
5530
|
-
layout:
|
|
5575
|
+
layout: TableLayout<any>;
|
|
5531
5576
|
store: {
|
|
5532
5577
|
mutations: {
|
|
5533
5578
|
setData(states: {
|
|
@@ -6062,7 +6107,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
6062
6107
|
handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
|
|
6063
6108
|
handleMouseLeave: () => void;
|
|
6064
6109
|
tableId: string;
|
|
6065
|
-
tableSize: ComputedRef<"" | "
|
|
6110
|
+
tableSize: ComputedRef<"" | "default" | "small" | "large">;
|
|
6066
6111
|
isHidden: Ref<boolean>;
|
|
6067
6112
|
isEmpty: ComputedRef<boolean>;
|
|
6068
6113
|
renderExpanded: Ref< RenderExpanded<any> | null>;
|
|
@@ -6098,6 +6143,8 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
6098
6143
|
context: Table<any>;
|
|
6099
6144
|
computedSumText: ComputedRef<string>;
|
|
6100
6145
|
computedEmptyText: ComputedRef<string>;
|
|
6146
|
+
computedTooltipEffect: ComputedRef<string | undefined>;
|
|
6147
|
+
computedTooltipOptions: ComputedRef<Partial<Pick< UseTooltipProps, "appendTo" | "effect" | "enterable" | "hideAfter" | "offset" | "placement" | "popperClass" | "popperOptions" | "showAfter" | "showArrow" | "transition">> | undefined>;
|
|
6101
6148
|
tableLayout: ComputedRef<"fixed" | "auto">;
|
|
6102
6149
|
scrollbarViewStyle: {
|
|
6103
6150
|
display: string;
|
|
@@ -6119,27 +6166,28 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
|
|
|
6119
6166
|
setScrollTop: (top?: number) => void;
|
|
6120
6167
|
allowDragLastColumn: boolean;
|
|
6121
6168
|
}, {}, {}, {}, {
|
|
6122
|
-
data: any[];
|
|
6123
|
-
style: StyleValue;
|
|
6124
|
-
tableLayout: "fixed" | "auto";
|
|
6125
6169
|
border: boolean;
|
|
6126
|
-
className: string;
|
|
6127
|
-
lazy: boolean;
|
|
6128
|
-
fit: boolean;
|
|
6129
|
-
scrollbarAlwaysOn: boolean;
|
|
6130
6170
|
allowDragLastColumn: boolean;
|
|
6131
|
-
|
|
6132
|
-
|
|
6133
|
-
|
|
6134
|
-
indent: number;
|
|
6171
|
+
tableLayout: "fixed" | "auto";
|
|
6172
|
+
style: StyleValue;
|
|
6173
|
+
className: string;
|
|
6135
6174
|
stripe: boolean;
|
|
6175
|
+
data: any[];
|
|
6176
|
+
treeProps: TreeProps | undefined;
|
|
6177
|
+
showOverflowTooltip: boolean | Partial<Pick< UseTooltipProps, "appendTo" | "effect" | "enterable" | "hideAfter" | "offset" | "placement" | "popperClass" | "popperOptions" | "showAfter" | "showArrow" | "transition">> | undefined;
|
|
6178
|
+
fit: boolean;
|
|
6136
6179
|
showHeader: boolean;
|
|
6137
6180
|
showSummary: boolean;
|
|
6138
6181
|
highlightCurrentRow: boolean;
|
|
6182
|
+
defaultExpandAll: boolean;
|
|
6183
|
+
selectOnIndeterminate: boolean;
|
|
6184
|
+
indent: number;
|
|
6185
|
+
lazy: boolean;
|
|
6186
|
+
scrollbarAlwaysOn: boolean;
|
|
6139
6187
|
flexible: boolean;
|
|
6140
6188
|
scrollbarTabindex: string | number;
|
|
6141
|
-
nativeScrollbar: boolean;
|
|
6142
6189
|
preserveExpandedContent: boolean;
|
|
6190
|
+
nativeScrollbar: boolean;
|
|
6143
6191
|
}> | undefined>;
|
|
6144
6192
|
tableData: ComputedRef<any[]>;
|
|
6145
6193
|
pagination: Ref<{
|