auto-vue-basic 0.0.87 → 0.0.89
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/auto-vue-basic.es.js +297 -283
- package/dist/auto-vue-basic.umd.js +1 -1
- package/dist/types/views/admin/index.vue.d.ts +56 -46
- package/dist/types/views/language/components/ModuleSelect.vue.d.ts +9 -0
- package/dist/types/views/language/form/template.vue.d.ts +56 -46
- package/dist/types/views/language/table/I18N.vue.d.ts +56 -46
- package/dist/types/views/log/error/index.vue.d.ts +49 -39
- package/dist/types/views/log/request/index.vue.d.ts +47 -41
- package/dist/types/views/log/sql/index.vue.d.ts +45 -37
- package/dist/types/views/menu/components/MenuSelect.vue.d.ts +9 -0
- package/dist/types/views/menu/components/TopMenuSelect.vue.d.ts +9 -0
- package/dist/types/views/menu/index.vue.d.ts +56 -46
- package/dist/types/views/role/index.vue.d.ts +56 -46
- package/dist/types/views/site/components/DomainProviderTableDrawer.vue.d.ts +45 -37
- package/dist/types/views/site/components/DomainTableDrawer.vue.d.ts +89 -73
- package/dist/types/views/site/components/SSLLogTableDrawer.vue.d.ts +56 -46
- package/dist/types/views/site/components/SSLTableDrawer.vue.d.ts +45 -37
- package/dist/version.js +1 -1
- package/package.json +3 -3
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PropType, DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, Ref, VNodeProps, AllowedComponentProps, ComponentCustomProps, CreateComponentPublicInstanceWithMixins,
|
|
1
|
+
import { PropType, DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, Ref, VNodeProps, AllowedComponentProps, ComponentCustomProps, CreateComponentPublicInstanceWithMixins, ComputedRef, StyleValue, GlobalComponents, GlobalDirectives, Slot, ComponentPublicInstance, ComponentOptionsBase, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
|
|
2
2
|
import { SSL } from '../../../types/config';
|
|
3
3
|
import { ColumnProps, BaseTableProps, StateProps } from 'auto-vue-manual';
|
|
4
4
|
import { TableProps, TableColumnCtx, Sort, Filter, Translator, Table } from 'element-plus';
|
|
@@ -119,7 +119,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
119
119
|
lazy: BooleanConstructor;
|
|
120
120
|
load: PropType< TableProps<any>["load"]>;
|
|
121
121
|
style: {
|
|
122
|
-
type: PropType<
|
|
122
|
+
type: PropType< TableProps<any>["style"]>;
|
|
123
123
|
default: () => {};
|
|
124
124
|
};
|
|
125
125
|
className: {
|
|
@@ -146,8 +146,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
146
146
|
preserveExpandedContent: BooleanConstructor;
|
|
147
147
|
nativeScrollbar: BooleanConstructor;
|
|
148
148
|
}>> & {
|
|
149
|
-
onScroll?: ((...args: any[]) => any) | undefined;
|
|
150
149
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
150
|
+
onScroll?: ((...args: any[]) => any) | undefined;
|
|
151
151
|
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
152
152
|
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
153
153
|
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
|
@@ -702,6 +702,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
702
702
|
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
703
703
|
cssVarBlockName: (name: string) => string;
|
|
704
704
|
};
|
|
705
|
+
t: Translator;
|
|
705
706
|
};
|
|
706
707
|
columns: ComputedRef< TableColumnCtx<any>[]>;
|
|
707
708
|
handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
|
|
@@ -743,7 +744,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
743
744
|
context: Table<any>;
|
|
744
745
|
computedSumText: ComputedRef<string>;
|
|
745
746
|
computedEmptyText: ComputedRef<string>;
|
|
746
|
-
tableLayout: ComputedRef<
|
|
747
|
+
tableLayout: ComputedRef<"fixed" | "auto">;
|
|
747
748
|
scrollbarViewStyle: {
|
|
748
749
|
display: string;
|
|
749
750
|
verticalAlign: string;
|
|
@@ -763,9 +764,9 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
763
764
|
setScrollLeft: (left?: number) => void;
|
|
764
765
|
setScrollTop: (top?: number) => void;
|
|
765
766
|
allowDragLastColumn: boolean;
|
|
766
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "scroll" | "selection-change" | "current-change" | "row-click" | "row-dblclick" | "select-all" | "expand-change" | "header-click" | "header-contextmenu" | "header-dragend" | "sort-change" | "filter-change" | "cell-mouse-enter" | "cell-mouse-leave" | "cell-contextmenu" | "cell-click" | "cell-dblclick" | "row-contextmenu")[],
|
|
767
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "scroll" | "selection-change" | "current-change" | "row-click" | "row-dblclick" | "select-all" | "expand-change" | "header-click" | "header-contextmenu" | "header-dragend" | "sort-change" | "filter-change" | "cell-mouse-enter" | "cell-mouse-leave" | "cell-contextmenu" | "cell-click" | "cell-dblclick" | "row-contextmenu")[], PublicProps, {
|
|
767
768
|
data: any[];
|
|
768
|
-
style:
|
|
769
|
+
style: StyleValue;
|
|
769
770
|
tableLayout: "fixed" | "auto";
|
|
770
771
|
border: boolean;
|
|
771
772
|
className: string;
|
|
@@ -856,7 +857,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
856
857
|
lazy: BooleanConstructor;
|
|
857
858
|
load: PropType< TableProps<any>["load"]>;
|
|
858
859
|
style: {
|
|
859
|
-
type: PropType<
|
|
860
|
+
type: PropType< TableProps<any>["style"]>;
|
|
860
861
|
default: () => {};
|
|
861
862
|
};
|
|
862
863
|
className: {
|
|
@@ -883,8 +884,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
883
884
|
preserveExpandedContent: BooleanConstructor;
|
|
884
885
|
nativeScrollbar: BooleanConstructor;
|
|
885
886
|
}>> & {
|
|
886
|
-
onScroll?: ((...args: any[]) => any) | undefined;
|
|
887
887
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
888
|
+
onScroll?: ((...args: any[]) => any) | undefined;
|
|
888
889
|
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
889
890
|
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
890
891
|
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
|
@@ -1439,6 +1440,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1439
1440
|
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
1440
1441
|
cssVarBlockName: (name: string) => string;
|
|
1441
1442
|
};
|
|
1443
|
+
t: Translator;
|
|
1442
1444
|
};
|
|
1443
1445
|
columns: ComputedRef< TableColumnCtx<any>[]>;
|
|
1444
1446
|
handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
|
|
@@ -1480,7 +1482,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1480
1482
|
context: Table<any>;
|
|
1481
1483
|
computedSumText: ComputedRef<string>;
|
|
1482
1484
|
computedEmptyText: ComputedRef<string>;
|
|
1483
|
-
tableLayout: ComputedRef<
|
|
1485
|
+
tableLayout: ComputedRef<"fixed" | "auto">;
|
|
1484
1486
|
scrollbarViewStyle: {
|
|
1485
1487
|
display: string;
|
|
1486
1488
|
verticalAlign: string;
|
|
@@ -1502,7 +1504,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1502
1504
|
allowDragLastColumn: boolean;
|
|
1503
1505
|
}, {}, {}, {}, {
|
|
1504
1506
|
data: any[];
|
|
1505
|
-
style:
|
|
1507
|
+
style: StyleValue;
|
|
1506
1508
|
tableLayout: "fixed" | "auto";
|
|
1507
1509
|
border: boolean;
|
|
1508
1510
|
className: string;
|
|
@@ -1601,7 +1603,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1601
1603
|
lazy: BooleanConstructor;
|
|
1602
1604
|
load: PropType< TableProps<any>["load"]>;
|
|
1603
1605
|
style: {
|
|
1604
|
-
type: PropType<
|
|
1606
|
+
type: PropType< TableProps<any>["style"]>;
|
|
1605
1607
|
default: () => {};
|
|
1606
1608
|
};
|
|
1607
1609
|
className: {
|
|
@@ -1628,8 +1630,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1628
1630
|
preserveExpandedContent: BooleanConstructor;
|
|
1629
1631
|
nativeScrollbar: BooleanConstructor;
|
|
1630
1632
|
}>> & {
|
|
1631
|
-
onScroll?: ((...args: any[]) => any) | undefined;
|
|
1632
1633
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
1634
|
+
onScroll?: ((...args: any[]) => any) | undefined;
|
|
1633
1635
|
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
1634
1636
|
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
1635
1637
|
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
|
@@ -2184,6 +2186,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2184
2186
|
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
2185
2187
|
cssVarBlockName: (name: string) => string;
|
|
2186
2188
|
};
|
|
2189
|
+
t: Translator;
|
|
2187
2190
|
};
|
|
2188
2191
|
columns: ComputedRef< TableColumnCtx<any>[]>;
|
|
2189
2192
|
handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
|
|
@@ -2225,7 +2228,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2225
2228
|
context: Table<any>;
|
|
2226
2229
|
computedSumText: ComputedRef<string>;
|
|
2227
2230
|
computedEmptyText: ComputedRef<string>;
|
|
2228
|
-
tableLayout: ComputedRef<
|
|
2231
|
+
tableLayout: ComputedRef<"fixed" | "auto">;
|
|
2229
2232
|
scrollbarViewStyle: {
|
|
2230
2233
|
display: string;
|
|
2231
2234
|
verticalAlign: string;
|
|
@@ -2245,9 +2248,9 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2245
2248
|
setScrollLeft: (left?: number) => void;
|
|
2246
2249
|
setScrollTop: (top?: number) => void;
|
|
2247
2250
|
allowDragLastColumn: boolean;
|
|
2248
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "scroll" | "selection-change" | "current-change" | "row-click" | "row-dblclick" | "select-all" | "expand-change" | "header-click" | "header-contextmenu" | "header-dragend" | "sort-change" | "filter-change" | "cell-mouse-enter" | "cell-mouse-leave" | "cell-contextmenu" | "cell-click" | "cell-dblclick" | "row-contextmenu")[],
|
|
2251
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "scroll" | "selection-change" | "current-change" | "row-click" | "row-dblclick" | "select-all" | "expand-change" | "header-click" | "header-contextmenu" | "header-dragend" | "sort-change" | "filter-change" | "cell-mouse-enter" | "cell-mouse-leave" | "cell-contextmenu" | "cell-click" | "cell-dblclick" | "row-contextmenu")[], PublicProps, {
|
|
2249
2252
|
data: any[];
|
|
2250
|
-
style:
|
|
2253
|
+
style: StyleValue;
|
|
2251
2254
|
tableLayout: "fixed" | "auto";
|
|
2252
2255
|
border: boolean;
|
|
2253
2256
|
className: string;
|
|
@@ -2338,7 +2341,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2338
2341
|
lazy: BooleanConstructor;
|
|
2339
2342
|
load: PropType< TableProps<any>["load"]>;
|
|
2340
2343
|
style: {
|
|
2341
|
-
type: PropType<
|
|
2344
|
+
type: PropType< TableProps<any>["style"]>;
|
|
2342
2345
|
default: () => {};
|
|
2343
2346
|
};
|
|
2344
2347
|
className: {
|
|
@@ -2365,8 +2368,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2365
2368
|
preserveExpandedContent: BooleanConstructor;
|
|
2366
2369
|
nativeScrollbar: BooleanConstructor;
|
|
2367
2370
|
}>> & {
|
|
2368
|
-
onScroll?: ((...args: any[]) => any) | undefined;
|
|
2369
2371
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
2372
|
+
onScroll?: ((...args: any[]) => any) | undefined;
|
|
2370
2373
|
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
2371
2374
|
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
2372
2375
|
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
|
@@ -2921,6 +2924,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2921
2924
|
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
2922
2925
|
cssVarBlockName: (name: string) => string;
|
|
2923
2926
|
};
|
|
2927
|
+
t: Translator;
|
|
2924
2928
|
};
|
|
2925
2929
|
columns: ComputedRef< TableColumnCtx<any>[]>;
|
|
2926
2930
|
handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
|
|
@@ -2962,7 +2966,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2962
2966
|
context: Table<any>;
|
|
2963
2967
|
computedSumText: ComputedRef<string>;
|
|
2964
2968
|
computedEmptyText: ComputedRef<string>;
|
|
2965
|
-
tableLayout: ComputedRef<
|
|
2969
|
+
tableLayout: ComputedRef<"fixed" | "auto">;
|
|
2966
2970
|
scrollbarViewStyle: {
|
|
2967
2971
|
display: string;
|
|
2968
2972
|
verticalAlign: string;
|
|
@@ -2984,7 +2988,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2984
2988
|
allowDragLastColumn: boolean;
|
|
2985
2989
|
}, {}, {}, {}, {
|
|
2986
2990
|
data: any[];
|
|
2987
|
-
style:
|
|
2991
|
+
style: StyleValue;
|
|
2988
2992
|
tableLayout: "fixed" | "auto";
|
|
2989
2993
|
border: boolean;
|
|
2990
2994
|
className: string;
|
|
@@ -3068,7 +3072,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3068
3072
|
lazy: BooleanConstructor;
|
|
3069
3073
|
load: PropType< TableProps<any>["load"]>;
|
|
3070
3074
|
style: {
|
|
3071
|
-
type: PropType<
|
|
3075
|
+
type: PropType< TableProps<any>["style"]>;
|
|
3072
3076
|
default: () => {};
|
|
3073
3077
|
};
|
|
3074
3078
|
className: {
|
|
@@ -3095,8 +3099,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3095
3099
|
preserveExpandedContent: BooleanConstructor;
|
|
3096
3100
|
nativeScrollbar: BooleanConstructor;
|
|
3097
3101
|
}>> & {
|
|
3098
|
-
onScroll?: ((...args: any[]) => any) | undefined;
|
|
3099
3102
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
3103
|
+
onScroll?: ((...args: any[]) => any) | undefined;
|
|
3100
3104
|
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
3101
3105
|
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
3102
3106
|
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
|
@@ -3651,6 +3655,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3651
3655
|
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
3652
3656
|
cssVarBlockName: (name: string) => string;
|
|
3653
3657
|
};
|
|
3658
|
+
t: Translator;
|
|
3654
3659
|
};
|
|
3655
3660
|
columns: ComputedRef< TableColumnCtx<any>[]>;
|
|
3656
3661
|
handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
|
|
@@ -3692,7 +3697,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3692
3697
|
context: Table<any>;
|
|
3693
3698
|
computedSumText: ComputedRef<string>;
|
|
3694
3699
|
computedEmptyText: ComputedRef<string>;
|
|
3695
|
-
tableLayout: ComputedRef<
|
|
3700
|
+
tableLayout: ComputedRef<"fixed" | "auto">;
|
|
3696
3701
|
scrollbarViewStyle: {
|
|
3697
3702
|
display: string;
|
|
3698
3703
|
verticalAlign: string;
|
|
@@ -3712,9 +3717,9 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3712
3717
|
setScrollLeft: (left?: number) => void;
|
|
3713
3718
|
setScrollTop: (top?: number) => void;
|
|
3714
3719
|
allowDragLastColumn: boolean;
|
|
3715
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "scroll" | "selection-change" | "current-change" | "row-click" | "row-dblclick" | "select-all" | "expand-change" | "header-click" | "header-contextmenu" | "header-dragend" | "sort-change" | "filter-change" | "cell-mouse-enter" | "cell-mouse-leave" | "cell-contextmenu" | "cell-click" | "cell-dblclick" | "row-contextmenu")[],
|
|
3720
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "scroll" | "selection-change" | "current-change" | "row-click" | "row-dblclick" | "select-all" | "expand-change" | "header-click" | "header-contextmenu" | "header-dragend" | "sort-change" | "filter-change" | "cell-mouse-enter" | "cell-mouse-leave" | "cell-contextmenu" | "cell-click" | "cell-dblclick" | "row-contextmenu")[], PublicProps, {
|
|
3716
3721
|
data: any[];
|
|
3717
|
-
style:
|
|
3722
|
+
style: StyleValue;
|
|
3718
3723
|
tableLayout: "fixed" | "auto";
|
|
3719
3724
|
border: boolean;
|
|
3720
3725
|
className: string;
|
|
@@ -3805,7 +3810,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3805
3810
|
lazy: BooleanConstructor;
|
|
3806
3811
|
load: PropType< TableProps<any>["load"]>;
|
|
3807
3812
|
style: {
|
|
3808
|
-
type: PropType<
|
|
3813
|
+
type: PropType< TableProps<any>["style"]>;
|
|
3809
3814
|
default: () => {};
|
|
3810
3815
|
};
|
|
3811
3816
|
className: {
|
|
@@ -3832,8 +3837,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3832
3837
|
preserveExpandedContent: BooleanConstructor;
|
|
3833
3838
|
nativeScrollbar: BooleanConstructor;
|
|
3834
3839
|
}>> & {
|
|
3835
|
-
onScroll?: ((...args: any[]) => any) | undefined;
|
|
3836
3840
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
3841
|
+
onScroll?: ((...args: any[]) => any) | undefined;
|
|
3837
3842
|
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
3838
3843
|
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
3839
3844
|
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
|
@@ -4388,6 +4393,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4388
4393
|
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
4389
4394
|
cssVarBlockName: (name: string) => string;
|
|
4390
4395
|
};
|
|
4396
|
+
t: Translator;
|
|
4391
4397
|
};
|
|
4392
4398
|
columns: ComputedRef< TableColumnCtx<any>[]>;
|
|
4393
4399
|
handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
|
|
@@ -4429,7 +4435,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4429
4435
|
context: Table<any>;
|
|
4430
4436
|
computedSumText: ComputedRef<string>;
|
|
4431
4437
|
computedEmptyText: ComputedRef<string>;
|
|
4432
|
-
tableLayout: ComputedRef<
|
|
4438
|
+
tableLayout: ComputedRef<"fixed" | "auto">;
|
|
4433
4439
|
scrollbarViewStyle: {
|
|
4434
4440
|
display: string;
|
|
4435
4441
|
verticalAlign: string;
|
|
@@ -4451,7 +4457,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4451
4457
|
allowDragLastColumn: boolean;
|
|
4452
4458
|
}, {}, {}, {}, {
|
|
4453
4459
|
data: any[];
|
|
4454
|
-
style:
|
|
4460
|
+
style: StyleValue;
|
|
4455
4461
|
tableLayout: "fixed" | "auto";
|
|
4456
4462
|
border: boolean;
|
|
4457
4463
|
className: string;
|
|
@@ -4633,7 +4639,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4633
4639
|
lazy: BooleanConstructor;
|
|
4634
4640
|
load: PropType< TableProps<any>["load"]>;
|
|
4635
4641
|
style: {
|
|
4636
|
-
type: PropType<
|
|
4642
|
+
type: PropType< TableProps<any>["style"]>;
|
|
4637
4643
|
default: () => {};
|
|
4638
4644
|
};
|
|
4639
4645
|
className: {
|
|
@@ -4660,8 +4666,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4660
4666
|
preserveExpandedContent: BooleanConstructor;
|
|
4661
4667
|
nativeScrollbar: BooleanConstructor;
|
|
4662
4668
|
}>> & {
|
|
4663
|
-
onScroll?: ((...args: any[]) => any) | undefined;
|
|
4664
4669
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
4670
|
+
onScroll?: ((...args: any[]) => any) | undefined;
|
|
4665
4671
|
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
4666
4672
|
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
4667
4673
|
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
|
@@ -5216,6 +5222,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5216
5222
|
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
5217
5223
|
cssVarBlockName: (name: string) => string;
|
|
5218
5224
|
};
|
|
5225
|
+
t: Translator;
|
|
5219
5226
|
};
|
|
5220
5227
|
columns: ComputedRef< TableColumnCtx<any>[]>;
|
|
5221
5228
|
handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
|
|
@@ -5257,7 +5264,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5257
5264
|
context: Table<any>;
|
|
5258
5265
|
computedSumText: ComputedRef<string>;
|
|
5259
5266
|
computedEmptyText: ComputedRef<string>;
|
|
5260
|
-
tableLayout: ComputedRef<
|
|
5267
|
+
tableLayout: ComputedRef<"fixed" | "auto">;
|
|
5261
5268
|
scrollbarViewStyle: {
|
|
5262
5269
|
display: string;
|
|
5263
5270
|
verticalAlign: string;
|
|
@@ -5277,9 +5284,9 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5277
5284
|
setScrollLeft: (left?: number) => void;
|
|
5278
5285
|
setScrollTop: (top?: number) => void;
|
|
5279
5286
|
allowDragLastColumn: boolean;
|
|
5280
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "scroll" | "selection-change" | "current-change" | "row-click" | "row-dblclick" | "select-all" | "expand-change" | "header-click" | "header-contextmenu" | "header-dragend" | "sort-change" | "filter-change" | "cell-mouse-enter" | "cell-mouse-leave" | "cell-contextmenu" | "cell-click" | "cell-dblclick" | "row-contextmenu")[],
|
|
5287
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "scroll" | "selection-change" | "current-change" | "row-click" | "row-dblclick" | "select-all" | "expand-change" | "header-click" | "header-contextmenu" | "header-dragend" | "sort-change" | "filter-change" | "cell-mouse-enter" | "cell-mouse-leave" | "cell-contextmenu" | "cell-click" | "cell-dblclick" | "row-contextmenu")[], PublicProps, {
|
|
5281
5288
|
data: any[];
|
|
5282
|
-
style:
|
|
5289
|
+
style: StyleValue;
|
|
5283
5290
|
tableLayout: "fixed" | "auto";
|
|
5284
5291
|
border: boolean;
|
|
5285
5292
|
className: string;
|
|
@@ -5370,7 +5377,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5370
5377
|
lazy: BooleanConstructor;
|
|
5371
5378
|
load: PropType< TableProps<any>["load"]>;
|
|
5372
5379
|
style: {
|
|
5373
|
-
type: PropType<
|
|
5380
|
+
type: PropType< TableProps<any>["style"]>;
|
|
5374
5381
|
default: () => {};
|
|
5375
5382
|
};
|
|
5376
5383
|
className: {
|
|
@@ -5397,8 +5404,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5397
5404
|
preserveExpandedContent: BooleanConstructor;
|
|
5398
5405
|
nativeScrollbar: BooleanConstructor;
|
|
5399
5406
|
}>> & {
|
|
5400
|
-
onScroll?: ((...args: any[]) => any) | undefined;
|
|
5401
5407
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
5408
|
+
onScroll?: ((...args: any[]) => any) | undefined;
|
|
5402
5409
|
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
5403
5410
|
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
5404
5411
|
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
|
@@ -5953,6 +5960,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5953
5960
|
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
5954
5961
|
cssVarBlockName: (name: string) => string;
|
|
5955
5962
|
};
|
|
5963
|
+
t: Translator;
|
|
5956
5964
|
};
|
|
5957
5965
|
columns: ComputedRef< TableColumnCtx<any>[]>;
|
|
5958
5966
|
handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
|
|
@@ -5994,7 +6002,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5994
6002
|
context: Table<any>;
|
|
5995
6003
|
computedSumText: ComputedRef<string>;
|
|
5996
6004
|
computedEmptyText: ComputedRef<string>;
|
|
5997
|
-
tableLayout: ComputedRef<
|
|
6005
|
+
tableLayout: ComputedRef<"fixed" | "auto">;
|
|
5998
6006
|
scrollbarViewStyle: {
|
|
5999
6007
|
display: string;
|
|
6000
6008
|
verticalAlign: string;
|
|
@@ -6016,7 +6024,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6016
6024
|
allowDragLastColumn: boolean;
|
|
6017
6025
|
}, {}, {}, {}, {
|
|
6018
6026
|
data: any[];
|
|
6019
|
-
style:
|
|
6027
|
+
style: StyleValue;
|
|
6020
6028
|
tableLayout: "fixed" | "auto";
|
|
6021
6029
|
border: boolean;
|
|
6022
6030
|
className: string;
|
|
@@ -6100,7 +6108,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6100
6108
|
lazy: BooleanConstructor;
|
|
6101
6109
|
load: PropType< TableProps<any>["load"]>;
|
|
6102
6110
|
style: {
|
|
6103
|
-
type: PropType<
|
|
6111
|
+
type: PropType< TableProps<any>["style"]>;
|
|
6104
6112
|
default: () => {};
|
|
6105
6113
|
};
|
|
6106
6114
|
className: {
|
|
@@ -6127,8 +6135,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6127
6135
|
preserveExpandedContent: BooleanConstructor;
|
|
6128
6136
|
nativeScrollbar: BooleanConstructor;
|
|
6129
6137
|
}>> & {
|
|
6130
|
-
onScroll?: ((...args: any[]) => any) | undefined;
|
|
6131
6138
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
6139
|
+
onScroll?: ((...args: any[]) => any) | undefined;
|
|
6132
6140
|
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
6133
6141
|
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
6134
6142
|
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
|
@@ -6683,6 +6691,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6683
6691
|
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
6684
6692
|
cssVarBlockName: (name: string) => string;
|
|
6685
6693
|
};
|
|
6694
|
+
t: Translator;
|
|
6686
6695
|
};
|
|
6687
6696
|
columns: ComputedRef< TableColumnCtx<any>[]>;
|
|
6688
6697
|
handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
|
|
@@ -6724,7 +6733,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6724
6733
|
context: Table<any>;
|
|
6725
6734
|
computedSumText: ComputedRef<string>;
|
|
6726
6735
|
computedEmptyText: ComputedRef<string>;
|
|
6727
|
-
tableLayout: ComputedRef<
|
|
6736
|
+
tableLayout: ComputedRef<"fixed" | "auto">;
|
|
6728
6737
|
scrollbarViewStyle: {
|
|
6729
6738
|
display: string;
|
|
6730
6739
|
verticalAlign: string;
|
|
@@ -6744,9 +6753,9 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6744
6753
|
setScrollLeft: (left?: number) => void;
|
|
6745
6754
|
setScrollTop: (top?: number) => void;
|
|
6746
6755
|
allowDragLastColumn: boolean;
|
|
6747
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "scroll" | "selection-change" | "current-change" | "row-click" | "row-dblclick" | "select-all" | "expand-change" | "header-click" | "header-contextmenu" | "header-dragend" | "sort-change" | "filter-change" | "cell-mouse-enter" | "cell-mouse-leave" | "cell-contextmenu" | "cell-click" | "cell-dblclick" | "row-contextmenu")[],
|
|
6756
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "scroll" | "selection-change" | "current-change" | "row-click" | "row-dblclick" | "select-all" | "expand-change" | "header-click" | "header-contextmenu" | "header-dragend" | "sort-change" | "filter-change" | "cell-mouse-enter" | "cell-mouse-leave" | "cell-contextmenu" | "cell-click" | "cell-dblclick" | "row-contextmenu")[], PublicProps, {
|
|
6748
6757
|
data: any[];
|
|
6749
|
-
style:
|
|
6758
|
+
style: StyleValue;
|
|
6750
6759
|
tableLayout: "fixed" | "auto";
|
|
6751
6760
|
border: boolean;
|
|
6752
6761
|
className: string;
|
|
@@ -6837,7 +6846,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6837
6846
|
lazy: BooleanConstructor;
|
|
6838
6847
|
load: PropType< TableProps<any>["load"]>;
|
|
6839
6848
|
style: {
|
|
6840
|
-
type: PropType<
|
|
6849
|
+
type: PropType< TableProps<any>["style"]>;
|
|
6841
6850
|
default: () => {};
|
|
6842
6851
|
};
|
|
6843
6852
|
className: {
|
|
@@ -6864,8 +6873,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6864
6873
|
preserveExpandedContent: BooleanConstructor;
|
|
6865
6874
|
nativeScrollbar: BooleanConstructor;
|
|
6866
6875
|
}>> & {
|
|
6867
|
-
onScroll?: ((...args: any[]) => any) | undefined;
|
|
6868
6876
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
6877
|
+
onScroll?: ((...args: any[]) => any) | undefined;
|
|
6869
6878
|
"onExpand-change"?: ((...args: any[]) => any) | undefined;
|
|
6870
6879
|
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
6871
6880
|
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
|
@@ -7420,6 +7429,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
7420
7429
|
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
7421
7430
|
cssVarBlockName: (name: string) => string;
|
|
7422
7431
|
};
|
|
7432
|
+
t: Translator;
|
|
7423
7433
|
};
|
|
7424
7434
|
columns: ComputedRef< TableColumnCtx<any>[]>;
|
|
7425
7435
|
handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
|
|
@@ -7461,7 +7471,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
7461
7471
|
context: Table<any>;
|
|
7462
7472
|
computedSumText: ComputedRef<string>;
|
|
7463
7473
|
computedEmptyText: ComputedRef<string>;
|
|
7464
|
-
tableLayout: ComputedRef<
|
|
7474
|
+
tableLayout: ComputedRef<"fixed" | "auto">;
|
|
7465
7475
|
scrollbarViewStyle: {
|
|
7466
7476
|
display: string;
|
|
7467
7477
|
verticalAlign: string;
|
|
@@ -7483,7 +7493,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
7483
7493
|
allowDragLastColumn: boolean;
|
|
7484
7494
|
}, {}, {}, {}, {
|
|
7485
7495
|
data: any[];
|
|
7486
|
-
style:
|
|
7496
|
+
style: StyleValue;
|
|
7487
7497
|
tableLayout: "fixed" | "auto";
|
|
7488
7498
|
border: boolean;
|
|
7489
7499
|
className: string;
|