@qqt-product/ui 0.0.13 → 0.0.15

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 (193) hide show
  1. package/dist/index.es.js +123349 -77525
  2. package/dist/index.umd.js +254 -15296
  3. package/dist/lib/components/audit-modal/index.d.ts +324 -0
  4. package/dist/lib/components/audit-modal/src/audit-modal-type.d.ts +65 -0
  5. package/dist/lib/components/audit-modal/src/audit-modal.vue.d.ts +320 -0
  6. package/dist/lib/components/audit-modal/src/component/addNodeHistoryModal.vue.d.ts +675 -0
  7. package/dist/lib/components/audit-modal/src/component/approvalOpinionModal.vue.d.ts +406 -0
  8. package/dist/lib/components/audit-modal/src/component/field-select-modal-types.d.ts +93 -0
  9. package/dist/lib/components/audit-modal/src/component/field-select-modal.vue.d.ts +163 -0
  10. package/dist/lib/components/audit-modal/src/component/use-field-select-modal.d.ts +6 -0
  11. package/dist/lib/components/audit-modal/src/hook/list-slot-hook.d.ts +16 -0
  12. package/dist/lib/components/audit-modal/src/hook/use-audit-config-hook.d.ts +6 -0
  13. package/dist/lib/components/audit-modal/src/hook/use-field-select-modal-hook.d.ts +9 -0
  14. package/dist/lib/components/breadcrumb/index.d.ts +1 -1
  15. package/dist/lib/components/breadcrumb/src/breadcrumb.vue.d.ts +1 -1
  16. package/dist/lib/components/card-list-layout/index.d.ts +8 -18
  17. package/dist/lib/components/card-list-layout/src/card-content.vue.d.ts +3 -3
  18. package/dist/lib/components/card-list-layout/src/cardItem.vue.d.ts +5 -5
  19. package/dist/lib/components/card-list-layout/src/index.vue.d.ts +8 -18
  20. package/dist/lib/components/card-list-layout/src/sidebar.vue.d.ts +1 -1
  21. package/dist/lib/components/cascader/index.d.ts +12 -10
  22. package/dist/lib/components/cascader/src/cascader.vue.d.ts +12 -10
  23. package/dist/lib/components/checkbox/index.d.ts +6 -6
  24. package/dist/lib/components/checkbox/src/checkbox.vue.d.ts +6 -6
  25. package/dist/lib/components/code-editor-model/src/code-editor-model.vue.d.ts +121 -0
  26. package/dist/lib/components/collapse-transition/index.d.ts +1 -1
  27. package/dist/lib/components/collapse-transition/src/collapse-transition.vue.d.ts +1 -1
  28. package/dist/lib/components/countdown/index.d.ts +122 -0
  29. package/dist/lib/components/countdown/src/countdown-types.d.ts +87 -0
  30. package/dist/lib/components/countdown/src/countdown.d.ts +118 -0
  31. package/dist/lib/components/countdown/src/use-countdown.d.ts +2 -0
  32. package/dist/lib/components/coutdown/index.d.ts +4 -14
  33. package/dist/lib/components/coutdown/src/coutdown.d.ts +0 -8
  34. package/dist/lib/components/coutdown/src/coutdown.vue.d.ts +4 -22
  35. package/dist/lib/components/currency/index.d.ts +2 -2
  36. package/dist/lib/components/currency/src/currency.vue.d.ts +2 -2
  37. package/dist/lib/components/detail-form/index.d.ts +27 -6
  38. package/dist/lib/components/detail-form/src/detail-form.vue.d.ts +27 -7
  39. package/dist/lib/components/detail-grid/index.d.ts +337 -288
  40. package/dist/lib/components/detail-grid/src/detail-grid.vue.d.ts +336 -288
  41. package/dist/lib/components/detail-grid/src/hook/use-grid-config-hook.d.ts +2 -2
  42. package/dist/lib/components/detail-page-layout/index.d.ts +21 -4
  43. package/dist/lib/components/detail-page-layout/src/detail-page-layout.vue.d.ts +20 -4
  44. package/dist/lib/components/edit-form/index.d.ts +31 -6
  45. package/dist/lib/components/edit-form/src/edit-form-types.d.ts +4 -0
  46. package/dist/lib/components/edit-form/src/edit-form.vue.d.ts +30 -6
  47. package/dist/lib/components/edit-form/src/hook/use-callback-hook.d.ts +7 -1
  48. package/dist/lib/components/edit-grid/index.d.ts +338 -289
  49. package/dist/lib/components/edit-grid/src/edit-grid-types.d.ts +2 -2
  50. package/dist/lib/components/edit-grid/src/edit-grid.vue.d.ts +337 -289
  51. package/dist/lib/components/edit-grid/src/hook/use-grid-config-hook.d.ts +4 -4
  52. package/dist/lib/components/edit-page-layout/index.d.ts +20 -4
  53. package/dist/lib/components/edit-page-layout/src/edit-page-layout-types.d.ts +151 -26
  54. package/dist/lib/components/edit-page-layout/src/edit-page-layout.vue.d.ts +20 -4
  55. package/dist/lib/components/edit-page-layout/src/types.d.ts +1 -1
  56. package/dist/lib/components/editor/index.d.ts +23 -9
  57. package/dist/lib/components/editor/src/index.vue.d.ts +23 -9
  58. package/dist/lib/components/field-select-modal/index.d.ts +29 -13
  59. package/dist/lib/components/field-select-modal/src/field-select-modal-types.d.ts +11 -4
  60. package/dist/lib/components/field-select-modal/src/field-select-modal.vue.d.ts +29 -13
  61. package/dist/lib/components/flow-view/index.d.ts +121 -0
  62. package/dist/lib/components/flow-view/src/flow-view-modal-types.d.ts +60 -0
  63. package/dist/lib/components/flow-view/src/flow-view.d.ts +118 -0
  64. package/dist/lib/components/flow-view/src/use-flow-view-modal.d.ts +2 -0
  65. package/dist/lib/components/import-modal/index.d.ts +90 -0
  66. package/dist/lib/components/import-modal/src/import-modal-types.d.ts +28 -0
  67. package/dist/lib/components/import-modal/src/import-modal.vue.d.ts +86 -0
  68. package/dist/lib/components/index.d.ts +11 -2
  69. package/dist/lib/components/item-wrap/index.d.ts +4 -4
  70. package/dist/lib/components/item-wrap/src/item-wrap.vue.d.ts +4 -4
  71. package/dist/lib/components/ladder-price/index.d.ts +58 -0
  72. package/dist/lib/components/ladder-price/src/LadderNotPriceModal.vue.d.ts +35 -0
  73. package/dist/lib/components/ladder-price/src/LadderPriceModal.vue.d.ts +38 -0
  74. package/dist/lib/components/ladder-price/src/ladder-not-price-modal-types.d.ts +16 -0
  75. package/dist/lib/components/ladder-price/src/ladder-price-modal-types.d.ts +15 -0
  76. package/dist/lib/components/ladder-price/src/ladder-price-types.d.ts +35 -0
  77. package/dist/lib/components/ladder-price/src/ladder-price.vue.d.ts +55 -0
  78. package/dist/lib/components/ladder-price/src/use-ladder-not-price-modal.d.ts +6 -0
  79. package/dist/lib/components/ladder-price/src/use-ladder-price.d.ts +6 -0
  80. package/dist/lib/components/layout/index.d.ts +2 -2
  81. package/dist/lib/components/layout/src/header/index.vue.d.ts +11 -11
  82. package/dist/lib/components/layout/src/header/navRight/customMessage.vue.d.ts +2 -2
  83. package/dist/lib/components/layout/src/header/navRight/customPerson.vue.d.ts +1 -1
  84. package/dist/lib/components/layout/src/header/navRight/index.vue.d.ts +9 -9
  85. package/dist/lib/components/layout/src/header/navRight/langSwitch.vue.d.ts +1 -1
  86. package/dist/lib/components/layout/src/header/navRight/rightTool.vue.d.ts +4 -4
  87. package/dist/lib/components/layout/src/header/navRight/settingDrawer.vue.d.ts +2 -2
  88. package/dist/lib/components/layout/src/index.vue.d.ts +2 -2
  89. package/dist/lib/components/layout/src/menu/deepCycleSubMenu.vue.d.ts +1 -1
  90. package/dist/lib/components/layout/src/menu/menu.vue.d.ts +2 -2
  91. package/dist/lib/components/layout/src/menu/secondLevelMenu.vue.d.ts +2 -2
  92. package/dist/lib/components/layout/src/menu/subSecondMenu.vue.d.ts +1 -1
  93. package/dist/lib/components/layout/src/sider/index.vue.d.ts +1 -1
  94. package/dist/lib/components/layout/src/sider/logo.vue.d.ts +2 -2
  95. package/dist/lib/components/layout/src/sider/search.vue.d.ts +1 -1
  96. package/dist/lib/components/layout/src/types.d.ts +1 -0
  97. package/dist/lib/components/layout-anchor/index.d.ts +3 -2
  98. package/dist/lib/components/layout-anchor/src/layout-auchor.vue.d.ts +3 -2
  99. package/dist/lib/components/layout-buttons/index.d.ts +5 -4
  100. package/dist/lib/components/layout-buttons/src/layout-buttons.vue.d.ts +3 -3
  101. package/dist/lib/components/layout-pattern/index.d.ts +13 -3
  102. package/dist/lib/components/layout-pattern/src/components/vertical.vue.d.ts +156 -7
  103. package/dist/lib/components/layout-pattern/src/hook/use-audit-button-hook.d.ts +46 -0
  104. package/dist/lib/components/layout-pattern/src/layout-pattern.vue.d.ts +13 -3
  105. package/dist/lib/components/list-page-layout/index.d.ts +80 -18
  106. package/dist/lib/components/list-page-layout/src/components/common/columnSetting/columnSetting.vue.d.ts +25 -24
  107. package/dist/lib/components/list-page-layout/src/components/common/edit-nav-modal/edit-nav-modal.vue.d.ts +1 -1
  108. package/dist/lib/components/list-page-layout/src/components/common/help-text-modal/help-text-modal.vue.d.ts +1 -1
  109. package/dist/lib/components/list-page-layout/src/components/common/import-modal/import-modal.vue.d.ts +3 -1
  110. package/dist/lib/components/list-page-layout/src/components/common/record-modal/record-modal.vue.d.ts +646 -556
  111. package/dist/lib/components/list-page-layout/src/components/list-content/events-helper.d.ts +1 -3
  112. package/dist/lib/components/list-page-layout/src/components/list-content/list-content.vue.d.ts +14 -12
  113. package/dist/lib/components/list-page-layout/src/components/list-content-buttons/list-content-buttons.vue.d.ts +1 -1
  114. package/dist/lib/components/list-page-layout/src/components/list-header/hooks/use-callback-hook.d.ts +3 -0
  115. package/dist/lib/components/list-page-layout/src/components/list-header/list-header.vue.d.ts +5 -3
  116. package/dist/lib/components/list-page-layout/src/components/list-header/module/query/index.vue.d.ts +9 -3
  117. package/dist/lib/components/list-page-layout/src/components/list-header/module/quick-nav/index.vue.d.ts +2 -1
  118. package/dist/lib/components/list-page-layout/src/components/list-header/module/searchExtend/index.vue.d.ts +14 -6
  119. package/dist/lib/components/list-page-layout/src/components/list-header/module/tabs/index.vue.d.ts +1 -1
  120. package/dist/lib/components/list-page-layout/src/hooks/auth-button.d.ts +4 -0
  121. package/dist/lib/components/list-page-layout/src/hooks/get-columns-hook.d.ts +1 -1
  122. package/dist/lib/components/list-page-layout/src/hooks/list-slot-hook.d.ts +10 -4
  123. package/dist/lib/components/list-page-layout/src/hooks/use-button-function-hook.d.ts +8 -0
  124. package/dist/lib/components/list-page-layout/src/layout.vue.d.ts +78 -17
  125. package/dist/lib/components/list-page-layout/src/list-page-layout-types.d.ts +62 -10
  126. package/dist/lib/components/list-page-layout/src/tokens.d.ts +2 -2
  127. package/dist/lib/components/list-page-layout/src/utils/gridConfig.d.ts +6 -21
  128. package/dist/lib/components/list-page-layout/src/utils/index.d.ts +2 -0
  129. package/dist/lib/components/page-layout/index.d.ts +3 -2
  130. package/dist/lib/components/page-layout/src/constant/buttons.d.ts +28 -2
  131. package/dist/lib/components/page-layout/src/constant/symbol.d.ts +35 -0
  132. package/dist/lib/components/page-layout/src/hook/use-merge-defaultValues-hook.d.ts +1 -1
  133. package/dist/lib/components/page-layout/src/hook/use-promise-step.d.ts +19 -9
  134. package/dist/lib/components/page-layout/src/page-layout.vue.d.ts +1 -1
  135. package/dist/lib/components/radio/index.d.ts +6 -6
  136. package/dist/lib/components/radio/src/radio.vue.d.ts +6 -6
  137. package/dist/lib/components/relation-graph/src/relation-graph-types.d.ts +23 -0
  138. package/dist/lib/components/remote-select/index.d.ts +31 -72
  139. package/dist/lib/components/remote-select/src/remote-select-types.d.ts +44 -28
  140. package/dist/lib/components/remote-select/src/remote-select.vue.d.ts +32 -73
  141. package/dist/lib/components/sale-template/index.d.ts +99 -0
  142. package/dist/lib/components/sale-template/src/sale-template-types.d.ts +41 -0
  143. package/dist/lib/components/sale-template/src/sale-template.vue.d.ts +95 -0
  144. package/dist/lib/components/sale-template/src/use-sale-template.d.ts +2 -0
  145. package/dist/lib/components/select/index.d.ts +9 -9
  146. package/dist/lib/components/select/src/select-types.d.ts +5 -1
  147. package/dist/lib/components/select/src/select.vue.d.ts +9 -9
  148. package/dist/lib/components/select-modal/index.d.ts +118 -76
  149. package/dist/lib/components/select-modal/src/select-modal-types.d.ts +24 -4
  150. package/dist/lib/components/select-modal/src/select-modal.vue.d.ts +118 -76
  151. package/dist/lib/components/select-template/index.d.ts +92 -0
  152. package/dist/lib/components/select-template/src/select-template-type.d.ts +32 -0
  153. package/dist/lib/components/select-template/src/select-template.vue.d.ts +88 -0
  154. package/dist/lib/components/switch/index.d.ts +2 -2
  155. package/dist/lib/components/switch/src/switch.vue.d.ts +2 -2
  156. package/dist/lib/components/tree-select/index.d.ts +10 -9
  157. package/dist/lib/components/tree-select/src/tree-select-types.d.ts +7 -1
  158. package/dist/lib/components/tree-select/src/tree-select.vue.d.ts +10 -9
  159. package/dist/lib/components/upload-file/index.d.ts +30 -31
  160. package/dist/lib/components/upload-file/src/hook/use-file-column-hook.d.ts +29 -16
  161. package/dist/lib/components/upload-file/src/hook/use-operation-column-button-hook.d.ts +1 -1
  162. package/dist/lib/components/upload-file/src/upload-file-types.d.ts +19 -28
  163. package/dist/lib/components/upload-file/src/upload-file.vue.d.ts +28 -29
  164. package/dist/lib/components/upload-file-vxe/index.d.ts +78 -0
  165. package/dist/lib/components/upload-file-vxe/src/upload-file-vxe-types.d.ts +38 -0
  166. package/dist/lib/components/upload-file-vxe/src/upload-file-vxe.vue.d.ts +75 -0
  167. package/dist/lib/components/upload-image/index.d.ts +3 -3
  168. package/dist/lib/components/upload-image/src/upload-image.vue.d.ts +3 -3
  169. package/dist/lib/components/useChart/index.d.ts +11 -0
  170. package/dist/lib/components/useChart/lib.d.ts +2 -0
  171. package/dist/lib/components/useChart/types.d.ts +21 -0
  172. package/dist/lib/components/vxe-select/index.d.ts +24 -6
  173. package/dist/lib/components/vxe-select/src/vxe-select-types.d.ts +7 -1
  174. package/dist/lib/components/vxe-select/src/vxe-select.vue.d.ts +24 -6
  175. package/dist/lib/index.d.ts +5 -3
  176. package/dist/lib/utils/event.d.ts +35 -2
  177. package/dist/style.css +1 -6
  178. package/package.json +35 -29
  179. package/dist/components/ComponentsDemo.vue.d.ts +0 -13
  180. package/dist/components/EditPage.vue.d.ts +0 -6011
  181. package/dist/components/PreviewList.vue.d.ts +0 -218
  182. package/dist/components/hook/use-field-select-modal-hook.d.ts +0 -288
  183. package/dist/components/login.vue.d.ts +0 -19
  184. package/dist/components/mock.d.ts +0 -260
  185. package/dist/components/mockList.d.ts +0 -44
  186. package/dist/lib/components/codeEditorModel/index.d.ts +0 -187
  187. package/dist/lib/components/codeEditorModel/src/codeEditorModel.vue.d.ts +0 -184
  188. package/dist/lib/components/list-page-layout/src/components/common/add-modal/add-modal.vue.d.ts +0 -21
  189. package/dist/lib/components/upload-file/src/hook/use-operation-column-hook.d.ts +0 -15
  190. package/dist/router/index.d.ts +0 -4
  191. package/dist/stores/user.d.ts +0 -25
  192. package/dist/utils/qApiPlugin.d.ts +0 -6
  193. package/dist/views/dashboard/workspace.vue.d.ts +0 -6972
@@ -1,6 +1,7 @@
1
1
  import type { ruleItem } from './src/hook/use-grid-config-hook';
2
- import type { VxeGridProps, VxeGridInstance, SizeType, VxeTablePropTypes, VxeColumnPropTypes, VxeTooltipPropTypes, VxeTableDefines, SlotVNodeType, VxeTableConstructor, VxeTablePrivateMethods, VxeGridConstructor, VxeTableProDefines, VxePagerPropTypes, VxeGridPropTypes, VxeButtonPropTypes, VxeToolbarPropTypes, VxeFormPropTypes, VxeFormItemPropTypes, VxeFormItemProps, FormItemTitleRenderParams, FormItemContentRenderParams } from 'vxe-table';
3
- import type { PageButton, ColumnItem, RecordStringNumber, PageButtonWithGroupCode } from '../edit-page-layout';
2
+ import type { RecordStringNumber } from '../select-modal';
3
+ import type { VxeGridProps, VxeTableDataRow, VxeGridInstance, SizeType, VxeTablePropTypes, VxeColumnPropTypes, VxeTooltipPropTypes, VxeColumnSlotTypes, VxeTableDefines, SlotVNodeType, VxeTableConstructor, VxeTablePrivateMethods, VxeGridConstructor, VxeTableProDefines, VxePagerPropTypes, VxeGridPropTypes, VxeButtonPropTypes, VxeToolbarPropTypes, VxeFormPropTypes, VxeFormItemPropTypes, VxeFormItemProps, FormItemTitleRenderParams, FormItemContentRenderParams } from 'vxe-table';
4
+ import type { PageButton, ColumnItem, PageButtonWithGroupCode, PageDownLoadButton, GridCheckboxChangeParams, GridCheckboxAllParams } from '../edit-page-layout';
4
5
  import type { DefineComponent, PropType, ComputedRef, Ref, VNode, RendererNode, RendererElement, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
5
6
  import type { SFCWithInstall } from '@qqt-product/utils/dist/modules/withInstall';
6
7
  import QDetailForm from './src/detail-grid.vue';
@@ -39,7 +40,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
39
40
  readonly default: () => {};
40
41
  };
41
42
  readonly vxeGridConfig: {
42
- readonly type: PropType<VxeGridProps<any>>;
43
+ readonly type: PropType<VxeGridProps<VxeTableDataRow>>;
43
44
  readonly default: () => {};
44
45
  };
45
46
  readonly shake: {
@@ -54,11 +55,11 @@ declare const _default: SFCWithInstall<DefineComponent<{
54
55
  groupName: Ref<string>;
55
56
  groupCode: Ref<string>;
56
57
  wrapBoxHeight: ComputedRef<number>;
57
- xGrid: Ref<VxeGridInstance | undefined>;
58
+ xGrid: Ref<VxeGridInstance<any> | undefined>;
58
59
  gridOptions: {
59
60
  size?: SizeType | undefined;
60
61
  id?: string | undefined;
61
- data?: any[] | undefined;
62
+ data?: VxeTableDataRow[] | undefined;
62
63
  height?: VxeTablePropTypes.Height | undefined;
63
64
  maxHeight?: VxeTablePropTypes.MaxHeight | undefined;
64
65
  resizable?: boolean | undefined;
@@ -76,19 +77,19 @@ declare const _default: SFCWithInstall<DefineComponent<{
76
77
  highlightHoverColumn?: boolean | undefined;
77
78
  highlightCell?: boolean | undefined;
78
79
  showFooter?: boolean | undefined;
79
- footerMethod?: VxeTablePropTypes.FooterMethod | undefined;
80
- rowClassName?: VxeTablePropTypes.RowClassName | undefined;
81
- cellClassName?: VxeTablePropTypes.CellClassName | undefined;
82
- headerRowClassName?: VxeTablePropTypes.HeaderRowClassName | undefined;
83
- headerCellClassName?: VxeTablePropTypes.HeaderCellClassName | undefined;
84
- footerRowClassName?: VxeTablePropTypes.FooterRowClassName | undefined;
85
- footerCellClassName?: VxeTablePropTypes.FooterCellClassName | undefined;
86
- cellStyle?: VxeTablePropTypes.CellStyle | undefined;
87
- headerCellStyle?: VxeTablePropTypes.HeaderCellStyle | undefined;
88
- footerCellStyle?: VxeTablePropTypes.FooterCellStyle | undefined;
89
- rowStyle?: VxeTablePropTypes.RowStyle | undefined;
90
- headerRowStyle?: VxeTablePropTypes.HeaderRowStyle | undefined;
91
- footerRowStyle?: VxeTablePropTypes.FooterRowStyle | undefined;
80
+ footerMethod?: VxeTablePropTypes.FooterMethod<VxeTableDataRow> | undefined;
81
+ rowClassName?: VxeTablePropTypes.RowClassName<VxeTableDataRow> | undefined;
82
+ cellClassName?: VxeTablePropTypes.CellClassName<VxeTableDataRow> | undefined;
83
+ headerRowClassName?: VxeTablePropTypes.HeaderRowClassName<VxeTableDataRow> | undefined;
84
+ headerCellClassName?: VxeTablePropTypes.HeaderCellClassName<VxeTableDataRow> | undefined;
85
+ footerRowClassName?: VxeTablePropTypes.FooterRowClassName<VxeTableDataRow> | undefined;
86
+ footerCellClassName?: VxeTablePropTypes.FooterCellClassName<VxeTableDataRow> | undefined;
87
+ cellStyle?: VxeTablePropTypes.CellStyle<VxeTableDataRow> | undefined;
88
+ rowStyle?: VxeTablePropTypes.RowStyle<VxeTableDataRow> | undefined;
89
+ headerCellStyle?: VxeTablePropTypes.HeaderCellStyle<VxeTableDataRow> | undefined;
90
+ headerRowStyle?: VxeTablePropTypes.HeaderRowStyle<VxeTableDataRow> | undefined;
91
+ footerRowStyle?: VxeTablePropTypes.FooterRowStyle<VxeTableDataRow> | undefined;
92
+ footerCellStyle?: VxeTablePropTypes.FooterCellStyle<VxeTableDataRow> | undefined;
92
93
  mergeCells?: {
93
94
  row: any;
94
95
  col: number | {
@@ -107,12 +108,12 @@ declare const _default: SFCWithInstall<DefineComponent<{
107
108
  showOverflow: VxeTablePropTypes.ShowOverflow;
108
109
  showHeaderOverflow: VxeTablePropTypes.ShowOverflow;
109
110
  showFooterOverflow: VxeTablePropTypes.ShowOverflow;
110
- className: VxeColumnPropTypes.ClassName;
111
- headerClassName: VxeColumnPropTypes.HeaderClassName;
112
- footerClassName: VxeColumnPropTypes.FooterClassName;
113
- formatter: VxeColumnPropTypes.Formatter;
111
+ className: VxeColumnPropTypes.ClassName<VxeTableDataRow>;
112
+ headerClassName: VxeColumnPropTypes.HeaderClassName<VxeTableDataRow>;
113
+ footerClassName: VxeColumnPropTypes.FooterClassName<VxeTableDataRow>;
114
+ formatter: VxeColumnPropTypes.Formatter<VxeTableDataRow>;
114
115
  sortable: boolean;
115
- sortBy: VxeColumnPropTypes.SortBy;
116
+ sortBy: VxeColumnPropTypes.SortBy<VxeTableDataRow>;
116
117
  sortType: VxeColumnPropTypes.SortType;
117
118
  filters: {
118
119
  label?: string | number | undefined;
@@ -122,7 +123,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
122
123
  checked?: boolean | undefined;
123
124
  }[];
124
125
  filterMultiple: boolean;
125
- filterMethod: VxeColumnPropTypes.FilterMethod;
126
+ filterMethod: VxeColumnPropTypes.FilterMethod<VxeTableDataRow>;
126
127
  filterRender: {
127
128
  options?: any[] | undefined;
128
129
  optionProps?: {
@@ -152,8 +153,8 @@ declare const _default: SFCWithInstall<DefineComponent<{
152
153
  };
153
154
  treeNode: boolean;
154
155
  visible: boolean;
155
- exportMethod: VxeColumnPropTypes.ExportMethod;
156
- footerExportMethod: VxeColumnPropTypes.FooterExportMethod;
156
+ exportMethod: VxeColumnPropTypes.ExportMethod<VxeTableDataRow>;
157
+ footerExportMethod: VxeColumnPropTypes.FooterExportMethod<VxeTableDataRow>;
157
158
  titleHelp: {
158
159
  useHTML?: boolean | undefined;
159
160
  content?: VxeTooltipPropTypes.Content | undefined;
@@ -173,7 +174,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
173
174
  cellType: VxeColumnPropTypes.CellType;
174
175
  cellRender: {
175
176
  events?: {
176
- [key: string]: (cellParams: VxeColumnPropTypes.DefaultSlotParams, ...args: any[]) => any;
177
+ [key: string]: (cellParams: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>, ...args: any[]) => any;
177
178
  } | undefined;
178
179
  options?: any[] | undefined;
179
180
  optionProps?: {
@@ -200,7 +201,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
200
201
  };
201
202
  editRender: {
202
203
  events?: {
203
- [key: string]: (cellParams: VxeColumnPropTypes.EditSlotParams, ...args: any[]) => any;
204
+ [key: string]: (cellParams: VxeColumnSlotTypes.EditSlotParams<VxeTableDataRow>, ...args: any[]) => any;
204
205
  } | undefined;
205
206
  enabled?: boolean | undefined;
206
207
  options?: any[] | undefined;
@@ -218,7 +219,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
218
219
  autofocus?: string | undefined;
219
220
  autoselect?: boolean | undefined;
220
221
  defaultValue?: string | number | object | any[] | ((params: {
221
- column: VxeTableDefines.ColumnInfo;
222
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
222
223
  }) => any) | {
223
224
  exec: (string: string) => RegExpExecArray | null;
224
225
  test: (string: string) => boolean;
@@ -344,16 +345,16 @@ declare const _default: SFCWithInstall<DefineComponent<{
344
345
  };
345
346
  params: any;
346
347
  slots: {
347
- title?: string | ((params: VxeColumnPropTypes.HeaderSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
348
- radio?: string | ((params: VxeColumnPropTypes.DefaultSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
349
- checkbox?: string | ((params: VxeColumnPropTypes.DefaultSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
350
- default?: string | ((params: VxeColumnPropTypes.DefaultSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
351
- header?: string | ((params: VxeColumnPropTypes.HeaderSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
352
- footer?: string | ((params: VxeColumnPropTypes.FooterSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
353
- content?: string | ((params: VxeColumnPropTypes.ContentSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
354
- filter?: string | ((params: VxeColumnPropTypes.FilterSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
355
- edit?: string | ((params: VxeColumnPropTypes.EditSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
356
- icon?: string | ((params: VxeColumnPropTypes.IconSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
348
+ title?: string | ((params: VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
349
+ radio?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
350
+ checkbox?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
351
+ default?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
352
+ header?: string | ((params: VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
353
+ footer?: string | ((params: VxeColumnSlotTypes.FooterSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
354
+ content?: string | ((params: VxeColumnSlotTypes.ContentSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
355
+ filter?: string | ((params: VxeColumnSlotTypes.FilterSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
356
+ edit?: string | ((params: VxeColumnSlotTypes.EditSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
357
+ icon?: string | ((params: VxeColumnSlotTypes.IconSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
357
358
  };
358
359
  id: string;
359
360
  parentId: string;
@@ -362,6 +363,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
362
363
  colSpan: number;
363
364
  halfVisible: boolean;
364
365
  defaultVisible: any;
366
+ defaultFixed: any;
365
367
  checked: boolean;
366
368
  halfChecked: boolean;
367
369
  disabled: boolean;
@@ -375,16 +377,16 @@ declare const _default: SFCWithInstall<DefineComponent<{
375
377
  value: any;
376
378
  };
377
379
  children: any[];
378
- renderHeader: (params: VxeTableDefines.CellRenderHeaderParams) => VNode<RendererNode, RendererElement, {
380
+ renderHeader: (params: VxeTableDefines.CellRenderHeaderParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
379
381
  [key: string]: any;
380
382
  }>[];
381
- renderCell: (params: VxeTableDefines.CellRenderCellParams) => VNode<RendererNode, RendererElement, {
383
+ renderCell: (params: VxeTableDefines.CellRenderCellParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
382
384
  [key: string]: any;
383
385
  }>[];
384
- renderData: (params: VxeTableDefines.CellRenderDataParams) => VNode<RendererNode, RendererElement, {
386
+ renderData: (params: VxeTableDefines.CellRenderDataParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
385
387
  [key: string]: any;
386
388
  }>[];
387
- renderFooter: (params: VxeTableDefines.CellRenderFooterParams) => VNode<RendererNode, RendererElement, {
389
+ renderFooter: (params: VxeTableDefines.CellRenderFooterParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
388
390
  [key: string]: any;
389
391
  }>[];
390
392
  getTitle: () => string;
@@ -411,12 +413,12 @@ declare const _default: SFCWithInstall<DefineComponent<{
411
413
  showOverflow: VxeTablePropTypes.ShowOverflow;
412
414
  showHeaderOverflow: VxeTablePropTypes.ShowOverflow;
413
415
  showFooterOverflow: VxeTablePropTypes.ShowOverflow;
414
- className: VxeColumnPropTypes.ClassName;
415
- headerClassName: VxeColumnPropTypes.HeaderClassName;
416
- footerClassName: VxeColumnPropTypes.FooterClassName;
417
- formatter: VxeColumnPropTypes.Formatter;
416
+ className: VxeColumnPropTypes.ClassName<VxeTableDataRow>;
417
+ headerClassName: VxeColumnPropTypes.HeaderClassName<VxeTableDataRow>;
418
+ footerClassName: VxeColumnPropTypes.FooterClassName<VxeTableDataRow>;
419
+ formatter: VxeColumnPropTypes.Formatter<VxeTableDataRow>;
418
420
  sortable: boolean;
419
- sortBy: VxeColumnPropTypes.SortBy;
421
+ sortBy: VxeColumnPropTypes.SortBy<VxeTableDataRow>;
420
422
  sortType: VxeColumnPropTypes.SortType;
421
423
  filters: {
422
424
  label?: string | number | undefined;
@@ -426,7 +428,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
426
428
  checked?: boolean | undefined;
427
429
  }[];
428
430
  filterMultiple: boolean;
429
- filterMethod: VxeColumnPropTypes.FilterMethod;
431
+ filterMethod: VxeColumnPropTypes.FilterMethod<VxeTableDataRow>;
430
432
  filterRender: {
431
433
  options?: any[] | undefined;
432
434
  optionProps?: {
@@ -456,8 +458,8 @@ declare const _default: SFCWithInstall<DefineComponent<{
456
458
  };
457
459
  treeNode: boolean;
458
460
  visible: boolean;
459
- exportMethod: VxeColumnPropTypes.ExportMethod;
460
- footerExportMethod: VxeColumnPropTypes.FooterExportMethod;
461
+ exportMethod: VxeColumnPropTypes.ExportMethod<VxeTableDataRow>;
462
+ footerExportMethod: VxeColumnPropTypes.FooterExportMethod<VxeTableDataRow>;
461
463
  titleHelp: {
462
464
  useHTML?: boolean | undefined;
463
465
  content?: VxeTooltipPropTypes.Content | undefined;
@@ -477,7 +479,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
477
479
  cellType: VxeColumnPropTypes.CellType;
478
480
  cellRender: {
479
481
  events?: {
480
- [key: string]: (cellParams: VxeColumnPropTypes.DefaultSlotParams, ...args: any[]) => any;
482
+ [key: string]: (cellParams: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>, ...args: any[]) => any;
481
483
  } | undefined;
482
484
  options?: any[] | undefined;
483
485
  optionProps?: {
@@ -504,7 +506,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
504
506
  };
505
507
  editRender: {
506
508
  events?: {
507
- [key: string]: (cellParams: VxeColumnPropTypes.EditSlotParams, ...args: any[]) => any;
509
+ [key: string]: (cellParams: VxeColumnSlotTypes.EditSlotParams<VxeTableDataRow>, ...args: any[]) => any;
508
510
  } | undefined;
509
511
  enabled?: boolean | undefined;
510
512
  options?: any[] | undefined;
@@ -522,7 +524,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
522
524
  autofocus?: string | undefined;
523
525
  autoselect?: boolean | undefined;
524
526
  defaultValue?: string | number | object | any[] | ((params: {
525
- column: VxeTableDefines.ColumnInfo;
527
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
526
528
  }) => any) | {
527
529
  exec: (string: string) => RegExpExecArray | null;
528
530
  test: (string: string) => boolean;
@@ -648,16 +650,16 @@ declare const _default: SFCWithInstall<DefineComponent<{
648
650
  };
649
651
  params: any;
650
652
  slots: {
651
- title?: string | ((params: VxeColumnPropTypes.HeaderSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
652
- radio?: string | ((params: VxeColumnPropTypes.DefaultSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
653
- checkbox?: string | ((params: VxeColumnPropTypes.DefaultSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
654
- default?: string | ((params: VxeColumnPropTypes.DefaultSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
655
- header?: string | ((params: VxeColumnPropTypes.HeaderSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
656
- footer?: string | ((params: VxeColumnPropTypes.FooterSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
657
- content?: string | ((params: VxeColumnPropTypes.ContentSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
658
- filter?: string | ((params: VxeColumnPropTypes.FilterSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
659
- edit?: string | ((params: VxeColumnPropTypes.EditSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
660
- icon?: string | ((params: VxeColumnPropTypes.IconSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
653
+ title?: string | ((params: VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
654
+ radio?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
655
+ checkbox?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
656
+ default?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
657
+ header?: string | ((params: VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
658
+ footer?: string | ((params: VxeColumnSlotTypes.FooterSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
659
+ content?: string | ((params: VxeColumnSlotTypes.ContentSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
660
+ filter?: string | ((params: VxeColumnSlotTypes.FilterSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
661
+ edit?: string | ((params: VxeColumnSlotTypes.EditSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
662
+ icon?: string | ((params: VxeColumnSlotTypes.IconSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
661
663
  };
662
664
  id: string;
663
665
  parentId: string;
@@ -666,6 +668,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
666
668
  colSpan: number;
667
669
  halfVisible: boolean;
668
670
  defaultVisible: any;
671
+ defaultFixed: any;
669
672
  checked: boolean;
670
673
  halfChecked: boolean;
671
674
  disabled: boolean;
@@ -679,16 +682,16 @@ declare const _default: SFCWithInstall<DefineComponent<{
679
682
  value: any;
680
683
  };
681
684
  children: any[];
682
- renderHeader: (params: VxeTableDefines.CellRenderHeaderParams) => VNode<RendererNode, RendererElement, {
685
+ renderHeader: (params: VxeTableDefines.CellRenderHeaderParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
683
686
  [key: string]: any;
684
687
  }>[];
685
- renderCell: (params: VxeTableDefines.CellRenderCellParams) => VNode<RendererNode, RendererElement, {
688
+ renderCell: (params: VxeTableDefines.CellRenderCellParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
686
689
  [key: string]: any;
687
690
  }>[];
688
- renderData: (params: VxeTableDefines.CellRenderDataParams) => VNode<RendererNode, RendererElement, {
691
+ renderData: (params: VxeTableDefines.CellRenderDataParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
689
692
  [key: string]: any;
690
693
  }>[];
691
- renderFooter: (params: VxeTableDefines.CellRenderFooterParams) => VNode<RendererNode, RendererElement, {
694
+ renderFooter: (params: VxeTableDefines.CellRenderFooterParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
692
695
  [key: string]: any;
693
696
  }>[];
694
697
  getTitle: () => string;
@@ -697,8 +700,8 @@ declare const _default: SFCWithInstall<DefineComponent<{
697
700
  rowspan: number;
698
701
  colspan: number;
699
702
  }[] | undefined;
700
- spanMethod?: VxeTablePropTypes.SpanMethod | undefined;
701
- footerSpanMethod?: VxeTablePropTypes.FooterSpanMethod | undefined;
703
+ spanMethod?: VxeTablePropTypes.SpanMethod<VxeTableDataRow> | undefined;
704
+ footerSpanMethod?: VxeTablePropTypes.FooterSpanMethod<VxeTableDataRow> | undefined;
702
705
  showOverflow?: VxeTablePropTypes.ShowOverflow | undefined;
703
706
  showHeaderOverflow?: VxeTablePropTypes.ShowOverflow | undefined;
704
707
  showFooterOverflow?: VxeTablePropTypes.ShowOverflow | undefined;
@@ -728,9 +731,11 @@ declare const _default: SFCWithInstall<DefineComponent<{
728
731
  storage?: boolean | {
729
732
  visible?: boolean | undefined;
730
733
  resizable?: boolean | undefined;
734
+ fixed?: boolean | undefined;
735
+ order?: boolean | undefined;
731
736
  } | undefined;
732
737
  checkMethod?: ((params: {
733
- column: VxeTableDefines.ColumnInfo;
738
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
734
739
  }) => boolean) | undefined;
735
740
  } | undefined;
736
741
  resizeConfig?: {
@@ -738,16 +743,16 @@ declare const _default: SFCWithInstall<DefineComponent<{
738
743
  } | undefined;
739
744
  resizableConfig?: {
740
745
  minWidth?: string | number | ((params: {
741
- $table: VxeTableConstructor & VxeTablePrivateMethods;
742
- column: VxeTableDefines.ColumnInfo;
746
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
747
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
743
748
  columnIndex: number;
744
749
  $columnIndex: number;
745
750
  $rowIndex: number;
746
751
  cell: HTMLElement;
747
752
  }) => string | number) | undefined;
748
753
  maxWidth?: string | number | ((params: {
749
- $table: VxeTableConstructor & VxeTablePrivateMethods;
750
- column: VxeTableDefines.ColumnInfo;
754
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
755
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
751
756
  columnIndex: number;
752
757
  $columnIndex: number;
753
758
  $rowIndex: number;
@@ -757,10 +762,10 @@ declare const _default: SFCWithInstall<DefineComponent<{
757
762
  seqConfig?: {
758
763
  startIndex?: number | undefined;
759
764
  seqMethod?: ((params: {
760
- column: VxeTableDefines.ColumnInfo;
765
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
761
766
  columnIndex: number;
762
767
  $columnIndex: number;
763
- row: any;
768
+ row: VxeTableDataRow;
764
769
  rowIndex: number;
765
770
  $rowIndex: number;
766
771
  }) => string | number) | undefined;
@@ -775,9 +780,9 @@ declare const _default: SFCWithInstall<DefineComponent<{
775
780
  }[] | undefined;
776
781
  orders?: VxeTablePropTypes.SortOrder[] | undefined;
777
782
  sortMethod?: ((params: {
778
- $table: VxeTableConstructor & VxeTablePrivateMethods;
779
- data: any[];
780
- sortList: VxeTableDefines.SortCheckedParams[];
783
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
784
+ data: VxeTableDataRow[];
785
+ sortList: VxeTableDefines.SortCheckedParams<VxeTableDataRow>[];
781
786
  }) => any[]) | undefined;
782
787
  remote?: boolean | undefined;
783
788
  multiple?: boolean | undefined;
@@ -792,8 +797,8 @@ declare const _default: SFCWithInstall<DefineComponent<{
792
797
  options: VxeTableDefines.FilterOption[];
793
798
  values: any[];
794
799
  cellValue: any;
795
- row: any;
796
- column: VxeTableDefines.ColumnInfo;
800
+ row: VxeTableDataRow;
801
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
797
802
  }) => any) | undefined;
798
803
  remote?: boolean | undefined;
799
804
  showIcon?: boolean | undefined;
@@ -805,10 +810,10 @@ declare const _default: SFCWithInstall<DefineComponent<{
805
810
  labelField?: string | undefined;
806
811
  checkRowKey?: string | number | undefined;
807
812
  checkMethod?: ((params: {
808
- row: any;
813
+ row: VxeTableDataRow;
809
814
  }) => boolean) | undefined;
810
815
  visibleMethod?: ((params: {
811
- row: any;
816
+ row: VxeTableDataRow;
812
817
  }) => boolean) | undefined;
813
818
  trigger?: "" | "default" | "row" | "cell" | null | undefined;
814
819
  highlight?: boolean | undefined;
@@ -825,10 +830,10 @@ declare const _default: SFCWithInstall<DefineComponent<{
825
830
  checkStrictly?: boolean | undefined;
826
831
  strict?: boolean | undefined;
827
832
  checkMethod?: ((params: {
828
- row: any;
833
+ row: VxeTableDataRow;
829
834
  }) => boolean) | undefined;
830
835
  visibleMethod?: ((params: {
831
- row: any;
836
+ row: VxeTableDataRow;
832
837
  }) => boolean) | undefined;
833
838
  trigger?: "" | "default" | "row" | "cell" | null | undefined;
834
839
  highlight?: boolean | undefined;
@@ -842,11 +847,11 @@ declare const _default: SFCWithInstall<DefineComponent<{
842
847
  leaveDelay?: number | undefined;
843
848
  contentMethod?: ((params: {
844
849
  items: any[];
845
- row: any;
850
+ row: VxeTableDataRow;
846
851
  rowIndex: number;
847
852
  $rowIndex: number;
848
853
  _rowIndex: number;
849
- column: VxeTableDefines.ColumnInfo;
854
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
850
855
  columnIndex: number;
851
856
  $columnIndex: number;
852
857
  _columnIndex: number;
@@ -886,12 +891,12 @@ declare const _default: SFCWithInstall<DefineComponent<{
886
891
  showOverflow: VxeTablePropTypes.ShowOverflow;
887
892
  showHeaderOverflow: VxeTablePropTypes.ShowOverflow;
888
893
  showFooterOverflow: VxeTablePropTypes.ShowOverflow;
889
- className: VxeColumnPropTypes.ClassName;
890
- headerClassName: VxeColumnPropTypes.HeaderClassName;
891
- footerClassName: VxeColumnPropTypes.FooterClassName;
892
- formatter: VxeColumnPropTypes.Formatter;
894
+ className: VxeColumnPropTypes.ClassName<VxeTableDataRow>;
895
+ headerClassName: VxeColumnPropTypes.HeaderClassName<VxeTableDataRow>;
896
+ footerClassName: VxeColumnPropTypes.FooterClassName<VxeTableDataRow>;
897
+ formatter: VxeColumnPropTypes.Formatter<VxeTableDataRow>;
893
898
  sortable: boolean;
894
- sortBy: VxeColumnPropTypes.SortBy;
899
+ sortBy: VxeColumnPropTypes.SortBy<VxeTableDataRow>;
895
900
  sortType: VxeColumnPropTypes.SortType;
896
901
  filters: {
897
902
  label?: string | number | undefined;
@@ -901,7 +906,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
901
906
  checked?: boolean | undefined;
902
907
  }[];
903
908
  filterMultiple: boolean;
904
- filterMethod: VxeColumnPropTypes.FilterMethod;
909
+ filterMethod: VxeColumnPropTypes.FilterMethod<VxeTableDataRow>;
905
910
  filterRender: {
906
911
  options?: any[] | undefined;
907
912
  optionProps?: {
@@ -931,8 +936,8 @@ declare const _default: SFCWithInstall<DefineComponent<{
931
936
  };
932
937
  treeNode: boolean;
933
938
  visible: boolean;
934
- exportMethod: VxeColumnPropTypes.ExportMethod;
935
- footerExportMethod: VxeColumnPropTypes.FooterExportMethod;
939
+ exportMethod: VxeColumnPropTypes.ExportMethod<VxeTableDataRow>;
940
+ footerExportMethod: VxeColumnPropTypes.FooterExportMethod<VxeTableDataRow>;
936
941
  titleHelp: {
937
942
  useHTML?: boolean | undefined;
938
943
  content?: VxeTooltipPropTypes.Content | undefined;
@@ -952,7 +957,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
952
957
  cellType: VxeColumnPropTypes.CellType;
953
958
  cellRender: {
954
959
  events?: {
955
- [key: string]: (cellParams: VxeColumnPropTypes.DefaultSlotParams, ...args: any[]) => any;
960
+ [key: string]: (cellParams: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>, ...args: any[]) => any;
956
961
  } | undefined;
957
962
  options?: any[] | undefined;
958
963
  optionProps?: {
@@ -979,7 +984,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
979
984
  };
980
985
  editRender: {
981
986
  events?: {
982
- [key: string]: (cellParams: VxeColumnPropTypes.EditSlotParams, ...args: any[]) => any;
987
+ [key: string]: (cellParams: VxeColumnSlotTypes.EditSlotParams<VxeTableDataRow>, ...args: any[]) => any;
983
988
  } | undefined;
984
989
  enabled?: boolean | undefined;
985
990
  options?: any[] | undefined;
@@ -997,7 +1002,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
997
1002
  autofocus?: string | undefined;
998
1003
  autoselect?: boolean | undefined;
999
1004
  defaultValue?: string | number | object | any[] | ((params: {
1000
- column: VxeTableDefines.ColumnInfo;
1005
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1001
1006
  }) => any) | {
1002
1007
  exec: (string: string) => RegExpExecArray | null;
1003
1008
  test: (string: string) => boolean;
@@ -1123,16 +1128,16 @@ declare const _default: SFCWithInstall<DefineComponent<{
1123
1128
  };
1124
1129
  params: any;
1125
1130
  slots: {
1126
- title?: string | ((params: VxeColumnPropTypes.HeaderSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1127
- radio?: string | ((params: VxeColumnPropTypes.DefaultSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1128
- checkbox?: string | ((params: VxeColumnPropTypes.DefaultSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1129
- default?: string | ((params: VxeColumnPropTypes.DefaultSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1130
- header?: string | ((params: VxeColumnPropTypes.HeaderSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1131
- footer?: string | ((params: VxeColumnPropTypes.FooterSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1132
- content?: string | ((params: VxeColumnPropTypes.ContentSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1133
- filter?: string | ((params: VxeColumnPropTypes.FilterSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1134
- edit?: string | ((params: VxeColumnPropTypes.EditSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1135
- icon?: string | ((params: VxeColumnPropTypes.IconSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1131
+ title?: string | ((params: VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1132
+ radio?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1133
+ checkbox?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1134
+ default?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1135
+ header?: string | ((params: VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1136
+ footer?: string | ((params: VxeColumnSlotTypes.FooterSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1137
+ content?: string | ((params: VxeColumnSlotTypes.ContentSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1138
+ filter?: string | ((params: VxeColumnSlotTypes.FilterSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1139
+ edit?: string | ((params: VxeColumnSlotTypes.EditSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1140
+ icon?: string | ((params: VxeColumnSlotTypes.IconSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1136
1141
  };
1137
1142
  id: string;
1138
1143
  parentId: string;
@@ -1141,6 +1146,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
1141
1146
  colSpan: number;
1142
1147
  halfVisible: boolean;
1143
1148
  defaultVisible: any;
1149
+ defaultFixed: any;
1144
1150
  checked: boolean;
1145
1151
  halfChecked: boolean;
1146
1152
  disabled: boolean;
@@ -1154,16 +1160,16 @@ declare const _default: SFCWithInstall<DefineComponent<{
1154
1160
  value: any;
1155
1161
  };
1156
1162
  children: any[];
1157
- renderHeader: (params: VxeTableDefines.CellRenderHeaderParams) => VNode<RendererNode, RendererElement, {
1163
+ renderHeader: (params: VxeTableDefines.CellRenderHeaderParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
1158
1164
  [key: string]: any;
1159
1165
  }>[];
1160
- renderCell: (params: VxeTableDefines.CellRenderCellParams) => VNode<RendererNode, RendererElement, {
1166
+ renderCell: (params: VxeTableDefines.CellRenderCellParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
1161
1167
  [key: string]: any;
1162
1168
  }>[];
1163
- renderData: (params: VxeTableDefines.CellRenderDataParams) => VNode<RendererNode, RendererElement, {
1169
+ renderData: (params: VxeTableDefines.CellRenderDataParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
1164
1170
  [key: string]: any;
1165
1171
  }>[];
1166
- renderFooter: (params: VxeTableDefines.CellRenderFooterParams) => VNode<RendererNode, RendererElement, {
1172
+ renderFooter: (params: VxeTableDefines.CellRenderFooterParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
1167
1173
  [key: string]: any;
1168
1174
  }>[];
1169
1175
  getTitle: () => string;
@@ -1174,7 +1180,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
1174
1180
  field?: string | undefined;
1175
1181
  }[] | undefined;
1176
1182
  columnFilterMethod?: ((params: {
1177
- column: VxeTableDefines.ColumnInfo;
1183
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1178
1184
  $columnIndex: number;
1179
1185
  }) => boolean) | undefined;
1180
1186
  dataFilterMethod?: ((params: {
@@ -1189,8 +1195,8 @@ declare const _default: SFCWithInstall<DefineComponent<{
1189
1195
  useStyle?: boolean | undefined;
1190
1196
  sheetMethod?: ((params: VxeTableDefines.ExtortSheetMethodParams) => void) | undefined;
1191
1197
  exportMethod?: ((params: {
1192
- $table: VxeTableConstructor;
1193
- $grid?: VxeGridConstructor | undefined;
1198
+ $table: VxeTableConstructor<any>;
1199
+ $grid?: VxeGridConstructor<any> | undefined;
1194
1200
  options: VxeTablePropTypes.ExportHandleOptions;
1195
1201
  }) => Promise<any>) | undefined;
1196
1202
  beforeExportMethod?: ((params: {
@@ -1207,17 +1213,17 @@ declare const _default: SFCWithInstall<DefineComponent<{
1207
1213
  message?: boolean | undefined;
1208
1214
  remote?: boolean | undefined;
1209
1215
  importMethod?: ((params: {
1210
- $table: VxeTableConstructor;
1211
- $grid: VxeGridConstructor;
1216
+ $table: VxeTableConstructor<any>;
1217
+ $grid: VxeGridConstructor<any>;
1212
1218
  file: File;
1213
1219
  options: VxeTablePropTypes.ImportHandleOptions;
1214
1220
  }) => Promise<any>) | undefined;
1215
1221
  beforeImportMethod?: ((params: {
1216
- $table: VxeTableConstructor;
1222
+ $table: VxeTableConstructor<any>;
1217
1223
  options: any;
1218
1224
  }) => void) | undefined;
1219
1225
  afterImportMethod?: ((params: {
1220
- $table: VxeTableConstructor;
1226
+ $table: VxeTableConstructor<any>;
1221
1227
  options: any;
1222
1228
  status: boolean;
1223
1229
  }) => void) | undefined;
@@ -1246,12 +1252,12 @@ declare const _default: SFCWithInstall<DefineComponent<{
1246
1252
  showOverflow: VxeTablePropTypes.ShowOverflow;
1247
1253
  showHeaderOverflow: VxeTablePropTypes.ShowOverflow;
1248
1254
  showFooterOverflow: VxeTablePropTypes.ShowOverflow;
1249
- className: VxeColumnPropTypes.ClassName;
1250
- headerClassName: VxeColumnPropTypes.HeaderClassName;
1251
- footerClassName: VxeColumnPropTypes.FooterClassName;
1252
- formatter: VxeColumnPropTypes.Formatter;
1255
+ className: VxeColumnPropTypes.ClassName<VxeTableDataRow>;
1256
+ headerClassName: VxeColumnPropTypes.HeaderClassName<VxeTableDataRow>;
1257
+ footerClassName: VxeColumnPropTypes.FooterClassName<VxeTableDataRow>;
1258
+ formatter: VxeColumnPropTypes.Formatter<VxeTableDataRow>;
1253
1259
  sortable: boolean;
1254
- sortBy: VxeColumnPropTypes.SortBy;
1260
+ sortBy: VxeColumnPropTypes.SortBy<VxeTableDataRow>;
1255
1261
  sortType: VxeColumnPropTypes.SortType;
1256
1262
  filters: {
1257
1263
  label?: string | number | undefined;
@@ -1261,7 +1267,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
1261
1267
  checked?: boolean | undefined;
1262
1268
  }[];
1263
1269
  filterMultiple: boolean;
1264
- filterMethod: VxeColumnPropTypes.FilterMethod;
1270
+ filterMethod: VxeColumnPropTypes.FilterMethod<VxeTableDataRow>;
1265
1271
  filterRender: {
1266
1272
  options?: any[] | undefined;
1267
1273
  optionProps?: {
@@ -1291,8 +1297,8 @@ declare const _default: SFCWithInstall<DefineComponent<{
1291
1297
  };
1292
1298
  treeNode: boolean;
1293
1299
  visible: boolean;
1294
- exportMethod: VxeColumnPropTypes.ExportMethod;
1295
- footerExportMethod: VxeColumnPropTypes.FooterExportMethod;
1300
+ exportMethod: VxeColumnPropTypes.ExportMethod<VxeTableDataRow>;
1301
+ footerExportMethod: VxeColumnPropTypes.FooterExportMethod<VxeTableDataRow>;
1296
1302
  titleHelp: {
1297
1303
  useHTML?: boolean | undefined;
1298
1304
  content?: VxeTooltipPropTypes.Content | undefined;
@@ -1312,7 +1318,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
1312
1318
  cellType: VxeColumnPropTypes.CellType;
1313
1319
  cellRender: {
1314
1320
  events?: {
1315
- [key: string]: (cellParams: VxeColumnPropTypes.DefaultSlotParams, ...args: any[]) => any;
1321
+ [key: string]: (cellParams: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>, ...args: any[]) => any;
1316
1322
  } | undefined;
1317
1323
  options?: any[] | undefined;
1318
1324
  optionProps?: {
@@ -1339,7 +1345,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
1339
1345
  };
1340
1346
  editRender: {
1341
1347
  events?: {
1342
- [key: string]: (cellParams: VxeColumnPropTypes.EditSlotParams, ...args: any[]) => any;
1348
+ [key: string]: (cellParams: VxeColumnSlotTypes.EditSlotParams<VxeTableDataRow>, ...args: any[]) => any;
1343
1349
  } | undefined;
1344
1350
  enabled?: boolean | undefined;
1345
1351
  options?: any[] | undefined;
@@ -1357,7 +1363,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
1357
1363
  autofocus?: string | undefined;
1358
1364
  autoselect?: boolean | undefined;
1359
1365
  defaultValue?: string | number | object | any[] | ((params: {
1360
- column: VxeTableDefines.ColumnInfo;
1366
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1361
1367
  }) => any) | {
1362
1368
  exec: (string: string) => RegExpExecArray | null;
1363
1369
  test: (string: string) => boolean;
@@ -1483,16 +1489,16 @@ declare const _default: SFCWithInstall<DefineComponent<{
1483
1489
  };
1484
1490
  params: any;
1485
1491
  slots: {
1486
- title?: string | ((params: VxeColumnPropTypes.HeaderSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1487
- radio?: string | ((params: VxeColumnPropTypes.DefaultSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1488
- checkbox?: string | ((params: VxeColumnPropTypes.DefaultSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1489
- default?: string | ((params: VxeColumnPropTypes.DefaultSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1490
- header?: string | ((params: VxeColumnPropTypes.HeaderSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1491
- footer?: string | ((params: VxeColumnPropTypes.FooterSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1492
- content?: string | ((params: VxeColumnPropTypes.ContentSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1493
- filter?: string | ((params: VxeColumnPropTypes.FilterSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1494
- edit?: string | ((params: VxeColumnPropTypes.EditSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1495
- icon?: string | ((params: VxeColumnPropTypes.IconSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1492
+ title?: string | ((params: VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1493
+ radio?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1494
+ checkbox?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1495
+ default?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1496
+ header?: string | ((params: VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1497
+ footer?: string | ((params: VxeColumnSlotTypes.FooterSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1498
+ content?: string | ((params: VxeColumnSlotTypes.ContentSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1499
+ filter?: string | ((params: VxeColumnSlotTypes.FilterSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1500
+ edit?: string | ((params: VxeColumnSlotTypes.EditSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1501
+ icon?: string | ((params: VxeColumnSlotTypes.IconSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1496
1502
  };
1497
1503
  id: string;
1498
1504
  parentId: string;
@@ -1501,6 +1507,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
1501
1507
  colSpan: number;
1502
1508
  halfVisible: boolean;
1503
1509
  defaultVisible: any;
1510
+ defaultFixed: any;
1504
1511
  checked: boolean;
1505
1512
  halfChecked: boolean;
1506
1513
  disabled: boolean;
@@ -1514,16 +1521,16 @@ declare const _default: SFCWithInstall<DefineComponent<{
1514
1521
  value: any;
1515
1522
  };
1516
1523
  children: any[];
1517
- renderHeader: (params: VxeTableDefines.CellRenderHeaderParams) => VNode<RendererNode, RendererElement, {
1524
+ renderHeader: (params: VxeTableDefines.CellRenderHeaderParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
1518
1525
  [key: string]: any;
1519
1526
  }>[];
1520
- renderCell: (params: VxeTableDefines.CellRenderCellParams) => VNode<RendererNode, RendererElement, {
1527
+ renderCell: (params: VxeTableDefines.CellRenderCellParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
1521
1528
  [key: string]: any;
1522
1529
  }>[];
1523
- renderData: (params: VxeTableDefines.CellRenderDataParams) => VNode<RendererNode, RendererElement, {
1530
+ renderData: (params: VxeTableDefines.CellRenderDataParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
1524
1531
  [key: string]: any;
1525
1532
  }>[];
1526
- renderFooter: (params: VxeTableDefines.CellRenderFooterParams) => VNode<RendererNode, RendererElement, {
1533
+ renderFooter: (params: VxeTableDefines.CellRenderFooterParams<VxeTableDataRow>) => VNode<RendererNode, RendererElement, {
1527
1534
  [key: string]: any;
1528
1535
  }>[];
1529
1536
  getTitle: () => string;
@@ -1536,7 +1543,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
1536
1543
  style?: string | undefined;
1537
1544
  content?: string | undefined;
1538
1545
  columnFilterMethod?: ((params: {
1539
- column: VxeTableDefines.ColumnInfo;
1546
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1540
1547
  $columnIndex: number;
1541
1548
  }) => boolean) | undefined;
1542
1549
  dataFilterMethod?: ((params: {
@@ -1548,7 +1555,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
1548
1555
  $rowIndex: number;
1549
1556
  }) => boolean) | undefined;
1550
1557
  beforePrintMethod?: ((params: {
1551
- $table: VxeTableConstructor | null;
1558
+ $table: VxeTableConstructor<any> | null;
1552
1559
  content: string;
1553
1560
  options: VxeTablePropTypes.PrintHandleOptions;
1554
1561
  }) => string) | undefined;
@@ -1563,22 +1570,22 @@ declare const _default: SFCWithInstall<DefineComponent<{
1563
1570
  reserve?: boolean | undefined;
1564
1571
  height?: number | undefined;
1565
1572
  loadMethod?: ((params: {
1566
- $table: VxeTableConstructor & VxeTablePrivateMethods;
1567
- row: any;
1573
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1574
+ row: VxeTableDataRow;
1568
1575
  rowIndex: number;
1569
1576
  $rowIndex: number;
1570
1577
  }) => Promise<void>) | undefined;
1571
1578
  toggleMethod?: ((params: {
1572
- $table: VxeTableConstructor & VxeTablePrivateMethods;
1579
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1573
1580
  expanded: boolean;
1574
- row: any;
1581
+ row: VxeTableDataRow;
1575
1582
  rowIndex: number;
1576
1583
  $rowIndex: number;
1577
- column: VxeTableDefines.ColumnInfo;
1584
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1578
1585
  columnIndex: number;
1579
1586
  $columnIndex: number;
1580
1587
  }) => boolean) | undefined;
1581
- visibleMethod?: ((params: VxeTableDefines.CellRenderBodyParams) => boolean) | undefined;
1588
+ visibleMethod?: ((params: VxeTableDefines.CellRenderBodyParams<VxeTableDataRow>) => boolean) | undefined;
1582
1589
  showIcon?: boolean | undefined;
1583
1590
  iconOpen?: string | undefined;
1584
1591
  iconClose?: string | undefined;
@@ -1600,14 +1607,14 @@ declare const _default: SFCWithInstall<DefineComponent<{
1600
1607
  hasChild?: string | undefined;
1601
1608
  reserve?: boolean | undefined;
1602
1609
  loadMethod?: ((params: {
1603
- $table: VxeTableConstructor & VxeTablePrivateMethods;
1604
- row: any;
1610
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1611
+ row: VxeTableDataRow;
1605
1612
  }) => Promise<any[]>) | undefined;
1606
1613
  toggleMethod?: ((params: {
1607
- $table: VxeTableConstructor & VxeTablePrivateMethods;
1614
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1608
1615
  expanded: boolean;
1609
- row: any;
1610
- column: VxeTableDefines.ColumnInfo;
1616
+ row: VxeTableDataRow;
1617
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1611
1618
  columnIndex: number;
1612
1619
  $columnIndex: number;
1613
1620
  }) => boolean) | undefined;
@@ -1694,10 +1701,10 @@ declare const _default: SFCWithInstall<DefineComponent<{
1694
1701
  visibleMethod?: ((params: {
1695
1702
  type: string;
1696
1703
  options: VxeTableDefines.MenuFirstOption[][];
1697
- columns: VxeTableDefines.ColumnInfo[];
1698
- row?: any;
1704
+ columns: VxeTableDefines.ColumnInfo<VxeTableDataRow>[];
1705
+ row?: VxeTableDataRow | undefined;
1699
1706
  rowIndex?: number | undefined;
1700
- column?: VxeTableDefines.ColumnInfo | undefined;
1707
+ column?: VxeTableDefines.ColumnInfo<VxeTableDataRow> | undefined;
1701
1708
  columnIndex?: number | undefined;
1702
1709
  }) => boolean) | undefined;
1703
1710
  } | undefined;
@@ -1707,19 +1714,20 @@ declare const _default: SFCWithInstall<DefineComponent<{
1707
1714
  extension?: boolean | undefined;
1708
1715
  } | undefined;
1709
1716
  areaConfig?: {
1717
+ multiple?: boolean | undefined;
1710
1718
  selectCellByHeader?: boolean | undefined;
1711
1719
  extendByCopy?: boolean | undefined;
1712
1720
  extendByCalc?: boolean | undefined;
1713
- extendCalcMethod?: ((params: VxeTableProDefines.ExtendCellAreaCalcBaseParams) => any[][]) | undefined;
1721
+ extendCalcMethod?: ((params: VxeTableProDefines.ExtendCellAreaCalcBaseParams<VxeTableDataRow>) => any[][]) | undefined;
1714
1722
  extendSetMethod?: ((params: {
1715
1723
  cellValue: any;
1716
- row: any;
1717
- column: VxeTableDefines.ColumnInfo;
1718
- } & VxeTableProDefines.ExtendCellAreaCalcBaseParams) => void) | undefined;
1719
- beforeExtendSetMethod?: ((params: VxeTableProDefines.ExtendCellAreaCalcBaseParams) => boolean) | undefined;
1724
+ row: VxeTableDataRow;
1725
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1726
+ } & VxeTableProDefines.ExtendCellAreaCalcBaseParams<VxeTableDataRow>) => void) | undefined;
1727
+ beforeExtendSetMethod?: ((params: VxeTableProDefines.ExtendCellAreaCalcBaseParams<VxeTableDataRow>) => boolean) | undefined;
1720
1728
  afterExtendSetMethod?: ((params: {
1721
1729
  extendValues: any[][];
1722
- } & VxeTableProDefines.ExtendCellAreaCalcBaseParams) => boolean) | undefined;
1730
+ } & VxeTableProDefines.ExtendCellAreaCalcBaseParams<VxeTableDataRow>) => boolean) | undefined;
1723
1731
  } | undefined;
1724
1732
  fnrConfig?: {
1725
1733
  isFind?: boolean | undefined;
@@ -1734,36 +1742,36 @@ declare const _default: SFCWithInstall<DefineComponent<{
1734
1742
  beforeFindMethod?: ((params: {
1735
1743
  isAll: boolean;
1736
1744
  findValue: string | null;
1737
- $table: VxeTableConstructor & VxeTablePrivateMethods;
1738
- $grid: VxeGridConstructor | null | undefined;
1745
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1746
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
1739
1747
  }) => boolean) | undefined;
1740
1748
  afterFindMethod?: ((params: {
1741
1749
  isAll: boolean;
1742
1750
  findValue: string | null;
1743
- result: VxeTableProDefines.FindAndReplaceResult[];
1744
- $table: VxeTableConstructor & VxeTablePrivateMethods;
1745
- $grid: VxeGridConstructor | null | undefined;
1751
+ result: VxeTableProDefines.FindAndReplaceResult<VxeTableDataRow>[];
1752
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1753
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
1746
1754
  }) => void) | undefined;
1747
1755
  isReplace?: boolean | undefined;
1748
1756
  replaceMethod?: ((params: {
1749
- row: any;
1750
- column: VxeTableDefines.ColumnInfo;
1757
+ row: VxeTableDataRow;
1758
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1751
1759
  cellValue: any;
1752
1760
  }) => void) | undefined;
1753
1761
  beforeReplaceMethod?: ((params: {
1754
1762
  isAll: boolean;
1755
1763
  findValue: string | null;
1756
1764
  replaceValue: string;
1757
- $table: VxeTableConstructor & VxeTablePrivateMethods;
1758
- $grid: VxeGridConstructor | null | undefined;
1765
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1766
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
1759
1767
  }) => boolean) | undefined;
1760
1768
  afterReplaceMethod?: ((params: {
1761
1769
  isAll: boolean;
1762
1770
  findValue: string | null;
1763
1771
  replaceValue: string;
1764
- result: VxeTableProDefines.FindAndReplaceResult[];
1765
- $table: VxeTableConstructor & VxeTablePrivateMethods;
1766
- $grid: VxeGridConstructor | null | undefined;
1772
+ result: VxeTableProDefines.FindAndReplaceResult<VxeTableDataRow>[];
1773
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1774
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
1767
1775
  }) => void) | undefined;
1768
1776
  } | undefined;
1769
1777
  keyboardConfig?: {
@@ -1780,26 +1788,26 @@ declare const _default: SFCWithInstall<DefineComponent<{
1780
1788
  isChecked?: boolean | undefined;
1781
1789
  enterToTab?: boolean | undefined;
1782
1790
  delMethod?: ((params: {
1783
- row: any;
1791
+ row: VxeTableDataRow;
1784
1792
  rowIndex: number;
1785
- column: VxeTableDefines.ColumnInfo;
1793
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1786
1794
  columnIndex: number;
1787
- $table: VxeTableConstructor & VxeTablePrivateMethods;
1795
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1788
1796
  }) => void) | undefined;
1789
1797
  backMethod?: ((params: {
1790
- row: any;
1798
+ row: VxeTableDataRow;
1791
1799
  rowIndex: number;
1792
- column: VxeTableDefines.ColumnInfo;
1800
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1793
1801
  columnIndex: number;
1794
- $table: VxeTableConstructor & VxeTablePrivateMethods;
1802
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1795
1803
  }) => void) | undefined;
1796
1804
  editMethod?: ((params: {
1797
- row: any;
1805
+ row: VxeTableDataRow;
1798
1806
  rowIndex: number;
1799
- column: VxeTableDefines.ColumnInfo;
1807
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1800
1808
  columnIndex: number;
1801
- $table: VxeTableConstructor & VxeTablePrivateMethods;
1802
- $grid: VxeGridConstructor | null | undefined;
1809
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1810
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
1803
1811
  }) => boolean) | undefined;
1804
1812
  } | undefined;
1805
1813
  clipConfig?: {
@@ -1811,97 +1819,97 @@ declare const _default: SFCWithInstall<DefineComponent<{
1811
1819
  isColumnIncrement?: boolean | undefined;
1812
1820
  copyMethod?: ((params: {
1813
1821
  isCut: boolean;
1814
- row: any;
1815
- column: VxeTableDefines.ColumnInfo;
1822
+ row: VxeTableDataRow;
1823
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1816
1824
  cellValue: any;
1817
- $table: VxeTableConstructor & VxeTablePrivateMethods;
1818
- $grid: VxeGridConstructor | null | undefined;
1825
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1826
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
1819
1827
  }) => string) | undefined;
1820
1828
  beforeCopyMethod?: ((params: {
1821
1829
  isCut: boolean;
1822
- activeArea: VxeTableProDefines.MouseActiveCellArea;
1823
- targetAreas: VxeTableProDefines.CellAreaParams[];
1824
- $table: VxeTableConstructor & VxeTablePrivateMethods;
1825
- $grid: VxeGridConstructor | null | undefined;
1830
+ activeArea: VxeTableProDefines.MouseActiveCellArea<VxeTableDataRow>;
1831
+ targetAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
1832
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1833
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
1826
1834
  }) => boolean) | undefined;
1827
1835
  afterCopyMethod?: ((params: {
1828
1836
  isCut: boolean;
1829
- targetAreas: VxeTableProDefines.CellAreaParams[];
1830
- $table: VxeTableConstructor & VxeTablePrivateMethods;
1831
- $grid: VxeGridConstructor | null | undefined;
1837
+ targetAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
1838
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1839
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
1832
1840
  }) => boolean) | undefined;
1833
1841
  cutMethod?: ((params: {
1834
- row: any;
1835
- column: VxeTableDefines.ColumnInfo;
1842
+ row: VxeTableDataRow;
1843
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1836
1844
  cellValue: any;
1837
- $table: VxeTableConstructor & VxeTablePrivateMethods;
1838
- $grid: VxeGridConstructor | null | undefined;
1845
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1846
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
1839
1847
  }) => void) | undefined;
1840
1848
  beforeCutMethod?: ((params: {
1841
- activeArea: VxeTableProDefines.MouseActiveCellArea;
1842
- cutAreas: VxeTableProDefines.CellAreaParams[];
1843
- currentAreas: VxeTableProDefines.CellAreaParams[];
1844
- $table: VxeTableConstructor & VxeTablePrivateMethods;
1845
- $grid: VxeGridConstructor | null | undefined;
1849
+ activeArea: VxeTableProDefines.MouseActiveCellArea<VxeTableDataRow>;
1850
+ cutAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
1851
+ currentAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
1852
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1853
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
1846
1854
  }) => boolean) | undefined;
1847
1855
  afterCutMethod?: ((params: {
1848
- cutAreas: VxeTableProDefines.CellAreaParams[];
1849
- currentAreas: VxeTableProDefines.CellAreaParams[];
1850
- $table: VxeTableConstructor & VxeTablePrivateMethods;
1851
- $grid: VxeGridConstructor | null | undefined;
1856
+ cutAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
1857
+ currentAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
1858
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1859
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
1852
1860
  }) => void) | undefined;
1853
1861
  pasteMethod?: ((params: {
1854
1862
  isCut: boolean;
1855
- row: any;
1856
- column: VxeTableDefines.ColumnInfo;
1863
+ row: VxeTableDataRow;
1864
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1857
1865
  cellValue: any;
1858
- $table: VxeTableConstructor & VxeTablePrivateMethods;
1859
- $grid: VxeGridConstructor | null | undefined;
1866
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1867
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
1860
1868
  }) => void) | undefined;
1861
1869
  beforePasteMethod?: ((params: {
1862
1870
  isCut: boolean;
1863
- activeArea: VxeTableProDefines.MouseActiveCellArea;
1864
- cutAreas: VxeTableProDefines.CellAreaParams[];
1865
- currentAreas: VxeTableProDefines.CellAreaParams[];
1866
- targetAreas: VxeTableProDefines.CellAreaParams[];
1871
+ activeArea: VxeTableProDefines.MouseActiveCellArea<VxeTableDataRow>;
1872
+ cutAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
1873
+ currentAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
1874
+ targetAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
1867
1875
  cellValues: string[][];
1868
1876
  pasteCells: string[][];
1869
- $table: VxeTableConstructor & VxeTablePrivateMethods;
1870
- $grid: VxeGridConstructor | null | undefined;
1877
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1878
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
1871
1879
  }) => boolean) | undefined;
1872
1880
  afterPasteMethod?: ((params: {
1873
1881
  isCut: boolean;
1874
- currentAreas: VxeTableProDefines.CellAreaParams[];
1875
- cutAreas: VxeTableProDefines.CellAreaParams[];
1876
- targetAreas: VxeTableProDefines.CellAreaParams[];
1882
+ currentAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
1883
+ cutAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
1884
+ targetAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
1877
1885
  cellValues: any[][];
1878
1886
  pasteCells: string[][];
1879
- insertRows: any[];
1880
- insertColumns: VxeTableDefines.ColumnInfo[];
1881
- $table: VxeTableConstructor & VxeTablePrivateMethods;
1882
- $grid: VxeGridConstructor | null | undefined;
1887
+ insertRows: VxeTableDataRow[];
1888
+ insertColumns: VxeTableDefines.ColumnInfo<VxeTableDataRow>[];
1889
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1890
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
1883
1891
  }) => boolean) | undefined;
1884
1892
  createRowsMethod?: ((params: {
1885
- currentAreas: VxeTableProDefines.CellAreaParams[];
1886
- targetAreas: VxeTableProDefines.CellAreaParams[];
1893
+ currentAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
1894
+ targetAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
1887
1895
  cellValues: any[][];
1888
1896
  pasteCells: string[][];
1889
- insertRows: any[];
1890
- $table: VxeTableConstructor & VxeTablePrivateMethods;
1891
- $grid: VxeGridConstructor | null | undefined;
1892
- }) => any[]) | undefined;
1897
+ insertRows: VxeTableDataRow[];
1898
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1899
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
1900
+ }) => VxeTableDataRow[]) | undefined;
1893
1901
  createColumnsMethod?: ((params: {
1894
- currentAreas: VxeTableProDefines.CellAreaParams[];
1895
- targetAreas: VxeTableProDefines.CellAreaParams[];
1902
+ currentAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
1903
+ targetAreas: VxeTableProDefines.CellAreaParams<VxeTableDataRow>[];
1896
1904
  cellValues: any[][];
1897
1905
  pasteCells: string[][];
1898
- insertColumns: VxeTableDefines.ColumnOptions[];
1899
- $table: VxeTableConstructor & VxeTablePrivateMethods;
1900
- $grid: VxeGridConstructor | null | undefined;
1901
- }) => VxeTableDefines.ColumnOptions[]) | undefined;
1906
+ insertColumns: VxeTableDefines.ColumnOptions<VxeTableDataRow>[];
1907
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1908
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
1909
+ }) => VxeTableDefines.ColumnOptions<VxeTableDataRow>[]) | undefined;
1902
1910
  } | undefined;
1903
1911
  editConfig?: {
1904
- trigger?: "" | "manual" | "click" | "dblclick" | null | undefined;
1912
+ trigger?: "" | "click" | "manual" | "dblclick" | null | undefined;
1905
1913
  enabled?: boolean | undefined;
1906
1914
  mode?: string | undefined;
1907
1915
  icon?: string | undefined;
@@ -1912,20 +1920,20 @@ declare const _default: SFCWithInstall<DefineComponent<{
1912
1920
  showAsterisk?: boolean | undefined;
1913
1921
  autoClear?: boolean | undefined;
1914
1922
  beforeEditMethod?: ((params: {
1915
- row: any;
1923
+ row: VxeTableDataRow;
1916
1924
  rowIndex: number;
1917
- column: VxeTableDefines.ColumnInfo;
1925
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1918
1926
  columnIndex: number;
1919
- $table: VxeTableConstructor & VxeTablePrivateMethods;
1920
- $grid: VxeGridConstructor | null | undefined;
1927
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1928
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
1921
1929
  }) => boolean) | undefined;
1922
1930
  activeMethod?: ((params: {
1923
- row: any;
1931
+ row: VxeTableDataRow;
1924
1932
  rowIndex: number;
1925
- column: VxeTableDefines.ColumnInfo;
1933
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
1926
1934
  columnIndex: number;
1927
- $table: VxeTableConstructor & VxeTablePrivateMethods;
1928
- $grid: VxeGridConstructor | null | undefined;
1935
+ $table: VxeTableConstructor<VxeTableDataRow> & VxeTablePrivateMethods<VxeTableDataRow>;
1936
+ $grid: VxeGridConstructor<VxeTableDataRow> | null | undefined;
1929
1937
  }) => boolean) | undefined;
1930
1938
  } | undefined;
1931
1939
  validConfig?: {
@@ -1934,7 +1942,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
1934
1942
  message?: string | undefined;
1935
1943
  maxWidth?: number | undefined;
1936
1944
  } | undefined;
1937
- editRules?: VxeTablePropTypes.EditRules | undefined;
1945
+ editRules?: VxeTablePropTypes.EditRules<VxeTableDataRow> | undefined;
1938
1946
  emptyText?: string | undefined;
1939
1947
  emptyRender?: {
1940
1948
  name?: string | undefined;
@@ -1976,16 +1984,16 @@ declare const _default: SFCWithInstall<DefineComponent<{
1976
1984
  columns?: {
1977
1985
  children?: any[] | undefined;
1978
1986
  slots?: {
1979
- title?: string | ((params: VxeColumnPropTypes.HeaderSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1980
- radio?: string | ((params: VxeColumnPropTypes.DefaultSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1981
- checkbox?: string | ((params: VxeColumnPropTypes.DefaultSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1982
- default?: string | ((params: VxeColumnPropTypes.DefaultSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1983
- header?: string | ((params: VxeColumnPropTypes.HeaderSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1984
- footer?: string | ((params: VxeColumnPropTypes.FooterSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1985
- content?: string | ((params: VxeColumnPropTypes.ContentSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1986
- filter?: string | ((params: VxeColumnPropTypes.FilterSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1987
- edit?: string | ((params: VxeColumnPropTypes.EditSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1988
- icon?: string | ((params: VxeColumnPropTypes.IconSlotParams) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1987
+ title?: string | ((params: VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1988
+ radio?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1989
+ checkbox?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1990
+ default?: string | ((params: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1991
+ header?: string | ((params: VxeColumnSlotTypes.HeaderSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1992
+ footer?: string | ((params: VxeColumnSlotTypes.FooterSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1993
+ content?: string | ((params: VxeColumnSlotTypes.ContentSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1994
+ filter?: string | ((params: VxeColumnSlotTypes.FilterSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1995
+ edit?: string | ((params: VxeColumnSlotTypes.EditSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1996
+ icon?: string | ((params: VxeColumnSlotTypes.IconSlotParams<VxeTableDataRow>) => SlotVNodeType | SlotVNodeType[]) | null | undefined;
1989
1997
  } | undefined;
1990
1998
  colId?: VxeColumnPropTypes.ColId | undefined;
1991
1999
  type?: VxeColumnPropTypes.Type | undefined;
@@ -2002,12 +2010,12 @@ declare const _default: SFCWithInstall<DefineComponent<{
2002
2010
  showOverflow?: VxeTablePropTypes.ShowOverflow | undefined;
2003
2011
  showHeaderOverflow?: VxeTablePropTypes.ShowOverflow | undefined;
2004
2012
  showFooterOverflow?: VxeTablePropTypes.ShowOverflow | undefined;
2005
- className?: VxeColumnPropTypes.ClassName | undefined;
2006
- headerClassName?: VxeColumnPropTypes.HeaderClassName | undefined;
2007
- footerClassName?: VxeColumnPropTypes.FooterClassName | undefined;
2008
- formatter?: VxeColumnPropTypes.Formatter | undefined;
2013
+ className?: VxeColumnPropTypes.ClassName<VxeTableDataRow> | undefined;
2014
+ headerClassName?: VxeColumnPropTypes.HeaderClassName<VxeTableDataRow> | undefined;
2015
+ footerClassName?: VxeColumnPropTypes.FooterClassName<VxeTableDataRow> | undefined;
2016
+ formatter?: VxeColumnPropTypes.Formatter<VxeTableDataRow> | undefined;
2009
2017
  sortable?: boolean | undefined;
2010
- sortBy?: VxeColumnPropTypes.SortBy | undefined;
2018
+ sortBy?: VxeColumnPropTypes.SortBy<VxeTableDataRow> | undefined;
2011
2019
  sortType?: VxeColumnPropTypes.SortType | undefined;
2012
2020
  filters?: {
2013
2021
  label?: string | number | undefined;
@@ -2017,7 +2025,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
2017
2025
  checked?: boolean | undefined;
2018
2026
  }[] | undefined;
2019
2027
  filterMultiple?: boolean | undefined;
2020
- filterMethod?: VxeColumnPropTypes.FilterMethod | undefined;
2028
+ filterMethod?: VxeColumnPropTypes.FilterMethod<VxeTableDataRow> | undefined;
2021
2029
  filterRender?: {
2022
2030
  options?: any[] | undefined;
2023
2031
  optionProps?: {
@@ -2047,8 +2055,8 @@ declare const _default: SFCWithInstall<DefineComponent<{
2047
2055
  } | undefined;
2048
2056
  treeNode?: boolean | undefined;
2049
2057
  visible?: boolean | undefined;
2050
- exportMethod?: VxeColumnPropTypes.ExportMethod | undefined;
2051
- footerExportMethod?: VxeColumnPropTypes.FooterExportMethod | undefined;
2058
+ exportMethod?: VxeColumnPropTypes.ExportMethod<VxeTableDataRow> | undefined;
2059
+ footerExportMethod?: VxeColumnPropTypes.FooterExportMethod<VxeTableDataRow> | undefined;
2052
2060
  titleHelp?: {
2053
2061
  useHTML?: boolean | undefined;
2054
2062
  content?: VxeTooltipPropTypes.Content | undefined;
@@ -2068,7 +2076,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
2068
2076
  cellType?: VxeColumnPropTypes.CellType | undefined;
2069
2077
  cellRender?: {
2070
2078
  events?: {
2071
- [key: string]: (cellParams: VxeColumnPropTypes.DefaultSlotParams, ...args: any[]) => any;
2079
+ [key: string]: (cellParams: VxeColumnSlotTypes.DefaultSlotParams<VxeTableDataRow>, ...args: any[]) => any;
2072
2080
  } | undefined;
2073
2081
  options?: any[] | undefined;
2074
2082
  optionProps?: {
@@ -2095,7 +2103,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
2095
2103
  } | undefined;
2096
2104
  editRender?: {
2097
2105
  events?: {
2098
- [key: string]: (cellParams: VxeColumnPropTypes.EditSlotParams, ...args: any[]) => any;
2106
+ [key: string]: (cellParams: VxeColumnSlotTypes.EditSlotParams<VxeTableDataRow>, ...args: any[]) => any;
2099
2107
  } | undefined;
2100
2108
  enabled?: boolean | undefined;
2101
2109
  options?: any[] | undefined;
@@ -2113,7 +2121,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
2113
2121
  autofocus?: string | undefined;
2114
2122
  autoselect?: boolean | undefined;
2115
2123
  defaultValue?: string | number | object | any[] | ((params: {
2116
- column: VxeTableDefines.ColumnInfo;
2124
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
2117
2125
  }) => any) | {
2118
2126
  exec: (string: string) => RegExpExecArray | null;
2119
2127
  test: (string: string) => boolean;
@@ -2282,15 +2290,14 @@ declare const _default: SFCWithInstall<DefineComponent<{
2282
2290
  message?: string | undefined;
2283
2291
  } | undefined;
2284
2292
  ajax?: {
2285
- query?: ((params: VxeGridPropTypes.ProxyAjaxQueryParams, ...args: any[]) => Promise<any>) | undefined;
2286
- queryAll?: ((params: VxeGridPropTypes.ProxyAjaxQueryAllParams, ...args: any[]) => Promise<any>) | undefined;
2287
- delete?: ((params: VxeGridPropTypes.ProxyAjaxDeleteParams, ...args: any[]) => Promise<any>) | undefined;
2288
- save?: ((params: VxeGridPropTypes.ProxyAjaxSaveParams, ...args: any[]) => Promise<any>) | undefined;
2293
+ query?: ((params: VxeGridPropTypes.ProxyAjaxQueryParams<VxeTableDataRow>, ...args: any[]) => Promise<any>) | undefined;
2294
+ queryAll?: ((params: VxeGridPropTypes.ProxyAjaxQueryAllParams<VxeTableDataRow>, ...args: any[]) => Promise<any>) | undefined;
2295
+ delete?: ((params: VxeGridPropTypes.ProxyAjaxDeleteParams<VxeTableDataRow>, ...args: any[]) => Promise<any>) | undefined;
2296
+ save?: ((params: VxeGridPropTypes.ProxyAjaxSaveParams<VxeTableDataRow>, ...args: any[]) => Promise<any>) | undefined;
2289
2297
  } | undefined;
2290
2298
  } | undefined;
2291
2299
  toolbarConfig?: {
2292
2300
  enabled?: boolean | undefined;
2293
- buttons?: any[] | undefined;
2294
2301
  zoom?: boolean | {
2295
2302
  escRestore?: boolean | undefined;
2296
2303
  iconIn?: string | undefined;
@@ -2317,7 +2324,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
2317
2324
  refresh?: boolean | {
2318
2325
  queryMethod?: ((params: {
2319
2326
  [key: string]: any;
2320
- }) => Promise<any>) | undefined;
2327
+ }) => any) | undefined;
2321
2328
  code?: "" | "query" | "reload" | null | undefined;
2322
2329
  icon?: string | undefined;
2323
2330
  iconLoading?: string | undefined;
@@ -2339,11 +2346,45 @@ declare const _default: SFCWithInstall<DefineComponent<{
2339
2346
  immediate?: boolean | undefined;
2340
2347
  storage?: boolean | undefined;
2341
2348
  checkMethod?: ((params: {
2342
- column: VxeTableDefines.ColumnInfo;
2349
+ column: VxeTableDefines.ColumnInfo<VxeTableDataRow>;
2343
2350
  }) => boolean) | undefined;
2344
2351
  isFooter?: boolean | undefined;
2345
2352
  icon?: string | undefined;
2346
2353
  } | undefined;
2354
+ buttons?: {
2355
+ dropdowns?: any[] | undefined;
2356
+ buttonRender?: {
2357
+ name?: string | undefined;
2358
+ props?: {
2359
+ [key: string]: any;
2360
+ } | undefined;
2361
+ attrs?: {
2362
+ [key: string]: any;
2363
+ } | undefined;
2364
+ events?: {
2365
+ [key: string]: (...args: any[]) => any;
2366
+ } | undefined;
2367
+ children?: any[] | undefined;
2368
+ cellType?: "string" | "number" | undefined;
2369
+ } | undefined;
2370
+ code?: string | undefined;
2371
+ visible?: boolean | undefined;
2372
+ params?: any;
2373
+ size?: SizeType | undefined;
2374
+ type?: string | undefined;
2375
+ className?: string | undefined;
2376
+ name?: VxeButtonPropTypes.Name | undefined;
2377
+ content?: string | undefined;
2378
+ placement?: string | undefined;
2379
+ status?: string | undefined;
2380
+ icon?: string | undefined;
2381
+ round?: boolean | undefined;
2382
+ circle?: boolean | undefined;
2383
+ disabled?: boolean | undefined;
2384
+ loading?: boolean | undefined;
2385
+ destroyOnClose?: boolean | undefined;
2386
+ transfer?: boolean | undefined;
2387
+ }[] | undefined;
2347
2388
  tools?: {
2348
2389
  dropdowns?: any[] | undefined;
2349
2390
  toolRender?: {
@@ -2392,7 +2433,12 @@ declare const _default: SFCWithInstall<DefineComponent<{
2392
2433
  titleWidth?: VxeFormPropTypes.TitleWidth | undefined;
2393
2434
  titleColon?: boolean | undefined;
2394
2435
  titleAsterisk?: boolean | undefined;
2436
+ showTitle?: boolean | undefined;
2395
2437
  className?: VxeFormItemPropTypes.ClassName | undefined;
2438
+ contentClassName?: VxeFormItemPropTypes.ContentClassName | undefined;
2439
+ contentStyle?: VxeFormItemPropTypes.ContentStyle | undefined;
2440
+ titleClassName?: VxeFormItemPropTypes.TitleClassName | undefined;
2441
+ titleStyle?: VxeFormItemPropTypes.TitleStyle | undefined;
2396
2442
  titlePrefix?: {
2397
2443
  useHTML?: boolean | undefined;
2398
2444
  content?: VxeTooltipPropTypes.Content | undefined;
@@ -2429,7 +2475,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
2429
2475
  key?: string | undefined;
2430
2476
  } | undefined;
2431
2477
  content?: string | undefined;
2432
- autofocus?: boolean | undefined;
2478
+ autofocus?: string | undefined;
2433
2479
  defaultValue?: string | number | object | any[] | {
2434
2480
  exec: (string: string) => RegExpExecArray | null;
2435
2481
  test: (string: string) => boolean;
@@ -2574,9 +2620,12 @@ declare const _default: SFCWithInstall<DefineComponent<{
2574
2620
  };
2575
2621
  pageData: Ref<RecordStringNumber>;
2576
2622
  handleDeleteRow: (btn: PageButtonWithGroupCode) => void;
2577
- computedColumns: ComputedRef<VxeGridPropTypes.Columns>;
2623
+ handleDownLoadAll: (btn: PageDownLoadButton) => void;
2624
+ computedColumns: ComputedRef<VxeGridPropTypes.Columns<VxeTableDataRow>>;
2578
2625
  editRules: ComputedRef<ruleItem>;
2579
2626
  shake: Ref<boolean>;
2627
+ handleCheckboxChange: (params: GridCheckboxChangeParams) => void;
2628
+ handleCheckboxAll: (params: GridCheckboxAllParams) => void;
2580
2629
  }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
2581
2630
  readonly groupName: {
2582
2631
  readonly type: PropType<string>;
@@ -2611,7 +2660,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
2611
2660
  readonly default: () => {};
2612
2661
  };
2613
2662
  readonly vxeGridConfig: {
2614
- readonly type: PropType<VxeGridProps<any>>;
2663
+ readonly type: PropType<VxeGridProps<VxeTableDataRow>>;
2615
2664
  readonly default: () => {};
2616
2665
  };
2617
2666
  readonly shake: {
@@ -2619,15 +2668,15 @@ declare const _default: SFCWithInstall<DefineComponent<{
2619
2668
  readonly default: true;
2620
2669
  };
2621
2670
  }>>, {
2622
- readonly vxeGridConfig: VxeGridProps<any>;
2623
- readonly extend: Record<string, any>;
2624
- readonly groupCode: string;
2625
2671
  readonly columns: ColumnItem[];
2672
+ readonly buttons: PageButton[];
2673
+ readonly extend: Record<string, any>;
2626
2674
  readonly groupName: string;
2627
2675
  readonly groupNameI18nKey: string;
2676
+ readonly groupCode: string;
2628
2677
  readonly groupType: string;
2629
2678
  readonly sortOrder: string;
2630
- readonly buttons: PageButton[];
2631
2679
  readonly shake: boolean;
2632
- }>>;
2680
+ readonly vxeGridConfig: VxeGridProps<VxeTableDataRow>;
2681
+ }, {}>>;
2633
2682
  export default _default;