@dt-frames/ui 2.0.1 → 2.0.3

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.
Files changed (220) hide show
  1. package/es/assets/data/icons/actions.d.ts +1 -0
  2. package/es/assets/data/icons/actions.ts +423 -0
  3. package/es/assets/data/icons/code.d.ts +1 -0
  4. package/es/assets/data/icons/code.ts +10 -0
  5. package/es/assets/data/icons/commuticate.d.ts +1 -0
  6. package/es/assets/data/icons/commuticate.ts +182 -0
  7. package/es/assets/data/icons/currency.d.ts +1 -0
  8. package/es/assets/data/icons/currency.ts +44 -0
  9. package/es/assets/data/icons/devices.d.ts +1 -0
  10. package/es/assets/data/icons/devices.ts +126 -0
  11. package/es/assets/data/icons/edit.d.ts +1 -0
  12. package/es/assets/data/icons/edit.ts +163 -0
  13. package/es/assets/data/icons/file.d.ts +1 -0
  14. package/es/assets/data/icons/file.ts +99 -0
  15. package/es/assets/data/icons/math.d.ts +1 -0
  16. package/es/assets/data/icons/math.ts +53 -0
  17. package/es/assets/data/icons/message.d.ts +1 -0
  18. package/es/assets/data/icons/message.ts +68 -0
  19. package/es/assets/data/icons/navigate.d.ts +1 -0
  20. package/es/assets/data/icons/navigate.ts +181 -0
  21. package/es/assets/data/icons/other.d.ts +1 -0
  22. package/es/assets/data/icons/other.ts +324 -0
  23. package/es/assets/data/index.d.ts +4 -0
  24. package/es/assets/data/index.ts +58 -0
  25. package/es/assets/icons/iconfont.css +7266 -0
  26. package/es/assets/icons/iconfont.eot +0 -0
  27. package/es/assets/icons/iconfont.svg +5445 -0
  28. package/es/assets/icons/iconfont.ttf +0 -0
  29. package/es/assets/icons/iconfont.woff +0 -0
  30. package/es/assets/icons/iconfont.woff2 +0 -0
  31. package/es/assets/imgs/header/avatar.png +0 -0
  32. package/es/assets/imgs/logo/logo.png +0 -0
  33. package/es/assets/imgs/table/empty.png +0 -0
  34. package/es/assets/locales/en.d.ts +101 -0
  35. package/es/assets/locales/en.ts +101 -0
  36. package/es/assets/locales/index.d.ts +2 -0
  37. package/es/assets/locales/index.ts +5 -0
  38. package/es/assets/locales/zh.d.ts +103 -0
  39. package/es/assets/locales/zh.ts +103 -0
  40. package/es/components/container/index.d.ts +94 -0
  41. package/es/components/container/index.js +290 -0
  42. package/es/components/container/index.less +64 -0
  43. package/es/components/container/src/components/bar.d.ts +14 -0
  44. package/es/components/container/src/components/scroll-bar.d.ts +70 -0
  45. package/es/components/container/src/hooks/scroll.d.ts +10 -0
  46. package/es/components/container/src/scroll-container.d.ts +76 -0
  47. package/es/components/container/src/slot-container.d.ts +20 -0
  48. package/es/components/container/src/types/scroll.type.d.ts +22 -0
  49. package/es/components/container/src/utils/scroll.d.ts +5 -0
  50. package/es/components/curd/index.d.ts +2 -0
  51. package/es/components/curd/index.js +3120 -0
  52. package/es/components/curd/src/components/Curd.d.ts +1246 -0
  53. package/es/components/curd/src/hooks/useCurd.d.ts +112 -0
  54. package/es/components/curd/src/props.d.ts +187 -0
  55. package/es/components/curd/src/types/curd.type.d.ts +19 -0
  56. package/es/components/drawer/index.d.ts +8039 -0
  57. package/es/components/drawer/index.js +838 -0
  58. package/es/components/drawer/index.less +10 -0
  59. package/es/components/drawer/src/components/DrawerFooter.d.ts +139 -0
  60. package/es/components/drawer/src/components/DrawerHeader.d.ts +11 -0
  61. package/es/components/drawer/src/hooks/useDrawer.d.ts +3 -0
  62. package/es/components/drawer/src/index.d.ts +8041 -0
  63. package/es/components/drawer/src/props.d.ts +64 -0
  64. package/es/components/drawer/src/types/index.type.d.ts +48 -0
  65. package/es/components/form/index.d.ts +3219 -0
  66. package/es/components/form/index.js +1896 -0
  67. package/es/components/form/index.less +141 -0
  68. package/es/components/form/src/components/FormButtons.d.ts +88 -0
  69. package/es/components/form/src/components/FormItem.d.ts +165 -0
  70. package/es/components/form/src/components/componentMap.d.ts +4 -0
  71. package/es/components/form/src/components/formIcon.d.ts +1231 -0
  72. package/es/components/form/src/components/formInputUseDialog.d.ts +911 -0
  73. package/es/components/form/src/components/index.d.ts +4 -0
  74. package/es/components/form/src/components/radioButton.d.ts +34 -0
  75. package/es/components/form/src/enums/index.d.ts +7 -0
  76. package/es/components/form/src/hooks/helper.d.ts +14 -0
  77. package/es/components/form/src/hooks/useForm.d.ts +6 -0
  78. package/es/components/form/src/hooks/useFormActions.d.ts +12 -0
  79. package/es/components/form/src/hooks/useFormEvent.d.ts +25 -0
  80. package/es/components/form/src/hooks/useFormValue.d.ts +3 -0
  81. package/es/components/form/src/hooks/useFormValues.d.ts +11 -0
  82. package/es/components/form/src/hooks/useLabelWidth.d.ts +22 -0
  83. package/es/components/form/src/index.d.ts +2965 -0
  84. package/es/components/form/src/props.d.ts +133 -0
  85. package/es/components/form/src/types/actions.type.d.ts +15 -0
  86. package/es/components/form/src/types/form.type.d.ts +70 -0
  87. package/es/components/icons/index.d.ts +497 -0
  88. package/es/components/icons/index.js +1969 -0
  89. package/es/components/icons/index.less +42 -0
  90. package/es/components/icons/src/pick-icon.d.ts +455 -0
  91. package/es/components/icons/src/svg-icon.d.ts +44 -0
  92. package/es/components/modal/index.d.ts +3 -0
  93. package/es/components/modal/index.js +1193 -0
  94. package/es/components/modal/index.less +54 -0
  95. package/es/components/modal/src/components/CloseIcon.d.ts +40 -0
  96. package/es/components/modal/src/components/Modal.d.ts +108 -0
  97. package/es/components/modal/src/components/ModalFooter.d.ts +139 -0
  98. package/es/components/modal/src/components/ModalWrap.d.ts +153 -0
  99. package/es/components/modal/src/hooks/useDrag.d.ts +7 -0
  100. package/es/components/modal/src/hooks/useFullScreen.d.ts +6 -0
  101. package/es/components/modal/src/hooks/useModal.d.ts +5 -0
  102. package/es/components/modal/src/index.d.ts +774 -0
  103. package/es/components/modal/src/props.d.ts +100 -0
  104. package/es/components/modal/src/types/modal.type.d.ts +17 -0
  105. package/es/components/source/hooks/useDownload.d.ts +8 -0
  106. package/es/components/source/hooks/useSource.d.ts +40 -0
  107. package/es/components/source/index.d.ts +2 -0
  108. package/es/components/source/index.js +332 -0
  109. package/es/components/source/types/source.type.d.ts +37 -0
  110. package/es/components/source/utils/index.d.ts +8 -0
  111. package/es/components/table/index.d.ts +3 -0
  112. package/es/components/table/index.js +3983 -0
  113. package/es/components/table/index.less +192 -0
  114. package/es/components/table/src/components/TableAction.d.ts +70 -0
  115. package/es/components/table/src/components/TableHeader.d.ts +1136 -0
  116. package/es/components/table/src/components/TableRender.d.ts +17 -0
  117. package/es/components/table/src/components/editTable/CellComponent.d.ts +22 -0
  118. package/es/components/table/src/components/editTable/EditTableCell.d.ts +93 -0
  119. package/es/components/table/src/components/editTable/componentMap.d.ts +4 -0
  120. package/es/components/table/src/components/editTable/index.d.ts +9 -0
  121. package/es/components/table/src/components/editTable/props.d.ts +27 -0
  122. package/es/components/table/src/components/tableSetting/Column.d.ts +69 -0
  123. package/es/components/table/src/components/tableSetting/Download.d.ts +922 -0
  124. package/es/components/table/src/components/tableSetting/DownloadCtrl.d.ts +888 -0
  125. package/es/components/table/src/components/tableSetting/Fullscreen.d.ts +22 -0
  126. package/es/components/table/src/components/tableSetting/index.d.ts +1030 -0
  127. package/es/components/table/src/hooks/useColumns.d.ts +14 -0
  128. package/es/components/table/src/hooks/useCustomRow.d.ts +20 -0
  129. package/es/components/table/src/hooks/useDataSource.d.ts +15 -0
  130. package/es/components/table/src/hooks/useHeader.d.ts +8 -0
  131. package/es/components/table/src/hooks/useHeaderCode.d.ts +3 -0
  132. package/es/components/table/src/hooks/useLoading.d.ts +6 -0
  133. package/es/components/table/src/hooks/usePagination.d.ts +7 -0
  134. package/es/components/table/src/hooks/useRow.d.ts +5 -0
  135. package/es/components/table/src/hooks/useRowSelection.d.ts +12 -0
  136. package/es/components/table/src/hooks/useTable.d.ts +9 -0
  137. package/es/components/table/src/hooks/useTableInstance.d.ts +16 -0
  138. package/es/components/table/src/hooks/useTableScroll.d.ts +13 -0
  139. package/es/components/table/src/index.d.ts +644 -0
  140. package/es/components/table/src/props.d.ts +185 -0
  141. package/es/components/table/src/types/actions.type.d.ts +21 -0
  142. package/es/components/table/src/types/header.type.d.ts +23 -0
  143. package/es/components/table/src/types/table.type.d.ts +98 -0
  144. package/es/directives/icon.d.ts +2 -0
  145. package/es/directives/index.d.ts +7 -0
  146. package/es/directives/index.js +2015 -0
  147. package/es/directives/permission.d.ts +2 -0
  148. package/es/global.d.ts +7 -0
  149. package/es/index.d.ts +1 -0
  150. package/es/index.js +4 -0
  151. package/es/theme/index.d.ts +10 -0
  152. package/es/theme/index.js +3255 -0
  153. package/es/theme/index.less +603 -0
  154. package/es/theme/src/components/content/index.d.ts +27 -0
  155. package/es/theme/src/components/feature/back-top.d.ts +5 -0
  156. package/es/theme/src/components/feature/index.d.ts +7 -0
  157. package/es/theme/src/components/footer/index.d.ts +31 -0
  158. package/es/theme/src/components/header/components/bread-crumb.d.ts +6 -0
  159. package/es/theme/src/components/header/components/fullscreen.d.ts +5 -0
  160. package/es/theme/src/components/header/components/index.d.ts +11 -0
  161. package/es/theme/src/components/header/components/lang-picker.d.ts +23 -0
  162. package/es/theme/src/components/header/components/logo.d.ts +35 -0
  163. package/es/theme/src/components/header/components/menu-filter.d.ts +22 -0
  164. package/es/theme/src/components/header/components/notify.d.ts +24 -0
  165. package/es/theme/src/components/header/components/setting-theme.d.ts +223 -0
  166. package/es/theme/src/components/header/components/size.d.ts +282 -0
  167. package/es/theme/src/components/header/components/theme-drawer/feature.d.ts +138 -0
  168. package/es/theme/src/components/header/components/theme-drawer/index.d.ts +3 -0
  169. package/es/theme/src/components/header/components/theme-drawer/menu-type.d.ts +16 -0
  170. package/es/theme/src/components/header/components/theme-drawer/select.d.ts +58 -0
  171. package/es/theme/src/components/header/components/theme-drawer/switch.d.ts +49 -0
  172. package/es/theme/src/components/header/components/trigger.d.ts +10 -0
  173. package/es/theme/src/components/header/components/user-info.d.ts +37 -0
  174. package/es/theme/src/components/header/helper/change-theme.d.ts +13 -0
  175. package/es/theme/src/components/header/helper/menu-tree.d.ts +3 -0
  176. package/es/theme/src/components/header/index.d.ts +699 -0
  177. package/es/theme/src/components/header/multiple-header.d.ts +785 -0
  178. package/es/theme/src/components/sider/components/basic-menu/basic-menu-item.d.ts +62 -0
  179. package/es/theme/src/components/sider/components/basic-menu/basic-menu.d.ts +207 -0
  180. package/es/theme/src/components/sider/components/basic-menu/basic-sub-menu-item.d.ts +127 -0
  181. package/es/theme/src/components/sider/components/basic-menu/menu-item-content.d.ts +26 -0
  182. package/es/theme/src/components/sider/components/drag-bar.d.ts +14 -0
  183. package/es/theme/src/components/sider/components/layout-menu.d.ts +22 -0
  184. package/es/theme/src/components/sider/components/props.d.ts +69 -0
  185. package/es/theme/src/components/sider/components/sider-trigger.d.ts +18 -0
  186. package/es/theme/src/components/sider/helper/sider.d.ts +12 -0
  187. package/es/theme/src/components/sider/helper/split-menu.d.ts +10 -0
  188. package/es/theme/src/components/sider/index.d.ts +70 -0
  189. package/es/theme/src/components/tabs/components/TabContent.d.ts +6 -0
  190. package/es/theme/src/components/tabs/components/TabRedo.d.ts +21 -0
  191. package/es/theme/src/components/tabs/components/index.d.ts +3 -0
  192. package/es/theme/src/components/tabs/hooks/useMultifyTabs.d.ts +7 -0
  193. package/es/theme/src/components/tabs/hooks/useTabDropdown.d.ts +6 -0
  194. package/es/theme/src/components/tabs/index.d.ts +63 -0
  195. package/es/theme/src/components/tabs/types/tabs.type.d.ts +7 -0
  196. package/es/theme/src/enums/index.d.ts +1 -0
  197. package/es/theme/src/enums/theme.enum.d.ts +33 -0
  198. package/es/theme/src/hooks/index.d.ts +6 -0
  199. package/es/theme/src/hooks/useDragLine.d.ts +2 -0
  200. package/es/theme/src/hooks/useHeader.d.ts +25 -0
  201. package/es/theme/src/hooks/useMenu.d.ts +27 -0
  202. package/es/theme/src/hooks/useMultifyTab.d.ts +7 -0
  203. package/es/theme/src/hooks/useOpenKeys.d.ts +7 -0
  204. package/es/theme/src/hooks/useTheme.d.ts +9 -0
  205. package/es/theme/src/index.d.ts +1643 -0
  206. package/es/theme/src/setting/theme.setting.d.ts +2 -0
  207. package/es/theme/src/stores/index.d.ts +3 -0
  208. package/es/theme/src/stores/routeReuse.store.d.ts +23 -0
  209. package/es/theme/src/stores/theme.store.d.ts +15 -0
  210. package/es/theme/src/types/index.d.ts +3 -0
  211. package/es/theme/src/types/menu.type.d.ts +15 -0
  212. package/es/theme/src/types/theme.type.d.ts +60 -0
  213. package/es/utils/withInstall.d.ts +4 -0
  214. package/index.d.ts +10 -0
  215. package/index.js +34 -0
  216. package/package.json +3 -6
  217. package/tailwind.config.cjs +11 -0
  218. package/tsconfig.json +41 -0
  219. package/tsconfig.node.json +9 -0
  220. package/vite.config.ts +51 -0
@@ -0,0 +1,922 @@
1
+ import { getPopupContainer } from '@dt-frames/core';
2
+ declare const _sfc_main: import("vue").DefineComponent<{
3
+ onlyBackDowonload: BooleanConstructor;
4
+ onlyFrontDownload: BooleanConstructor;
5
+ }, {
6
+ table: Omit<import("../../types/actions.type").TableActionType & {
7
+ tableElRef: import("vue").Ref<HTMLElement>;
8
+ getBind: import("vue").ComputedRef<import("@dt-frames/core").Recordable<any>>;
9
+ getProps: import("vue").ComputedRef<import("@dt-frames/core").Recordable<any>>;
10
+ }, "getBind"> & {
11
+ getBind: import("vue").ComputedRef<import("../../types/table.type").BasicTableProps>;
12
+ getProps: import("vue").ComputedRef<import("@dt-frames/core").Recordable<any>>;
13
+ };
14
+ registerDialog: import("../../../../modal/src/types/modal.type").RegisterFn;
15
+ openModal: <T = any, U = any>(params?: T, afterClose?: (res: U) => void) => void;
16
+ t: {
17
+ (key: string): string;
18
+ (key: string, locale: string): string;
19
+ (key: string, locale: string, list: unknown[]): string;
20
+ (key: string, locale: string, named: Record<string, unknown>): string;
21
+ (key: string, list: unknown[]): string;
22
+ (key: string, named: Record<string, unknown>): string;
23
+ };
24
+ handleTitleClick: ({ key }: {
25
+ key: any;
26
+ }) => void;
27
+ readonly getPopupContainer: typeof getPopupContainer;
28
+ DownloadCtrl: import("vue").DefineComponent<{}, {
29
+ t: {
30
+ (key: string): string;
31
+ (key: string, locale: string): string;
32
+ (key: string, locale: string, list: unknown[]): string;
33
+ (key: string, locale: string, named: Record<string, unknown>): string;
34
+ (key: string, list: unknown[]): string;
35
+ (key: string, named: Record<string, unknown>): string;
36
+ };
37
+ message: import("ant-design-vue/es/message").MessageApi;
38
+ state: {
39
+ indeterminate: boolean;
40
+ checkAll: boolean;
41
+ };
42
+ modalData: import("vue").Ref<any[]>;
43
+ onCheckAllChange: (e: any) => void;
44
+ registerDialog: import("../../../../modal/src/types/modal.type").RegisterFn;
45
+ closeModal: <T_1 = any>(res?: T_1) => void;
46
+ save: () => void;
47
+ readonly DtModal: import("vue").DefineComponent<{
48
+ t: {
49
+ type: StringConstructor;
50
+ };
51
+ visible: {
52
+ type: BooleanConstructor;
53
+ };
54
+ closable: {
55
+ type: BooleanConstructor;
56
+ default: boolean;
57
+ };
58
+ destroyOnClose: {
59
+ type: BooleanConstructor;
60
+ };
61
+ scrollTop: {
62
+ type: BooleanConstructor;
63
+ default: boolean;
64
+ };
65
+ height: {
66
+ type: NumberConstructor;
67
+ };
68
+ minHeight: {
69
+ type: NumberConstructor;
70
+ };
71
+ width: {
72
+ type: import("vue").PropType<String | Number>;
73
+ };
74
+ draggable: {
75
+ type: BooleanConstructor;
76
+ default: boolean;
77
+ };
78
+ defaultFullscreen: {
79
+ type: BooleanConstructor;
80
+ };
81
+ canFullscreen: {
82
+ type: BooleanConstructor;
83
+ default: boolean;
84
+ };
85
+ title: {
86
+ type: import("vue").PropType<String | import("vue").ComputedRef<String>>;
87
+ };
88
+ loading: {
89
+ type: BooleanConstructor;
90
+ default: boolean;
91
+ };
92
+ loadingTip: {
93
+ type: StringConstructor;
94
+ default: string;
95
+ };
96
+ useWrapper: {
97
+ type: BooleanConstructor;
98
+ default: boolean;
99
+ };
100
+ wrapClassName: {
101
+ type: StringConstructor;
102
+ };
103
+ zIndex: {
104
+ type: NumberConstructor;
105
+ };
106
+ centered: {
107
+ type: BooleanConstructor;
108
+ };
109
+ showOkBtn: {
110
+ type: BooleanConstructor;
111
+ default: boolean;
112
+ };
113
+ showCancelBtn: {
114
+ type: BooleanConstructor;
115
+ default: boolean;
116
+ };
117
+ okText: {
118
+ type: StringConstructor;
119
+ };
120
+ cancelText: {
121
+ type: StringConstructor;
122
+ };
123
+ mask: {
124
+ type: BooleanConstructor;
125
+ default: boolean;
126
+ };
127
+ maskClosable: {
128
+ type: BooleanConstructor;
129
+ default: boolean;
130
+ };
131
+ keyboard: {
132
+ type: BooleanConstructor;
133
+ default: boolean;
134
+ };
135
+ maskStyle: import("vue").PropType<import("vue").CSSProperties>;
136
+ footer: {
137
+ type: import("vue").PropType<import("../../../../form/src/types/form.type").ButtonProps[]>;
138
+ };
139
+ bodyStyle: import("vue").PropType<import("vue").CSSProperties>;
140
+ wrapperProps: ObjectConstructor;
141
+ getContainer: import("vue").PropType<() => any>;
142
+ closeFunc: import("vue").PropType<() => Promise<boolean>>;
143
+ afterClose: FunctionConstructor;
144
+ }, {
145
+ props: any;
146
+ emits: (event: "visible-change" | "height-change" | "cancel" | "save" | "register" | "update:visible", ...args: any[]) => void;
147
+ visibleRef: import("vue").Ref<boolean>;
148
+ propsRef: import("vue").Ref<Partial<import("vue").ExtractPropTypes<{
149
+ t: {
150
+ type: StringConstructor;
151
+ };
152
+ visible: {
153
+ type: BooleanConstructor;
154
+ };
155
+ closable: {
156
+ type: BooleanConstructor;
157
+ default: boolean;
158
+ };
159
+ destroyOnClose: {
160
+ type: BooleanConstructor;
161
+ };
162
+ scrollTop: {
163
+ type: BooleanConstructor;
164
+ default: boolean;
165
+ };
166
+ height: {
167
+ type: NumberConstructor;
168
+ };
169
+ minHeight: {
170
+ type: NumberConstructor;
171
+ };
172
+ width: {
173
+ type: import("vue").PropType<String | Number>;
174
+ };
175
+ draggable: {
176
+ type: BooleanConstructor;
177
+ default: boolean;
178
+ };
179
+ defaultFullscreen: {
180
+ type: BooleanConstructor;
181
+ };
182
+ canFullscreen: {
183
+ type: BooleanConstructor;
184
+ default: boolean;
185
+ };
186
+ title: {
187
+ type: import("vue").PropType<String | import("vue").ComputedRef<String>>;
188
+ };
189
+ loading: {
190
+ type: BooleanConstructor;
191
+ default: boolean;
192
+ };
193
+ loadingTip: {
194
+ type: StringConstructor;
195
+ default: string;
196
+ };
197
+ useWrapper: {
198
+ type: BooleanConstructor;
199
+ default: boolean;
200
+ };
201
+ wrapClassName: {
202
+ type: StringConstructor;
203
+ };
204
+ zIndex: {
205
+ type: NumberConstructor;
206
+ };
207
+ centered: {
208
+ type: BooleanConstructor;
209
+ };
210
+ showOkBtn: {
211
+ type: BooleanConstructor;
212
+ default: boolean;
213
+ };
214
+ showCancelBtn: {
215
+ type: BooleanConstructor;
216
+ default: boolean;
217
+ };
218
+ okText: {
219
+ type: StringConstructor;
220
+ };
221
+ cancelText: {
222
+ type: StringConstructor;
223
+ };
224
+ mask: {
225
+ type: BooleanConstructor;
226
+ default: boolean;
227
+ };
228
+ maskClosable: {
229
+ type: BooleanConstructor;
230
+ default: boolean;
231
+ };
232
+ keyboard: {
233
+ type: BooleanConstructor;
234
+ default: boolean;
235
+ };
236
+ maskStyle: import("vue").PropType<import("vue").CSSProperties>;
237
+ footer: {
238
+ type: import("vue").PropType<import("../../../../form/src/types/form.type").ButtonProps[]>;
239
+ };
240
+ bodyStyle: import("vue").PropType<import("vue").CSSProperties>;
241
+ wrapperProps: ObjectConstructor;
242
+ getContainer: import("vue").PropType<() => any>;
243
+ closeFunc: import("vue").PropType<() => Promise<boolean>>;
244
+ afterClose: FunctionConstructor;
245
+ }>>>;
246
+ modalWrapperRef: any;
247
+ getWrapClassName: import("vue").ComputedRef<string>;
248
+ toggleFullScreen: (e: Event) => void;
249
+ fullScreenRef: import("vue").Ref<boolean>;
250
+ getMergeProps: import("vue").ComputedRef<any>;
251
+ getBindValue: import("vue").ComputedRef<any>;
252
+ getWrapperHeight: import("vue").ComputedRef<any>;
253
+ modalFooterHeight: import("vue").ComputedRef<number>;
254
+ modalMethods: import("../../../../modal/src/types/modal.type").ModalMethods;
255
+ instance: import("vue").ComponentInternalInstance;
256
+ handleHeightChange: (height: string) => void;
257
+ setModalProps: (props: Partial<import("vue").ExtractPropTypes<{
258
+ t: {
259
+ type: StringConstructor;
260
+ };
261
+ visible: {
262
+ type: BooleanConstructor;
263
+ };
264
+ closable: {
265
+ type: BooleanConstructor;
266
+ default: boolean;
267
+ };
268
+ destroyOnClose: {
269
+ type: BooleanConstructor;
270
+ };
271
+ scrollTop: {
272
+ type: BooleanConstructor;
273
+ default: boolean;
274
+ };
275
+ height: {
276
+ type: NumberConstructor;
277
+ };
278
+ minHeight: {
279
+ type: NumberConstructor;
280
+ };
281
+ width: {
282
+ type: import("vue").PropType<String | Number>;
283
+ };
284
+ draggable: {
285
+ type: BooleanConstructor;
286
+ default: boolean;
287
+ };
288
+ defaultFullscreen: {
289
+ type: BooleanConstructor;
290
+ };
291
+ canFullscreen: {
292
+ type: BooleanConstructor;
293
+ default: boolean;
294
+ };
295
+ title: {
296
+ type: import("vue").PropType<String | import("vue").ComputedRef<String>>;
297
+ };
298
+ loading: {
299
+ type: BooleanConstructor;
300
+ default: boolean;
301
+ };
302
+ loadingTip: {
303
+ type: StringConstructor;
304
+ default: string;
305
+ };
306
+ useWrapper: {
307
+ type: BooleanConstructor;
308
+ default: boolean;
309
+ };
310
+ wrapClassName: {
311
+ type: StringConstructor;
312
+ };
313
+ zIndex: {
314
+ type: NumberConstructor;
315
+ };
316
+ centered: {
317
+ type: BooleanConstructor;
318
+ };
319
+ showOkBtn: {
320
+ type: BooleanConstructor;
321
+ default: boolean;
322
+ };
323
+ showCancelBtn: {
324
+ type: BooleanConstructor;
325
+ default: boolean;
326
+ };
327
+ okText: {
328
+ type: StringConstructor;
329
+ };
330
+ cancelText: {
331
+ type: StringConstructor;
332
+ };
333
+ mask: {
334
+ type: BooleanConstructor;
335
+ default: boolean;
336
+ };
337
+ maskClosable: {
338
+ type: BooleanConstructor;
339
+ default: boolean;
340
+ };
341
+ keyboard: {
342
+ type: BooleanConstructor;
343
+ default: boolean;
344
+ };
345
+ maskStyle: import("vue").PropType<import("vue").CSSProperties>;
346
+ footer: {
347
+ type: import("vue").PropType<import("../../../../form/src/types/form.type").ButtonProps[]>;
348
+ };
349
+ bodyStyle: import("vue").PropType<import("vue").CSSProperties>;
350
+ wrapperProps: ObjectConstructor;
351
+ getContainer: import("vue").PropType<() => any>;
352
+ closeFunc: import("vue").PropType<() => Promise<boolean>>;
353
+ afterClose: FunctionConstructor;
354
+ }>>) => void;
355
+ handleSave: () => void;
356
+ handleCancel: (e?: Event) => Promise<void>;
357
+ readonly omit: any;
358
+ Modal: {
359
+ name: string;
360
+ inheritAttrs: boolean;
361
+ props: {
362
+ t: {
363
+ type: StringConstructor;
364
+ };
365
+ visible: {
366
+ type: BooleanConstructor;
367
+ };
368
+ closable: {
369
+ type: BooleanConstructor;
370
+ default: boolean;
371
+ };
372
+ destroyOnClose: {
373
+ type: BooleanConstructor;
374
+ };
375
+ scrollTop: {
376
+ type: BooleanConstructor;
377
+ default: boolean;
378
+ };
379
+ height: {
380
+ type: NumberConstructor;
381
+ };
382
+ minHeight: {
383
+ type: NumberConstructor;
384
+ };
385
+ width: {
386
+ type: import("vue").PropType<String | Number>;
387
+ };
388
+ draggable: {
389
+ type: BooleanConstructor;
390
+ default: boolean;
391
+ };
392
+ defaultFullscreen: {
393
+ type: BooleanConstructor;
394
+ };
395
+ canFullscreen: {
396
+ type: BooleanConstructor;
397
+ default: boolean;
398
+ };
399
+ title: {
400
+ type: import("vue").PropType<String | import("vue").ComputedRef<String>>;
401
+ };
402
+ loading: {
403
+ type: BooleanConstructor;
404
+ default: boolean;
405
+ };
406
+ loadingTip: {
407
+ type: StringConstructor;
408
+ default: string;
409
+ };
410
+ useWrapper: {
411
+ type: BooleanConstructor;
412
+ default: boolean;
413
+ };
414
+ wrapClassName: {
415
+ type: StringConstructor;
416
+ };
417
+ zIndex: {
418
+ type: NumberConstructor;
419
+ };
420
+ centered: {
421
+ type: BooleanConstructor;
422
+ };
423
+ showOkBtn: {
424
+ type: BooleanConstructor;
425
+ default: boolean;
426
+ };
427
+ showCancelBtn: {
428
+ type: BooleanConstructor;
429
+ default: boolean;
430
+ };
431
+ okText: {
432
+ type: StringConstructor;
433
+ };
434
+ cancelText: {
435
+ type: StringConstructor;
436
+ };
437
+ mask: {
438
+ type: BooleanConstructor;
439
+ default: boolean;
440
+ };
441
+ maskClosable: {
442
+ type: BooleanConstructor;
443
+ default: boolean;
444
+ };
445
+ keyboard: {
446
+ type: BooleanConstructor;
447
+ default: boolean;
448
+ };
449
+ maskStyle: import("vue").PropType<import("vue").CSSProperties>;
450
+ footer: {
451
+ type: import("vue").PropType<import("../../../../form/src/types/form.type").ButtonProps[]>;
452
+ };
453
+ bodyStyle: import("vue").PropType<import("vue").CSSProperties>;
454
+ wrapperProps: ObjectConstructor;
455
+ getContainer: import("vue").PropType<() => any>;
456
+ closeFunc: import("vue").PropType<() => Promise<boolean>>;
457
+ afterClose: FunctionConstructor;
458
+ };
459
+ emits: string[];
460
+ setup(props: any, { slots, emit }: {
461
+ slots: any;
462
+ emit: any;
463
+ }): () => JSX.Element;
464
+ };
465
+ CloseIcon: import("vue").DefineComponent<{
466
+ canFullscreen: {
467
+ type: BooleanConstructor;
468
+ default: boolean;
469
+ };
470
+ fullScreen: {
471
+ type: BooleanConstructor;
472
+ };
473
+ }, {
474
+ t: {
475
+ (key: string): string;
476
+ (key: string, locale: string): string;
477
+ (key: string, locale: string, list: unknown[]): string;
478
+ (key: string, locale: string, named: Record<string, unknown>): string;
479
+ (key: string, list: unknown[]): string;
480
+ (key: string, named: Record<string, unknown>): string;
481
+ };
482
+ props: any;
483
+ emit: (event: "cancel" | "fullscreen", ...args: any[]) => void;
484
+ getClass: import("vue").ComputedRef<(string | {
485
+ "dt-basic-modal-close--can-full": boolean;
486
+ })[]>;
487
+ handleCancel: (e: Event) => void;
488
+ handleFullScreen: (e: Event) => void;
489
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("cancel" | "fullscreen")[], "cancel" | "fullscreen", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
490
+ canFullscreen: {
491
+ type: BooleanConstructor;
492
+ default: boolean;
493
+ };
494
+ fullScreen: {
495
+ type: BooleanConstructor;
496
+ };
497
+ }>> & {
498
+ onCancel?: (...args: any[]) => any;
499
+ onFullscreen?: (...args: any[]) => any;
500
+ }, {
501
+ canFullscreen: boolean;
502
+ fullScreen: boolean;
503
+ }>;
504
+ ModalWrapper: import("vue").DefineComponent<{
505
+ useWrapper: {
506
+ type: BooleanConstructor;
507
+ default: boolean;
508
+ };
509
+ modalHeaderHeight: {
510
+ type: NumberConstructor;
511
+ default: number;
512
+ };
513
+ modalFooterHeight: {
514
+ type: NumberConstructor;
515
+ default: number;
516
+ };
517
+ minHeight: {
518
+ type: NumberConstructor;
519
+ default: number;
520
+ };
521
+ height: {
522
+ type: NumberConstructor;
523
+ };
524
+ visible: {
525
+ type: BooleanConstructor;
526
+ };
527
+ fullScreen: {
528
+ type: BooleanConstructor;
529
+ };
530
+ }, {
531
+ wrapperRef: any;
532
+ wrapRef: any;
533
+ realHeightRef: import("vue").Ref<number>;
534
+ minRealHeightRef: import("vue").Ref<number>;
535
+ realHeight: number;
536
+ props: any;
537
+ emits: (event: "height-change" | "ext-height", ...args: any[]) => void;
538
+ wrapStyle: import("vue").ComputedRef<{
539
+ [x: string]: string;
540
+ minHeight: string;
541
+ }>;
542
+ getModalDom: () => Promise<any>;
543
+ setModalHeight: () => Promise<void>;
544
+ readonly DtScrollContainer: import("../../../../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{}, {
545
+ scrollbarRef: any;
546
+ scrollTo: (to: number, duration?: number) => void;
547
+ getScrollWrap: () => any;
548
+ scrollBottom: () => void;
549
+ ScrollBar: import("vue").DefineComponent<{
550
+ wrapClass: {
551
+ type: (StringConstructor | ArrayConstructor)[];
552
+ default: string;
553
+ };
554
+ wrapStyle: ArrayConstructor;
555
+ viewClass: {
556
+ type: (StringConstructor | ArrayConstructor)[];
557
+ default: string;
558
+ };
559
+ viewStyle: {
560
+ type: (StringConstructor | ArrayConstructor)[];
561
+ default: string;
562
+ };
563
+ noresize: BooleanConstructor;
564
+ tag: {
565
+ type: StringConstructor;
566
+ default: string;
567
+ };
568
+ }, {
569
+ sizeWidth: import("vue").Ref<string>;
570
+ sizeHeight: import("vue").Ref<string>;
571
+ moveX: import("vue").Ref<number>;
572
+ moveY: import("vue").Ref<number>;
573
+ wrap: import("vue").Ref<any>;
574
+ resize: import("vue").Ref<any>;
575
+ props: any;
576
+ style: import("vue").ComputedRef<{}>;
577
+ handleScroll: () => void;
578
+ update: () => void;
579
+ readonly Bar: import("vue").DefineComponent<{
580
+ vertical: BooleanConstructor;
581
+ size: StringConstructor;
582
+ move: NumberConstructor;
583
+ }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
584
+ [key: string]: any;
585
+ }>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
586
+ vertical: BooleanConstructor;
587
+ size: StringConstructor;
588
+ move: NumberConstructor;
589
+ }>>, {
590
+ vertical: boolean;
591
+ }>;
592
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
593
+ wrapClass: {
594
+ type: (StringConstructor | ArrayConstructor)[];
595
+ default: string;
596
+ };
597
+ wrapStyle: ArrayConstructor;
598
+ viewClass: {
599
+ type: (StringConstructor | ArrayConstructor)[];
600
+ default: string;
601
+ };
602
+ viewStyle: {
603
+ type: (StringConstructor | ArrayConstructor)[];
604
+ default: string;
605
+ };
606
+ noresize: BooleanConstructor;
607
+ tag: {
608
+ type: StringConstructor;
609
+ default: string;
610
+ };
611
+ }>>, {
612
+ wrapClass: string | unknown[];
613
+ viewClass: string | unknown[];
614
+ viewStyle: string | unknown[];
615
+ noresize: boolean;
616
+ tag: string;
617
+ }>;
618
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
619
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("height-change" | "ext-height")[], "height-change" | "ext-height", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
620
+ useWrapper: {
621
+ type: BooleanConstructor;
622
+ default: boolean;
623
+ };
624
+ modalHeaderHeight: {
625
+ type: NumberConstructor;
626
+ default: number;
627
+ };
628
+ modalFooterHeight: {
629
+ type: NumberConstructor;
630
+ default: number;
631
+ };
632
+ minHeight: {
633
+ type: NumberConstructor;
634
+ default: number;
635
+ };
636
+ height: {
637
+ type: NumberConstructor;
638
+ };
639
+ visible: {
640
+ type: BooleanConstructor;
641
+ };
642
+ fullScreen: {
643
+ type: BooleanConstructor;
644
+ };
645
+ }>> & {
646
+ "onHeight-change"?: (...args: any[]) => any;
647
+ "onExt-height"?: (...args: any[]) => any;
648
+ }, {
649
+ visible: boolean;
650
+ minHeight: number;
651
+ useWrapper: boolean;
652
+ fullScreen: boolean;
653
+ modalHeaderHeight: number;
654
+ modalFooterHeight: number;
655
+ }>;
656
+ ModalFooter: import("vue").DefineComponent<{
657
+ buttons: import("vue").PropType<import("../../../../form/src/types/form.type").ButtonProps[]>;
658
+ showSave: {
659
+ type: BooleanConstructor;
660
+ default: boolean;
661
+ };
662
+ showCancel: {
663
+ type: BooleanConstructor;
664
+ default: boolean;
665
+ };
666
+ okText: {
667
+ type: StringConstructor;
668
+ };
669
+ cancelText: {
670
+ type: StringConstructor;
671
+ };
672
+ }, {
673
+ t: {
674
+ (key: string): string;
675
+ (key: string, locale: string): string;
676
+ (key: string, locale: string, list: unknown[]): string;
677
+ (key: string, locale: string, named: Record<string, unknown>): string;
678
+ (key: string, list: unknown[]): string;
679
+ (key: string, named: Record<string, unknown>): string;
680
+ };
681
+ emits: (event: "handleSave" | "handleCancel", ...args: any[]) => void;
682
+ props: any;
683
+ buttonList: import("vue").ComputedRef<import("../../../../form/src/types/form.type").ButtonProps[]>;
684
+ handleMethod: (item: import("../../../../form/src/types/form.type").ButtonProps) => void;
685
+ DtFormButtons: import("vue").DefineComponent<{
686
+ mode: {
687
+ type: import("vue").PropType<"search" | "dialog">;
688
+ default: string;
689
+ };
690
+ show: {
691
+ type: BooleanConstructor;
692
+ default: boolean;
693
+ };
694
+ showAdvancedButton: {
695
+ type: BooleanConstructor;
696
+ default: boolean;
697
+ };
698
+ minShowColumn: {
699
+ type: NumberConstructor;
700
+ default: number;
701
+ };
702
+ buttonList: {
703
+ type: import("vue").PropType<import("../../../../form/src/types/form.type").ButtonProps[]>;
704
+ default: any[];
705
+ };
706
+ isAdvanced: {
707
+ type: BooleanConstructor;
708
+ default: boolean;
709
+ };
710
+ }, {
711
+ props: any;
712
+ emits: (event: "handle-method", ...args: any[]) => void;
713
+ t: {
714
+ (key: string): string;
715
+ (key: string, locale: string): string;
716
+ (key: string, locale: string, list: unknown[]): string;
717
+ (key: string, locale: string, named: Record<string, unknown>): string;
718
+ (key: string, list: unknown[]): string;
719
+ (key: string, named: Record<string, unknown>): string;
720
+ };
721
+ advancedRef: import("vue").Ref<{
722
+ valueOf: () => boolean;
723
+ }>;
724
+ key: number;
725
+ showAdvanceRef: import("vue").ComputedRef<boolean>;
726
+ colOpt: import("vue").ComputedRef<{
727
+ style: import("@dt-frames/core").Recordable<any>;
728
+ }>;
729
+ getAdvanceClass: import("vue").ComputedRef<(string | {
730
+ 'basic-arrow--active': boolean;
731
+ })[]>;
732
+ toggleAdvanced: () => void;
733
+ handleBtnClick: (button: import("../../../../form/src/types/form.type").ButtonProps) => void;
734
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "handle-method"[], "handle-method", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
735
+ mode: {
736
+ type: import("vue").PropType<"search" | "dialog">;
737
+ default: string;
738
+ };
739
+ show: {
740
+ type: BooleanConstructor;
741
+ default: boolean;
742
+ };
743
+ showAdvancedButton: {
744
+ type: BooleanConstructor;
745
+ default: boolean;
746
+ };
747
+ minShowColumn: {
748
+ type: NumberConstructor;
749
+ default: number;
750
+ };
751
+ buttonList: {
752
+ type: import("vue").PropType<import("../../../../form/src/types/form.type").ButtonProps[]>;
753
+ default: any[];
754
+ };
755
+ isAdvanced: {
756
+ type: BooleanConstructor;
757
+ default: boolean;
758
+ };
759
+ }>> & {
760
+ "onHandle-method"?: (...args: any[]) => any;
761
+ }, {
762
+ mode: "search" | "dialog";
763
+ show: boolean;
764
+ showAdvancedButton: boolean;
765
+ minShowColumn: number;
766
+ buttonList: import("../../../../form/src/types/form.type").ButtonProps[];
767
+ isAdvanced: boolean;
768
+ }>;
769
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("handleSave" | "handleCancel")[], "handleSave" | "handleCancel", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
770
+ buttons: import("vue").PropType<import("../../../../form/src/types/form.type").ButtonProps[]>;
771
+ showSave: {
772
+ type: BooleanConstructor;
773
+ default: boolean;
774
+ };
775
+ showCancel: {
776
+ type: BooleanConstructor;
777
+ default: boolean;
778
+ };
779
+ okText: {
780
+ type: StringConstructor;
781
+ };
782
+ cancelText: {
783
+ type: StringConstructor;
784
+ };
785
+ }>> & {
786
+ onHandleSave?: (...args: any[]) => any;
787
+ onHandleCancel?: (...args: any[]) => any;
788
+ }, {
789
+ showSave: boolean;
790
+ showCancel: boolean;
791
+ }>;
792
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("visible-change" | "height-change" | "cancel" | "save" | "register" | "update:visible")[], "visible-change" | "height-change" | "cancel" | "save" | "register" | "update:visible", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
793
+ t: {
794
+ type: StringConstructor;
795
+ };
796
+ visible: {
797
+ type: BooleanConstructor;
798
+ };
799
+ closable: {
800
+ type: BooleanConstructor;
801
+ default: boolean;
802
+ };
803
+ destroyOnClose: {
804
+ type: BooleanConstructor;
805
+ };
806
+ scrollTop: {
807
+ type: BooleanConstructor;
808
+ default: boolean;
809
+ };
810
+ height: {
811
+ type: NumberConstructor;
812
+ };
813
+ minHeight: {
814
+ type: NumberConstructor;
815
+ };
816
+ width: {
817
+ type: import("vue").PropType<String | Number>;
818
+ };
819
+ draggable: {
820
+ type: BooleanConstructor;
821
+ default: boolean;
822
+ };
823
+ defaultFullscreen: {
824
+ type: BooleanConstructor;
825
+ };
826
+ canFullscreen: {
827
+ type: BooleanConstructor;
828
+ default: boolean;
829
+ };
830
+ title: {
831
+ type: import("vue").PropType<String | import("vue").ComputedRef<String>>;
832
+ };
833
+ loading: {
834
+ type: BooleanConstructor;
835
+ default: boolean;
836
+ };
837
+ loadingTip: {
838
+ type: StringConstructor;
839
+ default: string;
840
+ };
841
+ useWrapper: {
842
+ type: BooleanConstructor;
843
+ default: boolean;
844
+ };
845
+ wrapClassName: {
846
+ type: StringConstructor;
847
+ };
848
+ zIndex: {
849
+ type: NumberConstructor;
850
+ };
851
+ centered: {
852
+ type: BooleanConstructor;
853
+ };
854
+ showOkBtn: {
855
+ type: BooleanConstructor;
856
+ default: boolean;
857
+ };
858
+ showCancelBtn: {
859
+ type: BooleanConstructor;
860
+ default: boolean;
861
+ };
862
+ okText: {
863
+ type: StringConstructor;
864
+ };
865
+ cancelText: {
866
+ type: StringConstructor;
867
+ };
868
+ mask: {
869
+ type: BooleanConstructor;
870
+ default: boolean;
871
+ };
872
+ maskClosable: {
873
+ type: BooleanConstructor;
874
+ default: boolean;
875
+ };
876
+ keyboard: {
877
+ type: BooleanConstructor;
878
+ default: boolean;
879
+ };
880
+ maskStyle: import("vue").PropType<import("vue").CSSProperties>;
881
+ footer: {
882
+ type: import("vue").PropType<import("../../../../form/src/types/form.type").ButtonProps[]>;
883
+ };
884
+ bodyStyle: import("vue").PropType<import("vue").CSSProperties>;
885
+ wrapperProps: ObjectConstructor;
886
+ getContainer: import("vue").PropType<() => any>;
887
+ closeFunc: import("vue").PropType<() => Promise<boolean>>;
888
+ afterClose: FunctionConstructor;
889
+ }>> & {
890
+ "onVisible-change"?: (...args: any[]) => any;
891
+ "onHeight-change"?: (...args: any[]) => any;
892
+ onCancel?: (...args: any[]) => any;
893
+ onSave?: (...args: any[]) => any;
894
+ onRegister?: (...args: any[]) => any;
895
+ "onUpdate:visible"?: (...args: any[]) => any;
896
+ }, {
897
+ visible: boolean;
898
+ closable: boolean;
899
+ destroyOnClose: boolean;
900
+ scrollTop: boolean;
901
+ draggable: boolean;
902
+ defaultFullscreen: boolean;
903
+ canFullscreen: boolean;
904
+ loading: boolean;
905
+ loadingTip: string;
906
+ useWrapper: boolean;
907
+ centered: boolean;
908
+ showOkBtn: boolean;
909
+ showCancelBtn: boolean;
910
+ mask: boolean;
911
+ maskClosable: boolean;
912
+ keyboard: boolean;
913
+ }>;
914
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
915
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
916
+ onlyBackDowonload: BooleanConstructor;
917
+ onlyFrontDownload: BooleanConstructor;
918
+ }>>, {
919
+ onlyBackDowonload: boolean;
920
+ onlyFrontDownload: boolean;
921
+ }>;
922
+ export default _sfc_main;