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