@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,216 +0,0 @@
|
|
|
1
|
-
import { ExtendedFormApi, TtFormProps, FormSchema } from './types';
|
|
2
|
-
import { nextTick } from 'vue';
|
|
3
|
-
interface Props extends TtFormProps {
|
|
4
|
-
formApi?: ExtendedFormApi;
|
|
5
|
-
}
|
|
6
|
-
declare function __VLS_template(): {
|
|
7
|
-
attrs: Partial<{}>;
|
|
8
|
-
slots: Partial<Record<string, (_: any) => any>> & {
|
|
9
|
-
default?(_: {
|
|
10
|
-
shapes: import('./types').FormShape[];
|
|
11
|
-
}): any;
|
|
12
|
-
'reset-before'?(_: {}): any;
|
|
13
|
-
'submit-before'?(_: {}): any;
|
|
14
|
-
'expand-before'?(_: {}): any;
|
|
15
|
-
'expand-after'?(_: {}): any;
|
|
16
|
-
};
|
|
17
|
-
refs: {
|
|
18
|
-
formRef: ({
|
|
19
|
-
$: import('vue').ComponentInternalInstance;
|
|
20
|
-
$data: {};
|
|
21
|
-
$props: {
|
|
22
|
-
readonly arrayToStringFields?: import('./types').ArrayToStringFields | undefined;
|
|
23
|
-
readonly collapsed?: boolean | undefined;
|
|
24
|
-
readonly collapsedRows?: number | undefined;
|
|
25
|
-
readonly collapseTriggerResize?: boolean | undefined;
|
|
26
|
-
readonly commonConfig?: import('./types').FormCommonConfig<Record<string, any>> | undefined;
|
|
27
|
-
readonly compact?: boolean | undefined;
|
|
28
|
-
readonly componentBindEventMap?: Partial<Record<import('./types').BaseFormComponentType, string>> | undefined;
|
|
29
|
-
readonly componentMap: Record<import('./types').BaseFormComponentType, import('vue').Component>;
|
|
30
|
-
readonly fieldMappingTime?: import('./types').FieldMappingTime | undefined;
|
|
31
|
-
readonly form?: import('./types').FormActions | undefined;
|
|
32
|
-
readonly layout?: import('./types').FormLayout | undefined;
|
|
33
|
-
readonly schema?: (FormSchema<Record<string, any>> | import('./types').FormSchemaItem<Record<string, any>> | import('./types').FormSlotSchema<Record<string, any>>)[] | undefined;
|
|
34
|
-
readonly showCollapseButton?: boolean | undefined;
|
|
35
|
-
readonly wrapperClass?: import('./types').WrapperClassType | undefined;
|
|
36
|
-
readonly globalCommonConfig?: import('./types').FormCommonConfig | undefined;
|
|
37
|
-
readonly onSubmit?: ((event: any) => any) | undefined;
|
|
38
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
39
|
-
$attrs: {
|
|
40
|
-
[x: string]: unknown;
|
|
41
|
-
};
|
|
42
|
-
$refs: {
|
|
43
|
-
[x: string]: unknown;
|
|
44
|
-
} & {
|
|
45
|
-
wrapperRef: HTMLDivElement;
|
|
46
|
-
};
|
|
47
|
-
$slots: Readonly<{
|
|
48
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
49
|
-
}>;
|
|
50
|
-
$root: import('vue').ComponentPublicInstance | null;
|
|
51
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
|
52
|
-
$host: Element | null;
|
|
53
|
-
$emit: (event: "submit", event: any) => void;
|
|
54
|
-
$el: any;
|
|
55
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('./types').FormRenderProps<Record<string, any>> & {
|
|
56
|
-
globalCommonConfig?: import('./types').FormCommonConfig;
|
|
57
|
-
}> & Readonly<{
|
|
58
|
-
onSubmit?: ((event: any) => any) | undefined;
|
|
59
|
-
}>, {
|
|
60
|
-
wrapperRef: import('vue').ComputedRef<HTMLElement | null>;
|
|
61
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
62
|
-
submit: (event: any) => any;
|
|
63
|
-
}, string, {
|
|
64
|
-
collapsedRows: number;
|
|
65
|
-
commonConfig: import('./types').FormCommonConfig<Record<string, any>>;
|
|
66
|
-
showCollapseButton: boolean;
|
|
67
|
-
wrapperClass: import('./types').WrapperClassType;
|
|
68
|
-
globalCommonConfig: import('./types').FormCommonConfig;
|
|
69
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
70
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
71
|
-
created?: (() => void) | (() => void)[];
|
|
72
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
73
|
-
mounted?: (() => void) | (() => void)[];
|
|
74
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
75
|
-
updated?: (() => void) | (() => void)[];
|
|
76
|
-
activated?: (() => void) | (() => void)[];
|
|
77
|
-
deactivated?: (() => void) | (() => void)[];
|
|
78
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
79
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
80
|
-
destroyed?: (() => void) | (() => void)[];
|
|
81
|
-
unmounted?: (() => void) | (() => void)[];
|
|
82
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
83
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
84
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
85
|
-
};
|
|
86
|
-
$forceUpdate: () => void;
|
|
87
|
-
$nextTick: typeof nextTick;
|
|
88
|
-
$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;
|
|
89
|
-
} & Readonly<{
|
|
90
|
-
collapsedRows: number;
|
|
91
|
-
commonConfig: import('./types').FormCommonConfig<Record<string, any>>;
|
|
92
|
-
showCollapseButton: boolean;
|
|
93
|
-
wrapperClass: import('./types').WrapperClassType;
|
|
94
|
-
globalCommonConfig: import('./types').FormCommonConfig;
|
|
95
|
-
}> & Omit<Readonly<import('./types').FormRenderProps<Record<string, any>> & {
|
|
96
|
-
globalCommonConfig?: import('./types').FormCommonConfig;
|
|
97
|
-
}> & Readonly<{
|
|
98
|
-
onSubmit?: ((event: any) => any) | undefined;
|
|
99
|
-
}>, "wrapperRef" | ("collapsedRows" | "commonConfig" | "showCollapseButton" | "wrapperClass" | "globalCommonConfig")> & import('vue').ShallowUnwrapRef<{
|
|
100
|
-
wrapperRef: import('vue').ComputedRef<HTMLElement | null>;
|
|
101
|
-
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
102
|
-
$slots: Partial<Record<string, (_: {
|
|
103
|
-
values: Record<string, any>;
|
|
104
|
-
formActions: import('./types').FormActions;
|
|
105
|
-
}) => any>> & Partial<Record<string, (_: any) => any>> & Partial<Record<string, (_: any) => any>> & {
|
|
106
|
-
default?(_: {
|
|
107
|
-
shapes: import('./types').FormShape[];
|
|
108
|
-
}): any;
|
|
109
|
-
};
|
|
110
|
-
}) | null;
|
|
111
|
-
};
|
|
112
|
-
rootEl: any;
|
|
113
|
-
};
|
|
114
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
115
|
-
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
116
|
-
formRef: ({
|
|
117
|
-
$: import('vue').ComponentInternalInstance;
|
|
118
|
-
$data: {};
|
|
119
|
-
$props: {
|
|
120
|
-
readonly arrayToStringFields?: import('./types').ArrayToStringFields | undefined;
|
|
121
|
-
readonly collapsed?: boolean | undefined;
|
|
122
|
-
readonly collapsedRows?: number | undefined;
|
|
123
|
-
readonly collapseTriggerResize?: boolean | undefined;
|
|
124
|
-
readonly commonConfig?: import('./types').FormCommonConfig<Record<string, any>> | undefined;
|
|
125
|
-
readonly compact?: boolean | undefined;
|
|
126
|
-
readonly componentBindEventMap?: Partial<Record<import('./types').BaseFormComponentType, string>> | undefined;
|
|
127
|
-
readonly componentMap: Record<import('./types').BaseFormComponentType, import('vue').Component>;
|
|
128
|
-
readonly fieldMappingTime?: import('./types').FieldMappingTime | undefined;
|
|
129
|
-
readonly form?: import('./types').FormActions | undefined;
|
|
130
|
-
readonly layout?: import('./types').FormLayout | undefined;
|
|
131
|
-
readonly schema?: (FormSchema<Record<string, any>> | import('./types').FormSchemaItem<Record<string, any>> | import('./types').FormSlotSchema<Record<string, any>>)[] | undefined;
|
|
132
|
-
readonly showCollapseButton?: boolean | undefined;
|
|
133
|
-
readonly wrapperClass?: import('./types').WrapperClassType | undefined;
|
|
134
|
-
readonly globalCommonConfig?: import('./types').FormCommonConfig | undefined;
|
|
135
|
-
readonly onSubmit?: ((event: any) => any) | undefined;
|
|
136
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
137
|
-
$attrs: {
|
|
138
|
-
[x: string]: unknown;
|
|
139
|
-
};
|
|
140
|
-
$refs: {
|
|
141
|
-
[x: string]: unknown;
|
|
142
|
-
} & {
|
|
143
|
-
wrapperRef: HTMLDivElement;
|
|
144
|
-
};
|
|
145
|
-
$slots: Readonly<{
|
|
146
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
147
|
-
}>;
|
|
148
|
-
$root: import('vue').ComponentPublicInstance | null;
|
|
149
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
|
150
|
-
$host: Element | null;
|
|
151
|
-
$emit: (event: "submit", event: any) => void;
|
|
152
|
-
$el: any;
|
|
153
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('./types').FormRenderProps<Record<string, any>> & {
|
|
154
|
-
globalCommonConfig?: import('./types').FormCommonConfig;
|
|
155
|
-
}> & Readonly<{
|
|
156
|
-
onSubmit?: ((event: any) => any) | undefined;
|
|
157
|
-
}>, {
|
|
158
|
-
wrapperRef: import('vue').ComputedRef<HTMLElement | null>;
|
|
159
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
160
|
-
submit: (event: any) => any;
|
|
161
|
-
}, string, {
|
|
162
|
-
collapsedRows: number;
|
|
163
|
-
commonConfig: import('./types').FormCommonConfig<Record<string, any>>;
|
|
164
|
-
showCollapseButton: boolean;
|
|
165
|
-
wrapperClass: import('./types').WrapperClassType;
|
|
166
|
-
globalCommonConfig: import('./types').FormCommonConfig;
|
|
167
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
168
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
169
|
-
created?: (() => void) | (() => void)[];
|
|
170
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
171
|
-
mounted?: (() => void) | (() => void)[];
|
|
172
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
173
|
-
updated?: (() => void) | (() => void)[];
|
|
174
|
-
activated?: (() => void) | (() => void)[];
|
|
175
|
-
deactivated?: (() => void) | (() => void)[];
|
|
176
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
177
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
178
|
-
destroyed?: (() => void) | (() => void)[];
|
|
179
|
-
unmounted?: (() => void) | (() => void)[];
|
|
180
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
181
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
182
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
183
|
-
};
|
|
184
|
-
$forceUpdate: () => void;
|
|
185
|
-
$nextTick: typeof nextTick;
|
|
186
|
-
$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;
|
|
187
|
-
} & Readonly<{
|
|
188
|
-
collapsedRows: number;
|
|
189
|
-
commonConfig: import('./types').FormCommonConfig<Record<string, any>>;
|
|
190
|
-
showCollapseButton: boolean;
|
|
191
|
-
wrapperClass: import('./types').WrapperClassType;
|
|
192
|
-
globalCommonConfig: import('./types').FormCommonConfig;
|
|
193
|
-
}> & Omit<Readonly<import('./types').FormRenderProps<Record<string, any>> & {
|
|
194
|
-
globalCommonConfig?: import('./types').FormCommonConfig;
|
|
195
|
-
}> & Readonly<{
|
|
196
|
-
onSubmit?: ((event: any) => any) | undefined;
|
|
197
|
-
}>, "wrapperRef" | ("collapsedRows" | "commonConfig" | "showCollapseButton" | "wrapperClass" | "globalCommonConfig")> & import('vue').ShallowUnwrapRef<{
|
|
198
|
-
wrapperRef: import('vue').ComputedRef<HTMLElement | null>;
|
|
199
|
-
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
200
|
-
$slots: Partial<Record<string, (_: {
|
|
201
|
-
values: Record<string, any>;
|
|
202
|
-
formActions: import('./types').FormActions;
|
|
203
|
-
}) => any>> & Partial<Record<string, (_: any) => any>> & Partial<Record<string, (_: any) => any>> & {
|
|
204
|
-
default?(_: {
|
|
205
|
-
shapes: import('./types').FormShape[];
|
|
206
|
-
}): any;
|
|
207
|
-
};
|
|
208
|
-
}) | null;
|
|
209
|
-
}, any>;
|
|
210
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
211
|
-
export default _default;
|
|
212
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
213
|
-
new (): {
|
|
214
|
-
$slots: S;
|
|
215
|
-
};
|
|
216
|
-
};
|
|
@@ -1,298 +0,0 @@
|
|
|
1
|
-
import { PropType, Ref, nextTick } from 'vue';
|
|
2
|
-
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
3
|
-
/** 错误信息 */
|
|
4
|
-
errMsg: {
|
|
5
|
-
type: StringConstructor;
|
|
6
|
-
default: string;
|
|
7
|
-
};
|
|
8
|
-
/** 挂载的DOM */
|
|
9
|
-
refDom: {
|
|
10
|
-
type: PropType<HTMLElement | null>;
|
|
11
|
-
default: () => null;
|
|
12
|
-
};
|
|
13
|
-
/** 显示的位置 enum */
|
|
14
|
-
placement: {
|
|
15
|
-
type: PropType<any>;
|
|
16
|
-
default: string;
|
|
17
|
-
};
|
|
18
|
-
/** 字段名称(用于 E2E 测试定位) */
|
|
19
|
-
fieldName: {
|
|
20
|
-
type: StringConstructor;
|
|
21
|
-
default: string;
|
|
22
|
-
};
|
|
23
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
24
|
-
/** 错误信息 */
|
|
25
|
-
errMsg: {
|
|
26
|
-
type: StringConstructor;
|
|
27
|
-
default: string;
|
|
28
|
-
};
|
|
29
|
-
/** 挂载的DOM */
|
|
30
|
-
refDom: {
|
|
31
|
-
type: PropType<HTMLElement | null>;
|
|
32
|
-
default: () => null;
|
|
33
|
-
};
|
|
34
|
-
/** 显示的位置 enum */
|
|
35
|
-
placement: {
|
|
36
|
-
type: PropType<any>;
|
|
37
|
-
default: string;
|
|
38
|
-
};
|
|
39
|
-
/** 字段名称(用于 E2E 测试定位) */
|
|
40
|
-
fieldName: {
|
|
41
|
-
type: StringConstructor;
|
|
42
|
-
default: string;
|
|
43
|
-
};
|
|
44
|
-
}>> & Readonly<{}>, {
|
|
45
|
-
placement: any;
|
|
46
|
-
fieldName: string;
|
|
47
|
-
errMsg: string;
|
|
48
|
-
refDom: HTMLElement | null;
|
|
49
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
50
|
-
tooltipRef: ({
|
|
51
|
-
$: import('vue').ComponentInternalInstance;
|
|
52
|
-
$data: {};
|
|
53
|
-
$props: {
|
|
54
|
-
readonly showArrow?: boolean | undefined;
|
|
55
|
-
readonly "onUpdate:visible"?: (((value: boolean) => void) & ((...args: any[]) => any)) | undefined;
|
|
56
|
-
readonly role?: ("dialog" | "menu" | "grid" | "group" | "listbox" | "navigation" | "tooltip" | "tree") | undefined;
|
|
57
|
-
readonly appendTo?: (string | HTMLElement) | undefined;
|
|
58
|
-
readonly content?: string | undefined;
|
|
59
|
-
readonly rawContent?: boolean | undefined;
|
|
60
|
-
readonly persistent?: boolean | undefined;
|
|
61
|
-
readonly visible?: boolean | null | undefined;
|
|
62
|
-
readonly transition?: string | undefined;
|
|
63
|
-
readonly teleported?: boolean | undefined;
|
|
64
|
-
readonly disabled?: boolean | undefined;
|
|
65
|
-
readonly ariaLabel?: string | undefined;
|
|
66
|
-
readonly showAfter?: number | undefined;
|
|
67
|
-
readonly hideAfter?: number | undefined;
|
|
68
|
-
readonly autoClose?: number | undefined;
|
|
69
|
-
readonly placement?: import('element-plus').Placement | undefined;
|
|
70
|
-
readonly style?: import('vue').StyleValue;
|
|
71
|
-
readonly id?: string | undefined;
|
|
72
|
-
readonly className?: (string | {
|
|
73
|
-
[x: string]: boolean;
|
|
74
|
-
} | (string | {
|
|
75
|
-
[x: string]: boolean;
|
|
76
|
-
} | (string | {
|
|
77
|
-
[x: string]: boolean;
|
|
78
|
-
} | (string | {
|
|
79
|
-
[x: string]: boolean;
|
|
80
|
-
} | (string | {
|
|
81
|
-
[x: string]: boolean;
|
|
82
|
-
} | (string | {
|
|
83
|
-
[x: string]: boolean;
|
|
84
|
-
} | (string | {
|
|
85
|
-
[x: string]: boolean;
|
|
86
|
-
} | (string | {
|
|
87
|
-
[x: string]: boolean;
|
|
88
|
-
} | (string | {
|
|
89
|
-
[x: string]: boolean;
|
|
90
|
-
} | (string | {
|
|
91
|
-
[x: string]: boolean;
|
|
92
|
-
} | (string | {
|
|
93
|
-
[x: string]: boolean;
|
|
94
|
-
} | (string | {
|
|
95
|
-
[x: string]: boolean;
|
|
96
|
-
} | /*elided*/ any)[])[])[])[])[])[])[])[])[])[])[]) | undefined;
|
|
97
|
-
readonly effect?: import('element-plus').PopperEffect | undefined;
|
|
98
|
-
readonly enterable?: boolean | undefined;
|
|
99
|
-
readonly pure?: boolean | undefined;
|
|
100
|
-
readonly focusOnShow?: boolean | undefined;
|
|
101
|
-
readonly trapping?: boolean | undefined;
|
|
102
|
-
readonly popperClass?: (string | {
|
|
103
|
-
[x: string]: boolean;
|
|
104
|
-
} | (string | {
|
|
105
|
-
[x: string]: boolean;
|
|
106
|
-
} | (string | {
|
|
107
|
-
[x: string]: boolean;
|
|
108
|
-
} | (string | {
|
|
109
|
-
[x: string]: boolean;
|
|
110
|
-
} | (string | {
|
|
111
|
-
[x: string]: boolean;
|
|
112
|
-
} | (string | {
|
|
113
|
-
[x: string]: boolean;
|
|
114
|
-
} | (string | {
|
|
115
|
-
[x: string]: boolean;
|
|
116
|
-
} | (string | {
|
|
117
|
-
[x: string]: boolean;
|
|
118
|
-
} | (string | {
|
|
119
|
-
[x: string]: boolean;
|
|
120
|
-
} | (string | {
|
|
121
|
-
[x: string]: boolean;
|
|
122
|
-
} | (string | {
|
|
123
|
-
[x: string]: boolean;
|
|
124
|
-
} | (string | {
|
|
125
|
-
[x: string]: boolean;
|
|
126
|
-
} | /*elided*/ any)[])[])[])[])[])[])[])[])[])[])[]) | undefined;
|
|
127
|
-
readonly popperStyle?: import('vue').StyleValue;
|
|
128
|
-
readonly referenceEl?: HTMLElement | undefined;
|
|
129
|
-
readonly triggerTargetEl?: HTMLElement | undefined;
|
|
130
|
-
readonly stopPopperMouseEvent?: boolean | undefined;
|
|
131
|
-
readonly virtualTriggering?: boolean | undefined;
|
|
132
|
-
readonly zIndex?: number | undefined;
|
|
133
|
-
readonly loop?: boolean | undefined;
|
|
134
|
-
readonly boundariesPadding?: number | undefined;
|
|
135
|
-
readonly fallbackPlacements?: import('element-plus').Placement[] | undefined;
|
|
136
|
-
readonly gpuAcceleration?: boolean | undefined;
|
|
137
|
-
readonly offset?: number | undefined;
|
|
138
|
-
readonly popperOptions?: Partial<import('element-plus').Options> | undefined;
|
|
139
|
-
readonly strategy?: ("fixed" | "absolute") | undefined;
|
|
140
|
-
readonly arrowOffset?: number | undefined;
|
|
141
|
-
readonly trigger?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').TooltipTriggerType> | undefined;
|
|
142
|
-
readonly triggerKeys?: string[] | undefined;
|
|
143
|
-
readonly focusOnTarget?: boolean | undefined;
|
|
144
|
-
readonly virtualRef?: import('element-plus').Measurable | undefined;
|
|
145
|
-
readonly onMouseenter?: ((e: MouseEvent) => void) | undefined;
|
|
146
|
-
readonly onMouseleave?: ((e: MouseEvent) => void) | undefined;
|
|
147
|
-
readonly onClick?: ((e: PointerEvent) => void) | undefined;
|
|
148
|
-
readonly onKeydown?: ((e: KeyboardEvent) => void) | undefined;
|
|
149
|
-
readonly onFocus?: ((e: FocusEvent) => void) | undefined;
|
|
150
|
-
readonly onBlur?: ((e: FocusEvent) => void) | undefined;
|
|
151
|
-
readonly onContextmenu?: ((e: PointerEvent) => void) | undefined;
|
|
152
|
-
readonly open?: boolean | undefined;
|
|
153
|
-
readonly onClose?: ((...args: any[]) => any) | undefined | undefined;
|
|
154
|
-
readonly onHide?: ((...args: any[]) => any) | undefined | undefined;
|
|
155
|
-
readonly onShow?: ((...args: any[]) => any) | undefined | undefined;
|
|
156
|
-
readonly onOpen?: ((...args: any[]) => any) | undefined | undefined;
|
|
157
|
-
readonly "onBefore-show"?: ((...args: any[]) => any) | undefined | undefined;
|
|
158
|
-
readonly "onBefore-hide"?: ((...args: any[]) => any) | undefined | undefined;
|
|
159
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
160
|
-
$attrs: {
|
|
161
|
-
[x: string]: unknown;
|
|
162
|
-
};
|
|
163
|
-
$refs: {
|
|
164
|
-
[x: string]: unknown;
|
|
165
|
-
};
|
|
166
|
-
$slots: Readonly<{
|
|
167
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
168
|
-
}>;
|
|
169
|
-
$root: import('vue').ComponentPublicInstance | null;
|
|
170
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
|
171
|
-
$host: Element | null;
|
|
172
|
-
$emit: ((event: "close", ...args: any[]) => void) & ((event: "open", ...args: any[]) => void) & ((event: "hide", ...args: any[]) => void) & ((event: "show", ...args: any[]) => void) & ((event: "update:visible", ...args: any[]) => void) & ((event: "before-show", ...args: any[]) => void) & ((event: "before-hide", ...args: any[]) => void);
|
|
173
|
-
$el: any;
|
|
174
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').UseTooltipProps> & Readonly<{
|
|
175
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
176
|
-
onHide?: ((...args: any[]) => any) | undefined;
|
|
177
|
-
onShow?: ((...args: any[]) => any) | undefined;
|
|
178
|
-
onOpen?: ((...args: any[]) => any) | undefined;
|
|
179
|
-
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
180
|
-
"onBefore-show"?: ((...args: any[]) => any) | undefined;
|
|
181
|
-
"onBefore-hide"?: ((...args: any[]) => any) | undefined;
|
|
182
|
-
}>, {
|
|
183
|
-
popperRef: Ref<import('element-plus').PopperInstance | undefined, import('element-plus').PopperInstance | undefined>;
|
|
184
|
-
contentRef: Ref<import('element-plus').TooltipContentInstance | undefined, import('element-plus').TooltipContentInstance | undefined>;
|
|
185
|
-
isFocusInsideContent: (event?: FocusEvent) => boolean | undefined;
|
|
186
|
-
updatePopper: () => void;
|
|
187
|
-
onOpen: (event?: Event, delay?: number) => void;
|
|
188
|
-
onClose: (event?: Event, delay?: number) => void;
|
|
189
|
-
hide: (event?: Event) => void;
|
|
190
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
191
|
-
close: (...args: any[]) => void;
|
|
192
|
-
hide: (...args: any[]) => void;
|
|
193
|
-
show: (...args: any[]) => void;
|
|
194
|
-
open: (...args: any[]) => void;
|
|
195
|
-
"update:visible": (...args: any[]) => void;
|
|
196
|
-
"before-show": (...args: any[]) => void;
|
|
197
|
-
"before-hide": (...args: any[]) => void;
|
|
198
|
-
}, string, {
|
|
199
|
-
offset: number;
|
|
200
|
-
teleported: boolean;
|
|
201
|
-
effect: import('element-plus').PopperEffect;
|
|
202
|
-
visible: boolean | null;
|
|
203
|
-
content: string;
|
|
204
|
-
style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
205
|
-
enterable: boolean;
|
|
206
|
-
pure: boolean;
|
|
207
|
-
focusOnShow: boolean;
|
|
208
|
-
trapping: boolean;
|
|
209
|
-
popperStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
210
|
-
stopPopperMouseEvent: boolean;
|
|
211
|
-
virtualTriggering: boolean;
|
|
212
|
-
loop: boolean;
|
|
213
|
-
boundariesPadding: number;
|
|
214
|
-
gpuAcceleration: boolean;
|
|
215
|
-
placement: import('element-plus').Placement;
|
|
216
|
-
popperOptions: Partial<import('element-plus').Options>;
|
|
217
|
-
strategy: "fixed" | "absolute";
|
|
218
|
-
arrowOffset: number;
|
|
219
|
-
showArrow: boolean;
|
|
220
|
-
role: "dialog" | "menu" | "grid" | "group" | "listbox" | "navigation" | "tooltip" | "tree";
|
|
221
|
-
showAfter: number;
|
|
222
|
-
hideAfter: number;
|
|
223
|
-
autoClose: number;
|
|
224
|
-
trigger: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').TooltipTriggerType>;
|
|
225
|
-
triggerKeys: string[];
|
|
226
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
227
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
228
|
-
created?: (() => void) | (() => void)[];
|
|
229
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
230
|
-
mounted?: (() => void) | (() => void)[];
|
|
231
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
232
|
-
updated?: (() => void) | (() => void)[];
|
|
233
|
-
activated?: (() => void) | (() => void)[];
|
|
234
|
-
deactivated?: (() => void) | (() => void)[];
|
|
235
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
236
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
237
|
-
destroyed?: (() => void) | (() => void)[];
|
|
238
|
-
unmounted?: (() => void) | (() => void)[];
|
|
239
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
240
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
241
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
242
|
-
};
|
|
243
|
-
$forceUpdate: () => void;
|
|
244
|
-
$nextTick: typeof nextTick;
|
|
245
|
-
$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;
|
|
246
|
-
} & Readonly<{
|
|
247
|
-
offset: number;
|
|
248
|
-
teleported: boolean;
|
|
249
|
-
effect: import('element-plus').PopperEffect;
|
|
250
|
-
visible: boolean | null;
|
|
251
|
-
content: string;
|
|
252
|
-
style: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
253
|
-
enterable: boolean;
|
|
254
|
-
pure: boolean;
|
|
255
|
-
focusOnShow: boolean;
|
|
256
|
-
trapping: boolean;
|
|
257
|
-
popperStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
258
|
-
stopPopperMouseEvent: boolean;
|
|
259
|
-
virtualTriggering: boolean;
|
|
260
|
-
loop: boolean;
|
|
261
|
-
boundariesPadding: number;
|
|
262
|
-
gpuAcceleration: boolean;
|
|
263
|
-
placement: import('element-plus').Placement;
|
|
264
|
-
popperOptions: Partial<import('element-plus').Options>;
|
|
265
|
-
strategy: "fixed" | "absolute";
|
|
266
|
-
arrowOffset: number;
|
|
267
|
-
showArrow: boolean;
|
|
268
|
-
role: "dialog" | "menu" | "grid" | "group" | "listbox" | "navigation" | "tooltip" | "tree";
|
|
269
|
-
showAfter: number;
|
|
270
|
-
hideAfter: number;
|
|
271
|
-
autoClose: number;
|
|
272
|
-
trigger: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').TooltipTriggerType>;
|
|
273
|
-
triggerKeys: string[];
|
|
274
|
-
}> & Omit<Readonly<import('element-plus').UseTooltipProps> & Readonly<{
|
|
275
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
276
|
-
onHide?: ((...args: any[]) => any) | undefined;
|
|
277
|
-
onShow?: ((...args: any[]) => any) | undefined;
|
|
278
|
-
onOpen?: ((...args: any[]) => any) | undefined;
|
|
279
|
-
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
280
|
-
"onBefore-show"?: ((...args: any[]) => any) | undefined;
|
|
281
|
-
"onBefore-hide"?: ((...args: any[]) => any) | undefined;
|
|
282
|
-
}>, "placement" | "style" | "onClose" | "visible" | "effect" | "enterable" | "pure" | "focusOnShow" | "trapping" | "popperStyle" | "stopPopperMouseEvent" | "virtualTriggering" | "loop" | "boundariesPadding" | "gpuAcceleration" | "offset" | "popperOptions" | "strategy" | "arrowOffset" | "showArrow" | "role" | "content" | "teleported" | "showAfter" | "hideAfter" | "autoClose" | "trigger" | "triggerKeys" | "onOpen" | "popperRef" | "contentRef" | "isFocusInsideContent" | "updatePopper" | "hide"> & import('vue').ShallowUnwrapRef<{
|
|
283
|
-
popperRef: Ref<import('element-plus').PopperInstance | undefined, import('element-plus').PopperInstance | undefined>;
|
|
284
|
-
contentRef: Ref<import('element-plus').TooltipContentInstance | undefined, import('element-plus').TooltipContentInstance | undefined>;
|
|
285
|
-
isFocusInsideContent: (event?: FocusEvent) => boolean | undefined;
|
|
286
|
-
updatePopper: () => void;
|
|
287
|
-
onOpen: (event?: Event, delay?: number) => void;
|
|
288
|
-
onClose: (event?: Event, delay?: number) => void;
|
|
289
|
-
hide: (event?: Event) => void;
|
|
290
|
-
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
291
|
-
$slots: {
|
|
292
|
-
default?: (props: {}) => any;
|
|
293
|
-
} & {
|
|
294
|
-
content?: (props: {}) => any;
|
|
295
|
-
};
|
|
296
|
-
}) | null;
|
|
297
|
-
}, HTMLDivElement>;
|
|
298
|
-
export default _default;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { TtIconProps } from '../index';
|
|
2
|
-
type __VLS_Props = Omit<TtIconProps, "icon">;
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
4
|
-
size: number;
|
|
5
|
-
isCustomSvg: boolean;
|
|
6
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
7
|
-
export default _default;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { TtIconProps } from '../index';
|
|
2
|
-
type __VLS_Props = Omit<TtIconProps, "icon">;
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
4
|
-
size: number;
|
|
5
|
-
isCustomSvg: boolean;
|
|
6
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
7
|
-
export default _default;
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { TtIconProps } from '.';
|
|
2
|
-
declare function __VLS_template(): {
|
|
3
|
-
attrs: Partial<{}>;
|
|
4
|
-
slots: Readonly<{
|
|
5
|
-
default?: () => any;
|
|
6
|
-
prefix?: () => any;
|
|
7
|
-
}> & {
|
|
8
|
-
default?: () => any;
|
|
9
|
-
prefix?: () => any;
|
|
10
|
-
};
|
|
11
|
-
refs: {};
|
|
12
|
-
rootEl: any;
|
|
13
|
-
};
|
|
14
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
-
declare const __VLS_component: import('vue').DefineComponent<TtIconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
|
-
click: () => any;
|
|
17
|
-
}, string, import('vue').PublicProps, Readonly<TtIconProps> & Readonly<{
|
|
18
|
-
onClick?: (() => any) | undefined;
|
|
19
|
-
}>, {
|
|
20
|
-
disabled: boolean;
|
|
21
|
-
size: number;
|
|
22
|
-
isSymbol: boolean;
|
|
23
|
-
isCustomSvg: boolean;
|
|
24
|
-
isImg: boolean;
|
|
25
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
26
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
27
|
-
export default _default;
|
|
28
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
29
|
-
new (): {
|
|
30
|
-
$slots: S;
|
|
31
|
-
};
|
|
32
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { LoadingProps } from './type';
|
|
2
|
-
declare const _default: import('vue').DefineComponent<LoadingProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<LoadingProps> & Readonly<{}>, {
|
|
3
|
-
visible: boolean;
|
|
4
|
-
zIndex: number;
|
|
5
|
-
svg: string;
|
|
6
|
-
text: string;
|
|
7
|
-
background: string;
|
|
8
|
-
fullscreen: boolean;
|
|
9
|
-
textColor: string;
|
|
10
|
-
spinnerColor: string;
|
|
11
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
12
|
-
export default _default;
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { TtLogProps } from './types';
|
|
2
|
-
declare const _default: import('vue').DefineComponent<TtLogProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<TtLogProps> & Readonly<{}>, {
|
|
3
|
-
tableProps: import('../tt-table').TtTableProps;
|
|
4
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
5
|
-
export default _default;
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import { Recordable } from '../../../../utils/src';
|
|
2
|
-
import { ModalFormType, TtModalFormProps } from './props';
|
|
3
|
-
import { TtFormProps, UseGroupFormOptions } from '../tt-form';
|
|
4
|
-
declare function __VLS_template(): {
|
|
5
|
-
attrs: Partial<{}>;
|
|
6
|
-
slots: Readonly<{
|
|
7
|
-
[key: string]: (props: any) => void;
|
|
8
|
-
BasicMsgTop: () => void;
|
|
9
|
-
insertFooter: () => void;
|
|
10
|
-
default: (props: any) => void;
|
|
11
|
-
}> & {
|
|
12
|
-
[key: string]: (props: any) => void;
|
|
13
|
-
BasicMsgTop: () => void;
|
|
14
|
-
insertFooter: () => void;
|
|
15
|
-
default: (props: any) => void;
|
|
16
|
-
};
|
|
17
|
-
refs: {};
|
|
18
|
-
rootEl: any;
|
|
19
|
-
};
|
|
20
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
21
|
-
declare const __VLS_component: import('vue').DefineComponent<Partial<TtModalFormProps<ModalFormType>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
22
|
-
submit: (data: Recordable) => any;
|
|
23
|
-
fetch: (data: Recordable) => any;
|
|
24
|
-
getinfo: (data: any) => any;
|
|
25
|
-
}, string, import('vue').PublicProps, Readonly<Partial<TtModalFormProps<ModalFormType>>> & Readonly<{
|
|
26
|
-
onSubmit?: ((data: Recordable) => any) | undefined;
|
|
27
|
-
onFetch?: ((data: Recordable) => any) | undefined;
|
|
28
|
-
onGetinfo?: ((data: any) => any) | undefined;
|
|
29
|
-
}>, {
|
|
30
|
-
renderType: ModalFormType;
|
|
31
|
-
dataField: string;
|
|
32
|
-
infoApiIdKey: string;
|
|
33
|
-
infoApiParams: globalThis.Recordable;
|
|
34
|
-
apiParams: globalThis.Recordable;
|
|
35
|
-
formProps: Partial<TtFormProps<Record<string, any>>> | Partial<UseGroupFormOptions<Record<string, any>>>;
|
|
36
|
-
isContinuousChecked: boolean;
|
|
37
|
-
checkedOptions: Record<string, any>;
|
|
38
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
39
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
40
|
-
export default _default;
|
|
41
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
42
|
-
new (): {
|
|
43
|
-
$slots: S;
|
|
44
|
-
};
|
|
45
|
-
};
|