@dazhicheng/ui 1.6.23 → 1.6.25
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 +24 -35
- package/dist/components/tt-area/TtArea.d.ts +3 -0
- package/dist/components/tt-area/index.d.ts +1 -1
- package/dist/components/tt-button/components/AddButton.d.ts +3 -0
- package/dist/components/tt-button/index.d.ts +260 -589
- package/dist/components/tt-checkbox/index.d.ts +26 -35
- package/dist/components/tt-drawer/index.d.ts +306 -299
- package/dist/components/tt-drawer/src/{RenderDrawer.vue.d.ts → RenderDrawer.d.ts} +149 -146
- package/dist/components/tt-drawer/src/components/{DrawerFooter.vue.d.ts → DrawerFooter.d.ts} +18 -16
- package/dist/components/tt-drawer/src/components/{DrawerHeader.vue.d.ts → DrawerHeader.d.ts} +4 -3
- 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 +4 -2
- package/dist/components/tt-empty/index.d.ts +10 -8
- package/dist/components/tt-form/src/components/{ExpandableArrow.vue.d.ts → ExpandableArrow.d.ts} +5 -4
- package/dist/components/tt-form/src/components/{FormActions.vue.d.ts → FormActions.d.ts} +6 -5
- package/dist/components/tt-form/src/components/{FormElInput.vue.d.ts → FormElInput.d.ts} +105 -101
- package/dist/components/tt-form/src/components/Slot.d.ts +4 -4
- package/dist/components/tt-form/src/form/{FormControl.vue.d.ts → FormControl.d.ts} +2 -1
- package/dist/components/tt-form/src/form/{FormDescription.vue.d.ts → FormDescription.d.ts} +2 -1
- package/dist/components/tt-form/src/form/{FormItem.vue.d.ts → FormItem.d.ts} +2 -1
- package/dist/components/tt-form/src/form/{FormLabel.vue.d.ts → FormLabel.d.ts} +2 -1
- package/dist/components/tt-form/src/form/FormMessage.d.ts +3 -0
- package/dist/components/tt-form/src/form/FormMessageToolTip.d.ts +9 -0
- package/dist/components/tt-form/src/form/{FormWarnMessage.vue.d.ts → FormWarnMessage.d.ts} +2 -1
- package/dist/components/tt-form/src/form/{RenderContent.vue.d.ts → RenderContent.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 +6 -5
- package/dist/components/tt-form/src/form-render/{FormField.vue.d.ts → FormField.d.ts} +2 -1
- package/dist/components/tt-form/src/form-render/FormFieldContact.d.ts +6 -6
- package/dist/components/tt-form/src/form-render/{FormLabel.vue.d.ts → FormLabel.d.ts} +3 -2
- package/dist/components/tt-form/src/form-render/array-register/FormArrayRegister.d.ts +14 -11
- package/dist/components/tt-form/src/form-render/context.d.ts +5 -4
- package/dist/components/tt-form/src/form-render/dependencies.d.ts +7 -6
- package/dist/components/tt-form/src/form-render/expandable.d.ts +4 -3
- package/dist/components/tt-form/src/form-render/{form.vue.d.ts → form.d.ts} +9 -8
- 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.vue.d.ts → GroupForm.d.ts} +7 -5
- package/dist/components/tt-form/src/group-form/{GroupSection.vue.d.ts → GroupSection.d.ts} +7 -5
- package/dist/components/tt-form/src/group-form/{LazyFormField.vue.d.ts → LazyFormField.d.ts} +5 -3
- package/dist/components/tt-form/src/group-form/groupFormApi.d.ts +7 -5
- package/dist/components/tt-form/src/hooks/useFormFieldBus.d.ts +3 -2
- 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.d.ts +217 -0
- package/dist/components/tt-form/src/useForm.d.ts +2 -1
- package/dist/components/tt-form/src/useFormContext.d.ts +2 -1
- package/dist/components/tt-form-item-error-tooltip/index.d.ts +61 -337
- package/dist/components/tt-icon/components/AddIcon.d.ts +8 -0
- package/dist/components/tt-icon/components/SubIcon.d.ts +8 -0
- package/dist/components/tt-icon/index.d.ts +24 -115
- package/dist/components/tt-image/index.d.ts +45 -41
- package/dist/components/tt-image/src/components/ImageViewer.d.ts +30 -26
- package/dist/components/tt-image/tt-image.d.ts +36 -34
- package/dist/components/tt-loading/index.d.ts +5 -2
- package/dist/components/tt-loading/src/loading.d.ts +13 -0
- package/dist/components/tt-log/index.d.ts +7 -6
- package/dist/components/tt-modal/index.d.ts +371 -364
- package/dist/components/tt-modal/src/{RenderModal.vue.d.ts → RenderModal.d.ts} +118 -115
- package/dist/components/tt-modal/src/components/{ModalFooter.vue.d.ts → ModalFooter.d.ts} +26 -23
- package/dist/components/tt-modal/src/components/{ModalHeader.vue.d.ts → ModalHeader.d.ts} +4 -3
- package/dist/components/tt-modal/src/components/{ModalWrapper.vue.d.ts → ModalWrapper.d.ts} +27 -24
- package/dist/components/tt-modal/src/hooks/useModalRender.d.ts +32 -29
- package/dist/components/tt-modal/src/typing.d.ts +2 -2
- package/dist/components/tt-modal/src/utils/modal-api.d.ts +2 -1
- package/dist/components/tt-modal-form/hooks/useModalFormSlot.d.ts +3 -2
- package/dist/components/tt-modal-form/index.d.ts +46 -2
- package/dist/components/tt-modal-form/useModalForm.d.ts +4 -3
- package/dist/components/tt-nav-anchor/index.d.ts +15 -12
- package/dist/components/tt-nav-anchor/src/{TtNavAnchor.vue.d.ts → TtNavAnchor.d.ts} +4 -4
- package/dist/components/tt-panel-select/index.d.ts +1 -1
- package/dist/components/tt-panel-select/src/components/{PanelLeft.vue.d.ts → PanelLeft.d.ts} +4 -3
- package/dist/components/tt-panel-select/src/components/{PanelMiddle.vue.d.ts → PanelMiddle.d.ts} +83 -80
- package/dist/components/tt-panel-select/src/components/{PanelRight.vue.d.ts → PanelRight.d.ts} +34 -32
- package/dist/components/tt-panel-select/src/hooks/usePanelData.d.ts +7 -6
- package/dist/components/tt-panel-select/src/hooks/usePanelSelection.d.ts +5 -5
- package/dist/components/tt-panel-select/src/{index.vue.d.ts → index.d.ts} +84 -80
- package/dist/components/tt-radio-group/index.d.ts +31 -50
- package/dist/components/tt-select/index.d.ts +1 -1
- package/dist/components/tt-select/src/{Select.vue.d.ts → Select.d.ts} +146 -141
- package/dist/components/tt-select/src/components/{SelectTable.vue.d.ts → SelectTable.d.ts} +40 -36
- package/dist/components/tt-select/src/components/{Table.vue.d.ts → Table.d.ts} +41 -38
- package/dist/components/tt-select/src/hooks/useGrid.d.ts +2 -2
- package/dist/components/tt-select/src/hooks/usePagination.d.ts +4 -3
- 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 +287 -279
- package/dist/components/tt-table/src/{Table.vue.d.ts → Table.d.ts} +209 -204
- package/dist/components/tt-table/src/{TableForm.vue.d.ts → TableForm.d.ts} +83 -80
- package/dist/components/tt-table/src/components/RowContext.d.ts +5 -5
- package/dist/components/tt-table/src/components/{TableAction.vue.d.ts → TableAction.d.ts} +4 -4
- package/dist/components/tt-table/src/components/TableButtons.d.ts +5 -5
- package/dist/components/tt-table/src/components/{TableColumnModal.vue.d.ts → TableColumnModal.d.ts} +5 -4
- package/dist/components/tt-table/src/components/{TableToolbarTools.vue.d.ts → TableToolbarTools.d.ts} +7 -6
- package/dist/components/tt-table/src/hooks/useColumns.d.ts +45 -44
- 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 +112 -110
- package/dist/components/tt-table/src/hooks/useTableData.d.ts +2 -2
- package/dist/components/tt-table/src/props.d.ts +19 -17
- 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 +2 -1
- package/dist/components/tt-text/index.d.ts +34 -59
- package/dist/components/tt-upload/index.d.ts +317 -311
- package/dist/components/tt-upload/src/TtUpload.d.ts +519 -0
- package/dist/components/tt-upload/src/typing.d.ts +49 -47
- package/dist/hooks/useDataPermissionOptions.js +76 -72
- package/dist/hooks/useLoading.d.ts +2 -2
- package/dist/hooks/useScreenshotOss.d.ts +2 -2
- package/dist/index.d.ts +2 -1
- package/package.json +2 -2
- package/dist/components/tt-api-component/index.vue.d.ts +0 -34
- package/dist/components/tt-area/TtArea.vue.d.ts +0 -2
- package/dist/components/tt-button/components/AddButton.vue.d.ts +0 -2
- package/dist/components/tt-button/index.vue.d.ts +0 -466
- package/dist/components/tt-checkbox/index.vue.d.ts +0 -28
- package/dist/components/tt-form/src/form/FormMessage.vue.d.ts +0 -2
- package/dist/components/tt-form/src/form/FormMessageToolTip.vue.d.ts +0 -8
- package/dist/components/tt-form/src/index.vue.d.ts +0 -216
- package/dist/components/tt-form-item-error-tooltip/index.vue.d.ts +0 -298
- package/dist/components/tt-icon/components/AddIcon.vue.d.ts +0 -7
- package/dist/components/tt-icon/components/SubIcon.vue.d.ts +0 -7
- package/dist/components/tt-icon/index.vue.d.ts +0 -32
- package/dist/components/tt-loading/src/loading.vue.d.ts +0 -12
- package/dist/components/tt-log/index.vue.d.ts +0 -5
- package/dist/components/tt-modal-form/index.vue.d.ts +0 -45
- package/dist/components/tt-radio-group/index.vue.d.ts +0 -33
- package/dist/components/tt-text/index.vue.d.ts +0 -50
- package/dist/components/tt-upload/src/TtUpload.vue.d.ts +0 -517
|
@@ -1,49 +1,53 @@
|
|
|
1
|
-
import { nextTick, ComputedRef, Ref, ShallowRef } from 'vue';
|
|
1
|
+
import { nextTick, ComputedRef, Ref, ShallowRef, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, GlobalComponents, GlobalDirectives, ComponentInternalInstance, StyleValue, VNodeProps, AllowedComponentProps, ComponentCustomProps, Slot, ComponentPublicInstance, ComponentOptionsBase, CSSProperties, DebuggerEvent, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
|
|
2
2
|
import { PanelTreeNode } from './hooks/usePanelData';
|
|
3
|
-
import { PanelContainerProps, PanelSelectModelValue, PanelSelectOption, PanelSelectValue } from './types';
|
|
3
|
+
import { PanelContainerProps, PanelSelectModelValue, PanelSelectOption, PanelSelectValue, PanelSelectTreeConfig, PanelSelectSeparator, PanelMiddleProps } from './types';
|
|
4
|
+
import { Recordable, AnyPromiseFunction } from '../../../../../utils/src';
|
|
5
|
+
import { ComponentSize, InputModelModifiers, InputType, InputAutoSize, InputProps, ScrollbarDirection, ScrollbarProps } from 'element-plus';
|
|
6
|
+
import { IconPropType } from 'element-plus/es/utils/index.mjs';
|
|
7
|
+
import { OnCleanup } from '@vue/reactivity';
|
|
4
8
|
type __VLS_Props = PanelContainerProps;
|
|
5
9
|
type __VLS_PublicProps = {
|
|
6
10
|
modelValue?: PanelSelectModelValue;
|
|
7
11
|
} & __VLS_Props;
|
|
8
|
-
declare const _default:
|
|
12
|
+
declare const _default: DefineComponent<__VLS_PublicProps, {
|
|
9
13
|
/** 重新加载数据源*/
|
|
10
14
|
reload: () => Promise<void>;
|
|
11
15
|
/** 获取当前归一化后的树形选项数据 */
|
|
12
16
|
getOptions: () => PanelTreeNode[];
|
|
13
17
|
/** 获取当前v-model值 */
|
|
14
18
|
getValue: () => PanelSelectModelValue;
|
|
15
|
-
}, {}, {}, {},
|
|
19
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
16
20
|
change: (val: unknown, options: PanelSelectOption[], currentOption: PanelSelectOption | PanelSelectOption[] | undefined) => any;
|
|
17
21
|
"update:modelValue": (value: PanelSelectModelValue) => any;
|
|
18
22
|
"visible-change": (val: boolean) => any;
|
|
19
|
-
}, string,
|
|
23
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
20
24
|
onChange?: ((val: unknown, options: PanelSelectOption[], currentOption: PanelSelectOption | PanelSelectOption[] | undefined) => any) | undefined;
|
|
21
25
|
"onUpdate:modelValue"?: ((value: PanelSelectModelValue) => any) | undefined;
|
|
22
26
|
"onVisible-change"?: ((val: boolean) => any) | undefined;
|
|
23
27
|
}>, {
|
|
24
28
|
disabled: boolean;
|
|
25
29
|
immediate: boolean;
|
|
26
|
-
params:
|
|
30
|
+
params: Recordable;
|
|
27
31
|
multiple: boolean;
|
|
28
32
|
options: PanelSelectOption[];
|
|
29
|
-
treeConfig:
|
|
33
|
+
treeConfig: PanelSelectTreeConfig;
|
|
30
34
|
showAll: boolean;
|
|
31
35
|
resultField: string;
|
|
32
|
-
afterFetch:
|
|
33
|
-
beforeFetch:
|
|
36
|
+
afterFetch: AnyPromiseFunction<any, any>;
|
|
37
|
+
beforeFetch: AnyPromiseFunction<any, any>;
|
|
34
38
|
alwaysLoad: boolean;
|
|
35
39
|
leftPlaceholder: string;
|
|
36
40
|
pasteSearch: boolean;
|
|
37
|
-
separator:
|
|
41
|
+
separator: PanelSelectSeparator;
|
|
38
42
|
middlePlaceholder: string;
|
|
39
43
|
showNav: boolean;
|
|
40
44
|
showAllField: PanelSelectValue;
|
|
41
45
|
showPinyinMode: boolean;
|
|
42
46
|
showOriginMode: boolean;
|
|
43
|
-
}, {}, {}, {}, string,
|
|
47
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
44
48
|
selectWrapRef: HTMLDivElement;
|
|
45
49
|
selectRef: unknown;
|
|
46
|
-
middleRef:
|
|
50
|
+
middleRef: CreateComponentPublicInstanceWithMixins<Readonly< PanelMiddleProps> & Readonly<{
|
|
47
51
|
"onUpdate:keyword"?: ((value: string) => any) | undefined;
|
|
48
52
|
onCheckAll?: ((checked: boolean) => any) | undefined;
|
|
49
53
|
onAllCheck?: ((checked: boolean) => any) | undefined;
|
|
@@ -53,33 +57,33 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
53
57
|
}>, {
|
|
54
58
|
scrollToGroup: (groupValue: PanelSelectValue) => Promise<void>;
|
|
55
59
|
inputFocus: () => void;
|
|
56
|
-
}, {}, {}, {},
|
|
60
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
57
61
|
"update:keyword": (value: string) => any;
|
|
58
62
|
checkAll: (checked: boolean) => any;
|
|
59
63
|
allCheck: (checked: boolean) => any;
|
|
60
64
|
groupCheck: (groupValue: PanelSelectValue, checked: boolean) => any;
|
|
61
65
|
optionCheck: (value: PanelSelectValue, checked: boolean) => any;
|
|
62
66
|
optionsCheck: (values: PanelSelectValue[], checked: boolean) => any;
|
|
63
|
-
},
|
|
67
|
+
}, PublicProps, {
|
|
64
68
|
disabled: boolean;
|
|
65
69
|
scrollToGroupValue: PanelSelectValue;
|
|
66
70
|
pasteSearch: boolean;
|
|
67
|
-
separator:
|
|
68
|
-
}, false, {}, {},
|
|
71
|
+
separator: PanelSelectSeparator;
|
|
72
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
69
73
|
searchInputRef: ({
|
|
70
|
-
$:
|
|
74
|
+
$: ComponentInternalInstance;
|
|
71
75
|
$data: {};
|
|
72
76
|
$props: {
|
|
73
77
|
readonly id?: string | undefined;
|
|
74
|
-
readonly size?:
|
|
78
|
+
readonly size?: ComponentSize | undefined;
|
|
75
79
|
readonly disabled?: boolean | undefined;
|
|
76
80
|
readonly modelValue?: string | number | null | undefined | undefined;
|
|
77
|
-
readonly modelModifiers?:
|
|
81
|
+
readonly modelModifiers?: InputModelModifiers | undefined;
|
|
78
82
|
readonly maxlength?: string | number | undefined;
|
|
79
83
|
readonly minlength?: string | number | undefined;
|
|
80
|
-
readonly type?:
|
|
84
|
+
readonly type?: InputType | undefined;
|
|
81
85
|
readonly resize?: "none" | "both" | "horizontal" | "vertical" | undefined;
|
|
82
|
-
readonly autosize?:
|
|
86
|
+
readonly autosize?: InputAutoSize | undefined;
|
|
83
87
|
readonly autocomplete?: string | undefined;
|
|
84
88
|
readonly formatter?: ((value: string) => string) | undefined;
|
|
85
89
|
readonly parser?: ((value: string) => string) | undefined;
|
|
@@ -87,16 +91,16 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
87
91
|
readonly form?: string | undefined;
|
|
88
92
|
readonly readonly?: boolean | undefined;
|
|
89
93
|
readonly clearable?: boolean | undefined;
|
|
90
|
-
readonly clearIcon?:
|
|
94
|
+
readonly clearIcon?: IconPropType | undefined;
|
|
91
95
|
readonly showPassword?: boolean | undefined;
|
|
92
96
|
readonly showWordLimit?: boolean | undefined;
|
|
93
97
|
readonly wordLimitPosition?: "inside" | "outside" | undefined;
|
|
94
|
-
readonly suffixIcon?:
|
|
95
|
-
readonly prefixIcon?:
|
|
98
|
+
readonly suffixIcon?: IconPropType | undefined;
|
|
99
|
+
readonly prefixIcon?: IconPropType | undefined;
|
|
96
100
|
readonly containerRole?: string | undefined;
|
|
97
101
|
readonly tabindex?: string | number | undefined;
|
|
98
102
|
readonly validateEvent?: boolean | undefined;
|
|
99
|
-
readonly inputStyle?:
|
|
103
|
+
readonly inputStyle?: StyleValue;
|
|
100
104
|
readonly autofocus?: boolean | undefined;
|
|
101
105
|
readonly rows?: number | undefined;
|
|
102
106
|
readonly ariaLabel?: string | undefined;
|
|
@@ -115,7 +119,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
115
119
|
readonly onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
116
120
|
readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
|
|
117
121
|
readonly onClear?: ((evt: MouseEvent | undefined) => any) | undefined | undefined;
|
|
118
|
-
} &
|
|
122
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
119
123
|
$attrs: {
|
|
120
124
|
[x: string]: unknown;
|
|
121
125
|
};
|
|
@@ -123,14 +127,14 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
123
127
|
[x: string]: unknown;
|
|
124
128
|
};
|
|
125
129
|
$slots: Readonly<{
|
|
126
|
-
[name: string]:
|
|
130
|
+
[name: string]: Slot<any> | undefined;
|
|
127
131
|
}>;
|
|
128
|
-
$root:
|
|
129
|
-
$parent:
|
|
132
|
+
$root: ComponentPublicInstance | null;
|
|
133
|
+
$parent: ComponentPublicInstance | null;
|
|
130
134
|
$host: Element | null;
|
|
131
135
|
$emit: ((event: "input", value: string) => void) & ((event: "blur", evt: FocusEvent) => void) & ((event: "change", value: string, evt?: Event | undefined) => void) & ((event: "compositionend", evt: CompositionEvent) => void) & ((event: "compositionstart", evt: CompositionEvent) => void) & ((event: "compositionupdate", evt: CompositionEvent) => void) & ((event: "focus", evt: FocusEvent) => void) & ((event: "keydown", evt: Event | KeyboardEvent) => void) & ((event: "mouseenter", evt: MouseEvent) => void) & ((event: "mouseleave", evt: MouseEvent) => void) & ((event: "clear", evt: MouseEvent | undefined) => void) & ((event: "update:modelValue", value: string) => void);
|
|
132
136
|
$el: any;
|
|
133
|
-
$options:
|
|
137
|
+
$options: ComponentOptionsBase<Readonly< InputProps> & Readonly<{
|
|
134
138
|
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
135
139
|
onChange?: ((value: string, evt?: Event | undefined) => any) | undefined;
|
|
136
140
|
onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
|
|
@@ -147,8 +151,8 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
147
151
|
input: ShallowRef<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
148
152
|
textarea: ShallowRef<HTMLTextAreaElement | undefined, HTMLTextAreaElement | undefined>;
|
|
149
153
|
ref: ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
150
|
-
textareaStyle: ComputedRef<
|
|
151
|
-
autosize: Ref<
|
|
154
|
+
textareaStyle: ComputedRef< StyleValue>;
|
|
155
|
+
autosize: Ref< InputAutoSize | undefined, InputAutoSize | undefined>;
|
|
152
156
|
isComposing: Ref<boolean, boolean>;
|
|
153
157
|
passwordVisible: Ref<boolean, boolean>;
|
|
154
158
|
focus: () => void | undefined;
|
|
@@ -156,7 +160,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
156
160
|
select: () => void;
|
|
157
161
|
clear: (evt?: MouseEvent) => void;
|
|
158
162
|
resizeTextarea: () => void;
|
|
159
|
-
}, {}, {}, {},
|
|
163
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
160
164
|
blur: (evt: FocusEvent) => void;
|
|
161
165
|
change: (value: string, evt?: Event | undefined) => void;
|
|
162
166
|
compositionend: (evt: CompositionEvent) => void;
|
|
@@ -170,18 +174,18 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
170
174
|
"update:modelValue": (value: string) => void;
|
|
171
175
|
clear: (evt: MouseEvent | undefined) => void;
|
|
172
176
|
}, string, {
|
|
173
|
-
type:
|
|
177
|
+
type: InputType;
|
|
174
178
|
disabled: boolean;
|
|
175
179
|
modelValue: string | number | null;
|
|
176
|
-
modelModifiers:
|
|
180
|
+
modelModifiers: InputModelModifiers;
|
|
177
181
|
autocomplete: string;
|
|
178
|
-
clearIcon:
|
|
182
|
+
clearIcon: IconPropType;
|
|
179
183
|
wordLimitPosition: "inside" | "outside";
|
|
180
184
|
tabindex: string | number;
|
|
181
185
|
validateEvent: boolean;
|
|
182
|
-
inputStyle: string | false |
|
|
186
|
+
inputStyle: string | false | CSSProperties | StyleValue[] | null;
|
|
183
187
|
rows: number;
|
|
184
|
-
}, {}, string, {},
|
|
188
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
185
189
|
beforeCreate?: (() => void) | (() => void)[];
|
|
186
190
|
created?: (() => void) | (() => void)[];
|
|
187
191
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -194,26 +198,26 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
194
198
|
beforeUnmount?: (() => void) | (() => void)[];
|
|
195
199
|
destroyed?: (() => void) | (() => void)[];
|
|
196
200
|
unmounted?: (() => void) | (() => void)[];
|
|
197
|
-
renderTracked?: ((e:
|
|
198
|
-
renderTriggered?: ((e:
|
|
199
|
-
errorCaptured?: ((err: unknown, instance:
|
|
201
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
202
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
203
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
200
204
|
};
|
|
201
205
|
$forceUpdate: () => void;
|
|
202
206
|
$nextTick: typeof nextTick;
|
|
203
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R,
|
|
207
|
+
$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;
|
|
204
208
|
} & Readonly<{
|
|
205
|
-
type:
|
|
209
|
+
type: InputType;
|
|
206
210
|
disabled: boolean;
|
|
207
211
|
modelValue: string | number | null;
|
|
208
|
-
modelModifiers:
|
|
212
|
+
modelModifiers: InputModelModifiers;
|
|
209
213
|
autocomplete: string;
|
|
210
|
-
clearIcon:
|
|
214
|
+
clearIcon: IconPropType;
|
|
211
215
|
wordLimitPosition: "inside" | "outside";
|
|
212
216
|
tabindex: string | number;
|
|
213
217
|
validateEvent: boolean;
|
|
214
|
-
inputStyle: string | false |
|
|
218
|
+
inputStyle: string | false | CSSProperties | StyleValue[] | null;
|
|
215
219
|
rows: number;
|
|
216
|
-
}> & Omit<Readonly<
|
|
220
|
+
}> & Omit<Readonly< InputProps> & Readonly<{
|
|
217
221
|
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
218
222
|
onChange?: ((value: string, evt?: Event | undefined) => any) | undefined;
|
|
219
223
|
onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
|
|
@@ -226,12 +230,12 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
226
230
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
227
231
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
228
232
|
onClear?: ((evt: MouseEvent | undefined) => any) | undefined;
|
|
229
|
-
}>, "input" | "select" | "textarea" | "blur" | "focus" | "disabled" | "clear" | "type" | "ref" | "tabindex" | "modelValue" | "validateEvent" | "autocomplete" | "clearIcon" | "inputStyle" | "modelModifiers" | "autosize" | "wordLimitPosition" | "rows" | "textareaStyle" | "isComposing" | "passwordVisible" | "resizeTextarea"> &
|
|
233
|
+
}>, "input" | "select" | "textarea" | "blur" | "focus" | "disabled" | "clear" | "type" | "ref" | "tabindex" | "modelValue" | "validateEvent" | "autocomplete" | "clearIcon" | "inputStyle" | "modelModifiers" | "autosize" | "wordLimitPosition" | "rows" | "textareaStyle" | "isComposing" | "passwordVisible" | "resizeTextarea"> & ShallowUnwrapRef<{
|
|
230
234
|
input: ShallowRef<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
231
235
|
textarea: ShallowRef<HTMLTextAreaElement | undefined, HTMLTextAreaElement | undefined>;
|
|
232
236
|
ref: ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
233
|
-
textareaStyle: ComputedRef<
|
|
234
|
-
autosize: Ref<
|
|
237
|
+
textareaStyle: ComputedRef< StyleValue>;
|
|
238
|
+
autosize: Ref< InputAutoSize | undefined, InputAutoSize | undefined>;
|
|
235
239
|
isComposing: Ref<boolean, boolean>;
|
|
236
240
|
passwordVisible: Ref<boolean, boolean>;
|
|
237
241
|
focus: () => void | undefined;
|
|
@@ -239,7 +243,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
239
243
|
select: () => void;
|
|
240
244
|
clear: (evt?: MouseEvent) => void;
|
|
241
245
|
resizeTextarea: () => void;
|
|
242
|
-
}> & {} &
|
|
246
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
243
247
|
$slots: {
|
|
244
248
|
prepend?: (props: {}) => any;
|
|
245
249
|
} & {
|
|
@@ -255,17 +259,17 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
255
259
|
};
|
|
256
260
|
}) | null;
|
|
257
261
|
scrollbarRef: ({
|
|
258
|
-
$:
|
|
262
|
+
$: ComponentInternalInstance;
|
|
259
263
|
$data: {};
|
|
260
264
|
$props: {
|
|
261
265
|
readonly distance?: number | undefined;
|
|
262
266
|
readonly height?: number | string | undefined;
|
|
263
267
|
readonly maxHeight?: number | string | undefined;
|
|
264
268
|
readonly native?: boolean | undefined;
|
|
265
|
-
readonly wrapStyle?:
|
|
269
|
+
readonly wrapStyle?: StyleValue;
|
|
266
270
|
readonly wrapClass?: string | string[] | undefined;
|
|
267
271
|
readonly viewClass?: string | string[] | undefined;
|
|
268
|
-
readonly viewStyle?:
|
|
272
|
+
readonly viewStyle?: StyleValue;
|
|
269
273
|
readonly noresize?: boolean | undefined;
|
|
270
274
|
readonly tag?: (keyof HTMLElementTagNameMap | (string & {})) | undefined;
|
|
271
275
|
readonly always?: boolean | undefined;
|
|
@@ -279,8 +283,8 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
279
283
|
scrollTop: number;
|
|
280
284
|
scrollLeft: number;
|
|
281
285
|
}) => any) | undefined | undefined;
|
|
282
|
-
readonly "onEnd-reached"?: ((direction:
|
|
283
|
-
} &
|
|
286
|
+
readonly "onEnd-reached"?: ((direction: ScrollbarDirection) => any) | undefined | undefined;
|
|
287
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
284
288
|
$attrs: {
|
|
285
289
|
[x: string]: unknown;
|
|
286
290
|
};
|
|
@@ -288,22 +292,22 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
288
292
|
[x: string]: unknown;
|
|
289
293
|
};
|
|
290
294
|
$slots: Readonly<{
|
|
291
|
-
[name: string]:
|
|
295
|
+
[name: string]: Slot<any> | undefined;
|
|
292
296
|
}>;
|
|
293
|
-
$root:
|
|
294
|
-
$parent:
|
|
297
|
+
$root: ComponentPublicInstance | null;
|
|
298
|
+
$parent: ComponentPublicInstance | null;
|
|
295
299
|
$host: Element | null;
|
|
296
300
|
$emit: ((event: "scroll", args_0: {
|
|
297
301
|
scrollTop: number;
|
|
298
302
|
scrollLeft: number;
|
|
299
|
-
}) => void) & ((event: "end-reached", direction:
|
|
303
|
+
}) => void) & ((event: "end-reached", direction: ScrollbarDirection) => void);
|
|
300
304
|
$el: any;
|
|
301
|
-
$options:
|
|
305
|
+
$options: ComponentOptionsBase<Readonly< ScrollbarProps> & Readonly<{
|
|
302
306
|
onScroll?: ((args_0: {
|
|
303
307
|
scrollTop: number;
|
|
304
308
|
scrollLeft: number;
|
|
305
309
|
}) => any) | undefined;
|
|
306
|
-
"onEnd-reached"?: ((direction:
|
|
310
|
+
"onEnd-reached"?: ((direction: ScrollbarDirection) => any) | undefined;
|
|
307
311
|
}>, {
|
|
308
312
|
wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
309
313
|
update: () => void;
|
|
@@ -314,24 +318,24 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
314
318
|
setScrollTop: (value: number) => void;
|
|
315
319
|
setScrollLeft: (value: number) => void;
|
|
316
320
|
handleScroll: () => void;
|
|
317
|
-
}, {}, {}, {},
|
|
321
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
318
322
|
scroll: (args_0: {
|
|
319
323
|
scrollTop: number;
|
|
320
324
|
scrollLeft: number;
|
|
321
325
|
}) => void;
|
|
322
|
-
"end-reached": (direction:
|
|
326
|
+
"end-reached": (direction: ScrollbarDirection) => void;
|
|
323
327
|
}, string, {
|
|
324
328
|
tabindex: number | string;
|
|
325
329
|
height: number | string;
|
|
326
330
|
maxHeight: number | string;
|
|
327
331
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
328
332
|
distance: number;
|
|
329
|
-
wrapStyle: string | false |
|
|
333
|
+
wrapStyle: string | false | CSSProperties | StyleValue[] | null;
|
|
330
334
|
wrapClass: string | string[];
|
|
331
335
|
viewClass: string | string[];
|
|
332
|
-
viewStyle: string | false |
|
|
336
|
+
viewStyle: string | false | CSSProperties | StyleValue[] | null;
|
|
333
337
|
minSize: number;
|
|
334
|
-
}, {}, string, {},
|
|
338
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
335
339
|
beforeCreate?: (() => void) | (() => void)[];
|
|
336
340
|
created?: (() => void) | (() => void)[];
|
|
337
341
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -344,31 +348,31 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
344
348
|
beforeUnmount?: (() => void) | (() => void)[];
|
|
345
349
|
destroyed?: (() => void) | (() => void)[];
|
|
346
350
|
unmounted?: (() => void) | (() => void)[];
|
|
347
|
-
renderTracked?: ((e:
|
|
348
|
-
renderTriggered?: ((e:
|
|
349
|
-
errorCaptured?: ((err: unknown, instance:
|
|
351
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
352
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
353
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
350
354
|
};
|
|
351
355
|
$forceUpdate: () => void;
|
|
352
356
|
$nextTick: typeof nextTick;
|
|
353
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R,
|
|
357
|
+
$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;
|
|
354
358
|
} & Readonly<{
|
|
355
359
|
tabindex: number | string;
|
|
356
360
|
height: number | string;
|
|
357
361
|
maxHeight: number | string;
|
|
358
362
|
tag: keyof HTMLElementTagNameMap | (string & {});
|
|
359
363
|
distance: number;
|
|
360
|
-
wrapStyle: string | false |
|
|
364
|
+
wrapStyle: string | false | CSSProperties | StyleValue[] | null;
|
|
361
365
|
wrapClass: string | string[];
|
|
362
366
|
viewClass: string | string[];
|
|
363
|
-
viewStyle: string | false |
|
|
367
|
+
viewStyle: string | false | CSSProperties | StyleValue[] | null;
|
|
364
368
|
minSize: number;
|
|
365
|
-
}> & Omit<Readonly<
|
|
369
|
+
}> & Omit<Readonly< ScrollbarProps> & Readonly<{
|
|
366
370
|
onScroll?: ((args_0: {
|
|
367
371
|
scrollTop: number;
|
|
368
372
|
scrollLeft: number;
|
|
369
373
|
}) => any) | undefined;
|
|
370
|
-
"onEnd-reached"?: ((direction:
|
|
371
|
-
}>, "height" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> &
|
|
374
|
+
"onEnd-reached"?: ((direction: ScrollbarDirection) => any) | undefined;
|
|
375
|
+
}>, "height" | "tabindex" | "tag" | "handleScroll" | "maxHeight" | "scrollTo" | "update" | "distance" | "wrapStyle" | "wrapClass" | "viewClass" | "viewStyle" | "minSize" | "wrapRef" | "setScrollTop" | "setScrollLeft"> & ShallowUnwrapRef<{
|
|
372
376
|
wrapRef: Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
373
377
|
update: () => void;
|
|
374
378
|
scrollTo: {
|
|
@@ -378,19 +382,19 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
378
382
|
setScrollTop: (value: number) => void;
|
|
379
383
|
setScrollLeft: (value: number) => void;
|
|
380
384
|
handleScroll: () => void;
|
|
381
|
-
}> & {} &
|
|
385
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
382
386
|
$slots: {
|
|
383
387
|
default?: (props: {}) => any;
|
|
384
388
|
};
|
|
385
389
|
}) | null;
|
|
386
|
-
}, HTMLDivElement,
|
|
390
|
+
}, HTMLDivElement, ComponentProvideOptions, {
|
|
387
391
|
P: {};
|
|
388
392
|
B: {};
|
|
389
393
|
D: {};
|
|
390
394
|
C: {};
|
|
391
395
|
M: {};
|
|
392
396
|
Defaults: {};
|
|
393
|
-
}, Readonly<
|
|
397
|
+
}, Readonly< PanelMiddleProps> & Readonly<{
|
|
394
398
|
"onUpdate:keyword"?: ((value: string) => any) | undefined;
|
|
395
399
|
onCheckAll?: ((checked: boolean) => any) | undefined;
|
|
396
400
|
onAllCheck?: ((checked: boolean) => any) | undefined;
|
|
@@ -404,7 +408,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
|
|
|
404
408
|
disabled: boolean;
|
|
405
409
|
scrollToGroupValue: PanelSelectValue;
|
|
406
410
|
pasteSearch: boolean;
|
|
407
|
-
separator:
|
|
411
|
+
separator: PanelSelectSeparator;
|
|
408
412
|
}> | null;
|
|
409
413
|
}, HTMLDivElement>;
|
|
410
414
|
export default _default;
|
|
@@ -1,52 +1,33 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
"update:modelValue": (value: import('./type').TtRadioGroupValueType) => any;
|
|
13
|
-
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
14
|
-
P: {};
|
|
15
|
-
B: {};
|
|
16
|
-
D: {};
|
|
17
|
-
C: {};
|
|
18
|
-
M: {};
|
|
19
|
-
Defaults: {};
|
|
20
|
-
}, Readonly<{
|
|
21
|
-
modelValue?: import('./type').TtRadioGroupValueType;
|
|
22
|
-
} & Omit<Partial<import('element-plus').RadioGroupProps>, "modelValue"> & {
|
|
23
|
-
clearable?: boolean;
|
|
24
|
-
beforeChange?: (val: import('./type').TtRadioGroupValueType | undefined, oldVal: import('./type').TtRadioGroupValueType | undefined) => Promise<boolean>;
|
|
25
|
-
}> & Readonly<{
|
|
26
|
-
onChange?: ((val: import('./type').TtRadioGroupValueType | undefined) => any) | undefined;
|
|
27
|
-
"onUpdate:modelValue"?: ((value: import('./type').TtRadioGroupValueType) => any) | undefined;
|
|
28
|
-
}>, {}, {}, {}, {}, {}>;
|
|
29
|
-
__isFragment?: never;
|
|
30
|
-
__isTeleport?: never;
|
|
31
|
-
__isSuspense?: never;
|
|
32
|
-
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
33
|
-
modelValue?: import('./type').TtRadioGroupValueType;
|
|
34
|
-
} & Omit<Partial<import('element-plus').RadioGroupProps>, "modelValue"> & {
|
|
35
|
-
clearable?: boolean;
|
|
36
|
-
beforeChange?: (val: import('./type').TtRadioGroupValueType | undefined, oldVal: import('./type').TtRadioGroupValueType | undefined) => Promise<boolean>;
|
|
37
|
-
}> & Readonly<{
|
|
38
|
-
onChange?: ((val: import('./type').TtRadioGroupValueType | undefined) => any) | undefined;
|
|
39
|
-
"onUpdate:modelValue"?: ((value: import('./type').TtRadioGroupValueType) => any) | undefined;
|
|
40
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
41
|
-
change: (val: import('./type').TtRadioGroupValueType | undefined) => any;
|
|
42
|
-
"update:modelValue": (value: import('./type').TtRadioGroupValueType) => any;
|
|
43
|
-
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
44
|
-
$slots: Readonly<{
|
|
45
|
-
default?: () => import('vue').VNodeChild;
|
|
1
|
+
import { TtRadioGroupProp, TtRadioGroupValueType } from './type';
|
|
2
|
+
import { VNodeChild, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
+
type __VLS_Props = TtRadioGroupProp;
|
|
4
|
+
type __VLS_PublicProps = {
|
|
5
|
+
modelValue?: TtRadioGroupValueType;
|
|
6
|
+
} & __VLS_Props;
|
|
7
|
+
declare function __VLS_template(): {
|
|
8
|
+
attrs: Partial<{}>;
|
|
9
|
+
slots: Readonly<{
|
|
10
|
+
/** 单选项内容 */
|
|
11
|
+
default?: () => VNodeChild;
|
|
46
12
|
}> & {
|
|
47
|
-
|
|
13
|
+
/** 单选项内容 */
|
|
14
|
+
default?: () => VNodeChild;
|
|
48
15
|
};
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
16
|
+
refs: {};
|
|
17
|
+
rootEl: any;
|
|
18
|
+
};
|
|
19
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
20
|
+
declare const __VLS_component: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
21
|
+
change: (val: TtRadioGroupValueType | undefined) => any;
|
|
22
|
+
"update:modelValue": (value: TtRadioGroupValueType) => any;
|
|
23
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
24
|
+
onChange?: ((val: TtRadioGroupValueType | undefined) => any) | undefined;
|
|
25
|
+
"onUpdate:modelValue"?: ((value: TtRadioGroupValueType) => any) | undefined;
|
|
26
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
27
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
28
|
+
export default _default;
|
|
29
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
30
|
+
new (): {
|
|
31
|
+
$slots: S;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SFCWithInstall } from '../../../../utils/src';
|
|
2
|
-
import { default as TtSelectConstructor } from './src/Select
|
|
2
|
+
import { default as TtSelectConstructor } from './src/Select';
|
|
3
3
|
export type { TtSelectProps as TtSelectProp } from './src/props';
|
|
4
4
|
export * from './src/types';
|
|
5
5
|
export declare const TtSelect: SFCWithInstall<typeof TtSelectConstructor>;
|