@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,644 @@
1
+ import { TableProps as ATableProps } from "ant-design-vue/es/table";
2
+ import type { TableActionType } from './types/actions.type';
3
+ import type { BasicTableProps } from './types/table.type';
4
+ declare const _sfc_main: import("vue").DefineComponent<{
5
+ clickToSelectRow: {
6
+ type: BooleanConstructor;
7
+ default: boolean;
8
+ };
9
+ tableSetting: {
10
+ type: import("vue").PropType<boolean | import("./types/table.type").TableSetting>;
11
+ default: () => {};
12
+ };
13
+ striped: {
14
+ type: BooleanConstructor;
15
+ default: boolean;
16
+ };
17
+ canColDrag: {
18
+ type: BooleanConstructor;
19
+ default: boolean;
20
+ };
21
+ clearSelectOnPageChange: {
22
+ type: BooleanConstructor;
23
+ default: boolean;
24
+ };
25
+ resizable: {
26
+ type: BooleanConstructor;
27
+ default: boolean;
28
+ };
29
+ minWidth: {
30
+ type: NumberConstructor;
31
+ };
32
+ maxWidth: {
33
+ type: NumberConstructor;
34
+ };
35
+ virtual: {
36
+ type: BooleanConstructor;
37
+ default: boolean;
38
+ };
39
+ sortFn: {
40
+ type: FunctionConstructor;
41
+ default: (sortInfo: any) => import("@dt-frames/core").Recordable<any>;
42
+ };
43
+ defSort: {
44
+ type: import("vue").PropType<import("@dt-frames/core").Recordable<any>>;
45
+ default: any;
46
+ };
47
+ filterFn: {
48
+ type: import("vue").PropType<(data: Partial<import("@dt-frames/core").Recordable<string[]>>) => any>;
49
+ default: (data: Partial<import("@dt-frames/core").Recordable<string[]>>) => Partial<import("@dt-frames/core").Recordable<string[]>>;
50
+ };
51
+ rowKey: {
52
+ type: StringConstructor;
53
+ default: string;
54
+ };
55
+ columnCode: {
56
+ type: StringConstructor;
57
+ default: string;
58
+ };
59
+ columns: {
60
+ type: import("vue").PropType<import("./types/table.type").BasicColumn[]>;
61
+ default: () => any[];
62
+ };
63
+ slotsTemplate: {
64
+ type: import("vue").PropType<import("@dt-frames/core").Recordable<any>>;
65
+ default: () => {};
66
+ };
67
+ showIndexColumn: {
68
+ type: BooleanConstructor;
69
+ default: boolean;
70
+ };
71
+ showCheckboxColumn: {
72
+ type: BooleanConstructor;
73
+ default: boolean;
74
+ };
75
+ expandMethodIcon: {
76
+ type: BooleanConstructor;
77
+ default: boolean;
78
+ };
79
+ ellipsis: {
80
+ type: BooleanConstructor;
81
+ default: boolean;
82
+ };
83
+ dataSource: {
84
+ type: import("vue").PropType<import("@dt-frames/core").Recordable<any>[]>;
85
+ default: any;
86
+ };
87
+ bordered: {
88
+ type: BooleanConstructor;
89
+ default: boolean;
90
+ };
91
+ canResize: {
92
+ type: BooleanConstructor;
93
+ default: boolean;
94
+ };
95
+ pagination: {
96
+ type: import("vue").PropType<Boolean | import("./types/table.type").PaginationProps>;
97
+ default: any;
98
+ };
99
+ loading: {
100
+ type: BooleanConstructor;
101
+ default: boolean;
102
+ };
103
+ rowClassName: {
104
+ type: import("vue").PropType<(record: any, index: number) => string>;
105
+ };
106
+ scroll: {
107
+ type: import("vue").PropType<{
108
+ x?: number | true;
109
+ y?: number;
110
+ }>;
111
+ default: {};
112
+ };
113
+ onTableChange: {
114
+ type: FunctionConstructor;
115
+ default: () => {};
116
+ };
117
+ onDownload: {
118
+ type: FunctionConstructor;
119
+ default: (excelData: import("./types/header.type").DownloadType) => {};
120
+ };
121
+ rowSelection: {
122
+ type: import("vue").PropType<import("ant-design-vue/lib/table/interface").TableRowSelection<any>>;
123
+ default: {
124
+ type: string;
125
+ fixed: boolean;
126
+ };
127
+ };
128
+ customRow: {
129
+ type: import("vue").PropType<(record: any, index: any) => void>;
130
+ default: () => {};
131
+ };
132
+ childrenColumnName: {
133
+ type: StringConstructor;
134
+ default: string;
135
+ };
136
+ indexColumnProps: {
137
+ type: import("vue").PropType<import("./types/table.type").BasicColumn[]>;
138
+ default: () => any[];
139
+ };
140
+ isTreeTable: {
141
+ type: BooleanConstructor;
142
+ default: boolean;
143
+ };
144
+ operations: {
145
+ type: import("vue").PropType<import("./types/table.type").TableRowAction | import("./types/table.type").ButtonType[]>;
146
+ };
147
+ toolbar: {
148
+ type: import("vue").PropType<import("./types/table.type").ButtonType[]>;
149
+ };
150
+ registerInstance: {
151
+ type: import("vue").PropType<(instance: TableActionType) => void>;
152
+ };
153
+ onAdd: {
154
+ type: import("vue").PropType<(params: import("@dt-frames/core").Recordable<any>) => void>;
155
+ default: (params: import("@dt-frames/core").Recordable<any>) => {};
156
+ };
157
+ onUpdate: {
158
+ type: import("vue").PropType<(params: {
159
+ row: import("@dt-frames/core").Recordable<any>;
160
+ index: number;
161
+ }) => void>;
162
+ default: (params: {
163
+ row: import("@dt-frames/core").Recordable<any>;
164
+ index: number;
165
+ }) => {};
166
+ };
167
+ onDelete: {
168
+ type: import("vue").PropType<(params: {
169
+ row: import("@dt-frames/core").Recordable<any>;
170
+ index: number;
171
+ }) => void>;
172
+ default: (params: {
173
+ row: import("@dt-frames/core").Recordable<any>;
174
+ index: number;
175
+ }) => {};
176
+ };
177
+ onDeletes: {
178
+ type: import("vue").PropType<(params: import("@dt-frames/core").Recordable<any>) => void>;
179
+ default: (params: import("@dt-frames/core").Recordable<any>) => {};
180
+ };
181
+ }, {
182
+ tableElRef: any;
183
+ attrs: {
184
+ [x: string]: unknown;
185
+ };
186
+ slots: Readonly<{
187
+ [name: string]: import("vue").Slot;
188
+ }>;
189
+ emits: (event: "register" | "selection-change" | "columns-change" | "row-click" | "row-dbClick" | "row-contextmenu" | "row-mouseenter" | "row-mouseleave" | "edit-change", ...args: any[]) => void;
190
+ props: any;
191
+ innerPropsRef: import("vue").Ref<BasicTableProps>;
192
+ getProps: import("vue").ComputedRef<{
193
+ components?: import("ant-design-vue/es/vc-table/interface").TableComponents<any>;
194
+ size?: import("ant-design-vue/es/button").ButtonSize;
195
+ title?: import("ant-design-vue/es/vc-table/interface").PanelRender<any>;
196
+ loading: (boolean | Partial<import("vue").ExtractPropTypes<{
197
+ prefixCls: StringConstructor;
198
+ spinning: {
199
+ type: BooleanConstructor;
200
+ default: any;
201
+ };
202
+ size: import("vue").PropType<import("ant-design-vue/es/spin/Spin").SpinSize>;
203
+ wrapperClassName: StringConstructor;
204
+ tip: import("vue-types").VueTypeValidableDef<any>;
205
+ delay: NumberConstructor;
206
+ indicator: import("vue-types").VueTypeValidableDef<any>;
207
+ }>>) & boolean;
208
+ footer?: import("ant-design-vue/es/vc-table/interface").PanelRender<any>;
209
+ id?: string;
210
+ locale?: import("ant-design-vue/es/table/interface").TableLocale;
211
+ prefixCls?: string;
212
+ onChange?: (pagination: import("ant-design-vue/es/table").TablePaginationConfig, filters: Record<string, import("ant-design-vue/es/table/interface").FilterValue>, sorter: import("ant-design-vue/es/table/interface").SorterResult<any> | import("ant-design-vue/es/table/interface").SorterResult<any>[], extra: import("ant-design-vue/es/table/interface").TableCurrentDataSource<any>) => void;
213
+ rowKey: string | (import("ant-design-vue/es/vc-table/interface").GetRowKey<any> & string);
214
+ dataSource: import("@dt-frames/core").Recordable<any>[];
215
+ bordered: boolean;
216
+ rowClassName: (record: any, index: number) => string;
217
+ scroll: {
218
+ x?: string | number | true;
219
+ y?: string | number;
220
+ } & {
221
+ scrollToFirstRowOnChange?: boolean;
222
+ };
223
+ rowSelection: import("ant-design-vue/es/table/interface").TableRowSelection<any> & {
224
+ type: string;
225
+ fixed: boolean;
226
+ };
227
+ customRow: import("ant-design-vue/es/vc-table/interface").GetComponentProps<any> & ((record: any, index: any) => void);
228
+ childrenColumnName: string;
229
+ tableLayout?: import("ant-design-vue/es/vc-table/interface").TableLayout;
230
+ showHeader?: boolean;
231
+ customHeaderRow?: import("ant-design-vue/es/vc-table/interface").GetComponentProps<import("ant-design-vue/es/vc-table/interface").ColumnType<any>[]>;
232
+ direction?: "ltr" | "rtl";
233
+ expandFixed?: boolean | "left" | "right";
234
+ expandColumnWidth?: number;
235
+ expandedRowKeys?: import("ant-design-vue/es/vc-table/interface").Key[];
236
+ defaultExpandedRowKeys?: import("ant-design-vue/es/vc-table/interface").Key[];
237
+ expandedRowRender?: import("ant-design-vue/es/vc-table/interface").ExpandedRowRender<any>;
238
+ expandRowByClick?: boolean;
239
+ expandIcon?: import("ant-design-vue/es/vc-table/interface").RenderExpandIcon<any>;
240
+ onExpand?: (expanded: boolean, record: any) => void;
241
+ onExpandedRowsChange?: (expandedKeys: import("ant-design-vue/es/vc-table/interface").Key[]) => void;
242
+ defaultExpandAllRows?: boolean;
243
+ indentSize?: number;
244
+ expandIconColumnIndex?: number;
245
+ showExpandColumn?: boolean;
246
+ expandedRowClassName?: import("ant-design-vue/es/vc-table/interface").RowClassName<any>;
247
+ rowExpandable?: (record: any) => boolean;
248
+ sticky?: boolean | import("ant-design-vue/es/vc-table/interface").TableSticky;
249
+ transformCellText?: import("ant-design-vue/es/vc-table/interface").TransformCellText<any>;
250
+ dropdownPrefixCls?: string;
251
+ getPopupContainer?: import("ant-design-vue/es/table/interface").GetPopupContainer;
252
+ sortDirections?: import("ant-design-vue/es/table/interface").SortOrder[];
253
+ showSorterTooltip?: boolean | Partial<import("vue").ExtractPropTypes<{
254
+ title: import("vue-types").VueTypeValidableDef<any>;
255
+ trigger: import("vue").PropType<import("ant-design-vue/es/tooltip/abstractTooltipProps").TriggerType | import("ant-design-vue/es/tooltip/abstractTooltipProps").TriggerType[]>;
256
+ visible: {
257
+ type: BooleanConstructor;
258
+ default: any;
259
+ };
260
+ defaultVisible: {
261
+ type: BooleanConstructor;
262
+ default: any;
263
+ };
264
+ placement: import("vue").PropType<import("ant-design-vue/es/tooltip").TooltipPlacement>;
265
+ color: StringConstructor;
266
+ transitionName: StringConstructor;
267
+ overlayStyle: {
268
+ type: import("vue").PropType<import("vue").CSSProperties>;
269
+ default: import("vue").CSSProperties;
270
+ };
271
+ overlayClassName: StringConstructor;
272
+ openClassName: StringConstructor;
273
+ prefixCls: StringConstructor;
274
+ mouseEnterDelay: NumberConstructor;
275
+ mouseLeaveDelay: NumberConstructor;
276
+ getPopupContainer: import("vue").PropType<(triggerNode: HTMLElement) => HTMLElement>;
277
+ arrowPointAtCenter: {
278
+ type: BooleanConstructor;
279
+ default: any;
280
+ };
281
+ autoAdjustOverflow: {
282
+ type: import("vue").PropType<boolean | import("ant-design-vue/es/tooltip").AdjustOverflow>;
283
+ default: boolean | import("ant-design-vue/es/tooltip").AdjustOverflow;
284
+ };
285
+ destroyTooltipOnHide: {
286
+ type: BooleanConstructor;
287
+ default: any;
288
+ };
289
+ align: {
290
+ type: import("vue").PropType<import("ant-design-vue/es/vc-trigger/interface").AlignType>;
291
+ default: import("ant-design-vue/es/vc-trigger/interface").AlignType;
292
+ };
293
+ builtinPlacements: {
294
+ type: import("vue").PropType<import("ant-design-vue/es/vc-trigger/interface").BuildInPlacements>;
295
+ default: import("ant-design-vue/es/vc-trigger/interface").BuildInPlacements;
296
+ };
297
+ children: ArrayConstructor;
298
+ onVisibleChange: import("vue").PropType<(vis: boolean) => void>;
299
+ 'onUpdate:visible': import("vue").PropType<(vis: boolean) => void>;
300
+ }>>;
301
+ clickToSelectRow: boolean;
302
+ tableSetting: {};
303
+ striped: boolean;
304
+ canColDrag: boolean;
305
+ clearSelectOnPageChange: boolean;
306
+ resizable: boolean;
307
+ virtual: boolean;
308
+ sortFn: Function;
309
+ filterFn: (data: Partial<import("@dt-frames/core").Recordable<string[]>>) => any;
310
+ columnCode: string;
311
+ columns: import("./types/table.type").BasicColumn[];
312
+ slotsTemplate: {};
313
+ showIndexColumn: boolean;
314
+ showCheckboxColumn: boolean;
315
+ expandMethodIcon: boolean;
316
+ ellipsis: boolean;
317
+ canResize: boolean;
318
+ onTableChange: Function;
319
+ onDownload: Function;
320
+ indexColumnProps: import("./types/table.type").BasicColumn[];
321
+ isTreeTable: boolean;
322
+ onAdd: (params: import("@dt-frames/core").Recordable<any>) => void;
323
+ onUpdate: (params: {
324
+ row: import("@dt-frames/core").Recordable<any>;
325
+ index: number;
326
+ }) => void;
327
+ onDelete: (params: {
328
+ row: import("@dt-frames/core").Recordable<any>;
329
+ index: number;
330
+ }) => void;
331
+ onDeletes: (params: import("@dt-frames/core").Recordable<any>) => void;
332
+ minWidth: number;
333
+ maxWidth: number;
334
+ defSort: any;
335
+ pagination: any;
336
+ operations: unknown;
337
+ toolbar: import("./types/table.type").ButtonType[];
338
+ registerInstance: (instance: TableActionType) => void;
339
+ onColumnsChange?: (data: import("./types/table.type").ColumnChangeParam[]) => void;
340
+ onRegister: (...args: any[]) => any;
341
+ "onSelection-change": (...args: any[]) => any;
342
+ "onColumns-change": (...args: any[]) => any;
343
+ "onRow-click": (...args: any[]) => any;
344
+ "onRow-dbClick": (...args: any[]) => any;
345
+ "onRow-contextmenu": (...args: any[]) => any;
346
+ "onRow-mouseenter": (...args: any[]) => any;
347
+ "onRow-mouseleave": (...args: any[]) => any;
348
+ "onEdit-change": (...args: any[]) => any;
349
+ }>;
350
+ getRowClassName: (record: any, index: number) => string;
351
+ tableCls: import("vue").ComputedRef<(string | {
352
+ 'dt-table-no-pagation': boolean;
353
+ })[]>;
354
+ getLoading: import("vue").Ref<boolean>;
355
+ setLoading: (loading: boolean) => void;
356
+ getPaginationInfo: import("vue").ComputedRef<boolean | import("./types/table.type").PaginationProps>;
357
+ setPagination: (info: Partial<import("./types/table.type").PaginationProps>) => void;
358
+ getPagination: () => boolean | import("./types/table.type").PaginationProps;
359
+ getViewColumns: import("vue").ComputedRef<import("./types/table.type").BasicColumn[]>;
360
+ getColumnsRef: import("vue").ComputedRef<import("./types/table.type").BasicColumn[]>;
361
+ getColumns: (opt?: import("./types/header.type").SetColumnsParams) => import("./types/table.type").BasicColumn[];
362
+ setColumns: (columnList?: string[] | Partial<import("./types/table.type").BasicColumn>[]) => void;
363
+ setColumnsByDataIndex: (dataIndex: string, value: Partial<import("./types/table.type").BasicColumn>) => void;
364
+ getCacheColumns: () => import("./types/table.type").BasicColumn[];
365
+ getRowSelectionRef: import("vue").ComputedRef<import("ant-design-vue/es/table/interface").TableRowSelection<any>>;
366
+ clearSelectedRowKeys: () => void;
367
+ getRowSelection: () => import("ant-design-vue/es/table/interface").TableRowSelection<any>;
368
+ getSelectRows: () => import("@dt-frames/core").Recordable<any>[];
369
+ getSelectedRowKeys: () => import("ant-design-vue/es/table/interface").Key[];
370
+ setSelectedRowKeys: (rowKeys: import("ant-design-vue/es/table/interface").Key[]) => void;
371
+ getScrollRef: import("vue").ComputedRef<{
372
+ x: string | number | true;
373
+ y: string | number;
374
+ scrollToFirstRowOnChange: boolean;
375
+ }>;
376
+ filterSource: import("vue").Ref<any[]>;
377
+ handlers: {
378
+ onColumnsChange: (data: {
379
+ dataIndex: string;
380
+ fixed: boolean | 'left' | 'right' | undefined;
381
+ visible: boolean;
382
+ }[]) => void;
383
+ };
384
+ getHeaderProps: import("vue").ComputedRef<import("@dt-frames/core").Recordable<any>>;
385
+ customRow: (record: import("@dt-frames/core").Recordable<any>, index: number) => {
386
+ onClick: (e: any) => void;
387
+ onDblclick: (event: Event) => void;
388
+ onContextmenu: (event: Event) => void;
389
+ onMouseenter: (event: Event) => void;
390
+ onMouseleave: (event: Event) => void;
391
+ };
392
+ handleTableChange: (pagination: import("./types/table.type").PaginationProps, filters: Partial<import("@dt-frames/core").Recordable<string[]>>, sorter: import("./types/table.type").SorterResult) => any;
393
+ findTableDataRecord: (rowKey: string | number) => any;
394
+ updateTableDataRecord: (rowKey: string | number, record: import("@dt-frames/core").Recordable<any>) => import("@dt-frames/core").Recordable<any>;
395
+ getBind: import("vue").ComputedRef<ATableProps<any>>;
396
+ setProps: (props: Partial<BasicTableProps>) => void;
397
+ tableAction: TableActionType;
398
+ TableRender: {
399
+ name: string;
400
+ props: {
401
+ column: import("vue").PropType<import("./types/table.type").BasicColumn>;
402
+ record: import("vue").PropType<import("@dt-frames/core").Recordable<any>>;
403
+ index: NumberConstructor;
404
+ };
405
+ setup(props: {
406
+ column: import("./types/table.type").BasicColumn;
407
+ record: import("@dt-frames/core").Recordable<any>;
408
+ index: Number;
409
+ }, {}: {}): () => JSX.Element;
410
+ };
411
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("register" | "selection-change" | "columns-change" | "row-click" | "row-dbClick" | "row-contextmenu" | "row-mouseenter" | "row-mouseleave" | "edit-change")[], "register" | "selection-change" | "columns-change" | "row-click" | "row-dbClick" | "row-contextmenu" | "row-mouseenter" | "row-mouseleave" | "edit-change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
412
+ clickToSelectRow: {
413
+ type: BooleanConstructor;
414
+ default: boolean;
415
+ };
416
+ tableSetting: {
417
+ type: import("vue").PropType<boolean | import("./types/table.type").TableSetting>;
418
+ default: () => {};
419
+ };
420
+ striped: {
421
+ type: BooleanConstructor;
422
+ default: boolean;
423
+ };
424
+ canColDrag: {
425
+ type: BooleanConstructor;
426
+ default: boolean;
427
+ };
428
+ clearSelectOnPageChange: {
429
+ type: BooleanConstructor;
430
+ default: boolean;
431
+ };
432
+ resizable: {
433
+ type: BooleanConstructor;
434
+ default: boolean;
435
+ };
436
+ minWidth: {
437
+ type: NumberConstructor;
438
+ };
439
+ maxWidth: {
440
+ type: NumberConstructor;
441
+ };
442
+ virtual: {
443
+ type: BooleanConstructor;
444
+ default: boolean;
445
+ };
446
+ sortFn: {
447
+ type: FunctionConstructor;
448
+ default: (sortInfo: any) => import("@dt-frames/core").Recordable<any>;
449
+ };
450
+ defSort: {
451
+ type: import("vue").PropType<import("@dt-frames/core").Recordable<any>>;
452
+ default: any;
453
+ };
454
+ filterFn: {
455
+ type: import("vue").PropType<(data: Partial<import("@dt-frames/core").Recordable<string[]>>) => any>;
456
+ default: (data: Partial<import("@dt-frames/core").Recordable<string[]>>) => Partial<import("@dt-frames/core").Recordable<string[]>>;
457
+ };
458
+ rowKey: {
459
+ type: StringConstructor;
460
+ default: string;
461
+ };
462
+ columnCode: {
463
+ type: StringConstructor;
464
+ default: string;
465
+ };
466
+ columns: {
467
+ type: import("vue").PropType<import("./types/table.type").BasicColumn[]>;
468
+ default: () => any[];
469
+ };
470
+ slotsTemplate: {
471
+ type: import("vue").PropType<import("@dt-frames/core").Recordable<any>>;
472
+ default: () => {};
473
+ };
474
+ showIndexColumn: {
475
+ type: BooleanConstructor;
476
+ default: boolean;
477
+ };
478
+ showCheckboxColumn: {
479
+ type: BooleanConstructor;
480
+ default: boolean;
481
+ };
482
+ expandMethodIcon: {
483
+ type: BooleanConstructor;
484
+ default: boolean;
485
+ };
486
+ ellipsis: {
487
+ type: BooleanConstructor;
488
+ default: boolean;
489
+ };
490
+ dataSource: {
491
+ type: import("vue").PropType<import("@dt-frames/core").Recordable<any>[]>;
492
+ default: any;
493
+ };
494
+ bordered: {
495
+ type: BooleanConstructor;
496
+ default: boolean;
497
+ };
498
+ canResize: {
499
+ type: BooleanConstructor;
500
+ default: boolean;
501
+ };
502
+ pagination: {
503
+ type: import("vue").PropType<Boolean | import("./types/table.type").PaginationProps>;
504
+ default: any;
505
+ };
506
+ loading: {
507
+ type: BooleanConstructor;
508
+ default: boolean;
509
+ };
510
+ rowClassName: {
511
+ type: import("vue").PropType<(record: any, index: number) => string>;
512
+ };
513
+ scroll: {
514
+ type: import("vue").PropType<{
515
+ x?: number | true;
516
+ y?: number;
517
+ }>;
518
+ default: {};
519
+ };
520
+ onTableChange: {
521
+ type: FunctionConstructor;
522
+ default: () => {};
523
+ };
524
+ onDownload: {
525
+ type: FunctionConstructor;
526
+ default: (excelData: import("./types/header.type").DownloadType) => {};
527
+ };
528
+ rowSelection: {
529
+ type: import("vue").PropType<import("ant-design-vue/lib/table/interface").TableRowSelection<any>>;
530
+ default: {
531
+ type: string;
532
+ fixed: boolean;
533
+ };
534
+ };
535
+ customRow: {
536
+ type: import("vue").PropType<(record: any, index: any) => void>;
537
+ default: () => {};
538
+ };
539
+ childrenColumnName: {
540
+ type: StringConstructor;
541
+ default: string;
542
+ };
543
+ indexColumnProps: {
544
+ type: import("vue").PropType<import("./types/table.type").BasicColumn[]>;
545
+ default: () => any[];
546
+ };
547
+ isTreeTable: {
548
+ type: BooleanConstructor;
549
+ default: boolean;
550
+ };
551
+ operations: {
552
+ type: import("vue").PropType<import("./types/table.type").TableRowAction | import("./types/table.type").ButtonType[]>;
553
+ };
554
+ toolbar: {
555
+ type: import("vue").PropType<import("./types/table.type").ButtonType[]>;
556
+ };
557
+ registerInstance: {
558
+ type: import("vue").PropType<(instance: TableActionType) => void>;
559
+ };
560
+ onAdd: {
561
+ type: import("vue").PropType<(params: import("@dt-frames/core").Recordable<any>) => void>;
562
+ default: (params: import("@dt-frames/core").Recordable<any>) => {};
563
+ };
564
+ onUpdate: {
565
+ type: import("vue").PropType<(params: {
566
+ row: import("@dt-frames/core").Recordable<any>;
567
+ index: number;
568
+ }) => void>;
569
+ default: (params: {
570
+ row: import("@dt-frames/core").Recordable<any>;
571
+ index: number;
572
+ }) => {};
573
+ };
574
+ onDelete: {
575
+ type: import("vue").PropType<(params: {
576
+ row: import("@dt-frames/core").Recordable<any>;
577
+ index: number;
578
+ }) => void>;
579
+ default: (params: {
580
+ row: import("@dt-frames/core").Recordable<any>;
581
+ index: number;
582
+ }) => {};
583
+ };
584
+ onDeletes: {
585
+ type: import("vue").PropType<(params: import("@dt-frames/core").Recordable<any>) => void>;
586
+ default: (params: import("@dt-frames/core").Recordable<any>) => {};
587
+ };
588
+ }>> & {
589
+ onRegister?: (...args: any[]) => any;
590
+ "onSelection-change"?: (...args: any[]) => any;
591
+ "onColumns-change"?: (...args: any[]) => any;
592
+ "onRow-click"?: (...args: any[]) => any;
593
+ "onRow-dbClick"?: (...args: any[]) => any;
594
+ "onRow-contextmenu"?: (...args: any[]) => any;
595
+ "onRow-mouseenter"?: (...args: any[]) => any;
596
+ "onRow-mouseleave"?: (...args: any[]) => any;
597
+ "onEdit-change"?: (...args: any[]) => any;
598
+ }, {
599
+ loading: boolean;
600
+ clickToSelectRow: boolean;
601
+ tableSetting: {};
602
+ striped: boolean;
603
+ canColDrag: boolean;
604
+ clearSelectOnPageChange: boolean;
605
+ resizable: boolean;
606
+ virtual: boolean;
607
+ sortFn: Function;
608
+ defSort: any;
609
+ filterFn: (data: Partial<import("@dt-frames/core").Recordable<string[]>>) => any;
610
+ rowKey: string;
611
+ columnCode: string;
612
+ columns: import("./types/table.type").BasicColumn[];
613
+ slotsTemplate: {};
614
+ showIndexColumn: boolean;
615
+ showCheckboxColumn: boolean;
616
+ expandMethodIcon: boolean;
617
+ ellipsis: boolean;
618
+ dataSource: import("@dt-frames/core").Recordable<any>[];
619
+ bordered: boolean;
620
+ canResize: boolean;
621
+ pagination: any;
622
+ scroll: {};
623
+ onTableChange: Function;
624
+ onDownload: Function;
625
+ rowSelection: {
626
+ type: string;
627
+ fixed: boolean;
628
+ };
629
+ customRow: (record: any, index: any) => void;
630
+ childrenColumnName: string;
631
+ indexColumnProps: import("./types/table.type").BasicColumn[];
632
+ isTreeTable: boolean;
633
+ onAdd: (params: import("@dt-frames/core").Recordable<any>) => void;
634
+ onUpdate: (params: {
635
+ row: import("@dt-frames/core").Recordable<any>;
636
+ index: number;
637
+ }) => void;
638
+ onDelete: (params: {
639
+ row: import("@dt-frames/core").Recordable<any>;
640
+ index: number;
641
+ }) => void;
642
+ onDeletes: (params: import("@dt-frames/core").Recordable<any>) => void;
643
+ }>;
644
+ export default _sfc_main;