@dazhicheng/ui 1.6.25 → 1.6.26
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/components/tt-api-component/index.d.ts +35 -24
- package/dist/components/tt-api-component/index.vue.d.ts +34 -0
- package/dist/components/tt-area/TtArea.vue.d.ts +2 -0
- package/dist/components/tt-area/index.d.ts +1 -1
- package/dist/components/tt-button/components/AddButton.vue.d.ts +2 -0
- package/dist/components/tt-button/index.d.ts +589 -260
- package/dist/components/tt-button/index.vue.d.ts +466 -0
- package/dist/components/tt-checkbox/index.d.ts +35 -26
- package/dist/components/tt-checkbox/index.vue.d.ts +28 -0
- package/dist/components/tt-drawer/index.d.ts +299 -306
- package/dist/components/tt-drawer/src/{RenderDrawer.d.ts → RenderDrawer.vue.d.ts} +146 -149
- package/dist/components/tt-drawer/src/components/{DrawerFooter.d.ts → DrawerFooter.vue.d.ts} +16 -18
- package/dist/components/tt-drawer/src/components/{DrawerHeader.d.ts → DrawerHeader.vue.d.ts} +3 -4
- package/dist/components/tt-drawer/src/hooks/useDrawerRender.d.ts +2 -2
- package/dist/components/tt-drawer/src/hooks/useResizable.d.ts +2 -2
- package/dist/components/tt-drawer/src/utils/drawer-api.d.ts +2 -4
- package/dist/components/tt-empty/index.d.ts +8 -10
- package/dist/components/tt-form/src/components/{ExpandableArrow.d.ts → ExpandableArrow.vue.d.ts} +4 -5
- package/dist/components/tt-form/src/components/{FormActions.d.ts → FormActions.vue.d.ts} +5 -6
- package/dist/components/tt-form/src/components/{FormElInput.d.ts → FormElInput.vue.d.ts} +101 -105
- package/dist/components/tt-form/src/components/Slot.d.ts +4 -4
- package/dist/components/tt-form/src/form/{FormControl.d.ts → FormControl.vue.d.ts} +1 -2
- package/dist/components/tt-form/src/form/{FormDescription.d.ts → FormDescription.vue.d.ts} +1 -2
- package/dist/components/tt-form/src/form/{FormItem.d.ts → FormItem.vue.d.ts} +1 -2
- package/dist/components/tt-form/src/form/{FormLabel.d.ts → FormLabel.vue.d.ts} +1 -2
- package/dist/components/tt-form/src/form/FormMessage.vue.d.ts +2 -0
- package/dist/components/tt-form/src/form/FormMessageToolTip.vue.d.ts +8 -0
- package/dist/components/tt-form/src/form/{FormWarnMessage.d.ts → FormWarnMessage.vue.d.ts} +1 -2
- package/dist/components/tt-form/src/form/{RenderContent.d.ts → RenderContent.vue.d.ts} +4 -4
- package/dist/components/tt-form/src/form/index.d.ts +8 -8
- package/dist/components/tt-form/src/form/useFormField.d.ts +5 -6
- package/dist/components/tt-form/src/form-render/{FormField.d.ts → FormField.vue.d.ts} +1 -2
- package/dist/components/tt-form/src/form-render/FormFieldContact.d.ts +6 -6
- package/dist/components/tt-form/src/form-render/{FormLabel.d.ts → FormLabel.vue.d.ts} +2 -3
- package/dist/components/tt-form/src/form-render/array-register/FormArrayRegister.d.ts +11 -14
- package/dist/components/tt-form/src/form-render/context.d.ts +4 -5
- package/dist/components/tt-form/src/form-render/dependencies.d.ts +6 -7
- package/dist/components/tt-form/src/form-render/expandable.d.ts +3 -4
- package/dist/components/tt-form/src/form-render/{form.d.ts → form.vue.d.ts} +8 -9
- package/dist/components/tt-form/src/form-render/index.d.ts +3 -3
- package/dist/components/tt-form/src/formApi.d.ts +3 -3
- package/dist/components/tt-form/src/group-form/{GroupForm.d.ts → GroupForm.vue.d.ts} +5 -7
- package/dist/components/tt-form/src/group-form/{GroupSection.d.ts → GroupSection.vue.d.ts} +5 -7
- package/dist/components/tt-form/src/group-form/{LazyFormField.d.ts → LazyFormField.vue.d.ts} +3 -5
- package/dist/components/tt-form/src/group-form/groupFormApi.d.ts +5 -7
- package/dist/components/tt-form/src/hooks/useFormFieldBus.d.ts +2 -3
- package/dist/components/tt-form/src/hooks/useForwardProps.d.ts +2 -2
- package/dist/components/tt-form/src/hooks/useForwardPropsEmits.d.ts +2 -2
- package/dist/components/tt-form/src/index.vue.d.ts +216 -0
- package/dist/components/tt-form/src/useForm.d.ts +1 -2
- package/dist/components/tt-form/src/useFormContext.d.ts +1 -2
- package/dist/components/tt-form-item-error-tooltip/index.d.ts +337 -61
- package/dist/components/tt-form-item-error-tooltip/index.vue.d.ts +298 -0
- package/dist/components/tt-icon/components/AddIcon.vue.d.ts +7 -0
- package/dist/components/tt-icon/components/SubIcon.vue.d.ts +7 -0
- package/dist/components/tt-icon/index.d.ts +115 -24
- package/dist/components/tt-icon/index.vue.d.ts +32 -0
- package/dist/components/tt-image/index.d.ts +41 -45
- package/dist/components/tt-image/src/components/ImageViewer.d.ts +26 -30
- package/dist/components/tt-image/tt-image.d.ts +34 -36
- package/dist/components/tt-loading/index.d.ts +2 -5
- package/dist/components/tt-loading/src/loading.vue.d.ts +12 -0
- package/dist/components/tt-log/index.d.ts +6 -7
- package/dist/components/tt-log/index.vue.d.ts +5 -0
- package/dist/components/tt-modal/index.d.ts +364 -371
- package/dist/components/tt-modal/src/{RenderModal.d.ts → RenderModal.vue.d.ts} +115 -118
- package/dist/components/tt-modal/src/components/{ModalFooter.d.ts → ModalFooter.vue.d.ts} +23 -26
- package/dist/components/tt-modal/src/components/{ModalHeader.d.ts → ModalHeader.vue.d.ts} +3 -4
- package/dist/components/tt-modal/src/components/{ModalWrapper.d.ts → ModalWrapper.vue.d.ts} +24 -27
- package/dist/components/tt-modal/src/hooks/useModalRender.d.ts +29 -32
- package/dist/components/tt-modal/src/typing.d.ts +2 -2
- package/dist/components/tt-modal/src/utils/modal-api.d.ts +1 -2
- package/dist/components/tt-modal-form/hooks/useModalFormSlot.d.ts +2 -3
- package/dist/components/tt-modal-form/index.d.ts +2 -46
- package/dist/components/tt-modal-form/index.vue.d.ts +45 -0
- package/dist/components/tt-modal-form/useModalForm.d.ts +3 -4
- package/dist/components/tt-nav-anchor/index.d.ts +12 -15
- package/dist/components/tt-nav-anchor/src/{TtNavAnchor.d.ts → TtNavAnchor.vue.d.ts} +4 -4
- package/dist/components/tt-panel-select/index.d.ts +1 -1
- package/dist/components/tt-panel-select/src/components/{PanelLeft.d.ts → PanelLeft.vue.d.ts} +3 -4
- package/dist/components/tt-panel-select/src/components/{PanelMiddle.d.ts → PanelMiddle.vue.d.ts} +80 -83
- package/dist/components/tt-panel-select/src/components/{PanelRight.d.ts → PanelRight.vue.d.ts} +32 -34
- package/dist/components/tt-panel-select/src/hooks/usePanelData.d.ts +6 -7
- package/dist/components/tt-panel-select/src/hooks/usePanelSelection.d.ts +5 -5
- package/dist/components/tt-panel-select/src/{index.d.ts → index.vue.d.ts} +80 -84
- package/dist/components/tt-radio-group/index.d.ts +50 -31
- package/dist/components/tt-radio-group/index.vue.d.ts +33 -0
- package/dist/components/tt-select/index.d.ts +1 -1
- package/dist/components/tt-select/src/{Select.d.ts → Select.vue.d.ts} +141 -146
- package/dist/components/tt-select/src/components/{SelectTable.d.ts → SelectTable.vue.d.ts} +36 -40
- package/dist/components/tt-select/src/components/{Table.d.ts → Table.vue.d.ts} +38 -41
- package/dist/components/tt-select/src/hooks/useGrid.d.ts +2 -2
- package/dist/components/tt-select/src/hooks/usePagination.d.ts +3 -4
- package/dist/components/tt-select/src/hooks/useSelect.d.ts +2 -2
- package/dist/components/tt-select/src/hooks/useSelectTableEvent.d.ts +1 -1
- package/dist/components/tt-table/index.d.ts +279 -287
- package/dist/components/tt-table/src/{Table.d.ts → Table.vue.d.ts} +204 -209
- package/dist/components/tt-table/src/{TableForm.d.ts → TableForm.vue.d.ts} +80 -83
- package/dist/components/tt-table/src/components/RowContext.d.ts +5 -5
- package/dist/components/tt-table/src/components/{TableAction.d.ts → TableAction.vue.d.ts} +4 -4
- package/dist/components/tt-table/src/components/TableButtons.d.ts +5 -5
- package/dist/components/tt-table/src/components/{TableColumnModal.d.ts → TableColumnModal.vue.d.ts} +4 -5
- package/dist/components/tt-table/src/components/{TableToolbarTools.d.ts → TableToolbarTools.vue.d.ts} +6 -7
- package/dist/components/tt-table/src/hooks/useColumns.d.ts +44 -45
- package/dist/components/tt-table/src/hooks/usePagination.d.ts +33 -33
- package/dist/components/tt-table/src/hooks/useQuery.d.ts +2 -2
- package/dist/components/tt-table/src/hooks/useRowSelection.d.ts +2 -2
- package/dist/components/tt-table/src/hooks/useSideSlot.d.ts +110 -112
- package/dist/components/tt-table/src/hooks/useTableData.d.ts +2 -2
- package/dist/components/tt-table/src/props.d.ts +17 -19
- package/dist/components/tt-table/src/utils/table-api.d.ts +4 -4
- package/dist/components/tt-table/src/utils/table-form-api.d.ts +1 -2
- package/dist/components/tt-text/index.d.ts +59 -34
- package/dist/components/tt-text/index.vue.d.ts +50 -0
- package/dist/components/tt-upload/index.d.ts +311 -317
- package/dist/components/tt-upload/src/TtUpload.vue.d.ts +517 -0
- package/dist/components/tt-upload/src/typing.d.ts +47 -49
- package/dist/hooks/useLoading.d.ts +2 -2
- package/dist/hooks/useScreenshotOss.d.ts +2 -2
- package/dist/index.d.ts +1 -2
- package/package.json +3 -3
- package/dist/components/tt-area/TtArea.d.ts +0 -3
- package/dist/components/tt-button/components/AddButton.d.ts +0 -3
- package/dist/components/tt-form/src/form/FormMessage.d.ts +0 -3
- package/dist/components/tt-form/src/form/FormMessageToolTip.d.ts +0 -9
- package/dist/components/tt-form/src/index.d.ts +0 -217
- package/dist/components/tt-icon/components/AddIcon.d.ts +0 -8
- package/dist/components/tt-icon/components/SubIcon.d.ts +0 -8
- package/dist/components/tt-loading/src/loading.d.ts +0 -13
- package/dist/components/tt-upload/src/TtUpload.d.ts +0 -519
|
@@ -1,12 +1,7 @@
|
|
|
1
|
-
import { Ref, nextTick
|
|
2
|
-
import { VxeGridInstance
|
|
1
|
+
import { Ref, nextTick } from 'vue';
|
|
2
|
+
import { VxeGridInstance } from 'vxe-table';
|
|
3
3
|
import { Recordable } from '../../../../../utils/src';
|
|
4
4
|
import { TtTableExtendedTableApi, TtTableProps } from './types/table';
|
|
5
|
-
import { ScrollbarDirection, ScrollbarProps } from 'element-plus';
|
|
6
|
-
import { OnCleanup } from '@vue/reactivity';
|
|
7
|
-
import { VxeComponentSizeType } from 'vxe-pc-ui';
|
|
8
|
-
import { TtColumnOptions, FetchParams, TtSelectRowKeysType, TtSelectRowsType } from '..';
|
|
9
|
-
import { TtExtendedFormApi } from '../../tt-form';
|
|
10
5
|
declare function __VLS_template(): {
|
|
11
6
|
attrs: Partial<{}>;
|
|
12
7
|
slots: Readonly<{
|
|
@@ -32,22 +27,22 @@ declare function __VLS_template(): {
|
|
|
32
27
|
};
|
|
33
28
|
refs: {
|
|
34
29
|
wrapRef: HTMLDivElement;
|
|
35
|
-
xGrid: (
|
|
36
|
-
$props: VxeGridProps<any> & VxeGridEventProps<any>;
|
|
37
|
-
$slots: VxeGridSlots<any>;
|
|
30
|
+
xGrid: (import('vxe-table').VxeGridMethods<any> & {
|
|
31
|
+
$props: import('vxe-table').VxeGridProps<any> & import('vxe-table').VxeGridEventProps<any>;
|
|
32
|
+
$slots: import('vxe-table').VxeGridSlots<any>;
|
|
38
33
|
}) | null;
|
|
39
34
|
leftScrollbarRef: ({
|
|
40
|
-
$: ComponentInternalInstance;
|
|
35
|
+
$: import('vue').ComponentInternalInstance;
|
|
41
36
|
$data: {};
|
|
42
37
|
$props: {
|
|
43
38
|
readonly distance?: number | undefined;
|
|
44
39
|
readonly height?: number | string | undefined;
|
|
45
40
|
readonly maxHeight?: number | string | undefined;
|
|
46
41
|
readonly native?: boolean | undefined;
|
|
47
|
-
readonly wrapStyle?: StyleValue;
|
|
42
|
+
readonly wrapStyle?: import('vue').StyleValue;
|
|
48
43
|
readonly wrapClass?: string | string[] | undefined;
|
|
49
44
|
readonly viewClass?: string | string[] | undefined;
|
|
50
|
-
readonly viewStyle?: StyleValue;
|
|
45
|
+
readonly viewStyle?: import('vue').StyleValue;
|
|
51
46
|
readonly noresize?: boolean | undefined;
|
|
52
47
|
readonly tag?: (keyof HTMLElementTagNameMap | (string & {})) | undefined;
|
|
53
48
|
readonly always?: boolean | undefined;
|
|
@@ -61,8 +56,8 @@ declare function __VLS_template(): {
|
|
|
61
56
|
scrollTop: number;
|
|
62
57
|
scrollLeft: number;
|
|
63
58
|
}) => any) | undefined | undefined;
|
|
64
|
-
readonly "onEnd-reached"?: ((direction: ScrollbarDirection) => any) | undefined | undefined;
|
|
65
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
59
|
+
readonly "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
60
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
66
61
|
$attrs: {
|
|
67
62
|
[x: string]: unknown;
|
|
68
63
|
};
|
|
@@ -70,22 +65,22 @@ declare function __VLS_template(): {
|
|
|
70
65
|
[x: string]: unknown;
|
|
71
66
|
};
|
|
72
67
|
$slots: Readonly<{
|
|
73
|
-
[name: string]: Slot<any> | undefined;
|
|
68
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
74
69
|
}>;
|
|
75
|
-
$root: ComponentPublicInstance | null;
|
|
76
|
-
$parent: ComponentPublicInstance | null;
|
|
70
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
71
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
77
72
|
$host: Element | null;
|
|
78
73
|
$emit: ((event: "scroll", args_0: {
|
|
79
74
|
scrollTop: number;
|
|
80
75
|
scrollLeft: number;
|
|
81
|
-
}) => void) & ((event: "end-reached", direction: ScrollbarDirection) => void);
|
|
76
|
+
}) => void) & ((event: "end-reached", direction: import('element-plus').ScrollbarDirection) => void);
|
|
82
77
|
$el: any;
|
|
83
|
-
$options: ComponentOptionsBase<Readonly<
|
|
78
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
84
79
|
onScroll?: ((args_0: {
|
|
85
80
|
scrollTop: number;
|
|
86
81
|
scrollLeft: number;
|
|
87
82
|
}) => any) | undefined;
|
|
88
|
-
"onEnd-reached"?: ((direction: ScrollbarDirection) => any) | undefined;
|
|
83
|
+
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
89
84
|
}>, {
|
|
90
85
|
wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
91
86
|
update: () => void;
|
|
@@ -96,24 +91,24 @@ declare function __VLS_template(): {
|
|
|
96
91
|
setScrollTop: (value: number) => void;
|
|
97
92
|
setScrollLeft: (value: number) => void;
|
|
98
93
|
handleScroll: () => void;
|
|
99
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
94
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
100
95
|
scroll: (args_0: {
|
|
101
96
|
scrollTop: number;
|
|
102
97
|
scrollLeft: number;
|
|
103
98
|
}) => void;
|
|
104
|
-
"end-reached": (direction: ScrollbarDirection) => void;
|
|
99
|
+
"end-reached": (direction: import('element-plus').ScrollbarDirection) => void;
|
|
105
100
|
}, string, {
|
|
106
101
|
tabindex: number | string;
|
|
107
102
|
height: number | string;
|
|
108
103
|
maxHeight: number | string;
|
|
109
104
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
110
105
|
distance: number;
|
|
111
|
-
wrapStyle: string | false | CSSProperties | StyleValue[] | null;
|
|
106
|
+
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
112
107
|
wrapClass: string | string[];
|
|
113
108
|
viewClass: string | string[];
|
|
114
|
-
viewStyle: string | false | CSSProperties | StyleValue[] | null;
|
|
109
|
+
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
115
110
|
minSize: number;
|
|
116
|
-
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
111
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
117
112
|
beforeCreate?: (() => void) | (() => void)[];
|
|
118
113
|
created?: (() => void) | (() => void)[];
|
|
119
114
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -126,31 +121,31 @@ declare function __VLS_template(): {
|
|
|
126
121
|
beforeUnmount?: (() => void) | (() => void)[];
|
|
127
122
|
destroyed?: (() => void) | (() => void)[];
|
|
128
123
|
unmounted?: (() => void) | (() => void)[];
|
|
129
|
-
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
130
|
-
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
131
|
-
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
124
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
125
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
126
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
132
127
|
};
|
|
133
128
|
$forceUpdate: () => void;
|
|
134
129
|
$nextTick: typeof nextTick;
|
|
135
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
130
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
136
131
|
} & Readonly<{
|
|
137
132
|
tabindex: number | string;
|
|
138
133
|
height: number | string;
|
|
139
134
|
maxHeight: number | string;
|
|
140
135
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
141
136
|
distance: number;
|
|
142
|
-
wrapStyle: string | false | CSSProperties | StyleValue[] | null;
|
|
137
|
+
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
143
138
|
wrapClass: string | string[];
|
|
144
139
|
viewClass: string | string[];
|
|
145
|
-
viewStyle: string | false | CSSProperties | StyleValue[] | null;
|
|
140
|
+
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
146
141
|
minSize: number;
|
|
147
|
-
}> & Omit<Readonly<
|
|
142
|
+
}> & Omit<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
148
143
|
onScroll?: ((args_0: {
|
|
149
144
|
scrollTop: number;
|
|
150
145
|
scrollLeft: number;
|
|
151
146
|
}) => any) | undefined;
|
|
152
|
-
"onEnd-reached"?: ((direction: ScrollbarDirection) => any) | undefined;
|
|
153
|
-
}>, "height" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & ShallowUnwrapRef<{
|
|
147
|
+
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
148
|
+
}>, "height" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
|
|
154
149
|
wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
155
150
|
update: () => void;
|
|
156
151
|
scrollTo: {
|
|
@@ -160,23 +155,23 @@ declare function __VLS_template(): {
|
|
|
160
155
|
setScrollTop: (value: number) => void;
|
|
161
156
|
setScrollLeft: (value: number) => void;
|
|
162
157
|
handleScroll: () => void;
|
|
163
|
-
}> & {} & ComponentCustomProperties & {} & {
|
|
158
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
164
159
|
$slots: {
|
|
165
160
|
default?: (props: {}) => any;
|
|
166
161
|
};
|
|
167
162
|
}) | null;
|
|
168
163
|
rightScrollbarRef: ({
|
|
169
|
-
$: ComponentInternalInstance;
|
|
164
|
+
$: import('vue').ComponentInternalInstance;
|
|
170
165
|
$data: {};
|
|
171
166
|
$props: {
|
|
172
167
|
readonly distance?: number | undefined;
|
|
173
168
|
readonly height?: number | string | undefined;
|
|
174
169
|
readonly maxHeight?: number | string | undefined;
|
|
175
170
|
readonly native?: boolean | undefined;
|
|
176
|
-
readonly wrapStyle?: StyleValue;
|
|
171
|
+
readonly wrapStyle?: import('vue').StyleValue;
|
|
177
172
|
readonly wrapClass?: string | string[] | undefined;
|
|
178
173
|
readonly viewClass?: string | string[] | undefined;
|
|
179
|
-
readonly viewStyle?: StyleValue;
|
|
174
|
+
readonly viewStyle?: import('vue').StyleValue;
|
|
180
175
|
readonly noresize?: boolean | undefined;
|
|
181
176
|
readonly tag?: (keyof HTMLElementTagNameMap | (string & {})) | undefined;
|
|
182
177
|
readonly always?: boolean | undefined;
|
|
@@ -190,8 +185,8 @@ declare function __VLS_template(): {
|
|
|
190
185
|
scrollTop: number;
|
|
191
186
|
scrollLeft: number;
|
|
192
187
|
}) => any) | undefined | undefined;
|
|
193
|
-
readonly "onEnd-reached"?: ((direction: ScrollbarDirection) => any) | undefined | undefined;
|
|
194
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
188
|
+
readonly "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
189
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
195
190
|
$attrs: {
|
|
196
191
|
[x: string]: unknown;
|
|
197
192
|
};
|
|
@@ -199,22 +194,22 @@ declare function __VLS_template(): {
|
|
|
199
194
|
[x: string]: unknown;
|
|
200
195
|
};
|
|
201
196
|
$slots: Readonly<{
|
|
202
|
-
[name: string]: Slot<any> | undefined;
|
|
197
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
203
198
|
}>;
|
|
204
|
-
$root: ComponentPublicInstance | null;
|
|
205
|
-
$parent: ComponentPublicInstance | null;
|
|
199
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
200
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
206
201
|
$host: Element | null;
|
|
207
202
|
$emit: ((event: "scroll", args_0: {
|
|
208
203
|
scrollTop: number;
|
|
209
204
|
scrollLeft: number;
|
|
210
|
-
}) => void) & ((event: "end-reached", direction: ScrollbarDirection) => void);
|
|
205
|
+
}) => void) & ((event: "end-reached", direction: import('element-plus').ScrollbarDirection) => void);
|
|
211
206
|
$el: any;
|
|
212
|
-
$options: ComponentOptionsBase<Readonly<
|
|
207
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
213
208
|
onScroll?: ((args_0: {
|
|
214
209
|
scrollTop: number;
|
|
215
210
|
scrollLeft: number;
|
|
216
211
|
}) => any) | undefined;
|
|
217
|
-
"onEnd-reached"?: ((direction: ScrollbarDirection) => any) | undefined;
|
|
212
|
+
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
218
213
|
}>, {
|
|
219
214
|
wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
220
215
|
update: () => void;
|
|
@@ -225,24 +220,24 @@ declare function __VLS_template(): {
|
|
|
225
220
|
setScrollTop: (value: number) => void;
|
|
226
221
|
setScrollLeft: (value: number) => void;
|
|
227
222
|
handleScroll: () => void;
|
|
228
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
223
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
229
224
|
scroll: (args_0: {
|
|
230
225
|
scrollTop: number;
|
|
231
226
|
scrollLeft: number;
|
|
232
227
|
}) => void;
|
|
233
|
-
"end-reached": (direction: ScrollbarDirection) => void;
|
|
228
|
+
"end-reached": (direction: import('element-plus').ScrollbarDirection) => void;
|
|
234
229
|
}, string, {
|
|
235
230
|
tabindex: number | string;
|
|
236
231
|
height: number | string;
|
|
237
232
|
maxHeight: number | string;
|
|
238
233
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
239
234
|
distance: number;
|
|
240
|
-
wrapStyle: string | false | CSSProperties | StyleValue[] | null;
|
|
235
|
+
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
241
236
|
wrapClass: string | string[];
|
|
242
237
|
viewClass: string | string[];
|
|
243
|
-
viewStyle: string | false | CSSProperties | StyleValue[] | null;
|
|
238
|
+
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
244
239
|
minSize: number;
|
|
245
|
-
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
240
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
246
241
|
beforeCreate?: (() => void) | (() => void)[];
|
|
247
242
|
created?: (() => void) | (() => void)[];
|
|
248
243
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -255,31 +250,31 @@ declare function __VLS_template(): {
|
|
|
255
250
|
beforeUnmount?: (() => void) | (() => void)[];
|
|
256
251
|
destroyed?: (() => void) | (() => void)[];
|
|
257
252
|
unmounted?: (() => void) | (() => void)[];
|
|
258
|
-
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
259
|
-
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
260
|
-
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
253
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
254
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
255
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
261
256
|
};
|
|
262
257
|
$forceUpdate: () => void;
|
|
263
258
|
$nextTick: typeof nextTick;
|
|
264
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
259
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
265
260
|
} & Readonly<{
|
|
266
261
|
tabindex: number | string;
|
|
267
262
|
height: number | string;
|
|
268
263
|
maxHeight: number | string;
|
|
269
264
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
270
265
|
distance: number;
|
|
271
|
-
wrapStyle: string | false | CSSProperties | StyleValue[] | null;
|
|
266
|
+
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
272
267
|
wrapClass: string | string[];
|
|
273
268
|
viewClass: string | string[];
|
|
274
|
-
viewStyle: string | false | CSSProperties | StyleValue[] | null;
|
|
269
|
+
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
275
270
|
minSize: number;
|
|
276
|
-
}> & Omit<Readonly<
|
|
271
|
+
}> & Omit<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
277
272
|
onScroll?: ((args_0: {
|
|
278
273
|
scrollTop: number;
|
|
279
274
|
scrollLeft: number;
|
|
280
275
|
}) => any) | undefined;
|
|
281
|
-
"onEnd-reached"?: ((direction: ScrollbarDirection) => any) | undefined;
|
|
282
|
-
}>, "height" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & ShallowUnwrapRef<{
|
|
276
|
+
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
277
|
+
}>, "height" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
|
|
283
278
|
wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
284
279
|
update: () => void;
|
|
285
280
|
scrollTo: {
|
|
@@ -289,7 +284,7 @@ declare function __VLS_template(): {
|
|
|
289
284
|
setScrollTop: (value: number) => void;
|
|
290
285
|
setScrollLeft: (value: number) => void;
|
|
291
286
|
handleScroll: () => void;
|
|
292
|
-
}> & {} & ComponentCustomProperties & {} & {
|
|
287
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
293
288
|
$slots: {
|
|
294
289
|
default?: (props: {}) => any;
|
|
295
290
|
};
|
|
@@ -298,25 +293,25 @@ declare function __VLS_template(): {
|
|
|
298
293
|
rootEl: HTMLDivElement;
|
|
299
294
|
};
|
|
300
295
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
301
|
-
declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
296
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
302
297
|
keyboardConfig: {
|
|
303
|
-
type: PropType<import("vxe-table").VxeTablePropTypes.KeyboardConfig>;
|
|
298
|
+
type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.KeyboardConfig>;
|
|
304
299
|
default: () => import("vxe-table").VxeTablePropTypes.KeyboardConfig<any> | undefined;
|
|
305
300
|
};
|
|
306
301
|
mouseConfig: {
|
|
307
|
-
type: PropType<import("vxe-table").VxeTablePropTypes.MouseConfig>;
|
|
302
|
+
type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.MouseConfig>;
|
|
308
303
|
default: () => import("vxe-table").VxeTablePropTypes.MouseConfig | undefined;
|
|
309
304
|
};
|
|
310
305
|
checkboxConfig: {
|
|
311
|
-
type: PropType<import("vxe-table").VxeTablePropTypes.CheckboxConfig>;
|
|
306
|
+
type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.CheckboxConfig>;
|
|
312
307
|
default: () => import("vxe-table").VxeTablePropTypes.CheckboxConfig<any> | undefined;
|
|
313
308
|
};
|
|
314
309
|
radioConfig: {
|
|
315
|
-
type: PropType<import("vxe-table").VxeTablePropTypes.RadioConfig>;
|
|
310
|
+
type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.RadioConfig>;
|
|
316
311
|
default: () => import("vxe-table").VxeTablePropTypes.RadioConfig<any> | undefined;
|
|
317
312
|
};
|
|
318
313
|
columns: {
|
|
319
|
-
type: PropType<TtTableProps["columns"]>;
|
|
314
|
+
type: import('vue').PropType<TtTableProps["columns"]>;
|
|
320
315
|
default: () => TtTableProps["columns"];
|
|
321
316
|
};
|
|
322
317
|
height: {
|
|
@@ -324,26 +319,26 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
324
319
|
default: () => import("vxe-table").VxeTablePropTypes.Height | undefined;
|
|
325
320
|
};
|
|
326
321
|
showOverflow: {
|
|
327
|
-
type: PropType<TtTableProps["showOverflow"]>;
|
|
322
|
+
type: import('vue').PropType<TtTableProps["showOverflow"]>;
|
|
328
323
|
default: () => import("vxe-table").VxeTablePropTypes.ShowOverflow | undefined;
|
|
329
324
|
};
|
|
330
325
|
showHeaderOverflow: {
|
|
331
|
-
type: PropType<TtTableProps["showHeaderOverflow"]>;
|
|
326
|
+
type: import('vue').PropType<TtTableProps["showHeaderOverflow"]>;
|
|
332
327
|
default: () => import("vxe-table").VxeTablePropTypes.ShowOverflow | undefined;
|
|
333
328
|
};
|
|
334
329
|
pagerConfig: {
|
|
335
|
-
type: PropType<TtTableProps["pagerConfig"]>;
|
|
330
|
+
type: import('vue').PropType<TtTableProps["pagerConfig"]>;
|
|
336
331
|
default: () => import("vxe-table").VxeGridPropTypes.PagerConfig | undefined;
|
|
337
332
|
};
|
|
338
333
|
toolbarConfig: {
|
|
339
|
-
type: PropType<TtTableProps["toolbarConfig"]>;
|
|
334
|
+
type: import('vue').PropType<TtTableProps["toolbarConfig"]>;
|
|
340
335
|
};
|
|
341
336
|
size: {
|
|
342
|
-
type: PropType<TtTableProps["size"]>;
|
|
343
|
-
default: () => VxeComponentSizeType | undefined;
|
|
337
|
+
type: import('vue').PropType<TtTableProps["size"]>;
|
|
338
|
+
default: () => import('vxe-pc-ui').VxeComponentSizeType | undefined;
|
|
344
339
|
};
|
|
345
340
|
toolTipErrorPlacement: {
|
|
346
|
-
type: PropType<"top" | "bottom" | "left" | "right">;
|
|
341
|
+
type: import('vue').PropType<"top" | "bottom" | "left" | "right">;
|
|
347
342
|
default: string;
|
|
348
343
|
};
|
|
349
344
|
showToolbar: {
|
|
@@ -351,11 +346,11 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
351
346
|
default: () => boolean | undefined;
|
|
352
347
|
};
|
|
353
348
|
columnsFieldSort: {
|
|
354
|
-
type: PropType<string[]>;
|
|
349
|
+
type: import('vue').PropType<string[]>;
|
|
355
350
|
default: () => string[] | undefined;
|
|
356
351
|
};
|
|
357
352
|
columnsFieldNoSort: {
|
|
358
|
-
type: PropType<string[]>;
|
|
353
|
+
type: import('vue').PropType<string[]>;
|
|
359
354
|
default: () => string[] | undefined;
|
|
360
355
|
};
|
|
361
356
|
showRefresh: {
|
|
@@ -371,7 +366,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
371
366
|
default: () => boolean | undefined;
|
|
372
367
|
};
|
|
373
368
|
notSetColumnField: {
|
|
374
|
-
type: PropType<string[]>;
|
|
369
|
+
type: import('vue').PropType<string[]>;
|
|
375
370
|
default: () => string[] | undefined;
|
|
376
371
|
};
|
|
377
372
|
showTableAlert: {
|
|
@@ -379,7 +374,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
379
374
|
default: () => boolean | undefined;
|
|
380
375
|
};
|
|
381
376
|
api: {
|
|
382
|
-
type: PropType<(...arg: any[]) => Promise<any>>;
|
|
377
|
+
type: import('vue').PropType<(...arg: any[]) => Promise<any>>;
|
|
383
378
|
default: null;
|
|
384
379
|
};
|
|
385
380
|
searchInfo: {
|
|
@@ -391,19 +386,19 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
391
386
|
default: () => boolean | undefined;
|
|
392
387
|
};
|
|
393
388
|
afterFetch: {
|
|
394
|
-
type: PropType<TtTableProps["afterFetch"]>;
|
|
389
|
+
type: import('vue').PropType<TtTableProps["afterFetch"]>;
|
|
395
390
|
default: null;
|
|
396
391
|
};
|
|
397
392
|
beforeFetch: {
|
|
398
|
-
type: PropType<TtTableProps["beforeFetch"]>;
|
|
393
|
+
type: import('vue').PropType<TtTableProps["beforeFetch"]>;
|
|
399
394
|
default: null;
|
|
400
395
|
};
|
|
401
396
|
beforePageChange: {
|
|
402
|
-
type: PropType<TtTableProps["beforePageChange"]>;
|
|
397
|
+
type: import('vue').PropType<TtTableProps["beforePageChange"]>;
|
|
403
398
|
default: null;
|
|
404
399
|
};
|
|
405
400
|
data: {
|
|
406
|
-
type: PropType<TtTableProps["data"]>;
|
|
401
|
+
type: import('vue').PropType<TtTableProps["data"]>;
|
|
407
402
|
default: () => TtTableProps["data"];
|
|
408
403
|
};
|
|
409
404
|
isScrollFetch: {
|
|
@@ -451,31 +446,31 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
451
446
|
default: () => string | undefined;
|
|
452
447
|
};
|
|
453
448
|
actionProps: {
|
|
454
|
-
type: PropType<import("vxe-table").VxeTableDefines.ColumnOptions>;
|
|
455
|
-
default: () => TtColumnOptions<any> | undefined;
|
|
449
|
+
type: import('vue').PropType<import("vxe-table").VxeTableDefines.ColumnOptions>;
|
|
450
|
+
default: () => import('..').TtColumnOptions<any> | undefined;
|
|
456
451
|
};
|
|
457
452
|
indexColumnProps: {
|
|
458
|
-
type: PropType<import("vxe-table").VxeTableDefines.ColumnOptions>;
|
|
459
|
-
default: () => TtColumnOptions<any> | undefined;
|
|
453
|
+
type: import('vue').PropType<import("vxe-table").VxeTableDefines.ColumnOptions>;
|
|
454
|
+
default: () => import('..').TtColumnOptions<any> | undefined;
|
|
460
455
|
};
|
|
461
456
|
checkboxColumnProps: {
|
|
462
|
-
type: PropType<import("vxe-table").VxeTableDefines.ColumnOptions>;
|
|
463
|
-
default: () => TtColumnOptions<any> | undefined;
|
|
457
|
+
type: import('vue').PropType<import("vxe-table").VxeTableDefines.ColumnOptions>;
|
|
458
|
+
default: () => import('..').TtColumnOptions<any> | undefined;
|
|
464
459
|
};
|
|
465
460
|
expandColumnProps: {
|
|
466
|
-
type: PropType<import("vxe-table").VxeTableDefines.ColumnOptions>;
|
|
467
|
-
default: () => TtColumnOptions<any> | undefined;
|
|
461
|
+
type: import('vue').PropType<import("vxe-table").VxeTableDefines.ColumnOptions>;
|
|
462
|
+
default: () => import('..').TtColumnOptions<any> | undefined;
|
|
468
463
|
};
|
|
469
464
|
radioColumnProps: {
|
|
470
|
-
type: PropType<import("vxe-table").VxeTableDefines.ColumnOptions>;
|
|
471
|
-
default: () => TtColumnOptions<any> | undefined;
|
|
465
|
+
type: import('vue').PropType<import("vxe-table").VxeTableDefines.ColumnOptions>;
|
|
466
|
+
default: () => import('..').TtColumnOptions<any> | undefined;
|
|
472
467
|
};
|
|
473
468
|
tableRowId: {
|
|
474
469
|
type: StringConstructor;
|
|
475
470
|
default: () => string | undefined;
|
|
476
471
|
};
|
|
477
472
|
customizeColumn: {
|
|
478
|
-
type: PropType<TtTableProps["customizeColumn"]>;
|
|
473
|
+
type: import('vue').PropType<TtTableProps["customizeColumn"]>;
|
|
479
474
|
};
|
|
480
475
|
showPager: {
|
|
481
476
|
type: BooleanConstructor;
|
|
@@ -508,14 +503,14 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
508
503
|
};
|
|
509
504
|
emptyImageStyle: {
|
|
510
505
|
type: ObjectConstructor;
|
|
511
|
-
default: () => CSSProperties | undefined;
|
|
506
|
+
default: () => import('vue').CSSProperties | undefined;
|
|
512
507
|
};
|
|
513
508
|
emptyText: {
|
|
514
509
|
type: StringConstructor;
|
|
515
510
|
default: () => string | undefined;
|
|
516
511
|
};
|
|
517
512
|
emptyImageStatus: {
|
|
518
|
-
type: PropType<"no-data" | "no-search">;
|
|
513
|
+
type: import('vue').PropType<"no-data" | "no-search">;
|
|
519
514
|
default: () => "no-data" | "no-search" | undefined;
|
|
520
515
|
};
|
|
521
516
|
noSearchText: {
|
|
@@ -523,7 +518,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
523
518
|
default: () => string | undefined;
|
|
524
519
|
};
|
|
525
520
|
columnsKey: {
|
|
526
|
-
type: PropType<string | (() => string)>;
|
|
521
|
+
type: import('vue').PropType<string | (() => string)>;
|
|
527
522
|
default: string;
|
|
528
523
|
};
|
|
529
524
|
useHttpCache: {
|
|
@@ -531,7 +526,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
531
526
|
default: () => boolean | undefined;
|
|
532
527
|
};
|
|
533
528
|
defaultDisplayFields: {
|
|
534
|
-
type: PropType<string[]>;
|
|
529
|
+
type: import('vue').PropType<string[]>;
|
|
535
530
|
default: () => string[] | undefined;
|
|
536
531
|
};
|
|
537
532
|
clearTreeExpand: {
|
|
@@ -547,10 +542,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
547
542
|
default: () => boolean | undefined;
|
|
548
543
|
};
|
|
549
544
|
tableApi: {
|
|
550
|
-
type: PropType<TtTableExtendedTableApi>;
|
|
545
|
+
type: import('vue').PropType<TtTableExtendedTableApi>;
|
|
551
546
|
};
|
|
552
547
|
formApi: {
|
|
553
|
-
type: PropType<TtExtendedFormApi>;
|
|
548
|
+
type: import('vue').PropType<import('../../tt-form').TtExtendedFormApi>;
|
|
554
549
|
};
|
|
555
550
|
useSearchForm: any;
|
|
556
551
|
testId: {
|
|
@@ -558,27 +553,27 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
558
553
|
default: undefined;
|
|
559
554
|
};
|
|
560
555
|
modelValue: {
|
|
561
|
-
type: PropType<Recordable[]>;
|
|
556
|
+
type: import('vue').PropType<Recordable[]>;
|
|
562
557
|
};
|
|
563
558
|
}>, {
|
|
564
|
-
xGrid: ComputedRef<VxeGridInstance<Recordable>>;
|
|
565
|
-
reload: (data?: FetchParams) => Promise<void>;
|
|
559
|
+
xGrid: import('vue').ComputedRef<VxeGridInstance<Recordable>>;
|
|
560
|
+
reload: (data?: import('..').FetchParams) => Promise<void>;
|
|
566
561
|
redoHeight: (full?: boolean) => void;
|
|
567
562
|
setProps: (props: Partial<TtTableProps>) => void;
|
|
568
563
|
setLoading: (loading: boolean) => void;
|
|
569
|
-
getLoading?: ComputedRef<boolean | undefined>;
|
|
564
|
+
getLoading?: import('vue').ComputedRef<boolean | undefined>;
|
|
570
565
|
setTableColumns: (columns: import("vxe-table").VxeGridPropTypes.Columns<import("vxe-table").VxeTablePropTypes.Row>) => void;
|
|
571
566
|
getDataSource: () => import("vxe-table").VxeTablePropTypes.Row[];
|
|
572
567
|
setPagination: (props: Partial<import("vxe-table").VxeGridPropTypes.PagerConfig>) => void;
|
|
573
568
|
getPagination: () => import("vxe-table").VxeGridPropTypes.PagerConfig | undefined;
|
|
574
|
-
getTableInstance: () => VxeGridMethods;
|
|
575
|
-
getSelectRowKeys: () => TtSelectRowKeysType;
|
|
576
|
-
getSelectRows: () => TtSelectRowsType;
|
|
569
|
+
getTableInstance: () => import('vxe-table').VxeGridMethods;
|
|
570
|
+
getSelectRowKeys: () => import('..').TtSelectRowKeysType;
|
|
571
|
+
getSelectRows: () => import('..').TtSelectRowsType;
|
|
577
572
|
getTableColumns: () => import("vxe-table").VxeGridPropTypes.Columns<import("vxe-table").VxeTablePropTypes.Row> | undefined;
|
|
578
|
-
setSelectedRowKeys: (rows: TtSelectRowsType, keys?: TtSelectRowKeysType) => void;
|
|
573
|
+
setSelectedRowKeys: (rows: import('..').TtSelectRowsType, keys?: import('..').TtSelectRowKeysType) => void;
|
|
579
574
|
clearSelectedRowKeys: () => void;
|
|
580
|
-
selectedKeys: MaybeRef<TtSelectRowKeysType>;
|
|
581
|
-
selectedRows: MaybeRef<TtSelectRowsType>;
|
|
575
|
+
selectedKeys: import('vue').MaybeRef<import('..').TtSelectRowKeysType>;
|
|
576
|
+
selectedRows: import('vue').MaybeRef<import('..').TtSelectRowsType>;
|
|
582
577
|
insert: (records: any) => Promise<{
|
|
583
578
|
row: import("vxe-table").VxeTablePropTypes.Row;
|
|
584
579
|
rows: import("vxe-table").VxeTablePropTypes.Row[];
|
|
@@ -651,27 +646,27 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
651
646
|
reloadTreeExpand: (row: any) => Promise<any>;
|
|
652
647
|
validate: (isFull?: boolean) => Promise<undefined | import("vxe-table").VxeTableDefines.ValidatorErrorMapParams>;
|
|
653
648
|
validateField: (row: import("vxe-table").VxeTablePropTypes.Row, field: string) => Promise<undefined | import("vxe-table").VxeTableDefines.ValidatorErrorMapParams>;
|
|
654
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
649
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
655
650
|
"update:modelValue": (value: Recordable[]) => void;
|
|
656
|
-
}, string, PublicProps, Readonly<
|
|
651
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
657
652
|
keyboardConfig: {
|
|
658
|
-
type: PropType<import("vxe-table").VxeTablePropTypes.KeyboardConfig>;
|
|
653
|
+
type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.KeyboardConfig>;
|
|
659
654
|
default: () => import("vxe-table").VxeTablePropTypes.KeyboardConfig<any> | undefined;
|
|
660
655
|
};
|
|
661
656
|
mouseConfig: {
|
|
662
|
-
type: PropType<import("vxe-table").VxeTablePropTypes.MouseConfig>;
|
|
657
|
+
type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.MouseConfig>;
|
|
663
658
|
default: () => import("vxe-table").VxeTablePropTypes.MouseConfig | undefined;
|
|
664
659
|
};
|
|
665
660
|
checkboxConfig: {
|
|
666
|
-
type: PropType<import("vxe-table").VxeTablePropTypes.CheckboxConfig>;
|
|
661
|
+
type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.CheckboxConfig>;
|
|
667
662
|
default: () => import("vxe-table").VxeTablePropTypes.CheckboxConfig<any> | undefined;
|
|
668
663
|
};
|
|
669
664
|
radioConfig: {
|
|
670
|
-
type: PropType<import("vxe-table").VxeTablePropTypes.RadioConfig>;
|
|
665
|
+
type: import('vue').PropType<import("vxe-table").VxeTablePropTypes.RadioConfig>;
|
|
671
666
|
default: () => import("vxe-table").VxeTablePropTypes.RadioConfig<any> | undefined;
|
|
672
667
|
};
|
|
673
668
|
columns: {
|
|
674
|
-
type: PropType<TtTableProps["columns"]>;
|
|
669
|
+
type: import('vue').PropType<TtTableProps["columns"]>;
|
|
675
670
|
default: () => TtTableProps["columns"];
|
|
676
671
|
};
|
|
677
672
|
height: {
|
|
@@ -679,26 +674,26 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
679
674
|
default: () => import("vxe-table").VxeTablePropTypes.Height | undefined;
|
|
680
675
|
};
|
|
681
676
|
showOverflow: {
|
|
682
|
-
type: PropType<TtTableProps["showOverflow"]>;
|
|
677
|
+
type: import('vue').PropType<TtTableProps["showOverflow"]>;
|
|
683
678
|
default: () => import("vxe-table").VxeTablePropTypes.ShowOverflow | undefined;
|
|
684
679
|
};
|
|
685
680
|
showHeaderOverflow: {
|
|
686
|
-
type: PropType<TtTableProps["showHeaderOverflow"]>;
|
|
681
|
+
type: import('vue').PropType<TtTableProps["showHeaderOverflow"]>;
|
|
687
682
|
default: () => import("vxe-table").VxeTablePropTypes.ShowOverflow | undefined;
|
|
688
683
|
};
|
|
689
684
|
pagerConfig: {
|
|
690
|
-
type: PropType<TtTableProps["pagerConfig"]>;
|
|
685
|
+
type: import('vue').PropType<TtTableProps["pagerConfig"]>;
|
|
691
686
|
default: () => import("vxe-table").VxeGridPropTypes.PagerConfig | undefined;
|
|
692
687
|
};
|
|
693
688
|
toolbarConfig: {
|
|
694
|
-
type: PropType<TtTableProps["toolbarConfig"]>;
|
|
689
|
+
type: import('vue').PropType<TtTableProps["toolbarConfig"]>;
|
|
695
690
|
};
|
|
696
691
|
size: {
|
|
697
|
-
type: PropType<TtTableProps["size"]>;
|
|
698
|
-
default: () => VxeComponentSizeType | undefined;
|
|
692
|
+
type: import('vue').PropType<TtTableProps["size"]>;
|
|
693
|
+
default: () => import('vxe-pc-ui').VxeComponentSizeType | undefined;
|
|
699
694
|
};
|
|
700
695
|
toolTipErrorPlacement: {
|
|
701
|
-
type: PropType<"top" | "bottom" | "left" | "right">;
|
|
696
|
+
type: import('vue').PropType<"top" | "bottom" | "left" | "right">;
|
|
702
697
|
default: string;
|
|
703
698
|
};
|
|
704
699
|
showToolbar: {
|
|
@@ -706,11 +701,11 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
706
701
|
default: () => boolean | undefined;
|
|
707
702
|
};
|
|
708
703
|
columnsFieldSort: {
|
|
709
|
-
type: PropType<string[]>;
|
|
704
|
+
type: import('vue').PropType<string[]>;
|
|
710
705
|
default: () => string[] | undefined;
|
|
711
706
|
};
|
|
712
707
|
columnsFieldNoSort: {
|
|
713
|
-
type: PropType<string[]>;
|
|
708
|
+
type: import('vue').PropType<string[]>;
|
|
714
709
|
default: () => string[] | undefined;
|
|
715
710
|
};
|
|
716
711
|
showRefresh: {
|
|
@@ -726,7 +721,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
726
721
|
default: () => boolean | undefined;
|
|
727
722
|
};
|
|
728
723
|
notSetColumnField: {
|
|
729
|
-
type: PropType<string[]>;
|
|
724
|
+
type: import('vue').PropType<string[]>;
|
|
730
725
|
default: () => string[] | undefined;
|
|
731
726
|
};
|
|
732
727
|
showTableAlert: {
|
|
@@ -734,7 +729,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
734
729
|
default: () => boolean | undefined;
|
|
735
730
|
};
|
|
736
731
|
api: {
|
|
737
|
-
type: PropType<(...arg: any[]) => Promise<any>>;
|
|
732
|
+
type: import('vue').PropType<(...arg: any[]) => Promise<any>>;
|
|
738
733
|
default: null;
|
|
739
734
|
};
|
|
740
735
|
searchInfo: {
|
|
@@ -746,19 +741,19 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
746
741
|
default: () => boolean | undefined;
|
|
747
742
|
};
|
|
748
743
|
afterFetch: {
|
|
749
|
-
type: PropType<TtTableProps["afterFetch"]>;
|
|
744
|
+
type: import('vue').PropType<TtTableProps["afterFetch"]>;
|
|
750
745
|
default: null;
|
|
751
746
|
};
|
|
752
747
|
beforeFetch: {
|
|
753
|
-
type: PropType<TtTableProps["beforeFetch"]>;
|
|
748
|
+
type: import('vue').PropType<TtTableProps["beforeFetch"]>;
|
|
754
749
|
default: null;
|
|
755
750
|
};
|
|
756
751
|
beforePageChange: {
|
|
757
|
-
type: PropType<TtTableProps["beforePageChange"]>;
|
|
752
|
+
type: import('vue').PropType<TtTableProps["beforePageChange"]>;
|
|
758
753
|
default: null;
|
|
759
754
|
};
|
|
760
755
|
data: {
|
|
761
|
-
type: PropType<TtTableProps["data"]>;
|
|
756
|
+
type: import('vue').PropType<TtTableProps["data"]>;
|
|
762
757
|
default: () => TtTableProps["data"];
|
|
763
758
|
};
|
|
764
759
|
isScrollFetch: {
|
|
@@ -806,31 +801,31 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
806
801
|
default: () => string | undefined;
|
|
807
802
|
};
|
|
808
803
|
actionProps: {
|
|
809
|
-
type: PropType<import("vxe-table").VxeTableDefines.ColumnOptions>;
|
|
810
|
-
default: () => TtColumnOptions<any> | undefined;
|
|
804
|
+
type: import('vue').PropType<import("vxe-table").VxeTableDefines.ColumnOptions>;
|
|
805
|
+
default: () => import('..').TtColumnOptions<any> | undefined;
|
|
811
806
|
};
|
|
812
807
|
indexColumnProps: {
|
|
813
|
-
type: PropType<import("vxe-table").VxeTableDefines.ColumnOptions>;
|
|
814
|
-
default: () => TtColumnOptions<any> | undefined;
|
|
808
|
+
type: import('vue').PropType<import("vxe-table").VxeTableDefines.ColumnOptions>;
|
|
809
|
+
default: () => import('..').TtColumnOptions<any> | undefined;
|
|
815
810
|
};
|
|
816
811
|
checkboxColumnProps: {
|
|
817
|
-
type: PropType<import("vxe-table").VxeTableDefines.ColumnOptions>;
|
|
818
|
-
default: () => TtColumnOptions<any> | undefined;
|
|
812
|
+
type: import('vue').PropType<import("vxe-table").VxeTableDefines.ColumnOptions>;
|
|
813
|
+
default: () => import('..').TtColumnOptions<any> | undefined;
|
|
819
814
|
};
|
|
820
815
|
expandColumnProps: {
|
|
821
|
-
type: PropType<import("vxe-table").VxeTableDefines.ColumnOptions>;
|
|
822
|
-
default: () => TtColumnOptions<any> | undefined;
|
|
816
|
+
type: import('vue').PropType<import("vxe-table").VxeTableDefines.ColumnOptions>;
|
|
817
|
+
default: () => import('..').TtColumnOptions<any> | undefined;
|
|
823
818
|
};
|
|
824
819
|
radioColumnProps: {
|
|
825
|
-
type: PropType<import("vxe-table").VxeTableDefines.ColumnOptions>;
|
|
826
|
-
default: () => TtColumnOptions<any> | undefined;
|
|
820
|
+
type: import('vue').PropType<import("vxe-table").VxeTableDefines.ColumnOptions>;
|
|
821
|
+
default: () => import('..').TtColumnOptions<any> | undefined;
|
|
827
822
|
};
|
|
828
823
|
tableRowId: {
|
|
829
824
|
type: StringConstructor;
|
|
830
825
|
default: () => string | undefined;
|
|
831
826
|
};
|
|
832
827
|
customizeColumn: {
|
|
833
|
-
type: PropType<TtTableProps["customizeColumn"]>;
|
|
828
|
+
type: import('vue').PropType<TtTableProps["customizeColumn"]>;
|
|
834
829
|
};
|
|
835
830
|
showPager: {
|
|
836
831
|
type: BooleanConstructor;
|
|
@@ -863,14 +858,14 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
863
858
|
};
|
|
864
859
|
emptyImageStyle: {
|
|
865
860
|
type: ObjectConstructor;
|
|
866
|
-
default: () => CSSProperties | undefined;
|
|
861
|
+
default: () => import('vue').CSSProperties | undefined;
|
|
867
862
|
};
|
|
868
863
|
emptyText: {
|
|
869
864
|
type: StringConstructor;
|
|
870
865
|
default: () => string | undefined;
|
|
871
866
|
};
|
|
872
867
|
emptyImageStatus: {
|
|
873
|
-
type: PropType<"no-data" | "no-search">;
|
|
868
|
+
type: import('vue').PropType<"no-data" | "no-search">;
|
|
874
869
|
default: () => "no-data" | "no-search" | undefined;
|
|
875
870
|
};
|
|
876
871
|
noSearchText: {
|
|
@@ -878,7 +873,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
878
873
|
default: () => string | undefined;
|
|
879
874
|
};
|
|
880
875
|
columnsKey: {
|
|
881
|
-
type: PropType<string | (() => string)>;
|
|
876
|
+
type: import('vue').PropType<string | (() => string)>;
|
|
882
877
|
default: string;
|
|
883
878
|
};
|
|
884
879
|
useHttpCache: {
|
|
@@ -886,7 +881,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
886
881
|
default: () => boolean | undefined;
|
|
887
882
|
};
|
|
888
883
|
defaultDisplayFields: {
|
|
889
|
-
type: PropType<string[]>;
|
|
884
|
+
type: import('vue').PropType<string[]>;
|
|
890
885
|
default: () => string[] | undefined;
|
|
891
886
|
};
|
|
892
887
|
clearTreeExpand: {
|
|
@@ -902,10 +897,10 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
902
897
|
default: () => boolean | undefined;
|
|
903
898
|
};
|
|
904
899
|
tableApi: {
|
|
905
|
-
type: PropType<TtTableExtendedTableApi>;
|
|
900
|
+
type: import('vue').PropType<TtTableExtendedTableApi>;
|
|
906
901
|
};
|
|
907
902
|
formApi: {
|
|
908
|
-
type: PropType<TtExtendedFormApi>;
|
|
903
|
+
type: import('vue').PropType<import('../../tt-form').TtExtendedFormApi>;
|
|
909
904
|
};
|
|
910
905
|
useSearchForm: any;
|
|
911
906
|
testId: {
|
|
@@ -913,13 +908,13 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
913
908
|
default: undefined;
|
|
914
909
|
};
|
|
915
910
|
modelValue: {
|
|
916
|
-
type: PropType<Recordable[]>;
|
|
911
|
+
type: import('vue').PropType<Recordable[]>;
|
|
917
912
|
};
|
|
918
913
|
}>> & Readonly<{
|
|
919
914
|
"onUpdate:modelValue"?: ((value: Recordable[]) => any) | undefined;
|
|
920
915
|
}>, {
|
|
921
|
-
data: MaybeRef<any[]> | undefined;
|
|
922
|
-
size: VxeComponentSizeType | undefined;
|
|
916
|
+
data: import('vue').MaybeRef<any[]> | undefined;
|
|
917
|
+
size: import('vxe-pc-ui').VxeComponentSizeType | undefined;
|
|
923
918
|
immediate: boolean;
|
|
924
919
|
height: string | number;
|
|
925
920
|
pagerConfig: import("vxe-table").VxeGridPropTypes.PagerConfig | undefined;
|
|
@@ -928,7 +923,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
928
923
|
showRadio: boolean;
|
|
929
924
|
radioConfig: import("vxe-table").VxeTablePropTypes.RadioConfig<import("vxe-table").VxeTablePropTypes.Row>;
|
|
930
925
|
checkboxConfig: import("vxe-table").VxeTablePropTypes.CheckboxConfig<import("vxe-table").VxeTablePropTypes.Row>;
|
|
931
|
-
columns: MaybeRef<
|
|
926
|
+
columns: import('vue').MaybeRef<import('..').TtColumnOptions<any>[]> | undefined;
|
|
932
927
|
showOverflow: import("vxe-table").VxeTablePropTypes.ShowOverflow | undefined;
|
|
933
928
|
showHeaderOverflow: import("vxe-table").VxeTablePropTypes.ShowOverflow | undefined;
|
|
934
929
|
mouseConfig: import("vxe-table").VxeTablePropTypes.MouseConfig;
|
|
@@ -981,24 +976,24 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
981
976
|
afterFetch: ((data: any[], res: globalThis.Recordable | globalThis.Recordable[]) => Promise<any[]>) | undefined;
|
|
982
977
|
beforeFetch: ((params: globalThis.Recordable) => Promise<globalThis.Recordable>) | undefined;
|
|
983
978
|
beforePageChange: ((page: import("vxe-table").VxeGridPropTypes.PagerConfig) => boolean | Promise<boolean>) | undefined;
|
|
984
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
979
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
985
980
|
wrapRef: HTMLDivElement;
|
|
986
|
-
xGrid: (
|
|
987
|
-
$props: VxeGridProps<any> & VxeGridEventProps<any>;
|
|
988
|
-
$slots: VxeGridSlots<any>;
|
|
981
|
+
xGrid: (import('vxe-table').VxeGridMethods<any> & {
|
|
982
|
+
$props: import('vxe-table').VxeGridProps<any> & import('vxe-table').VxeGridEventProps<any>;
|
|
983
|
+
$slots: import('vxe-table').VxeGridSlots<any>;
|
|
989
984
|
}) | null;
|
|
990
985
|
leftScrollbarRef: ({
|
|
991
|
-
$: ComponentInternalInstance;
|
|
986
|
+
$: import('vue').ComponentInternalInstance;
|
|
992
987
|
$data: {};
|
|
993
988
|
$props: {
|
|
994
989
|
readonly distance?: number | undefined;
|
|
995
990
|
readonly height?: number | string | undefined;
|
|
996
991
|
readonly maxHeight?: number | string | undefined;
|
|
997
992
|
readonly native?: boolean | undefined;
|
|
998
|
-
readonly wrapStyle?: StyleValue;
|
|
993
|
+
readonly wrapStyle?: import('vue').StyleValue;
|
|
999
994
|
readonly wrapClass?: string | string[] | undefined;
|
|
1000
995
|
readonly viewClass?: string | string[] | undefined;
|
|
1001
|
-
readonly viewStyle?: StyleValue;
|
|
996
|
+
readonly viewStyle?: import('vue').StyleValue;
|
|
1002
997
|
readonly noresize?: boolean | undefined;
|
|
1003
998
|
readonly tag?: (keyof HTMLElementTagNameMap | (string & {})) | undefined;
|
|
1004
999
|
readonly always?: boolean | undefined;
|
|
@@ -1012,8 +1007,8 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
1012
1007
|
scrollTop: number;
|
|
1013
1008
|
scrollLeft: number;
|
|
1014
1009
|
}) => any) | undefined | undefined;
|
|
1015
|
-
readonly "onEnd-reached"?: ((direction: ScrollbarDirection) => any) | undefined | undefined;
|
|
1016
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
1010
|
+
readonly "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
1011
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
1017
1012
|
$attrs: {
|
|
1018
1013
|
[x: string]: unknown;
|
|
1019
1014
|
};
|
|
@@ -1021,22 +1016,22 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
1021
1016
|
[x: string]: unknown;
|
|
1022
1017
|
};
|
|
1023
1018
|
$slots: Readonly<{
|
|
1024
|
-
[name: string]: Slot<any> | undefined;
|
|
1019
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
1025
1020
|
}>;
|
|
1026
|
-
$root: ComponentPublicInstance | null;
|
|
1027
|
-
$parent: ComponentPublicInstance | null;
|
|
1021
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
1022
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
1028
1023
|
$host: Element | null;
|
|
1029
1024
|
$emit: ((event: "scroll", args_0: {
|
|
1030
1025
|
scrollTop: number;
|
|
1031
1026
|
scrollLeft: number;
|
|
1032
|
-
}) => void) & ((event: "end-reached", direction: ScrollbarDirection) => void);
|
|
1027
|
+
}) => void) & ((event: "end-reached", direction: import('element-plus').ScrollbarDirection) => void);
|
|
1033
1028
|
$el: any;
|
|
1034
|
-
$options: ComponentOptionsBase<Readonly<
|
|
1029
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
1035
1030
|
onScroll?: ((args_0: {
|
|
1036
1031
|
scrollTop: number;
|
|
1037
1032
|
scrollLeft: number;
|
|
1038
1033
|
}) => any) | undefined;
|
|
1039
|
-
"onEnd-reached"?: ((direction: ScrollbarDirection) => any) | undefined;
|
|
1034
|
+
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
1040
1035
|
}>, {
|
|
1041
1036
|
wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
1042
1037
|
update: () => void;
|
|
@@ -1047,24 +1042,24 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
1047
1042
|
setScrollTop: (value: number) => void;
|
|
1048
1043
|
setScrollLeft: (value: number) => void;
|
|
1049
1044
|
handleScroll: () => void;
|
|
1050
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1045
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1051
1046
|
scroll: (args_0: {
|
|
1052
1047
|
scrollTop: number;
|
|
1053
1048
|
scrollLeft: number;
|
|
1054
1049
|
}) => void;
|
|
1055
|
-
"end-reached": (direction: ScrollbarDirection) => void;
|
|
1050
|
+
"end-reached": (direction: import('element-plus').ScrollbarDirection) => void;
|
|
1056
1051
|
}, string, {
|
|
1057
1052
|
tabindex: number | string;
|
|
1058
1053
|
height: number | string;
|
|
1059
1054
|
maxHeight: number | string;
|
|
1060
1055
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
1061
1056
|
distance: number;
|
|
1062
|
-
wrapStyle: string | false | CSSProperties | StyleValue[] | null;
|
|
1057
|
+
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1063
1058
|
wrapClass: string | string[];
|
|
1064
1059
|
viewClass: string | string[];
|
|
1065
|
-
viewStyle: string | false | CSSProperties | StyleValue[] | null;
|
|
1060
|
+
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1066
1061
|
minSize: number;
|
|
1067
|
-
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
1062
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
1068
1063
|
beforeCreate?: (() => void) | (() => void)[];
|
|
1069
1064
|
created?: (() => void) | (() => void)[];
|
|
1070
1065
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -1077,31 +1072,31 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
1077
1072
|
beforeUnmount?: (() => void) | (() => void)[];
|
|
1078
1073
|
destroyed?: (() => void) | (() => void)[];
|
|
1079
1074
|
unmounted?: (() => void) | (() => void)[];
|
|
1080
|
-
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
1081
|
-
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
1082
|
-
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
1075
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
1076
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
1077
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
1083
1078
|
};
|
|
1084
1079
|
$forceUpdate: () => void;
|
|
1085
1080
|
$nextTick: typeof nextTick;
|
|
1086
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
1081
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
1087
1082
|
} & Readonly<{
|
|
1088
1083
|
tabindex: number | string;
|
|
1089
1084
|
height: number | string;
|
|
1090
1085
|
maxHeight: number | string;
|
|
1091
1086
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
1092
1087
|
distance: number;
|
|
1093
|
-
wrapStyle: string | false | CSSProperties | StyleValue[] | null;
|
|
1088
|
+
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1094
1089
|
wrapClass: string | string[];
|
|
1095
1090
|
viewClass: string | string[];
|
|
1096
|
-
viewStyle: string | false | CSSProperties | StyleValue[] | null;
|
|
1091
|
+
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1097
1092
|
minSize: number;
|
|
1098
|
-
}> & Omit<Readonly<
|
|
1093
|
+
}> & Omit<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
1099
1094
|
onScroll?: ((args_0: {
|
|
1100
1095
|
scrollTop: number;
|
|
1101
1096
|
scrollLeft: number;
|
|
1102
1097
|
}) => any) | undefined;
|
|
1103
|
-
"onEnd-reached"?: ((direction: ScrollbarDirection) => any) | undefined;
|
|
1104
|
-
}>, "height" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & ShallowUnwrapRef<{
|
|
1098
|
+
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
1099
|
+
}>, "height" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
|
|
1105
1100
|
wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
1106
1101
|
update: () => void;
|
|
1107
1102
|
scrollTo: {
|
|
@@ -1111,23 +1106,23 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
1111
1106
|
setScrollTop: (value: number) => void;
|
|
1112
1107
|
setScrollLeft: (value: number) => void;
|
|
1113
1108
|
handleScroll: () => void;
|
|
1114
|
-
}> & {} & ComponentCustomProperties & {} & {
|
|
1109
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
1115
1110
|
$slots: {
|
|
1116
1111
|
default?: (props: {}) => any;
|
|
1117
1112
|
};
|
|
1118
1113
|
}) | null;
|
|
1119
1114
|
rightScrollbarRef: ({
|
|
1120
|
-
$: ComponentInternalInstance;
|
|
1115
|
+
$: import('vue').ComponentInternalInstance;
|
|
1121
1116
|
$data: {};
|
|
1122
1117
|
$props: {
|
|
1123
1118
|
readonly distance?: number | undefined;
|
|
1124
1119
|
readonly height?: number | string | undefined;
|
|
1125
1120
|
readonly maxHeight?: number | string | undefined;
|
|
1126
1121
|
readonly native?: boolean | undefined;
|
|
1127
|
-
readonly wrapStyle?: StyleValue;
|
|
1122
|
+
readonly wrapStyle?: import('vue').StyleValue;
|
|
1128
1123
|
readonly wrapClass?: string | string[] | undefined;
|
|
1129
1124
|
readonly viewClass?: string | string[] | undefined;
|
|
1130
|
-
readonly viewStyle?: StyleValue;
|
|
1125
|
+
readonly viewStyle?: import('vue').StyleValue;
|
|
1131
1126
|
readonly noresize?: boolean | undefined;
|
|
1132
1127
|
readonly tag?: (keyof HTMLElementTagNameMap | (string & {})) | undefined;
|
|
1133
1128
|
readonly always?: boolean | undefined;
|
|
@@ -1141,8 +1136,8 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
1141
1136
|
scrollTop: number;
|
|
1142
1137
|
scrollLeft: number;
|
|
1143
1138
|
}) => any) | undefined | undefined;
|
|
1144
|
-
readonly "onEnd-reached"?: ((direction: ScrollbarDirection) => any) | undefined | undefined;
|
|
1145
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
1139
|
+
readonly "onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined | undefined;
|
|
1140
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
1146
1141
|
$attrs: {
|
|
1147
1142
|
[x: string]: unknown;
|
|
1148
1143
|
};
|
|
@@ -1150,22 +1145,22 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
1150
1145
|
[x: string]: unknown;
|
|
1151
1146
|
};
|
|
1152
1147
|
$slots: Readonly<{
|
|
1153
|
-
[name: string]: Slot<any> | undefined;
|
|
1148
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
1154
1149
|
}>;
|
|
1155
|
-
$root: ComponentPublicInstance | null;
|
|
1156
|
-
$parent: ComponentPublicInstance | null;
|
|
1150
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
1151
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
1157
1152
|
$host: Element | null;
|
|
1158
1153
|
$emit: ((event: "scroll", args_0: {
|
|
1159
1154
|
scrollTop: number;
|
|
1160
1155
|
scrollLeft: number;
|
|
1161
|
-
}) => void) & ((event: "end-reached", direction: ScrollbarDirection) => void);
|
|
1156
|
+
}) => void) & ((event: "end-reached", direction: import('element-plus').ScrollbarDirection) => void);
|
|
1162
1157
|
$el: any;
|
|
1163
|
-
$options: ComponentOptionsBase<Readonly<
|
|
1158
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
1164
1159
|
onScroll?: ((args_0: {
|
|
1165
1160
|
scrollTop: number;
|
|
1166
1161
|
scrollLeft: number;
|
|
1167
1162
|
}) => any) | undefined;
|
|
1168
|
-
"onEnd-reached"?: ((direction: ScrollbarDirection) => any) | undefined;
|
|
1163
|
+
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
1169
1164
|
}>, {
|
|
1170
1165
|
wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
1171
1166
|
update: () => void;
|
|
@@ -1176,24 +1171,24 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
1176
1171
|
setScrollTop: (value: number) => void;
|
|
1177
1172
|
setScrollLeft: (value: number) => void;
|
|
1178
1173
|
handleScroll: () => void;
|
|
1179
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1174
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1180
1175
|
scroll: (args_0: {
|
|
1181
1176
|
scrollTop: number;
|
|
1182
1177
|
scrollLeft: number;
|
|
1183
1178
|
}) => void;
|
|
1184
|
-
"end-reached": (direction: ScrollbarDirection) => void;
|
|
1179
|
+
"end-reached": (direction: import('element-plus').ScrollbarDirection) => void;
|
|
1185
1180
|
}, string, {
|
|
1186
1181
|
tabindex: number | string;
|
|
1187
1182
|
height: number | string;
|
|
1188
1183
|
maxHeight: number | string;
|
|
1189
1184
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
1190
1185
|
distance: number;
|
|
1191
|
-
wrapStyle: string | false | CSSProperties | StyleValue[] | null;
|
|
1186
|
+
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1192
1187
|
wrapClass: string | string[];
|
|
1193
1188
|
viewClass: string | string[];
|
|
1194
|
-
viewStyle: string | false | CSSProperties | StyleValue[] | null;
|
|
1189
|
+
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1195
1190
|
minSize: number;
|
|
1196
|
-
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
1191
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
1197
1192
|
beforeCreate?: (() => void) | (() => void)[];
|
|
1198
1193
|
created?: (() => void) | (() => void)[];
|
|
1199
1194
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -1206,31 +1201,31 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
1206
1201
|
beforeUnmount?: (() => void) | (() => void)[];
|
|
1207
1202
|
destroyed?: (() => void) | (() => void)[];
|
|
1208
1203
|
unmounted?: (() => void) | (() => void)[];
|
|
1209
|
-
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
1210
|
-
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
1211
|
-
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
1204
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
1205
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
1206
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
1212
1207
|
};
|
|
1213
1208
|
$forceUpdate: () => void;
|
|
1214
1209
|
$nextTick: typeof nextTick;
|
|
1215
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
1210
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
1216
1211
|
} & Readonly<{
|
|
1217
1212
|
tabindex: number | string;
|
|
1218
1213
|
height: number | string;
|
|
1219
1214
|
maxHeight: number | string;
|
|
1220
1215
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
1221
1216
|
distance: number;
|
|
1222
|
-
wrapStyle: string | false | CSSProperties | StyleValue[] | null;
|
|
1217
|
+
wrapStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1223
1218
|
wrapClass: string | string[];
|
|
1224
1219
|
viewClass: string | string[];
|
|
1225
|
-
viewStyle: string | false | CSSProperties | StyleValue[] | null;
|
|
1220
|
+
viewStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
1226
1221
|
minSize: number;
|
|
1227
|
-
}> & Omit<Readonly<
|
|
1222
|
+
}> & Omit<Readonly<import('element-plus').ScrollbarProps> & Readonly<{
|
|
1228
1223
|
onScroll?: ((args_0: {
|
|
1229
1224
|
scrollTop: number;
|
|
1230
1225
|
scrollLeft: number;
|
|
1231
1226
|
}) => any) | undefined;
|
|
1232
|
-
"onEnd-reached"?: ((direction: ScrollbarDirection) => any) | undefined;
|
|
1233
|
-
}>, "height" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & ShallowUnwrapRef<{
|
|
1227
|
+
"onEnd-reached"?: ((direction: import('element-plus').ScrollbarDirection) => any) | undefined;
|
|
1228
|
+
}>, "height" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & import('vue').ShallowUnwrapRef<{
|
|
1234
1229
|
wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
1235
1230
|
update: () => void;
|
|
1236
1231
|
scrollTo: {
|
|
@@ -1240,7 +1235,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
1240
1235
|
setScrollTop: (value: number) => void;
|
|
1241
1236
|
setScrollLeft: (value: number) => void;
|
|
1242
1237
|
handleScroll: () => void;
|
|
1243
|
-
}> & {} & ComponentCustomProperties & {} & {
|
|
1238
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
1244
1239
|
$slots: {
|
|
1245
1240
|
default?: (props: {}) => any;
|
|
1246
1241
|
};
|