fast-element-plus 1.0.21 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +36 -0
- package/CONTRIBUTING.md +83 -0
- package/README.md +74 -115
- package/README.zh.md +74 -115
- package/SECURITY.md +34 -0
- package/dist/_virtual/_rolldown/runtime.mjs +13 -0
- package/dist/component.d.ts +4 -0
- package/dist/component.mjs +56 -0
- package/dist/component.mjs.map +1 -0
- package/dist/components/avatar/index.d.ts +15 -0
- package/dist/components/avatar/index.mjs +9 -0
- package/dist/components/avatar/index.mjs.map +1 -0
- package/dist/components/avatar/src/avatar.d.ts +128 -0
- package/dist/components/avatar/src/avatar.mjs +64 -0
- package/dist/components/avatar/src/avatar.mjs.map +1 -0
- package/dist/components/button/index.d.ts +14 -0
- package/dist/components/button/index.mjs +9 -0
- package/dist/components/button/index.mjs.map +1 -0
- package/dist/components/button/src/button.d.ts +180 -0
- package/dist/components/button/src/button.mjs +108 -0
- package/dist/components/button/src/button.mjs.map +1 -0
- package/dist/components/carNumber/index.d.ts +8 -0
- package/dist/components/carNumber/index.mjs +10 -0
- package/dist/components/carNumber/index.mjs.map +1 -0
- package/dist/components/carNumber/src/carNumber.d.ts +230 -0
- package/dist/components/carNumber/src/carNumber.mjs +149 -0
- package/dist/components/carNumber/src/carNumber.mjs.map +1 -0
- package/dist/components/carNumber/src/common.d.ts +15 -0
- package/dist/components/carNumber/src/common.mjs +97 -0
- package/dist/components/carNumber/src/common.mjs.map +1 -0
- package/dist/components/contextMenu/index.d.ts +8 -0
- package/dist/components/contextMenu/index.mjs +9 -0
- package/dist/components/contextMenu/index.mjs.map +1 -0
- package/dist/components/contextMenu/src/contextMenu.d.ts +32 -0
- package/dist/components/contextMenu/src/contextMenu.mjs +79 -0
- package/dist/components/contextMenu/src/contextMenu.mjs.map +1 -0
- package/dist/components/contextMenu/src/contextMenu.type.d.ts +31 -0
- package/dist/components/dialog/index.d.ts +14 -0
- package/dist/components/dialog/index.mjs +9 -0
- package/dist/components/dialog/index.mjs.map +1 -0
- package/dist/components/dialog/src/dialog.d.ts +472 -0
- package/dist/components/dialog/src/dialog.mjs +287 -0
- package/dist/components/dialog/src/dialog.mjs.map +1 -0
- package/dist/components/drawer/index.d.ts +15 -0
- package/dist/components/drawer/index.mjs +9 -0
- package/dist/components/drawer/index.mjs.map +1 -0
- package/dist/components/drawer/src/drawer.d.ts +470 -0
- package/dist/components/drawer/src/drawer.mjs +297 -0
- package/dist/components/drawer/src/drawer.mjs.map +1 -0
- package/dist/components/form/index.d.ts +23 -0
- package/dist/components/form/index.mjs +13 -0
- package/dist/components/form/index.mjs.map +1 -0
- package/dist/components/form/src/form.d.ts +208 -0
- package/dist/components/form/src/form.mjs +120 -0
- package/dist/components/form/src/form.mjs.map +1 -0
- package/dist/components/form/src/formItem.d.ts +208 -0
- package/dist/components/form/src/formItem.mjs +86 -0
- package/dist/components/form/src/formItem.mjs.map +1 -0
- package/dist/components/form/utils/form.d.ts +83 -0
- package/dist/components/form/utils/form.mjs +176 -0
- package/dist/components/form/utils/form.mjs.map +1 -0
- package/dist/components/formItemTip/index.d.ts +12 -0
- package/dist/components/formItemTip/index.mjs +9 -0
- package/dist/components/formItemTip/index.mjs.map +1 -0
- package/dist/components/formItemTip/src/formItemTip.d.ts +24 -0
- package/dist/components/formItemTip/src/formItemTip.mjs +30 -0
- package/dist/components/formItemTip/src/formItemTip.mjs.map +1 -0
- package/dist/components/icon/index.d.ts +12 -0
- package/dist/components/icon/index.mjs +9 -0
- package/dist/components/icon/index.mjs.map +1 -0
- package/dist/components/icon/src/icon.d.ts +40 -0
- package/dist/components/icon/src/icon.mjs +54 -0
- package/dist/components/icon/src/icon.mjs.map +1 -0
- package/dist/components/iconSelector/index.d.ts +7 -0
- package/dist/components/iconSelector/index.mjs +9 -0
- package/dist/components/iconSelector/index.mjs.map +1 -0
- package/dist/components/iconSelector/src/iconSelector.d.ts +35 -0
- package/dist/components/iconSelector/src/iconSelector.mjs +147 -0
- package/dist/components/iconSelector/src/iconSelector.mjs.map +1 -0
- package/dist/components/image/index.d.ts +12 -0
- package/dist/components/image/index.mjs +9 -0
- package/dist/components/image/index.mjs.map +1 -0
- package/dist/components/image/src/image.d.ts +277 -0
- package/dist/components/image/src/image.mjs +97 -0
- package/dist/components/image/src/image.mjs.map +1 -0
- package/dist/components/index.d.ts +22 -0
- package/dist/components/index.mjs +124 -0
- package/dist/components/index.mjs.map +1 -0
- package/dist/components/inputDialogPage/index.d.ts +14 -0
- package/dist/components/inputDialogPage/index.mjs +9 -0
- package/dist/components/inputDialogPage/index.mjs.map +1 -0
- package/dist/components/inputDialogPage/src/inputDialogPage.d.ts +134 -0
- package/dist/components/inputDialogPage/src/inputDialogPage.mjs +154 -0
- package/dist/components/inputDialogPage/src/inputDialogPage.mjs.map +1 -0
- package/dist/components/layoutGrid/index.d.ts +17 -0
- package/dist/components/layoutGrid/index.mjs +12 -0
- package/dist/components/layoutGrid/index.mjs.map +1 -0
- package/dist/components/layoutGrid/src/layoutGrid.d.ts +61 -0
- package/dist/components/layoutGrid/src/layoutGrid.mjs +163 -0
- package/dist/components/layoutGrid/src/layoutGrid.mjs.map +1 -0
- package/dist/components/layoutGrid/src/layoutGrid.type.d.ts +7 -0
- package/dist/components/layoutGrid/src/layoutGridItem.d.ts +101 -0
- package/dist/components/layoutGrid/src/layoutGridItem.mjs +85 -0
- package/dist/components/layoutGrid/src/layoutGridItem.mjs.map +1 -0
- package/dist/components/select/index.d.ts +23 -0
- package/dist/components/select/index.mjs +12 -0
- package/dist/components/select/index.mjs.map +1 -0
- package/dist/components/select/src/select.d.ts +618 -0
- package/dist/components/select/src/select.mjs +349 -0
- package/dist/components/select/src/select.mjs.map +1 -0
- package/dist/components/select/src/select.type.d.ts +32 -0
- package/dist/components/select/src/selectOption.d.ts +59 -0
- package/dist/components/select/src/selectOption.mjs +69 -0
- package/dist/components/select/src/selectOption.mjs.map +1 -0
- package/dist/components/selectPage/index.d.ts +14 -0
- package/dist/components/selectPage/index.mjs +9 -0
- package/dist/components/selectPage/index.mjs.map +1 -0
- package/dist/components/selectPage/src/selectPage.d.ts +583 -0
- package/dist/components/selectPage/src/selectPage.mjs +388 -0
- package/dist/components/selectPage/src/selectPage.mjs.map +1 -0
- package/dist/components/selectV2/index.d.ts +15 -0
- package/dist/components/selectV2/index.mjs +9 -0
- package/dist/components/selectV2/index.mjs.map +1 -0
- package/dist/components/selectV2/src/selectV2.d.ts +1477 -0
- package/dist/components/selectV2/src/selectV2.mjs +649 -0
- package/dist/components/selectV2/src/selectV2.mjs.map +1 -0
- package/dist/components/table/images/artwork.mjs +6 -0
- package/dist/components/table/images/artwork.mjs.map +1 -0
- package/dist/components/table/images/notImage.mjs +6 -0
- package/dist/components/table/images/notImage.mjs.map +1 -0
- package/dist/components/table/index.d.ts +34 -0
- package/dist/components/table/index.mjs +25 -0
- package/dist/components/table/index.mjs.map +1 -0
- package/dist/components/table/src/page.type.d.ts +145 -0
- package/dist/components/table/src/page.type.mjs +45 -0
- package/dist/components/table/src/page.type.mjs.map +1 -0
- package/dist/components/table/src/table.d.ts +1522 -0
- package/dist/components/table/src/table.mjs +1012 -0
- package/dist/components/table/src/table.mjs.map +1 -0
- package/dist/components/table/src/table.state.d.ts +113 -0
- package/dist/components/table/src/table.type.d.ts +266 -0
- package/dist/components/table/src/table.type.mjs +20 -0
- package/dist/components/table/src/table.type.mjs.map +1 -0
- package/dist/components/table/src/tableColumn.d.ts +666 -0
- package/dist/components/table/src/tableColumn.mjs +604 -0
- package/dist/components/table/src/tableColumn.mjs.map +1 -0
- package/dist/components/table/src/tableColumnSettingDialog.d.ts +18 -0
- package/dist/components/table/src/tableColumnSettingDialog.mjs +307 -0
- package/dist/components/table/src/tableColumnSettingDialog.mjs.map +1 -0
- package/dist/components/table/src/tablePagination.d.ts +24 -0
- package/dist/components/table/src/tablePagination.mjs +58 -0
- package/dist/components/table/src/tablePagination.mjs.map +1 -0
- package/dist/components/table/src/tableSearchForm.d.ts +86 -0
- package/dist/components/table/src/tableSearchForm.mjs +229 -0
- package/dist/components/table/src/tableSearchForm.mjs.map +1 -0
- package/dist/components/table/src/tableSearchFormItem.d.ts +35 -0
- package/dist/components/table/src/tableSearchFormItem.mjs +216 -0
- package/dist/components/table/src/tableSearchFormItem.mjs.map +1 -0
- package/dist/components/table/src/useTable.d.ts +44 -0
- package/dist/components/table/src/useTable.mjs +408 -0
- package/dist/components/table/src/useTable.mjs.map +1 -0
- package/dist/components/table/utils/table.d.ts +46 -0
- package/dist/components/table/utils/table.mjs +113 -0
- package/dist/components/table/utils/table.mjs.map +1 -0
- package/dist/components/tree/index.d.ts +15 -0
- package/dist/components/tree/index.mjs +9 -0
- package/dist/components/tree/index.mjs.map +1 -0
- package/dist/components/tree/src/tree.d.ts +579 -0
- package/dist/components/tree/src/tree.mjs +339 -0
- package/dist/components/tree/src/tree.mjs.map +1 -0
- package/dist/components/tree/src/tree.props.d.ts +33 -0
- package/dist/components/tree/src/tree.type.d.ts +38 -0
- package/dist/components/treeSelect/index.d.ts +14 -0
- package/dist/components/treeSelect/index.mjs +9 -0
- package/dist/components/treeSelect/index.mjs.map +1 -0
- package/dist/components/treeSelect/src/treeSelect.d.ts +1036 -0
- package/dist/components/treeSelect/src/treeSelect.mjs +463 -0
- package/dist/components/treeSelect/src/treeSelect.mjs.map +1 -0
- package/dist/components/upload/index.d.ts +14 -0
- package/dist/components/upload/index.mjs +9 -0
- package/dist/components/upload/index.mjs.map +1 -0
- package/dist/components/upload/src/upload.d.ts +488 -0
- package/dist/components/upload/src/upload.mjs +136 -0
- package/dist/components/upload/src/upload.mjs.map +1 -0
- package/dist/components/upload/src/useUpload.d.ts +35 -0
- package/dist/components/upload/src/useUpload.mjs +170 -0
- package/dist/components/upload/src/useUpload.mjs.map +1 -0
- package/dist/components/upload/utils/upload.d.ts +34 -0
- package/dist/components/upload/utils/upload.mjs +108 -0
- package/dist/components/upload/utils/upload.mjs.map +1 -0
- package/dist/components/uploadImage/index.d.ts +14 -0
- package/dist/components/uploadImage/index.mjs +9 -0
- package/dist/components/uploadImage/index.mjs.map +1 -0
- package/dist/components/uploadImage/src/uploadImage.d.ts +538 -0
- package/dist/components/uploadImage/src/uploadImage.mjs +203 -0
- package/dist/components/uploadImage/src/uploadImage.mjs.map +1 -0
- package/dist/components/uploadImages/index.d.ts +15 -0
- package/dist/components/uploadImages/index.mjs +9 -0
- package/dist/components/uploadImages/index.mjs.map +1 -0
- package/dist/components/uploadImages/src/uploadImages.d.ts +507 -0
- package/dist/components/uploadImages/src/uploadImages.mjs +186 -0
- package/dist/components/uploadImages/src/uploadImages.mjs.map +1 -0
- package/dist/constants/index.d.ts +2 -0
- package/dist/constants/mime.d.ts +59 -0
- package/dist/constants/mime.mjs +64 -0
- package/dist/constants/mime.mjs.map +1 -0
- package/dist/constants/regex.d.ts +76 -0
- package/dist/constants/regex.mjs +81 -0
- package/dist/constants/regex.mjs.map +1 -0
- package/dist/directive.d.ts +4 -0
- package/dist/directive.mjs +20 -0
- package/dist/directive.mjs.map +1 -0
- package/dist/directives/click-copy/index.d.ts +3 -0
- package/dist/directives/click-copy/index.mjs +39 -0
- package/dist/directives/click-copy/index.mjs.map +1 -0
- package/dist/directives/click-debounce/index.d.ts +7 -0
- package/dist/directives/click-debounce/index.mjs +17 -0
- package/dist/directives/click-debounce/index.mjs.map +1 -0
- package/dist/directives/click-draggable/index.d.ts +3 -0
- package/dist/directives/click-draggable/index.mjs +31 -0
- package/dist/directives/click-draggable/index.mjs.map +1 -0
- package/dist/directives/click-icon-copy/index.d.ts +3 -0
- package/dist/directives/click-icon-copy/index.mjs +47 -0
- package/dist/directives/click-icon-copy/index.mjs.map +1 -0
- package/dist/directives/click-longpress/index.d.ts +3 -0
- package/dist/directives/click-longpress/index.mjs +31 -0
- package/dist/directives/click-longpress/index.mjs.map +1 -0
- package/dist/directives/click-throttle/index.d.ts +7 -0
- package/dist/directives/click-throttle/index.mjs +26 -0
- package/dist/directives/click-throttle/index.mjs.map +1 -0
- package/dist/directives/index.d.ts +6 -0
- package/dist/element-plus.d.ts +8 -0
- package/dist/element-plus.mjs +172 -0
- package/dist/element-plus.mjs.map +1 -0
- package/dist/global.d.ts +58 -0
- package/dist/hooks/index.d.ts +3 -0
- package/dist/hooks/use-loading/index.d.ts +7 -0
- package/dist/hooks/use-loading/index.mjs +43 -0
- package/dist/hooks/use-loading/index.mjs.map +1 -0
- package/dist/hooks/use-overlay/index.d.ts +11 -0
- package/dist/hooks/use-overlay/index.mjs +33 -0
- package/dist/hooks/use-overlay/index.mjs.map +1 -0
- package/dist/hooks/use-screenFull/index.d.ts +15 -0
- package/dist/hooks/use-screenFull/index.mjs +56 -0
- package/dist/hooks/use-screenFull/index.mjs.map +1 -0
- package/dist/index.css +1 -0
- package/dist/index.css.map +1 -0
- package/dist/index.d.ts +20 -0
- package/dist/index.global.min.js +23 -0
- package/dist/index.global.min.js.map +1 -0
- package/dist/index.mjs +71 -0
- package/dist/index.mjs.map +1 -0
- package/dist/make-installer.d.ts +8 -0
- package/dist/make-installer.mjs +28 -0
- package/dist/make-installer.mjs.map +1 -0
- package/dist/node_modules/.pnpm/@vueuse_core@14.4.0_vue@3.5.41_typescript@6.0.3_/node_modules/@vueuse/core/dist/index.mjs +100 -0
- package/dist/node_modules/.pnpm/@vueuse_core@14.4.0_vue@3.5.41_typescript@6.0.3_/node_modules/@vueuse/core/dist/index.mjs.map +1 -0
- package/dist/node_modules/.pnpm/@vueuse_shared@14.4.0_vue@3.5.41_typescript@6.0.3_/node_modules/@vueuse/shared/dist/index.mjs +25 -0
- package/dist/node_modules/.pnpm/@vueuse_shared@14.4.0_vue@3.5.41_typescript@6.0.3_/node_modules/@vueuse/shared/dist/index.mjs.map +1 -0
- package/dist/node_modules/.pnpm/decimal.js@10.6.0/node_modules/decimal.js/decimal.mjs +1997 -0
- package/dist/node_modules/.pnpm/decimal.js@10.6.0/node_modules/decimal.js/decimal.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_DataView.mjs +8 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_DataView.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_Hash.mjs +30 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_Hash.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_ListCache.mjs +30 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_ListCache.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_Map.mjs +8 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_Map.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_MapCache.mjs +30 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_MapCache.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_Promise.mjs +8 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_Promise.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_Set.mjs +8 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_Set.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_SetCache.mjs +23 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_SetCache.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_Stack.mjs +27 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_Stack.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_Symbol.mjs +8 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_Symbol.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_Uint8Array.mjs +8 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_Uint8Array.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_WeakMap.mjs +8 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_WeakMap.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_apply.mjs +24 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_apply.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_arrayEach.mjs +19 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_arrayEach.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_arrayFilter.mjs +22 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_arrayFilter.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_arrayLikeKeys.mjs +26 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_arrayLikeKeys.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_arrayMap.mjs +19 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_arrayMap.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_arrayPush.mjs +18 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_arrayPush.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_arraySome.mjs +20 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_arraySome.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_assignValue.mjs +23 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_assignValue.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_assocIndexOf.mjs +19 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_assocIndexOf.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseAssign.mjs +19 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseAssign.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseAssignIn.mjs +19 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseAssignIn.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseAssignValue.mjs +24 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseAssignValue.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseClone.mjs +118 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseClone.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseCreate.mjs +27 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseCreate.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseFlatten.mjs +31 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseFlatten.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseGet.mjs +21 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseGet.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseGetAllKeys.mjs +22 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseGetAllKeys.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseGetTag.mjs +24 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseGetTag.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseIsArguments.mjs +19 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseIsArguments.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseIsEqual.mjs +26 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseIsEqual.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseIsEqualDeep.mjs +61 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseIsEqualDeep.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseIsMap.mjs +19 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseIsMap.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseIsNative.mjs +37 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseIsNative.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseIsSet.mjs +19 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseIsSet.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseIsTypedArray.mjs +47 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseIsTypedArray.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseKeys.mjs +22 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseKeys.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseKeysIn.mjs +23 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseKeysIn.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseSetToString.mjs +24 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseSetToString.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseSlice.mjs +25 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseSlice.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseTimes.mjs +19 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseTimes.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseToString.mjs +29 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseToString.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseUnary.mjs +17 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseUnary.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseUnset.mjs +31 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseUnset.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_cacheHas.mjs +16 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_cacheHas.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_castPath.mjs +21 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_castPath.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_cloneArrayBuffer.mjs +18 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_cloneArrayBuffer.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_cloneBuffer.mjs +27 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_cloneBuffer.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_cloneDataView.mjs +18 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_cloneDataView.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_cloneRegExp.mjs +19 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_cloneRegExp.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_cloneSymbol.mjs +19 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_cloneSymbol.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_cloneTypedArray.mjs +18 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_cloneTypedArray.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_copyArray.mjs +19 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_copyArray.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_copyObject.mjs +30 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_copyObject.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_copySymbols.mjs +18 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_copySymbols.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_copySymbolsIn.mjs +18 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_copySymbolsIn.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_coreJsData.mjs +8 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_coreJsData.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_customOmitClone.mjs +18 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_customOmitClone.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_defineProperty.mjs +13 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_defineProperty.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_equalArrays.mjs +57 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_equalArrays.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_equalByTag.mjs +77 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_equalByTag.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_equalObjects.mjs +56 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_equalObjects.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_flatRest.mjs +18 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_flatRest.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_freeGlobal.mjs +7 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_freeGlobal.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_getAllKeys.mjs +18 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_getAllKeys.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_getAllKeysIn.mjs +19 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_getAllKeysIn.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_getMapData.mjs +18 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_getMapData.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_getNative.mjs +19 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_getNative.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_getPrototype.mjs +8 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_getPrototype.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_getRawTag.mjs +38 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_getRawTag.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_getSymbols.mjs +24 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_getSymbols.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_getSymbolsIn.mjs +24 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_getSymbolsIn.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_getTag.mjs +45 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_getTag.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_getValue.mjs +16 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_getValue.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_hashClear.mjs +17 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_hashClear.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_hashDelete.mjs +20 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_hashDelete.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_hashGet.mjs +27 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_hashGet.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_hashHas.mjs +21 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_hashHas.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_hashSet.mjs +24 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_hashSet.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_initCloneArray.mjs +22 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_initCloneArray.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_initCloneByTag.mjs +66 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_initCloneByTag.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_initCloneObject.mjs +18 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_initCloneObject.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_isFlattenable.mjs +20 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_isFlattenable.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_isIndex.mjs +22 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_isIndex.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_isKey.mjs +24 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_isKey.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_isKeyable.mjs +16 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_isKeyable.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_isMasked.mjs +21 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_isMasked.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_isPrototype.mjs +18 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_isPrototype.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_listCacheClear.mjs +16 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_listCacheClear.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_listCacheDelete.mjs +25 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_listCacheDelete.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_listCacheGet.mjs +19 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_listCacheGet.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_listCacheHas.mjs +18 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_listCacheHas.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_listCacheSet.mjs +24 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_listCacheSet.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_mapCacheClear.mjs +23 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_mapCacheClear.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_mapCacheDelete.mjs +20 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_mapCacheDelete.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_mapCacheGet.mjs +18 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_mapCacheGet.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_mapCacheHas.mjs +18 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_mapCacheHas.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_mapCacheSet.mjs +22 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_mapCacheSet.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_mapToArray.mjs +19 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_mapToArray.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_memoizeCapped.mjs +24 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_memoizeCapped.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_nativeCreate.mjs +7 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_nativeCreate.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_nativeKeys.mjs +7 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_nativeKeys.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_nativeKeysIn.mjs +19 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_nativeKeysIn.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_nodeUtil.mjs +20 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_nodeUtil.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_objectToString.mjs +21 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_objectToString.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_overArg.mjs +18 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_overArg.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_overRest.mjs +28 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_overRest.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_parent.mjs +18 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_parent.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_root.mjs +10 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_root.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_setCacheAdd.mjs +21 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_setCacheAdd.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_setCacheHas.mjs +17 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_setCacheHas.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_setToArray.mjs +19 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_setToArray.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_setToString.mjs +16 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_setToString.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_shortOut.mjs +29 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_shortOut.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_stackClear.mjs +17 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_stackClear.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_stackDelete.mjs +19 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_stackDelete.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_stackGet.mjs +17 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_stackGet.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_stackHas.mjs +17 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_stackHas.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_stackSet.mjs +35 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_stackSet.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_stringToPath.mjs +25 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_stringToPath.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_toKey.mjs +20 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_toKey.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_toSource.mjs +25 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_toSource.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/constant.mjs +29 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/constant.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/eq.mjs +40 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/eq.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/flatten.mjs +23 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/flatten.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/identity.mjs +24 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/identity.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isArguments.mjs +36 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isArguments.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isArray.mjs +29 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isArray.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isArrayLike.mjs +35 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isArrayLike.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isBoolean.mjs +29 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isBoolean.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isBuffer.mjs +31 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isBuffer.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isEqual.mjs +37 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isEqual.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isFunction.mjs +34 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isFunction.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isLength.mjs +36 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isLength.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isMap.mjs +27 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isMap.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isNil.mjs +28 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isNil.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isNull.mjs +25 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isNull.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isNumber.mjs +38 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isNumber.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isObject.mjs +34 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isObject.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isObjectLike.mjs +32 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isObjectLike.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isPlainObject.mjs +54 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isPlainObject.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isSet.mjs +27 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isSet.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isString.mjs +30 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isString.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isSymbol.mjs +29 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isSymbol.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isTypedArray.mjs +27 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isTypedArray.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isUndefined.mjs +25 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isUndefined.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/keys.mjs +39 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/keys.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/keysIn.mjs +34 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/keysIn.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/last.mjs +23 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/last.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/memoize.mjs +65 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/memoize.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/omit.mjs +52 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/omit.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/stubArray.mjs +26 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/stubArray.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/stubFalse.mjs +21 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/stubFalse.mjs.map +1 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/toString.mjs +30 -0
- package/dist/node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/toString.mjs.map +1 -0
- package/dist/node_modules/.pnpm/screenfull@6.0.2/node_modules/screenfull/index.mjs +120 -0
- package/dist/node_modules/.pnpm/screenfull@6.0.2/node_modules/screenfull/index.mjs.map +1 -0
- package/dist/node_modules/.pnpm/sortablejs@1.15.7/node_modules/sortablejs/modular/sortable.esm.mjs +1925 -0
- package/dist/node_modules/.pnpm/sortablejs@1.15.7/node_modules/sortablejs/modular/sortable.esm.mjs.map +1 -0
- package/dist/utils/async/index.d.ts +35 -0
- package/dist/utils/async/index.mjs +94 -0
- package/dist/utils/async/index.mjs.map +1 -0
- package/dist/utils/date/index.d.ts +74 -0
- package/dist/utils/date/index.mjs +190 -0
- package/dist/utils/date/index.mjs.map +1 -0
- package/dist/utils/dom/index.d.ts +9 -0
- package/dist/utils/dom/index.mjs +35 -0
- package/dist/utils/dom/index.mjs.map +1 -0
- package/dist/utils/index.d.ts +10 -0
- package/dist/utils/string/index.d.ts +20 -0
- package/dist/utils/string/index.mjs +101 -0
- package/dist/utils/string/index.mjs.map +1 -0
- package/dist/utils/vue/emits.d.ts +23 -0
- package/dist/utils/vue/emits.mjs +47 -0
- package/dist/utils/vue/emits.mjs.map +1 -0
- package/dist/utils/vue/expose.d.ts +8 -0
- package/dist/utils/vue/expose.mjs +16 -0
- package/dist/utils/vue/expose.mjs.map +1 -0
- package/dist/utils/vue/func.d.ts +10 -0
- package/dist/utils/vue/func.mjs +16 -0
- package/dist/utils/vue/func.mjs.map +1 -0
- package/dist/utils/vue/index.d.ts +13 -0
- package/dist/utils/vue/install.d.ts +47 -0
- package/dist/utils/vue/install.mjs +123 -0
- package/dist/utils/vue/install.mjs.map +1 -0
- package/dist/utils/vue/props.d.ts +19 -0
- package/dist/utils/vue/props.mjs +41 -0
- package/dist/utils/vue/props.mjs.map +1 -0
- package/dist/utils/vue/render.d.ts +8 -0
- package/dist/utils/vue/render.mjs +17 -0
- package/dist/utils/vue/render.mjs.map +1 -0
- package/dist/utils/vue/slots.d.ts +18 -0
- package/dist/utils/vue/slots.mjs +13 -0
- package/dist/utils/vue/slots.mjs.map +1 -0
- package/dist/utils/vue/with.d.ts +8 -0
- package/dist/utils/vue/with.mjs +15 -0
- package/dist/utils/vue/with.mjs.map +1 -0
- package/dist/version.d.ts +2 -0
- package/dist/version.mjs +7 -0
- package/dist/version.mjs.map +1 -0
- package/package.json +91 -101
- package/dist/index.full.js +0 -27745
- package/dist/index.full.js.map +0 -1
- package/dist/index.full.min.js +0 -11042
- package/dist/index.full.min.js.map +0 -1
- package/dist/index.full.min.mjs +0 -11033
- package/dist/index.full.min.mjs.map +0 -1
- package/dist/index.full.mjs +0 -27737
- package/dist/index.full.mjs.map +0 -1
- package/dist/styles/index.css +0 -1003
- package/dist/styles/index.css.map +0 -1
- package/es/_virtual/_rolldown/runtime.mjs +0 -1
- package/es/component.d.ts +0 -3
- package/es/component.mjs +0 -2
- package/es/component.mjs.map +0 -1
- package/es/components/avatar/index.d.ts +0 -14
- package/es/components/avatar/index.mjs +0 -2
- package/es/components/avatar/index.mjs.map +0 -1
- package/es/components/avatar/src/avatar.d.ts +0 -125
- package/es/components/avatar/src/avatar.mjs +0 -2
- package/es/components/avatar/src/avatar.mjs.map +0 -1
- package/es/components/button/index.d.ts +0 -15
- package/es/components/button/index.mjs +0 -2
- package/es/components/button/index.mjs.map +0 -1
- package/es/components/button/src/button.d.ts +0 -177
- package/es/components/button/src/button.mjs +0 -2
- package/es/components/button/src/button.mjs.map +0 -1
- package/es/components/carNumber/index.d.ts +0 -9
- package/es/components/carNumber/index.mjs +0 -2
- package/es/components/carNumber/index.mjs.map +0 -1
- package/es/components/carNumber/src/carNumber.d.ts +0 -228
- package/es/components/carNumber/src/carNumber.mjs +0 -2
- package/es/components/carNumber/src/carNumber.mjs.map +0 -1
- package/es/components/carNumber/src/common.d.ts +0 -15
- package/es/components/carNumber/src/common.mjs +0 -2
- package/es/components/carNumber/src/common.mjs.map +0 -1
- package/es/components/contextMenu/index.d.ts +0 -9
- package/es/components/contextMenu/index.mjs +0 -2
- package/es/components/contextMenu/index.mjs.map +0 -1
- package/es/components/contextMenu/src/contextMenu.d.ts +0 -32
- package/es/components/contextMenu/src/contextMenu.mjs +0 -2
- package/es/components/contextMenu/src/contextMenu.mjs.map +0 -1
- package/es/components/contextMenu/src/contextMenu.type.d.ts +0 -33
- package/es/components/dialog/index.d.ts +0 -14
- package/es/components/dialog/index.mjs +0 -2
- package/es/components/dialog/index.mjs.map +0 -1
- package/es/components/dialog/src/dialog.d.ts +0 -454
- package/es/components/dialog/src/dialog.mjs +0 -2
- package/es/components/dialog/src/dialog.mjs.map +0 -1
- package/es/components/drawer/index.d.ts +0 -14
- package/es/components/drawer/index.mjs +0 -2
- package/es/components/drawer/index.mjs.map +0 -1
- package/es/components/drawer/src/drawer.d.ts +0 -458
- package/es/components/drawer/src/drawer.mjs +0 -2
- package/es/components/drawer/src/drawer.mjs.map +0 -1
- package/es/components/form/index.d.ts +0 -23
- package/es/components/form/index.mjs +0 -2
- package/es/components/form/index.mjs.map +0 -1
- package/es/components/form/src/form.d.ts +0 -194
- package/es/components/form/src/form.mjs +0 -2
- package/es/components/form/src/form.mjs.map +0 -1
- package/es/components/form/src/formItem.d.ts +0 -204
- package/es/components/form/src/formItem.mjs +0 -2
- package/es/components/form/src/formItem.mjs.map +0 -1
- package/es/components/form/utils/form.d.ts +0 -81
- package/es/components/form/utils/form.mjs +0 -2
- package/es/components/form/utils/form.mjs.map +0 -1
- package/es/components/formItemTip/index.d.ts +0 -12
- package/es/components/formItemTip/index.mjs +0 -2
- package/es/components/formItemTip/index.mjs.map +0 -1
- package/es/components/formItemTip/src/formItemTip.d.ts +0 -22
- package/es/components/formItemTip/src/formItemTip.mjs +0 -2
- package/es/components/formItemTip/src/formItemTip.mjs.map +0 -1
- package/es/components/icon/index.d.ts +0 -12
- package/es/components/icon/index.mjs +0 -2
- package/es/components/icon/index.mjs.map +0 -1
- package/es/components/icon/src/icon.d.ts +0 -39
- package/es/components/icon/src/icon.mjs +0 -2
- package/es/components/icon/src/icon.mjs.map +0 -1
- package/es/components/iconSelector/index.d.ts +0 -7
- package/es/components/iconSelector/index.mjs +0 -2
- package/es/components/iconSelector/index.mjs.map +0 -1
- package/es/components/iconSelector/src/iconSelector.d.ts +0 -23
- package/es/components/iconSelector/src/iconSelector.mjs +0 -2
- package/es/components/iconSelector/src/iconSelector.mjs.map +0 -1
- package/es/components/image/index.d.ts +0 -12
- package/es/components/image/index.mjs +0 -2
- package/es/components/image/index.mjs.map +0 -1
- package/es/components/image/src/image.d.ts +0 -232
- package/es/components/image/src/image.mjs +0 -2
- package/es/components/image/src/image.mjs.map +0 -1
- package/es/components/index.d.ts +0 -22
- package/es/components/index.mjs +0 -2
- package/es/components/index.mjs.map +0 -1
- package/es/components/inputDialogPage/index.d.ts +0 -14
- package/es/components/inputDialogPage/index.mjs +0 -2
- package/es/components/inputDialogPage/index.mjs.map +0 -1
- package/es/components/inputDialogPage/src/inputDialogPage.d.ts +0 -132
- package/es/components/inputDialogPage/src/inputDialogPage.mjs +0 -2
- package/es/components/inputDialogPage/src/inputDialogPage.mjs.map +0 -1
- package/es/components/layoutGrid/index.d.ts +0 -16
- package/es/components/layoutGrid/index.mjs +0 -2
- package/es/components/layoutGrid/index.mjs.map +0 -1
- package/es/components/layoutGrid/src/layoutGrid.d.ts +0 -60
- package/es/components/layoutGrid/src/layoutGrid.mjs +0 -2
- package/es/components/layoutGrid/src/layoutGrid.mjs.map +0 -1
- package/es/components/layoutGrid/src/layoutGrid.type.d.ts +0 -12
- package/es/components/layoutGrid/src/layoutGrid.type.mjs +0 -0
- package/es/components/layoutGrid/src/layoutGridItem.d.ts +0 -100
- package/es/components/layoutGrid/src/layoutGridItem.mjs +0 -2
- package/es/components/layoutGrid/src/layoutGridItem.mjs.map +0 -1
- package/es/components/select/index.d.ts +0 -22
- package/es/components/select/index.mjs +0 -2
- package/es/components/select/index.mjs.map +0 -1
- package/es/components/select/src/select.d.ts +0 -1206
- package/es/components/select/src/select.mjs +0 -2
- package/es/components/select/src/select.mjs.map +0 -1
- package/es/components/select/src/select.type.d.ts +0 -28
- package/es/components/select/src/select.type.mjs +0 -0
- package/es/components/select/src/selectOption.d.ts +0 -99
- package/es/components/select/src/selectOption.mjs +0 -2
- package/es/components/select/src/selectOption.mjs.map +0 -1
- package/es/components/selectPage/index.d.ts +0 -14
- package/es/components/selectPage/index.mjs +0 -2
- package/es/components/selectPage/index.mjs.map +0 -1
- package/es/components/selectPage/src/selectPage.d.ts +0 -609
- package/es/components/selectPage/src/selectPage.mjs +0 -2
- package/es/components/selectPage/src/selectPage.mjs.map +0 -1
- package/es/components/selectV2/index.d.ts +0 -14
- package/es/components/selectV2/index.mjs +0 -2
- package/es/components/selectV2/index.mjs.map +0 -1
- package/es/components/selectV2/src/selectV2.d.ts +0 -1399
- package/es/components/selectV2/src/selectV2.mjs +0 -2
- package/es/components/selectV2/src/selectV2.mjs.map +0 -1
- package/es/components/table/images/artwork.mjs +0 -2
- package/es/components/table/images/artwork.mjs.map +0 -1
- package/es/components/table/images/index.d.ts +0 -4
- package/es/components/table/images/notImage.mjs +0 -2
- package/es/components/table/images/notImage.mjs.map +0 -1
- package/es/components/table/index.d.ts +0 -35
- package/es/components/table/index.mjs +0 -2
- package/es/components/table/index.mjs.map +0 -1
- package/es/components/table/src/page.type.d.ts +0 -145
- package/es/components/table/src/page.type.mjs +0 -2
- package/es/components/table/src/page.type.mjs.map +0 -1
- package/es/components/table/src/table.d.ts +0 -1439
- package/es/components/table/src/table.mjs +0 -2
- package/es/components/table/src/table.mjs.map +0 -1
- package/es/components/table/src/table.state.d.ts +0 -111
- package/es/components/table/src/table.state.mjs +0 -0
- package/es/components/table/src/table.type.d.ts +0 -261
- package/es/components/table/src/table.type.mjs +0 -2
- package/es/components/table/src/table.type.mjs.map +0 -1
- package/es/components/table/src/tableColumn.d.ts +0 -658
- package/es/components/table/src/tableColumn.mjs +0 -2
- package/es/components/table/src/tableColumn.mjs.map +0 -1
- package/es/components/table/src/tableColumnSettingDialog.d.ts +0 -18
- package/es/components/table/src/tableColumnSettingDialog.mjs +0 -2
- package/es/components/table/src/tableColumnSettingDialog.mjs.map +0 -1
- package/es/components/table/src/tablePagination.d.ts +0 -24
- package/es/components/table/src/tablePagination.mjs +0 -2
- package/es/components/table/src/tablePagination.mjs.map +0 -1
- package/es/components/table/src/tableSearchForm.d.ts +0 -88
- package/es/components/table/src/tableSearchForm.mjs +0 -2
- package/es/components/table/src/tableSearchForm.mjs.map +0 -1
- package/es/components/table/src/tableSearchFormItem.d.ts +0 -37
- package/es/components/table/src/tableSearchFormItem.mjs +0 -2
- package/es/components/table/src/tableSearchFormItem.mjs.map +0 -1
- package/es/components/table/src/useTable.d.ts +0 -32
- package/es/components/table/src/useTable.mjs +0 -2
- package/es/components/table/src/useTable.mjs.map +0 -1
- package/es/components/table/utils/table.d.ts +0 -45
- package/es/components/table/utils/table.mjs +0 -2
- package/es/components/table/utils/table.mjs.map +0 -1
- package/es/components/tree/index.d.ts +0 -15
- package/es/components/tree/index.mjs +0 -2
- package/es/components/tree/index.mjs.map +0 -1
- package/es/components/tree/src/tree.d.ts +0 -562
- package/es/components/tree/src/tree.mjs +0 -2
- package/es/components/tree/src/tree.mjs.map +0 -1
- package/es/components/tree/src/tree.props.d.ts +0 -81
- package/es/components/tree/src/tree.props.mjs +0 -2
- package/es/components/tree/src/tree.props.mjs.map +0 -1
- package/es/components/tree/src/tree.type.d.ts +0 -36
- package/es/components/tree/src/tree.type.mjs +0 -0
- package/es/components/treeSelect/index.d.ts +0 -14
- package/es/components/treeSelect/index.mjs +0 -2
- package/es/components/treeSelect/index.mjs.map +0 -1
- package/es/components/treeSelect/src/treeSelect.d.ts +0 -965
- package/es/components/treeSelect/src/treeSelect.mjs +0 -2
- package/es/components/treeSelect/src/treeSelect.mjs.map +0 -1
- package/es/components/upload/index.d.ts +0 -15
- package/es/components/upload/index.mjs +0 -2
- package/es/components/upload/index.mjs.map +0 -1
- package/es/components/upload/src/upload.d.ts +0 -529
- package/es/components/upload/src/upload.mjs +0 -2
- package/es/components/upload/src/upload.mjs.map +0 -1
- package/es/components/upload/src/useUpload.d.ts +0 -65
- package/es/components/upload/src/useUpload.mjs +0 -2
- package/es/components/upload/src/useUpload.mjs.map +0 -1
- package/es/components/upload/utils/upload.d.ts +0 -30
- package/es/components/upload/utils/upload.mjs +0 -2
- package/es/components/upload/utils/upload.mjs.map +0 -1
- package/es/components/uploadImage/index.d.ts +0 -14
- package/es/components/uploadImage/index.mjs +0 -2
- package/es/components/uploadImage/index.mjs.map +0 -1
- package/es/components/uploadImage/src/uploadImage.d.ts +0 -579
- package/es/components/uploadImage/src/uploadImage.mjs +0 -2
- package/es/components/uploadImage/src/uploadImage.mjs.map +0 -1
- package/es/components/uploadImages/index.d.ts +0 -14
- package/es/components/uploadImages/index.mjs +0 -2
- package/es/components/uploadImages/index.mjs.map +0 -1
- package/es/components/uploadImages/src/uploadImages.d.ts +0 -548
- package/es/components/uploadImages/src/uploadImages.mjs +0 -2
- package/es/components/uploadImages/src/uploadImages.mjs.map +0 -1
- package/es/constants/index.d.ts +0 -2
- package/es/constants/index.mjs +0 -1
- package/es/constants/mime.d.ts +0 -61
- package/es/constants/mime.mjs +0 -2
- package/es/constants/mime.mjs.map +0 -1
- package/es/constants/regex.d.ts +0 -78
- package/es/constants/regex.mjs +0 -2
- package/es/constants/regex.mjs.map +0 -1
- package/es/directive.d.ts +0 -2
- package/es/directive.mjs +0 -2
- package/es/directive.mjs.map +0 -1
- package/es/directives/click-copy/index.d.ts +0 -2
- package/es/directives/click-copy/index.mjs +0 -2
- package/es/directives/click-copy/index.mjs.map +0 -1
- package/es/directives/click-debounce/index.d.ts +0 -2
- package/es/directives/click-debounce/index.mjs +0 -2
- package/es/directives/click-debounce/index.mjs.map +0 -1
- package/es/directives/click-draggable/index.d.ts +0 -2
- package/es/directives/click-draggable/index.mjs +0 -2
- package/es/directives/click-draggable/index.mjs.map +0 -1
- package/es/directives/click-icon-copy/index.d.ts +0 -2
- package/es/directives/click-icon-copy/index.mjs +0 -2
- package/es/directives/click-icon-copy/index.mjs.map +0 -1
- package/es/directives/click-longpress/index.d.ts +0 -2
- package/es/directives/click-longpress/index.mjs +0 -2
- package/es/directives/click-longpress/index.mjs.map +0 -1
- package/es/directives/click-throttle/index.d.ts +0 -2
- package/es/directives/click-throttle/index.mjs +0 -2
- package/es/directives/click-throttle/index.mjs.map +0 -1
- package/es/directives/index.d.ts +0 -6
- package/es/directives/index.mjs +0 -1
- package/es/element-plus.d.ts +0 -2
- package/es/element-plus.mjs +0 -2
- package/es/element-plus.mjs.map +0 -1
- package/es/hooks/index.d.ts +0 -3
- package/es/hooks/index.mjs +0 -1
- package/es/hooks/use-loading/index.d.ts +0 -4
- package/es/hooks/use-loading/index.mjs +0 -2
- package/es/hooks/use-loading/index.mjs.map +0 -1
- package/es/hooks/use-overlay/index.d.ts +0 -4
- package/es/hooks/use-overlay/index.mjs +0 -2
- package/es/hooks/use-overlay/index.mjs.map +0 -1
- package/es/hooks/use-screenFull/index.d.ts +0 -7
- package/es/hooks/use-screenFull/index.mjs +0 -2
- package/es/hooks/use-screenFull/index.mjs.map +0 -1
- package/es/index.d.ts +0 -14
- package/es/index.es.d.ts +0 -6
- package/es/index.mjs +0 -2
- package/es/index.mjs.map +0 -1
- package/es/make-installer.d.ts +0 -6
- package/es/make-installer.mjs +0 -2
- package/es/make-installer.mjs.map +0 -1
- package/es/version.d.ts +0 -1
- package/es/version.mjs +0 -2
- package/es/version.mjs.map +0 -1
- package/global.d.ts +0 -2
- package/lib/_virtual/_rolldown/runtime.js +0 -1
- package/lib/component.d.ts +0 -3
- package/lib/component.js +0 -2
- package/lib/component.js.map +0 -1
- package/lib/components/avatar/index.d.ts +0 -14
- package/lib/components/avatar/index.js +0 -2
- package/lib/components/avatar/index.js.map +0 -1
- package/lib/components/avatar/src/avatar.d.ts +0 -125
- package/lib/components/avatar/src/avatar.js +0 -2
- package/lib/components/avatar/src/avatar.js.map +0 -1
- package/lib/components/button/index.d.ts +0 -15
- package/lib/components/button/index.js +0 -2
- package/lib/components/button/index.js.map +0 -1
- package/lib/components/button/src/button.d.ts +0 -177
- package/lib/components/button/src/button.js +0 -2
- package/lib/components/button/src/button.js.map +0 -1
- package/lib/components/carNumber/index.d.ts +0 -9
- package/lib/components/carNumber/index.js +0 -2
- package/lib/components/carNumber/index.js.map +0 -1
- package/lib/components/carNumber/src/carNumber.d.ts +0 -228
- package/lib/components/carNumber/src/carNumber.js +0 -2
- package/lib/components/carNumber/src/carNumber.js.map +0 -1
- package/lib/components/carNumber/src/common.d.ts +0 -15
- package/lib/components/carNumber/src/common.js +0 -2
- package/lib/components/carNumber/src/common.js.map +0 -1
- package/lib/components/contextMenu/index.d.ts +0 -9
- package/lib/components/contextMenu/index.js +0 -2
- package/lib/components/contextMenu/index.js.map +0 -1
- package/lib/components/contextMenu/src/contextMenu.d.ts +0 -32
- package/lib/components/contextMenu/src/contextMenu.js +0 -2
- package/lib/components/contextMenu/src/contextMenu.js.map +0 -1
- package/lib/components/contextMenu/src/contextMenu.type.d.ts +0 -33
- package/lib/components/contextMenu/src/contextMenu.type.js +0 -0
- package/lib/components/dialog/index.d.ts +0 -14
- package/lib/components/dialog/index.js +0 -2
- package/lib/components/dialog/index.js.map +0 -1
- package/lib/components/dialog/src/dialog.d.ts +0 -454
- package/lib/components/dialog/src/dialog.js +0 -2
- package/lib/components/dialog/src/dialog.js.map +0 -1
- package/lib/components/drawer/index.d.ts +0 -14
- package/lib/components/drawer/index.js +0 -2
- package/lib/components/drawer/index.js.map +0 -1
- package/lib/components/drawer/src/drawer.d.ts +0 -458
- package/lib/components/drawer/src/drawer.js +0 -2
- package/lib/components/drawer/src/drawer.js.map +0 -1
- package/lib/components/form/index.d.ts +0 -23
- package/lib/components/form/index.js +0 -2
- package/lib/components/form/index.js.map +0 -1
- package/lib/components/form/src/form.d.ts +0 -194
- package/lib/components/form/src/form.js +0 -2
- package/lib/components/form/src/form.js.map +0 -1
- package/lib/components/form/src/formItem.d.ts +0 -204
- package/lib/components/form/src/formItem.js +0 -2
- package/lib/components/form/src/formItem.js.map +0 -1
- package/lib/components/form/utils/form.d.ts +0 -81
- package/lib/components/form/utils/form.js +0 -2
- package/lib/components/form/utils/form.js.map +0 -1
- package/lib/components/formItemTip/index.d.ts +0 -12
- package/lib/components/formItemTip/index.js +0 -2
- package/lib/components/formItemTip/index.js.map +0 -1
- package/lib/components/formItemTip/src/formItemTip.d.ts +0 -22
- package/lib/components/formItemTip/src/formItemTip.js +0 -2
- package/lib/components/formItemTip/src/formItemTip.js.map +0 -1
- package/lib/components/icon/index.d.ts +0 -12
- package/lib/components/icon/index.js +0 -2
- package/lib/components/icon/index.js.map +0 -1
- package/lib/components/icon/src/icon.d.ts +0 -39
- package/lib/components/icon/src/icon.js +0 -2
- package/lib/components/icon/src/icon.js.map +0 -1
- package/lib/components/iconSelector/index.d.ts +0 -7
- package/lib/components/iconSelector/index.js +0 -2
- package/lib/components/iconSelector/index.js.map +0 -1
- package/lib/components/iconSelector/src/iconSelector.d.ts +0 -23
- package/lib/components/iconSelector/src/iconSelector.js +0 -2
- package/lib/components/iconSelector/src/iconSelector.js.map +0 -1
- package/lib/components/image/index.d.ts +0 -12
- package/lib/components/image/index.js +0 -2
- package/lib/components/image/index.js.map +0 -1
- package/lib/components/image/src/image.d.ts +0 -232
- package/lib/components/image/src/image.js +0 -2
- package/lib/components/image/src/image.js.map +0 -1
- package/lib/components/index.d.ts +0 -22
- package/lib/components/index.js +0 -2
- package/lib/components/index.js.map +0 -1
- package/lib/components/inputDialogPage/index.d.ts +0 -14
- package/lib/components/inputDialogPage/index.js +0 -2
- package/lib/components/inputDialogPage/index.js.map +0 -1
- package/lib/components/inputDialogPage/src/inputDialogPage.d.ts +0 -132
- package/lib/components/inputDialogPage/src/inputDialogPage.js +0 -2
- package/lib/components/inputDialogPage/src/inputDialogPage.js.map +0 -1
- package/lib/components/layoutGrid/index.d.ts +0 -16
- package/lib/components/layoutGrid/index.js +0 -2
- package/lib/components/layoutGrid/index.js.map +0 -1
- package/lib/components/layoutGrid/src/layoutGrid.d.ts +0 -60
- package/lib/components/layoutGrid/src/layoutGrid.js +0 -2
- package/lib/components/layoutGrid/src/layoutGrid.js.map +0 -1
- package/lib/components/layoutGrid/src/layoutGrid.type.d.ts +0 -12
- package/lib/components/layoutGrid/src/layoutGrid.type.js +0 -0
- package/lib/components/layoutGrid/src/layoutGridItem.d.ts +0 -100
- package/lib/components/layoutGrid/src/layoutGridItem.js +0 -2
- package/lib/components/layoutGrid/src/layoutGridItem.js.map +0 -1
- package/lib/components/select/index.d.ts +0 -22
- package/lib/components/select/index.js +0 -2
- package/lib/components/select/index.js.map +0 -1
- package/lib/components/select/src/select.d.ts +0 -1206
- package/lib/components/select/src/select.js +0 -2
- package/lib/components/select/src/select.js.map +0 -1
- package/lib/components/select/src/select.type.d.ts +0 -28
- package/lib/components/select/src/select.type.js +0 -0
- package/lib/components/select/src/selectOption.d.ts +0 -99
- package/lib/components/select/src/selectOption.js +0 -2
- package/lib/components/select/src/selectOption.js.map +0 -1
- package/lib/components/selectPage/index.d.ts +0 -14
- package/lib/components/selectPage/index.js +0 -2
- package/lib/components/selectPage/index.js.map +0 -1
- package/lib/components/selectPage/src/selectPage.d.ts +0 -609
- package/lib/components/selectPage/src/selectPage.js +0 -2
- package/lib/components/selectPage/src/selectPage.js.map +0 -1
- package/lib/components/selectV2/index.d.ts +0 -14
- package/lib/components/selectV2/index.js +0 -2
- package/lib/components/selectV2/index.js.map +0 -1
- package/lib/components/selectV2/src/selectV2.d.ts +0 -1399
- package/lib/components/selectV2/src/selectV2.js +0 -2
- package/lib/components/selectV2/src/selectV2.js.map +0 -1
- package/lib/components/table/images/artwork.js +0 -2
- package/lib/components/table/images/artwork.js.map +0 -1
- package/lib/components/table/images/index.d.ts +0 -4
- package/lib/components/table/images/notImage.js +0 -2
- package/lib/components/table/images/notImage.js.map +0 -1
- package/lib/components/table/index.d.ts +0 -35
- package/lib/components/table/index.js +0 -2
- package/lib/components/table/index.js.map +0 -1
- package/lib/components/table/src/page.type.d.ts +0 -145
- package/lib/components/table/src/page.type.js +0 -2
- package/lib/components/table/src/page.type.js.map +0 -1
- package/lib/components/table/src/table.d.ts +0 -1439
- package/lib/components/table/src/table.js +0 -2
- package/lib/components/table/src/table.js.map +0 -1
- package/lib/components/table/src/table.state.d.ts +0 -111
- package/lib/components/table/src/table.state.js +0 -0
- package/lib/components/table/src/table.type.d.ts +0 -261
- package/lib/components/table/src/table.type.js +0 -2
- package/lib/components/table/src/table.type.js.map +0 -1
- package/lib/components/table/src/tableColumn.d.ts +0 -658
- package/lib/components/table/src/tableColumn.js +0 -2
- package/lib/components/table/src/tableColumn.js.map +0 -1
- package/lib/components/table/src/tableColumnSettingDialog.d.ts +0 -18
- package/lib/components/table/src/tableColumnSettingDialog.js +0 -2
- package/lib/components/table/src/tableColumnSettingDialog.js.map +0 -1
- package/lib/components/table/src/tablePagination.d.ts +0 -24
- package/lib/components/table/src/tablePagination.js +0 -2
- package/lib/components/table/src/tablePagination.js.map +0 -1
- package/lib/components/table/src/tableSearchForm.d.ts +0 -88
- package/lib/components/table/src/tableSearchForm.js +0 -2
- package/lib/components/table/src/tableSearchForm.js.map +0 -1
- package/lib/components/table/src/tableSearchFormItem.d.ts +0 -37
- package/lib/components/table/src/tableSearchFormItem.js +0 -2
- package/lib/components/table/src/tableSearchFormItem.js.map +0 -1
- package/lib/components/table/src/useTable.d.ts +0 -32
- package/lib/components/table/src/useTable.js +0 -2
- package/lib/components/table/src/useTable.js.map +0 -1
- package/lib/components/table/utils/table.d.ts +0 -45
- package/lib/components/table/utils/table.js +0 -2
- package/lib/components/table/utils/table.js.map +0 -1
- package/lib/components/tree/index.d.ts +0 -15
- package/lib/components/tree/index.js +0 -2
- package/lib/components/tree/index.js.map +0 -1
- package/lib/components/tree/src/tree.d.ts +0 -562
- package/lib/components/tree/src/tree.js +0 -2
- package/lib/components/tree/src/tree.js.map +0 -1
- package/lib/components/tree/src/tree.props.d.ts +0 -81
- package/lib/components/tree/src/tree.props.js +0 -2
- package/lib/components/tree/src/tree.props.js.map +0 -1
- package/lib/components/tree/src/tree.type.d.ts +0 -36
- package/lib/components/tree/src/tree.type.js +0 -0
- package/lib/components/treeSelect/index.d.ts +0 -14
- package/lib/components/treeSelect/index.js +0 -2
- package/lib/components/treeSelect/index.js.map +0 -1
- package/lib/components/treeSelect/src/treeSelect.d.ts +0 -965
- package/lib/components/treeSelect/src/treeSelect.js +0 -2
- package/lib/components/treeSelect/src/treeSelect.js.map +0 -1
- package/lib/components/upload/index.d.ts +0 -15
- package/lib/components/upload/index.js +0 -2
- package/lib/components/upload/index.js.map +0 -1
- package/lib/components/upload/src/upload.d.ts +0 -529
- package/lib/components/upload/src/upload.js +0 -2
- package/lib/components/upload/src/upload.js.map +0 -1
- package/lib/components/upload/src/useUpload.d.ts +0 -65
- package/lib/components/upload/src/useUpload.js +0 -2
- package/lib/components/upload/src/useUpload.js.map +0 -1
- package/lib/components/upload/utils/upload.d.ts +0 -30
- package/lib/components/upload/utils/upload.js +0 -2
- package/lib/components/upload/utils/upload.js.map +0 -1
- package/lib/components/uploadImage/index.d.ts +0 -14
- package/lib/components/uploadImage/index.js +0 -2
- package/lib/components/uploadImage/index.js.map +0 -1
- package/lib/components/uploadImage/src/uploadImage.d.ts +0 -579
- package/lib/components/uploadImage/src/uploadImage.js +0 -2
- package/lib/components/uploadImage/src/uploadImage.js.map +0 -1
- package/lib/components/uploadImages/index.d.ts +0 -14
- package/lib/components/uploadImages/index.js +0 -2
- package/lib/components/uploadImages/index.js.map +0 -1
- package/lib/components/uploadImages/src/uploadImages.d.ts +0 -548
- package/lib/components/uploadImages/src/uploadImages.js +0 -2
- package/lib/components/uploadImages/src/uploadImages.js.map +0 -1
- package/lib/constants/index.d.ts +0 -2
- package/lib/constants/index.js +0 -1
- package/lib/constants/mime.d.ts +0 -61
- package/lib/constants/mime.js +0 -2
- package/lib/constants/mime.js.map +0 -1
- package/lib/constants/regex.d.ts +0 -78
- package/lib/constants/regex.js +0 -2
- package/lib/constants/regex.js.map +0 -1
- package/lib/directive.d.ts +0 -2
- package/lib/directive.js +0 -2
- package/lib/directive.js.map +0 -1
- package/lib/directives/click-copy/index.d.ts +0 -2
- package/lib/directives/click-copy/index.js +0 -2
- package/lib/directives/click-copy/index.js.map +0 -1
- package/lib/directives/click-debounce/index.d.ts +0 -2
- package/lib/directives/click-debounce/index.js +0 -2
- package/lib/directives/click-debounce/index.js.map +0 -1
- package/lib/directives/click-draggable/index.d.ts +0 -2
- package/lib/directives/click-draggable/index.js +0 -2
- package/lib/directives/click-draggable/index.js.map +0 -1
- package/lib/directives/click-icon-copy/index.d.ts +0 -2
- package/lib/directives/click-icon-copy/index.js +0 -2
- package/lib/directives/click-icon-copy/index.js.map +0 -1
- package/lib/directives/click-longpress/index.d.ts +0 -2
- package/lib/directives/click-longpress/index.js +0 -2
- package/lib/directives/click-longpress/index.js.map +0 -1
- package/lib/directives/click-throttle/index.d.ts +0 -2
- package/lib/directives/click-throttle/index.js +0 -2
- package/lib/directives/click-throttle/index.js.map +0 -1
- package/lib/directives/index.d.ts +0 -6
- package/lib/directives/index.js +0 -1
- package/lib/element-plus.d.ts +0 -2
- package/lib/element-plus.js +0 -2
- package/lib/element-plus.js.map +0 -1
- package/lib/hooks/index.d.ts +0 -3
- package/lib/hooks/index.js +0 -1
- package/lib/hooks/use-loading/index.d.ts +0 -4
- package/lib/hooks/use-loading/index.js +0 -2
- package/lib/hooks/use-loading/index.js.map +0 -1
- package/lib/hooks/use-overlay/index.d.ts +0 -4
- package/lib/hooks/use-overlay/index.js +0 -2
- package/lib/hooks/use-overlay/index.js.map +0 -1
- package/lib/hooks/use-screenFull/index.d.ts +0 -7
- package/lib/hooks/use-screenFull/index.js +0 -2
- package/lib/hooks/use-screenFull/index.js.map +0 -1
- package/lib/index.d.ts +0 -14
- package/lib/index.es.d.ts +0 -6
- package/lib/index.js +0 -2
- package/lib/index.js.map +0 -1
- package/lib/make-installer.d.ts +0 -6
- package/lib/make-installer.js +0 -2
- package/lib/make-installer.js.map +0 -1
- package/lib/version.d.ts +0 -1
- package/lib/version.js +0 -2
- package/lib/version.js.map +0 -1
- package/styles/common/animation.scss +0 -46
- package/styles/common/common.scss +0 -44
- package/styles/common/loading.scss +0 -29
- package/styles/common/overlay.scss +0 -12
- package/styles/components/carNumber.scss +0 -44
- package/styles/components/contextMenu.scss +0 -34
- package/styles/components/dialog.scss +0 -88
- package/styles/components/drawer.scss +0 -87
- package/styles/components/form.scss +0 -44
- package/styles/components/formItemTip.scss +0 -7
- package/styles/components/image.scss +0 -19
- package/styles/components/select.scss +0 -35
- package/styles/components/selectPage.scss +0 -44
- package/styles/components/selectV2.scss +0 -22
- package/styles/components/table.scss +0 -440
- package/styles/components/tree.scss +0 -115
- package/styles/components/uploadImage.scss +0 -61
- package/styles/components/uploadImages.scss +0 -9
- package/styles/index.scss +0 -19
- package/types/components.d.ts +0 -145
- package/types/env.d.ts +0 -17
- /package/{es/components/contextMenu/src/contextMenu.type.mjs → dist/global.mjs} +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"table.mjs","names":[],"sources":["../../../../src/components/table/src/table.tsx"],"sourcesContent":["import { Fragment, computed, defineComponent, onActivated, onMounted, ref, watch, watchEffect } from \"vue\";\nimport { Eleme, More, Refresh, Search, Setting } from \"@element-plus/icons-vue\";\nimport {\n\tElButton,\n\tElDatePicker,\n\tElDropdown,\n\tElDropdownItem,\n\tElDropdownMenu,\n\tElIcon,\n\tElImageViewer,\n\tElInput,\n\tElPagination,\n\tElTable,\n\tElTableColumn,\n\tuseSizeProp,\n} from \"element-plus\";\nimport { NotData } from \"@fast-element-plus/icons-vue\";\nimport { isArray, isBoolean, isFunction, isNil, isNull, isNumber, isObject, isString, omit } from \"lodash-unified\";\nimport {\n\tcreateDateRangeShortcuts,\n\tcreateOneMonthRangeFromToday,\n\tdebounce,\n\tdefinePropType,\n\tmakeSlots,\n\trandomString,\n\tuseExpose,\n\tuseProps,\n\tuseRender,\n} from \"../../../utils\";\nimport { tableUtil } from \"../utils/table\";\nimport { getTableDefaultSlots } from \"./table.type\";\nimport FaTableColumn from \"./tableColumn\";\nimport FaTableColumnsSettingDialog from \"./tableColumnSettingDialog\";\nimport FaTablePagination from \"./tablePagination\";\nimport FaTableSearchForm from \"./tableSearchForm\";\nimport { useTable } from \"./useTable\";\nimport type { FaTableRow } from \"./table.state\";\nimport type { FaTableColumnCtx, FaTableDataRange, FaTableDefaultSlotsResult } from \"./table.type\";\nimport type { FaLayoutGridBreakPoint } from \"../../layoutGrid\";\nimport type { PagedInput, PagedResult, PagedSortInput } from \"../src/page.type\";\nimport type { TableColumnCtx, TableProps } from \"element-plus\";\nimport type { CSSProperties, PropType } from \"vue\";\n\ntype DefaultRow = FaTableRow;\n\ntype Layout = \"fixed\" | \"auto\";\n\n// type TreeProps = TableProps<DefaultRow>[\"treeProps\"];\n/** FaTable 树形数据的字段配置。 */\nexport interface TreeProps {\n\thasChildren?: string;\n\tchildren?: string;\n\tcheckStrictly?: boolean;\n}\n\n/** Element Plus Table 的透传 Props 定义。 */\nexport const tableProps = {\n\t/**\n\t * @description table data\n\t */\n\tdata: {\n\t\ttype: Array as PropType<DefaultRow[]>,\n\t\tdefault: (): DefaultRow[] => [],\n\t},\n\t/**\n\t * @description size of Table\n\t */\n\tsize: useSizeProp,\n\twidth: [String, Number],\n\t/**\n\t * @description table's height. By default it has an `auto` height. If its value is a number, the height is measured in pixels; if its value is a string, the value will be assigned to element's style.height, the height is affected by external styles\n\t */\n\theight: [String, Number],\n\t/**\n\t * @description table's max-height. The legal value is a number or the height in px\n\t */\n\tmaxHeight: [String, Number],\n\t/**\n\t * @description whether width of column automatically fits its container\n\t */\n\tfit: {\n\t\ttype: Boolean,\n\t\tdefault: true,\n\t},\n\t/**\n\t * @description whether Table is striped\n\t */\n\tstripe: Boolean,\n\t/**\n\t * @description whether Table has vertical border\n\t */\n\tborder: Boolean,\n\t/**\n\t * @description key of row data, used for optimizing rendering. Required if `reserve-selection` is on or display tree data. When its type is String, multi-level access is supported, e.g. `user.info.id`, but `user.info[0].id` is not supported, in which case `Function` should be used\n\t */\n\trowKey: [String, Function] as PropType<TableProps<DefaultRow>[\"rowKey\"]>,\n\t/**\n\t * @description whether Table header is visible\n\t */\n\tshowHeader: {\n\t\ttype: Boolean,\n\t\tdefault: true,\n\t},\n\t/**\n\t * @description whether to display a summary row\n\t */\n\tshowSummary: Boolean,\n\t/**\n\t * @description displayed text for the first column of summary row\n\t */\n\tsumText: String,\n\t/**\n\t * @description custom summary method\n\t */\n\tsummaryMethod: Function as PropType<TableProps<DefaultRow>[\"summaryMethod\"]>,\n\t/**\n\t * @description function that returns custom class names for a row, or a string assigning class names for every row\n\t */\n\trowClassName: [String, Function] as PropType<TableProps<DefaultRow>[\"rowClassName\"]>,\n\t/**\n\t * @description function that returns custom style for a row, or an object assigning custom style for every row\n\t */\n\trowStyle: [Object, Function] as PropType<TableProps<DefaultRow>[\"rowStyle\"]>,\n\t/**\n\t * @description function that returns custom class names for a cell, or a string assigning class names for every cell\n\t */\n\tcellClassName: [String, Function] as PropType<TableProps<DefaultRow>[\"cellClassName\"]>,\n\t/**\n\t * @description function that returns custom style for a cell, or an object assigning custom style for every cell\n\t */\n\tcellStyle: [Object, Function] as PropType<TableProps<DefaultRow>[\"cellStyle\"]>,\n\t/**\n\t * @description function that returns custom class names for a row in table header, or a string assigning class names for every row in table header\n\t */\n\theaderRowClassName: [String, Function] as PropType<TableProps<DefaultRow>[\"headerRowClassName\"]>,\n\t/**\n\t * @description function that returns custom style for a row in table header, or an object assigning custom style for every row in table header\n\t */\n\theaderRowStyle: [Object, Function] as PropType<TableProps<DefaultRow>[\"headerRowStyle\"]>,\n\t/**\n\t * @description function that returns custom class names for a cell in table header, or a string assigning class names for every cell in table header\n\t */\n\theaderCellClassName: [String, Function] as PropType<TableProps<DefaultRow>[\"headerCellClassName\"]>,\n\t/**\n\t * @description function that returns custom style for a cell in table header, or an object assigning custom style for every cell in table header\n\t */\n\theaderCellStyle: [Object, Function] as PropType<TableProps<DefaultRow>[\"headerCellStyle\"]>,\n\t/**\n\t * @description whether current row is highlighted\n\t */\n\thighlightCurrentRow: Boolean,\n\t/**\n\t * @description key of current row, a set only prop\n\t */\n\tcurrentRowKey: [String, Number],\n\t/**\n\t * @description displayed text when data is empty. You can customize this area with `#empty`\n\t */\n\temptyText: String,\n\t/**\n\t * @description set expanded rows by this prop, prop's value is the keys of expand rows, you should set row-key before using this prop\n\t */\n\texpandRowKeys: Array as PropType<TableProps<DefaultRow>[\"expandRowKeys\"]>,\n\t/** @description controls whether a row can be expanded */\n\trowExpandable: Function as PropType<TableProps<DefaultRow>[\"rowExpandable\"]>,\n\t/**\n\t * @description whether expand all rows by default, works when the table has a column type=\"expand\" or contains tree structure data\n\t */\n\tdefaultExpandAll: Boolean,\n\t/**\n\t * @description set the default sort column and order. property `prop` is used to set default sort column, property `order` is used to set default sort order\n\t */\n\tdefaultSort: Object as PropType<TableProps<DefaultRow>[\"defaultSort\"]>,\n\t/**\n\t * @description the `effect` of the overflow tooltip\n\t */\n\ttooltipEffect: String,\n\t/**\n\t * @description the options for the overflow tooltip, [see the following tooltip component](tooltip.html#attributes)\n\t */\n\ttooltipOptions: Object as PropType<TableProps<DefaultRow>[\"tooltipOptions\"]>,\n\t/**\n\t * @description method that returns rowspan and colspan\n\t */\n\tspanMethod: Function as PropType<TableProps<DefaultRow>[\"spanMethod\"]>,\n\t/**\n\t * @description controls the behavior of master checkbox in multi-select tables when only some rows are selected (but not all). If true, all rows will be selected, else deselected\n\t */\n\tselectOnIndeterminate: {\n\t\ttype: Boolean,\n\t\tdefault: true,\n\t},\n\t/**\n\t * @description horizontal indentation of tree data\n\t */\n\tindent: {\n\t\ttype: Number,\n\t\tdefault: 16,\n\t},\n\t/**\n\t * @description configuration for rendering nested data\n\t */\n\ttreeProps: {\n\t\ttype: Object as PropType<TreeProps>,\n\t\tdefault: (): TreeProps => ({\n\t\t\thasChildren: \"hasChildren\",\n\t\t\tchildren: \"children\",\n\t\t\tcheckStrictly: false,\n\t\t}),\n\t},\n\t/**\n\t * @description whether to lazy loading data\n\t */\n\tlazy: Boolean,\n\t/**\n\t * @description method for loading child row data, only works when `lazy` is true\n\t */\n\tload: Function as PropType<TableProps<DefaultRow>[\"load\"]>,\n\tstyle: {\n\t\ttype: Object as PropType<CSSProperties>,\n\t\tdefault: (): CSSProperties => ({}),\n\t},\n\tclassName: {\n\t\ttype: String,\n\t\tdefault: \"\",\n\t},\n\t/**\n\t * @description sets the algorithm used to lay out table cells, rows, and columns\n\t */\n\ttableLayout: {\n\t\ttype: String as PropType<Layout>,\n\t\tdefault: \"fixed\",\n\t},\n\t/**\n\t * @description always show scrollbar\n\t */\n\tscrollbarAlwaysOn: Boolean,\n\t/**\n\t * @description ensure main axis minimum-size doesn't follow the content\n\t */\n\tflexible: Boolean,\n\t/**\n\t * @description whether to hide extra content and show them in a tooltip when hovering on the cell.It will affect all the table columns\n\t */\n\tshowOverflowTooltip: [Boolean, Object] as PropType<TableProps<DefaultRow>[\"showOverflowTooltip\"]>,\n\t/** @description formats overflow tooltip content */\n\ttooltipFormatter: Function as PropType<TableProps<DefaultRow>[\"tooltipFormatter\"]>,\n\t/** @description element to which the filter panel is appended */\n\tappendFilterPanelTo: String,\n\tscrollbarTabindex: {\n\t\ttype: [Number, String],\n\t\tdefault: undefined,\n\t},\n\t/** @description whether the last column can be resized */\n\tallowDragLastColumn: {\n\t\ttype: Boolean,\n\t\tdefault: true,\n\t},\n\t/** @description whether collapsed expanded-row content remains mounted */\n\tpreserveExpandedContent: Boolean,\n\t/** @description whether to use native scrollbars */\n\tnativeScrollbar: Boolean,\n};\n\n/** FaTable 的运行时 Props 定义。 */\nexport const faTableProps = {\n\t...tableProps,\n\t/** @description whether Table has vertical border */\n\tborder: {\n\t\ttype: Boolean,\n\t\tdefault: true,\n\t},\n\t/** @description whether current row is highlighted */\n\thighlightCurrentRow: {\n\t\ttype: Boolean,\n\t\tdefault: true,\n\t},\n\t/** @description key of row data, used for optimizing rendering. Required if `reserve-selection` is on or display tree data. When its type is String, multi-level access is supported, e.g. `user.info.id`, but `user.info[0].id` is not supported, in which case `Function` should be used */\n\trowKey: {\n\t\ttype: [String, Function] as PropType<TableProps<DefaultRow>[\"rowKey\"]>,\n\t\tdefault: \"id\",\n\t},\n\t/** @description 组件封装,原生的已经失效 method that returns rowspan and colspan */\n\tspanMethod: {\n\t\ttype: Function as PropType<TableProps<DefaultRow>[\"spanMethod\"]>,\n\t\tvalidator: (): boolean => {\n\t\t\tconsole.warn(\"[Fast:FaTable]\", \"'spanMethod' 属性,组件已经封装,外部使用会失效。\");\n\t\t\treturn false;\n\t\t},\n\t},\n\t/** @description 表格Key */\n\ttableKey: {\n\t\ttype: String,\n\t\tdefault: (): string => randomString(8),\n\t},\n\t/** @description 表格数据 */\n\tdata: {\n\t\ttype: definePropType<DefaultRow[]>(Array),\n\t\tdefault: (): DefaultRow[] => [],\n\t},\n\t/** @description 请求api */\n\trequestApi: {\n\t\ttype: definePropType<(params?: PagedInput) => Promise<PagedResult<DefaultRow> | DefaultRow[]>>(Function),\n\t},\n\t/** @description 接口请求数据回调 */\n\tdataCallback: {\n\t\ttype: definePropType<(data: unknown) => void>(Function),\n\t},\n\t/** 初始化参数 */\n\tinitParam: definePropType<unknown>([String, Number, Object]),\n\t/** @description 列配置 */\n\tcolumns: {\n\t\ttype: definePropType<FaTableColumnCtx[] | false>([Array, Boolean]),\n\t\tdefault: (): FaTableColumnCtx[] | false => false,\n\t},\n\t/** @description 表格列改变 */\n\tcolumnsChange: {\n\t\ttype: definePropType<(columns: FaTableColumnCtx[]) => Promise<void>>(Function),\n\t},\n\t/** @description 搜索表单 Grid布局列配置 */\n\tsearchFormCols: {\n\t\ttype: definePropType<string | number | Record<FaLayoutGridBreakPoint, number>>([String, Number, Object]),\n\t\tdefault: (): string | number | Record<FaLayoutGridBreakPoint, number> => ({ xs: 1, sm: 2, md: 4, lg: 5, xl: 6 }),\n\t},\n\t/** @description 折叠搜素 */\n\tcollapsedSearch: {\n\t\ttype: Boolean,\n\t\tdefault: true,\n\t},\n\t/** @description 高级搜素抽屉 */\n\tadvancedSearchDrawer: {\n\t\ttype: Boolean,\n\t\tdefault: false,\n\t},\n\t/** @description 搜索表单 */\n\tsearchForm: {\n\t\ttype: Boolean,\n\t\tdefault: true,\n\t},\n\t/** @description 头部卡片 */\n\theaderCard: {\n\t\ttype: Boolean,\n\t\tdefault: true,\n\t},\n\t/** @description 刷新按钮 */\n\trefreshBtn: {\n\t\ttype: Boolean,\n\t\tdefault: true,\n\t},\n\t/** @description 搜索按钮 */\n\tsearchBtn: {\n\t\ttype: Boolean,\n\t\tdefault: true,\n\t},\n\t/** @description 列配置按钮 */\n\tcolumnSettingBtn: {\n\t\ttype: Boolean,\n\t\tdefault: false,\n\t},\n\t/** @description 头部卡片右侧功能按钮 */\n\ttoolBtn: {\n\t\ttype: Boolean,\n\t\tdefault: true,\n\t},\n\t/** @description 隐藏搜索时间 */\n\thideSearchTime: Boolean,\n\t/** @description 未来搜索时间 */\n\tfutureSearchTime: Boolean,\n\t/** @description 搜索时间范围 */\n\tdataSearchRange: {\n\t\ttype: definePropType<FaTableDataRange>(String),\n\t\tdefault: \"Past3D\",\n\t},\n\t/** @description 分页 */\n\tpagination: {\n\t\ttype: Boolean,\n\t\tdefault: true,\n\t},\n\t/** @description 页码 */\n\tpageSizes: {\n\t\ttype: definePropType<number[]>(Array),\n\t\tdefault: [20, 30, 50, 100],\n\t},\n\t/** @description 隐藏图片 */\n\thideImage: Boolean,\n\t/** @description 单选 */\n\tsingle: Boolean,\n\t/** @description 行点击选择 */\n\trowClickSelection: Boolean,\n\t/** @description 将父级数据的 children 展开为表格行,并把父级字段合并到子项;Element Plus 树表无需启用 */\n\ttreeData: Boolean,\n\t/** @description 配置选项 */\n\tprops: {\n\t\ttype: definePropType<{ span?: string; children?: string }>(Object),\n\t\tdefault: (): { span?: string; children?: string } => ({\n\t\t\tspan: undefined,\n\t\t\tchildren: \"children\",\n\t\t}),\n\t},\n\t/** @description 自动刷新,当传入 data 时候,如果存在更改则自动刷新 */\n\tautoRefresh: {\n\t\ttype: Boolean,\n\t\tdefault: true,\n\t},\n\t/**\n\t * 等价于 Table-Column 的 selectable\n\t * @description function that determines if a certain row can be selected, works when `type` is 'selection'\n\t */\n\trowSelectable: Function as PropType<TableColumnCtx<DefaultRow>[\"selectable\"]>,\n};\n\n/** FaTable 的运行时 Emits 定义。 */\nexport const faTableEmits = {\n\t/** @description 当用户手动勾选数据行的 Checkbox 时触发的事件 */\n\tselect: (selection: DefaultRow[], row: DefaultRow): boolean => isArray(selection) && isObject(row),\n\t/** @description 当用户手动勾选全选 Checkbox 时触发的事件 */\n\tselectAll: (selection: DefaultRow[]): boolean => isArray(selection),\n\t/** @description 当选择项发生变化时会触发该事件 */\n\tselectionChange: (newSelection: DefaultRow[]): boolean => isArray(newSelection),\n\t/** @description 当单元格 hover 进入时会触发该事件 */\n\tcellMouseEnter: (row: DefaultRow, column: TableColumnCtx<DefaultRow>, cell: HTMLTableCellElement, event: Event): boolean =>\n\t\tisObject(row) && isObject(column) && cell instanceof HTMLTableCellElement && event instanceof Event,\n\t/** @description 当单元格 hover 退出时会触发该事件 */\n\tcellMouseLeave: (row: DefaultRow, column: TableColumnCtx<DefaultRow>, cell: HTMLTableCellElement, event: Event): boolean =>\n\t\tisObject(row) && isObject(column) && cell instanceof HTMLTableCellElement && event instanceof Event,\n\t/** @description 当某个单元格被点击时会触发该事件 */\n\tcellClick: (row: DefaultRow, column: TableColumnCtx<DefaultRow>, cell: HTMLTableCellElement, event: Event): boolean =>\n\t\tisObject(row) && isObject(column) && cell instanceof HTMLTableCellElement && event instanceof Event,\n\t/** @description 当某个单元格被双击击时会触发该事件 */\n\tcellDblclick: (row: DefaultRow, column: TableColumnCtx<DefaultRow>, cell: HTMLTableCellElement, event: Event): boolean =>\n\t\tisObject(row) && isObject(column) && cell instanceof HTMLTableCellElement && event instanceof Event,\n\t/** @description 当某个单元格被鼠标右键点击时会触发该事件 */\n\tcellContextmenu: (row: DefaultRow, column: TableColumnCtx<DefaultRow>, cell: HTMLTableCellElement, event: Event): boolean =>\n\t\tisObject(row) && isObject(column) && cell instanceof HTMLTableCellElement && event instanceof Event,\n\t/** @description 当某一行被点击时会触发该事件 */\n\trowClick: (row: DefaultRow, column: TableColumnCtx<DefaultRow>, event: Event): boolean =>\n\t\tisObject(row) && isObject(column) && event instanceof Event,\n\t/** @description 当某一行被鼠标右键点击时会触发该事件 */\n\trowContextmenu: (row: DefaultRow, column: TableColumnCtx<DefaultRow>, event: Event): boolean =>\n\t\tisObject(row) && isObject(column) && event instanceof Event,\n\t/** @description 当某一行被双击时会触发该事件 */\n\trowDblclick: (row: DefaultRow, column: TableColumnCtx<DefaultRow>, event: Event): boolean =>\n\t\tisObject(row) && isObject(column) && event instanceof Event,\n\t/** @description 当某一列的表头被点击时会触发该事件 */\n\theaderClick: (column: TableColumnCtx<DefaultRow>, event: Event): boolean => isObject(column) && event instanceof Event,\n\t/** @description 当某一列的表头被鼠标右键点击时触发该事件 */\n\theaderContextmenu: (column: TableColumnCtx<DefaultRow>, event: Event): boolean => isObject(column) && event instanceof Event,\n\t/** @description 当表格的排序条件发生变化的时候会触发该事件 */\n\tsortChange: (data: { column: TableColumnCtx<DefaultRow>; prop: string; order: \"\" | \"ascending\" | \"descending\" }): boolean => isObject(data),\n\t/** @description column 的 key, 如果需要使用 filter-change 事件,则需要此属性标识是哪个 column 的筛选条件 */\n\tfilterChange: (newFilters: unknown): boolean => isString(newFilters) || isNumber(newFilters) || isBoolean(newFilters) || isObject(newFilters),\n\t/** @description 当表格的当前行发生变化的时候会触发该事件,如果要高亮当前行,请打开表格的 highlight-current-row 属性 */\n\tcurrentChange: (currentRow: DefaultRow, oldCurrentRow: DefaultRow | null): boolean =>\n\t\tisObject(currentRow) && (isNull(oldCurrentRow) || isObject(oldCurrentRow)),\n\t/** @description 当拖动表头改变了列的宽度的时候会触发该事件 */\n\theaderDragend: (newWidth: number, oldWidth: number, column: TableColumnCtx<DefaultRow>, event: MouseEvent): boolean =>\n\t\tisNumber(newWidth) && isNumber(oldWidth) && isObject(column) && event instanceof MouseEvent,\n\t/** @description 当用户对某一行展开或者关闭的时候会触发该事件(展开行时,回调的第二个参数为 expandedRows;树形表格时第二参数为 expanded) */\n\texpandChange: (row: DefaultRow, expanded: boolean | DefaultRow[]): boolean => isObject(row) && (isBoolean(expanded) || isArray(expanded)),\n\t/** @description 表格滚动时触发 */\n\tscroll: (data: { scrollLeft: number; scrollTop: number }): boolean => isObject(data),\n\n\t/** @description 表格刷新事件 */\n\trefresh: (params: PagedInput): boolean => isObject(params),\n\t/** @description 表格重置事件 */\n\treset: (params: PagedInput): boolean => isObject(params),\n\t/** @description 分页页码改变事件 */\n\tsizeChange: (pageSize: number): boolean => isNumber(pageSize),\n\t/** @description 分页改变事件 */\n\tpaginationChange: (pageIndex: number, pageSize: number): boolean => isNumber(pageIndex) && isNumber(pageSize),\n\t/** @description 自定义单元格点击事件 */\n\tcustomCellClick: (\n\t\temitName: string,\n\t\t{ row, column, $index }: { row: DefaultRow; column: FaTableColumnCtx; $index: number } & FaTableDefaultSlotsResult\n\t): boolean => (isNil(emitName) || isString(emitName)) && isObject(row) && isObject(column) && isNumber($index),\n};\n\n/** FaTable 的插槽参数。 */\nexport type FaTableSlots = Record<string, unknown> & {\n\t/** @description 默认内容插槽 */\n\tdefault: never;\n\t/** @description 插入至表格最后一行之后的内容, 如果需要对表格的内容进行无限滚动操作,可能需要用到这个 slot。 若表格有合计行,该 slot 会位于合计行之上。 */\n\tappend: never;\n\t/** @description 当数据为空时自定义的内容 */\n\tempty: never;\n\t/** @description 表格顶部插槽 */\n\ttopHeader: FaTableDefaultSlotsResult;\n\t/** @description 表格头部左侧插槽 */\n\theader: FaTableDefaultSlotsResult;\n\t/** @description 表格头部右侧功能按钮插槽 */\n\ttoolButton: FaTableDefaultSlotsResult;\n\t/** @description 表格头部右侧高级操作按钮插槽,ElDropdownMenuItem 标签 */\n\ttoolButtonAdv: FaTableDefaultSlotsResult;\n\t/** @description 表格操作列插槽 */\n\toperation: FaTableDefaultSlotsResult & {\n\t\trow: DefaultRow;\n\t\tcolumn: FaTableColumnCtx;\n\t\t$index: number;\n\t};\n\t/** @description 表格分页插槽 */\n\tpagination: {\n\t\tpageIndex: number;\n\t\tpageSize: number;\n\t\ttotalRows: number;\n\t\thandleSizeChange: (val: number) => void;\n\t\thandlePaginationChange: (val: number) => void;\n\t};\n\t/** @description 表格页脚插槽 */\n\tfooter: FaTableDefaultSlotsResult;\n\t/** @description 列配置 */\n\tcolumnSetting: never;\n} & Record<\n\t\tstring,\n\t\tFaTableDefaultSlotsResult & {\n\t\t\t/** @description slots为表格内容的时候才会返回 */\n\t\t\trow?: DefaultRow;\n\t\t\t/** @description slot为表头内容的时候返回 'TableColumnCtx<any>' 否则返回 'FaTableColumnCtx' */\n\t\t\tcolumn?: TableColumnCtx<DefaultRow> | FaTableColumnCtx;\n\t\t\t/** @description slot为非搜索项的时候才会返回 */\n\t\t\t$index?: number;\n\t\t\t/** @description slot为搜索项的时候才会返回 */\n\t\t\tsearch?: () => Promise<void>;\n\t\t}\n\t>;\n\nexport default defineComponent({\n\tname: \"FaTable\",\n\tprops: faTableProps,\n\temits: faTableEmits,\n\tslots: makeSlots<FaTableSlots>(),\n\tsetup(props, { slots, emit, expose }) {\n\t\tconst {\n\t\t\t_globalSize,\n\t\t\tstate,\n\t\t\telementRef,\n\t\t\ttableRef,\n\t\t\thandleTableColumnAutoWidth,\n\t\t\tloadTableColumns,\n\t\t\thandleSizeChange,\n\t\t\thandlePaginationChange,\n\t\t\tdefaultSearchTime,\n\t\t\ttableSearch,\n\t\t\ttableReset,\n\t\t\tdoRender,\n\t\t\tdoLoading,\n\t\t\thandleCustomCellClick,\n\t\t} = useTable(props, slots, emit);\n\t\tconst notifyColumnsChange = debounce(() => props.columnsChange?.(state.orgColumns), 500);\n\t\tconst resizeTableColumns = debounce(handleTableColumnAutoWidth, 100);\n\n\t\tconst columnSettingRef = ref<InstanceType<typeof FaTableColumnsSettingDialog>>();\n\t\tlet lastRowIndex = 0;\n\t\tconst getInitParam = (): Record<string, unknown> =>\n\t\t\ttypeof props.initParam === \"object\" && props.initParam !== null ? (props.initParam as Record<string, unknown>) : {};\n\t\tconst getRowKey = (row: DefaultRow): string | number | undefined => {\n\t\t\tconst value = isFunction(props.rowKey) ? props.rowKey(row) : tableUtil.handleRowAccordingToProp(row, props.rowKey);\n\t\t\treturn typeof value === \"string\" || typeof value === \"number\" ? value : undefined;\n\t\t};\n\n\t\tconst indexMethod = (index: number): number => {\n\t\t\tif (index === 0) {\n\t\t\t\tlastRowIndex = 0;\n\t\t\t}\n\t\t\tif (state.spanColumns?.length > 0) {\n\t\t\t\tconst rowspan = Number(state.tableSpanData[\"__table-index\"]?.[index] ?? 0);\n\t\t\t\tif (rowspan === 0) {\n\t\t\t\t\treturn lastRowIndex + (state.tablePagination.pageIndex - 1) * state.tablePagination.pageSize + 1;\n\t\t\t\t} else {\n\t\t\t\t\tlastRowIndex++;\n\t\t\t\t\treturn lastRowIndex + (state.tablePagination.pageIndex - 1) * state.tablePagination.pageSize;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn index + (state.tablePagination.pageIndex - 1) * state.tablePagination.pageSize + 1;\n\t\t};\n\n\t\tconst handleSelect = (selection: DefaultRow[], row: DefaultRow): void => {\n\t\t\t// 判断是否开启了单选\n\t\t\tif (props.single) {\n\t\t\t\ttableRef.value?.clearSelection();\n\t\t\t\tif (selection.length > 0 && row) {\n\t\t\t\t\ttableRef.value?.toggleRowSelection(row);\n\t\t\t\t}\n\t\t\t}\n\t\t\temit(\"select\", selection, row);\n\t\t};\n\n\t\tconst handleSelectAll = (selection: DefaultRow[]): void => {\n\t\t\tif (props.single) {\n\t\t\t\t// 判断是否已经选中数据\n\t\t\t\tif (state.selected) {\n\t\t\t\t\t// 默认选中的第一行\n\t\t\t\t\tif (state.tableData.length > 0) {\n\t\t\t\t\t\ttableRef.value?.clearSelection();\n\t\t\t\t\t\tconst firstRow = state.tableData[0];\n\t\t\t\t\t\tif (firstRow) tableRef.value?.toggleRowSelection(firstRow);\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\ttableRef.value?.clearSelection();\n\t\t\t\t}\n\t\t\t}\n\t\t\temit(\"selectAll\", selection);\n\t\t};\n\n\t\tconst handleSelectionChange = (newSelection: DefaultRow[]): void => {\n\t\t\tnewSelection.length === 0 ? (state.selected = false) : (state.selected = true);\n\t\t\t// 判断是否为单选\n\t\t\tif (props.single && newSelection.length > 0) {\n\t\t\t\t// 这里获取最后一个是因为选中改变的事件会触发多次,会带入旧的数据\n\t\t\t\tconst lastSelection = newSelection.at(-1);\n\t\t\t\tstate.selectedList = lastSelection === undefined ? [] : [lastSelection];\n\t\t\t} else {\n\t\t\t\tstate.selectedList = newSelection;\n\t\t\t}\n\t\t\t// 如果已经取消选择了,那么部分选择也应该要取消\n\t\t\tstate.indeterminateSelectedListIds = state.indeterminateSelectedListIds.filter((f) => state.selectedListIds.some((s) => s === f));\n\t\t\temit(\"selectionChange\", state.selectedList);\n\t\t};\n\n\t\tconst toggleRowIndeterminateSelection = (row: DefaultRow, selected?: boolean): void => {\n\t\t\tconst rowKey = getRowKey(row);\n\t\t\tif (rowKey === undefined) return;\n\t\t\tconst curRow = state.tableData.find((item) => getRowKey(item) === rowKey);\n\t\t\tif (selected === true) {\n\t\t\t\tif (!state.indeterminateSelectedListIds.some((s) => s === rowKey)) {\n\t\t\t\t\tstate.indeterminateSelectedListIds.push(rowKey);\n\t\t\t\t}\n\t\t\t\tif (curRow) tableRef.value?.toggleRowSelection(curRow, true);\n\t\t\t} else if (selected === false) {\n\t\t\t\tconst fIndex = state.indeterminateSelectedListIds.findIndex((f) => f === rowKey);\n\t\t\t\tif (fIndex >= 0) {\n\t\t\t\t\tstate.indeterminateSelectedListIds.splice(fIndex, 1);\n\t\t\t\t}\n\t\t\t\tif (curRow) tableRef.value?.toggleRowSelection(curRow, false);\n\t\t\t} else {\n\t\t\t\tconst fIndex = state.indeterminateSelectedListIds.findIndex((f) => f === rowKey);\n\t\t\t\tif (fIndex >= 0) {\n\t\t\t\t\tstate.indeterminateSelectedListIds.splice(fIndex, 1);\n\t\t\t\t} else {\n\t\t\t\t\tstate.indeterminateSelectedListIds.push(rowKey);\n\t\t\t\t}\n\t\t\t\tif (curRow) tableRef.value?.toggleRowSelection(curRow);\n\t\t\t}\n\t\t};\n\n\t\tconst handleSortChange = ({\n\t\t\tcolumn,\n\t\t\tprop,\n\t\t}: {\n\t\t\tcolumn: TableColumnCtx<DefaultRow> & { multiOrder?: \"\" | \"ascending\" | \"descending\" };\n\t\t\tprop: string | null;\n\t\t\torder: \"\" | \"ascending\" | \"descending\" | null;\n\t\t}): void => {\n\t\t\tconst normalizedProp = prop ?? column.property;\n\t\t\tif (!column.multiOrder) {\n\t\t\t\tcolumn.multiOrder = \"descending\";\n\t\t\t} else if (column.multiOrder === \"descending\") {\n\t\t\t\tcolumn.multiOrder = \"ascending\";\n\t\t\t} else {\n\t\t\t\tcolumn.multiOrder = undefined;\n\t\t\t}\n\t\t\t// 排序集合非空判断\n\t\t\tconst initSortList = getInitParam()[\"sortList\"];\n\t\t\tstate.searchParam.sortList = [\n\t\t\t\t...(isArray(initSortList) ? (initSortList as PagedSortInput[]) : []),\n\t\t\t\t...(state.searchParam.sortList ?? []),\n\t\t\t].filter((item, index, list) => list.findIndex((candidate) => candidate.enField === item.enField) === index);\n\n\t\t\t// 去原来的列中查找表格的列数据\n\t\t\tconst orgColumn = state.orgColumns.find((f) => f.prop === normalizedProp);\n\t\t\tconst enField = orgColumn?.sortableField ?? orgColumn?.prop ?? column.property;\n\t\t\tconst fieldIndex = state.searchParam.sortList.findIndex((f: PagedSortInput) => f.enField === enField);\n\t\t\tif (!column.multiOrder && fieldIndex >= 0) {\n\t\t\t\t// 如果是空的,删除排序\n\t\t\t\tstate.searchParam.sortList.splice(fieldIndex, 1);\n\t\t\t} else if (fieldIndex === -1) {\n\t\t\t\tstate.searchParam.sortList.push({\n\t\t\t\t\tenField,\n\t\t\t\t\tcnField: column.label,\n\t\t\t\t\tmode: column.multiOrder,\n\t\t\t\t});\n\t\t\t} else {\n\t\t\t\tconst sortItem = state.searchParam.sortList[fieldIndex];\n\t\t\t\tif (sortItem) sortItem.mode = column.multiOrder;\n\t\t\t}\n\t\t\t// 判断最后的排序集合中是否还存在数据,如果不存在,则删除排序集合\n\t\t\tif (state.searchParam.sortList.length === 0) {\n\t\t\t\tdelete state.searchParam.sortList;\n\t\t\t}\n\t\t\temit(\"sortChange\", { column, prop: normalizedProp, order: column.multiOrder ?? \"\" });\n\t\t\tvoid tableSearch();\n\t\t};\n\n\t\tconst handleCurrentChange = (currentRow: DefaultRow | null, oldCurrentRow: DefaultRow | null): void => {\n\t\t\tif (!currentRow) {\n\t\t\t\t// 这里为空的时候,会导致 Header 中的不确定状态还是true的状态\n\t\t\t\t// tableRef.value.clearSelection();\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tif (props.rowClickSelection) {\n\t\t\t\t// 判断是否为单选\n\t\t\t\tif (props.single && oldCurrentRow) {\n\t\t\t\t\ttableRef.value?.toggleRowSelection(oldCurrentRow);\n\t\t\t\t}\n\t\t\t\ttableRef.value?.toggleRowSelection(currentRow);\n\t\t\t}\n\t\t\temit(\"currentChange\", currentRow, oldCurrentRow);\n\t\t};\n\n\t\tconst handleCellClassName = ({\n\t\t\trow,\n\t\t\tcolumn,\n\t\t\trowIndex,\n\t\t\tcolumnIndex,\n\t\t}: {\n\t\t\trow: DefaultRow;\n\t\t\tcolumn: TableColumnCtx<DefaultRow>;\n\t\t\trowIndex: number;\n\t\t\tcolumnIndex: number;\n\t\t}): string => {\n\t\t\tlet localCellClassName = \"\";\n\t\t\t// 判断是否为选择列\n\t\t\tif (column.type === \"selection\") {\n\t\t\t\t// 判断是否在部分选中的集合中\n\t\t\t\tconst rowKey = getRowKey(row);\n\t\t\t\tif (state.indeterminateSelectedListIds.some((s) => s === rowKey)) {\n\t\t\t\t\tlocalCellClassName = \"fa-table__selection-column__indeterminate\";\n\t\t\t\t}\n\t\t\t}\n\t\t\tconst columnInfo = state.tableColumns.find((f) => f.prop === column.property);\n\t\t\tif (columnInfo?.dataDeleteField) {\n\t\t\t\tif (row?.[columnInfo.dataDeleteField] === true) {\n\t\t\t\t\tif (localCellClassName) {\n\t\t\t\t\t\tlocalCellClassName += \" fa-table__data-delete-column\";\n\t\t\t\t\t} else {\n\t\t\t\t\t\tlocalCellClassName = \"fa-table__data-delete-column\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (props.cellClassName) {\n\t\t\t\tconst cellClassName = isString(props.cellClassName)\n\t\t\t\t\t? props.cellClassName\n\t\t\t\t\t: props.cellClassName({ row, column, rowIndex, columnIndex });\n\t\t\t\tif (!cellClassName) {\n\t\t\t\t\treturn localCellClassName;\n\t\t\t\t}\n\t\t\t\tif (localCellClassName) {\n\t\t\t\t\treturn `${localCellClassName} ${cellClassName}`;\n\t\t\t\t} else {\n\t\t\t\t\treturn cellClassName;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\treturn localCellClassName;\n\t\t\t}\n\t\t};\n\n\t\tconst handleHeaderCellClassName = ({\n\t\t\trow,\n\t\t\tcolumn,\n\t\t\trowIndex,\n\t\t\tcolumnIndex,\n\t\t}: {\n\t\t\trow: DefaultRow;\n\t\t\tcolumn: TableColumnCtx<DefaultRow> & { multiOrder?: \"\" | \"ascending\" | \"descending\" };\n\t\t\trowIndex: number;\n\t\t\tcolumnIndex: number;\n\t\t}): string => {\n\t\t\t// TODO:不晓得这里有无问题,EL 更新了还未测试\n\t\t\tcolumn.order = column.multiOrder === \"ascending\" || column.multiOrder === \"descending\" ? column.multiOrder : null;\n\t\t\tif (props.headerCellClassName) {\n\t\t\t\tif (isFunction(props.headerCellClassName)) {\n\t\t\t\t\treturn props.headerCellClassName({ row, column, rowIndex, columnIndex });\n\t\t\t\t} else {\n\t\t\t\t\treturn props.headerCellClassName;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn \"\";\n\t\t};\n\n\t\tconst handleSpanMethod = ({\n\t\t\tcolumn,\n\t\t\trowIndex,\n\t\t}: {\n\t\t\trow: DefaultRow;\n\t\t\tcolumn: TableColumnCtx<DefaultRow>;\n\t\t\trowIndex: number;\n\t\t\tcolumnIndex: number;\n\t\t}): number[] | { rowspan: number; colspan: number } => {\n\t\t\t/** @description 原生的 span-method 会失效 */\n\t\t\tconst pKey = column.property ?? column.columnKey;\n\t\t\tif (state.spanColumns.findIndex((f) => f.prop === pKey) !== -1) {\n\t\t\t\tconst rowspan = Number(state.tableSpanData[pKey]?.[rowIndex] ?? 0);\n\t\t\t\tif (rowspan > 0) {\n\t\t\t\t\treturn { rowspan, colspan: 1 };\n\t\t\t\t}\n\t\t\t\treturn { rowspan: 0, colspan: 0 };\n\t\t\t}\n\t\t\treturn { rowspan: 1, colspan: 1 };\n\t\t};\n\n\t\tconst handleHeaderDragend = (newWidth: number, oldWidth: number, column: TableColumnCtx<DefaultRow>, event: MouseEvent): void => {\n\t\t\tstate.orgColumns.forEach((f) => {\n\t\t\t\tif (column.property === f.prop) {\n\t\t\t\t\tf.width = newWidth;\n\t\t\t\t\tf.smallWidth = newWidth;\n\t\t\t\t}\n\t\t\t});\n\t\t\temit(\"headerDragend\", newWidth, oldWidth, column, event);\n\t\t\tif (props.columnsChange) void notifyColumnsChange();\n\t\t};\n\n\t\tconst handleImagePreview = (url: string): void => {\n\t\t\tstate.previewList = [url];\n\t\t\tstate.imagePreview = true;\n\t\t};\n\n\t\tonMounted(async () => {\n\t\t\tstate.initParam = getInitParam();\n\t\t\tdefaultSearchTime();\n\t\t\t// 初始化搜索表单的时候,如果有默认搜索参数,则重置默认的搜索参数\n\t\t\tObject.entries(getInitParam()).forEach(([key, value]) => {\n\t\t\t\tstate.searchParam[key] = value;\n\t\t\t});\n\t\t\tawait tableSearch();\n\n\t\t\twatch(\n\t\t\t\t() => props.columns,\n\t\t\t\t() => {\n\t\t\t\t\tloadTableColumns();\n\t\t\t\t},\n\t\t\t\t{ deep: true, immediate: true }\n\t\t\t);\n\n\t\t\twatch(\n\t\t\t\t() => props.initParam,\n\t\t\t\t() => {\n\t\t\t\t\t// 如果初始化参数改变了,则需要改变对应的搜索参数\n\t\t\t\t\tObject.entries(getInitParam()).forEach(([key, value]) => {\n\t\t\t\t\t\tstate.searchParam[key] = value;\n\t\t\t\t\t});\n\t\t\t\t},\n\t\t\t\t{ deep: true }\n\t\t\t);\n\n\t\t\twatch(\n\t\t\t\t() => props.data,\n\t\t\t\t() => {\n\t\t\t\t\tif (!props.requestApi && props.autoRefresh) {\n\t\t\t\t\t\treturn tableSearch();\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t{ deep: true, immediate: true }\n\t\t\t);\n\n\t\t\twatchEffect(() => {\n\t\t\t\tconst element = elementRef.value;\n\t\t\t\tif (element) {\n\t\t\t\t\tconst observer = new ResizeObserver((entries) => {\n\t\t\t\t\t\tfor (const entry of entries) {\n\t\t\t\t\t\t\tconst { width, height } = entry.contentRect;\n\t\t\t\t\t\t\tstate.tableWidth = width;\n\t\t\t\t\t\t\tstate.tableHeight = height;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tvoid resizeTableColumns();\n\t\t\t\t\t});\n\t\t\t\t\tobserver.observe(element);\n\n\t\t\t\t\treturn (): void => {\n\t\t\t\t\t\tobserver.disconnect();\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\n\t\tonActivated(() => {\n\t\t\t// 解决 keep-alive 后自动列宽失效的问题\n\t\t\tvoid handleTableColumnAutoWidth();\n\t\t});\n\n\t\tconst tableColumnOmitNames = [\"multiOrder\", \"columnId\", \"order\", \"sortableField\", \"disabledSortable\", \"spanProp\", \"pureSearch\", \"search\"];\n\t\tconst searchInputClearable = computed(() => {\n\t\t\tconst value = state.searchParam.searchValue;\n\t\t\treturn (value !== undefined && value !== null && value !== \"\") || state.searchValueUpdate.length > 0;\n\t\t});\n\n\t\tconst elTableProps = useProps(props, tableProps, [\"data\", \"spanMethod\", \"headerCellClassName\", \"cellClassName\"]);\n\n\t\tuseRender(() => (\n\t\t\t<div\n\t\t\t\tref={elementRef}\n\t\t\t\tclass={[\n\t\t\t\t\t\"fa-table\",\n\t\t\t\t\t`fa-table-${_globalSize.value}`,\n\t\t\t\t\t`fa-table__${props.tableKey ?? \"notFound\"}`,\n\t\t\t\t\t{ fa__click__disabled: state.loading },\n\t\t\t\t]}\n\t\t\t\tstyle={{\n\t\t\t\t\t\"--fa-table-width\": `${state.tableWidth ? `${state.tableWidth}px` : \"\"}`,\n\t\t\t\t\t\"--fa-table-height\": `${state.tableHeight ? `${state.tableHeight}px` : \"\"}`,\n\t\t\t\t}}\n\t\t\t>\n\t\t\t\t<FaTableSearchForm\n\t\t\t\t\tvSlots={slots}\n\t\t\t\t\tshow={props.searchForm && state.searchForm}\n\t\t\t\t\tcollapsedSearch={props.collapsedSearch}\n\t\t\t\t\tadvancedSearchDrawer={props.advancedSearchDrawer}\n\t\t\t\t\tcols={props.searchFormCols}\n\t\t\t\t\tsearch={tableSearch}\n\t\t\t\t\treset={tableReset}\n\t\t\t\t/>\n\t\t\t\t{slots.topHeader && (\n\t\t\t\t\t<div class=\"el-card fa-table__header\">{slots.topHeader({ ...{ search: tableSearch }, ...getTableDefaultSlots(state) })}</div>\n\t\t\t\t)}\n\t\t\t\t<div class=\"el-card fa-table__main\">\n\t\t\t\t\t{props.headerCard && (\n\t\t\t\t\t\t<div class=\"fa-table__main-header\">\n\t\t\t\t\t\t\t<div class=\"fa-table__main-header-left\">\n\t\t\t\t\t\t\t\t{slots.header?.({ ...{ search: tableSearch }, ...getTableDefaultSlots(state) })}\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<div class=\"fa-table__main-header-right\">\n\t\t\t\t\t\t\t\t{props.toolBtn && (\n\t\t\t\t\t\t\t\t\t<Fragment>\n\t\t\t\t\t\t\t\t\t\t<div class=\"fa-table__main-header-right__div-search\">\n\t\t\t\t\t\t\t\t\t\t\t<ElInput\n\t\t\t\t\t\t\t\t\t\t\t\tclass=\"fa-table__main-header-right__input-search\"\n\t\t\t\t\t\t\t\t\t\t\t\tdisabled={state.loading}\n\t\t\t\t\t\t\t\t\t\t\t\tprefixIcon={Search}\n\t\t\t\t\t\t\t\t\t\t\t\tplaceholder=\"关键字搜索\"\n\t\t\t\t\t\t\t\t\t\t\t\tvModel_trim={state.searchParam.searchValue}\n\t\t\t\t\t\t\t\t\t\t\t\tclearable={searchInputClearable.value}\n\t\t\t\t\t\t\t\t\t\t\t\tonCompositionupdate={(e: CompositionEvent) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tstate.searchValueUpdate = e.data;\n\t\t\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t\t\t\tonCompositionend={() => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tstate.searchValueUpdate = \"\";\n\t\t\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t\t\t\tonChange={() => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvoid tableSearch();\n\t\t\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"fa-table__main-header-right__div-search__hidden\">\n\t\t\t\t\t\t\t\t\t\t\t\t{state.searchParam.searchValue}\n\t\t\t\t\t\t\t\t\t\t\t\t{state.searchValueUpdate}\n\t\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t\t{props.requestApi && !props.hideSearchTime && (\n\t\t\t\t\t\t\t\t\t\t\t<ElDatePicker\n\t\t\t\t\t\t\t\t\t\t\t\t{...{\n\t\t\t\t\t\t\t\t\t\t\t\t\t// ElDatePicker 的 JSX 类型未声明 change 事件,运行时由内部 Picker 触发。\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange: () => {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tvoid tableSearch();\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t\t\t\tclass=\"fa-table__main-header-right__data-search\"\n\t\t\t\t\t\t\t\t\t\t\t\tpopperClass=\"fa-table__main-header-right__data-search__popper\"\n\t\t\t\t\t\t\t\t\t\t\t\tdisabled={state.loading}\n\t\t\t\t\t\t\t\t\t\t\t\ttype=\"daterange\"\n\t\t\t\t\t\t\t\t\t\t\t\tvModel={state.searchParam.searchTimeList}\n\t\t\t\t\t\t\t\t\t\t\t\tdefaultTime={createOneMonthRangeFromToday(props.futureSearchTime)}\n\t\t\t\t\t\t\t\t\t\t\t\tshortcuts={createDateRangeShortcuts(props.futureSearchTime)}\n\t\t\t\t\t\t\t\t\t\t\t\tvalueFormat=\"YYYY-MM-DD HH:mm:ss\"\n\t\t\t\t\t\t\t\t\t\t\t\tclearable={false}\n\t\t\t\t\t\t\t\t\t\t\t\tunlinkPanels\n\t\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t{props.refreshBtn && (\n\t\t\t\t\t\t\t\t\t\t\t<ElButton\n\t\t\t\t\t\t\t\t\t\t\t\tloading={state.loading}\n\t\t\t\t\t\t\t\t\t\t\t\tloadingIcon={Eleme}\n\t\t\t\t\t\t\t\t\t\t\t\ttitle=\"刷新\"\n\t\t\t\t\t\t\t\t\t\t\t\tcircle\n\t\t\t\t\t\t\t\t\t\t\t\ticon={Refresh}\n\t\t\t\t\t\t\t\t\t\t\t\tonClick={() => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tvoid tableSearch();\n\t\t\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t{props.searchBtn && state.searchColumns.length > 0 && (\n\t\t\t\t\t\t\t\t\t\t\t<ElButton\n\t\t\t\t\t\t\t\t\t\t\t\tloading={state.loading}\n\t\t\t\t\t\t\t\t\t\t\t\tloadingIcon={Eleme}\n\t\t\t\t\t\t\t\t\t\t\t\ttitle={state.searchForm ? \"隐藏搜索栏\" : \"显示搜索栏\"}\n\t\t\t\t\t\t\t\t\t\t\t\tcircle\n\t\t\t\t\t\t\t\t\t\t\t\ticon={Search}\n\t\t\t\t\t\t\t\t\t\t\t\tonClick={() => (state.searchForm = !state.searchForm)}\n\t\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t{props.columnSettingBtn && props.columns && (\n\t\t\t\t\t\t\t\t\t\t\t<ElDropdown title=\"表格列配置\" trigger=\"click\">\n\t\t\t\t\t\t\t\t\t\t\t\t{{\n\t\t\t\t\t\t\t\t\t\t\t\t\tdefault: () => <ElButton loading={state.loading} loadingIcon={Eleme} circle icon={Setting} />,\n\t\t\t\t\t\t\t\t\t\t\t\t\tdropdown: () => (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ElDropdownMenu>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{slots.columnSetting?.()}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ElDropdownItem title=\"表格列配置\" divided onClick={() => columnSettingRef.value?.open()}>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t表格列配置\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</ElDropdownItem>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t</ElDropdownMenu>\n\t\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t\t\t</ElDropdown>\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t{slots.toolButton?.({ ...{ search: tableSearch }, ...getTableDefaultSlots(state) })}\n\t\t\t\t\t\t\t\t\t\t{slots.toolButtonAdv && (\n\t\t\t\t\t\t\t\t\t\t\t<ElDropdown title=\"高级操作\" trigger=\"click\">\n\t\t\t\t\t\t\t\t\t\t\t\t{{\n\t\t\t\t\t\t\t\t\t\t\t\t\tdefault: () => (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ElButton loading={state.loading} loadingIcon={Eleme} circle icon={More}></ElButton>\n\t\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\t\tdropdown: () => (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ElDropdownMenu>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{slots.toolButtonAdv?.({ ...{ search: tableSearch }, ...getTableDefaultSlots(state) })}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t</ElDropdownMenu>\n\t\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t\t\t</ElDropdown>\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t</Fragment>\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t)}\n\t\t\t\t\t<ElTable\n\t\t\t\t\t\t{...elTableProps.value}\n\t\t\t\t\t\tref={tableRef}\n\t\t\t\t\t\tvLoading={state.loading}\n\t\t\t\t\t\telement-loading-text={state.loadingText}\n\t\t\t\t\t\tdata={state.tableData}\n\t\t\t\t\t\tspanMethod={handleSpanMethod}\n\t\t\t\t\t\theaderCellClassName={handleHeaderCellClassName}\n\t\t\t\t\t\tcellClassName={handleCellClassName}\n\t\t\t\t\t\tonSelection-change={handleSelectionChange}\n\t\t\t\t\t\tonSort-change={handleSortChange}\n\t\t\t\t\t\tonSelect={handleSelect}\n\t\t\t\t\t\tonSelect-all={handleSelectAll}\n\t\t\t\t\t\tonCurrent-change={handleCurrentChange}\n\t\t\t\t\t\tonHeader-dragend={handleHeaderDragend}\n\t\t\t\t\t\tonCell-mouse-enter={(row: DefaultRow, column: TableColumnCtx<DefaultRow>, cell: HTMLTableCellElement, event: Event) =>\n\t\t\t\t\t\t\temit(\"cellMouseEnter\", row, column, cell, event)\n\t\t\t\t\t\t}\n\t\t\t\t\t\tonCell-mouse-leave={(row: DefaultRow, column: TableColumnCtx<DefaultRow>, cell: HTMLTableCellElement, event: Event) =>\n\t\t\t\t\t\t\temit(\"cellMouseLeave\", row, column, cell, event)\n\t\t\t\t\t\t}\n\t\t\t\t\t\tonCell-click={(row: DefaultRow, column: TableColumnCtx<DefaultRow>, cell: HTMLTableCellElement, event: Event) =>\n\t\t\t\t\t\t\temit(\"cellClick\", row, column, cell, event)\n\t\t\t\t\t\t}\n\t\t\t\t\t\tonCell-dblclick={(row: DefaultRow, column: TableColumnCtx<DefaultRow>, cell: HTMLTableCellElement, event: Event) =>\n\t\t\t\t\t\t\temit(\"cellDblclick\", row, column, cell, event)\n\t\t\t\t\t\t}\n\t\t\t\t\t\tonCell-contextmenu={(row: DefaultRow, column: TableColumnCtx<DefaultRow>, cell: HTMLTableCellElement, event: Event) =>\n\t\t\t\t\t\t\temit(\"cellContextmenu\", row, column, cell, event)\n\t\t\t\t\t\t}\n\t\t\t\t\t\tonRow-click={(row: DefaultRow, column: TableColumnCtx<DefaultRow> | null, event: Event) => {\n\t\t\t\t\t\t\tif (column) emit(\"rowClick\", row, column, event);\n\t\t\t\t\t\t}}\n\t\t\t\t\t\tonRow-contextmenu={(row: DefaultRow, column: TableColumnCtx<DefaultRow> | null, event: Event) => {\n\t\t\t\t\t\t\tif (column) emit(\"rowContextmenu\", row, column, event);\n\t\t\t\t\t\t}}\n\t\t\t\t\t\tonRow-dblclick={(row: DefaultRow, column: TableColumnCtx<DefaultRow> | null, event: Event) => {\n\t\t\t\t\t\t\tif (column) emit(\"rowDblclick\", row, column, event);\n\t\t\t\t\t\t}}\n\t\t\t\t\t\tonHeader-click={(column: TableColumnCtx<DefaultRow>, event: Event) => emit(\"headerClick\", column, event)}\n\t\t\t\t\t\tonHeader-contextmenu={(column: TableColumnCtx<DefaultRow>, event: Event) => emit(\"headerContextmenu\", column, event)}\n\t\t\t\t\t\tonFilter-change={(newFilters: unknown) => emit(\"filterChange\", newFilters)}\n\t\t\t\t\t\tonExpand-change={(row: DefaultRow, expanded: boolean | DefaultRow[]) => emit(\"expandChange\", row, expanded)}\n\t\t\t\t\t\tonScroll={(data: { scrollLeft: number; scrollTop: number }) => emit(\"scroll\", data)}\n\t\t\t\t\t>\n\t\t\t\t\t\t{{\n\t\t\t\t\t\t\tappend: () => slots.append?.(),\n\t\t\t\t\t\t\tempty: () => (\n\t\t\t\t\t\t\t\t<div class=\"fa-table__empty\">\n\t\t\t\t\t\t\t\t\t{slots.empty ? (\n\t\t\t\t\t\t\t\t\t\tslots.empty()\n\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t<Fragment>\n\t\t\t\t\t\t\t\t\t\t\t<ElIcon>\n\t\t\t\t\t\t\t\t\t\t\t\t<NotData />\n\t\t\t\t\t\t\t\t\t\t\t</ElIcon>\n\t\t\t\t\t\t\t\t\t\t\t<div>暂无数据</div>\n\t\t\t\t\t\t\t\t\t\t</Fragment>\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\tdefault: () => (\n\t\t\t\t\t\t\t\t<Fragment>\n\t\t\t\t\t\t\t\t\t<ElTableColumn\n\t\t\t\t\t\t\t\t\t\tclassName=\"fa-table__index-column\"\n\t\t\t\t\t\t\t\t\t\ttype=\"index\"\n\t\t\t\t\t\t\t\t\t\tfixed=\"left\"\n\t\t\t\t\t\t\t\t\t\twidth={\n\t\t\t\t\t\t\t\t\t\t\tstate.tablePagination.pageIndex * state.tablePagination.pageSize >= 100\n\t\t\t\t\t\t\t\t\t\t\t\t? state.tablePagination.pageIndex * state.tablePagination.pageSize >= 1000\n\t\t\t\t\t\t\t\t\t\t\t\t\t? 50\n\t\t\t\t\t\t\t\t\t\t\t\t\t: 40\n\t\t\t\t\t\t\t\t\t\t\t\t: 30\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\talign=\"center\"\n\t\t\t\t\t\t\t\t\t\tindex={indexMethod}\n\t\t\t\t\t\t\t\t\t\tshowOverflowTooltip={false}\n\t\t\t\t\t\t\t\t\t\tresizable={false}\n\t\t\t\t\t\t\t\t\t\tcolumnKey=\"__table-index\"\n\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t<ElTableColumn\n\t\t\t\t\t\t\t\t\t\tclassName=\"fa-table__selection-column\"\n\t\t\t\t\t\t\t\t\t\ttype=\"selection\"\n\t\t\t\t\t\t\t\t\t\tfixed=\"left\"\n\t\t\t\t\t\t\t\t\t\twidth={35}\n\t\t\t\t\t\t\t\t\t\talign=\"center\"\n\t\t\t\t\t\t\t\t\t\treserveSelection\n\t\t\t\t\t\t\t\t\t\tshowOverflowTooltip={false}\n\t\t\t\t\t\t\t\t\t\tresizable={false}\n\t\t\t\t\t\t\t\t\t\tcolumnKey=\"__table-selection\"\n\t\t\t\t\t\t\t\t\t\tselectable={props.rowSelectable}\n\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t{slots.operation && (\n\t\t\t\t\t\t\t\t\t\t<ElTableColumn\n\t\t\t\t\t\t\t\t\t\t\tfixed=\"right\"\n\t\t\t\t\t\t\t\t\t\t\twidth={state.operationColumnWidth}\n\t\t\t\t\t\t\t\t\t\t\theaderAlign=\"center\"\n\t\t\t\t\t\t\t\t\t\t\talign=\"left\"\n\t\t\t\t\t\t\t\t\t\t\tshowOverflowTooltip={false}\n\t\t\t\t\t\t\t\t\t\t\tclassName=\"fa-table__operation-column\"\n\t\t\t\t\t\t\t\t\t\t\tresizable={false}\n\t\t\t\t\t\t\t\t\t\t\tcolumnKey=\"__table-operation\"\n\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t{{\n\t\t\t\t\t\t\t\t\t\t\t\theader: () => (\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"fa-table__auto-width-column__cell-header __fa-table__auto-width-column__cell-header____table-operation\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span>操作</span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\tdefault: ({ row, column, $index }: { row: DefaultRow; column: FaTableColumnCtx; $index: number }) => (\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"fa-table__auto-width-column__cell __fa-table__auto-width-column__cell____table-operation\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{slots.operation?.({\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\trow,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tcolumn,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t$index,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t...{ search: tableSearch },\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t...getTableDefaultSlots(state),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t\t</ElTableColumn>\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t{state.tableColumns?.length === 0\n\t\t\t\t\t\t\t\t\t\t? slots.default?.()\n\t\t\t\t\t\t\t\t\t\t: state.tableColumns.map(\n\t\t\t\t\t\t\t\t\t\t\t\t(col) =>\n\t\t\t\t\t\t\t\t\t\t\t\t\tcol.show &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t(col.type === \"expand\" ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ElTableColumn {...col} width={35} fixed={col.fixed ?? \"left\"} resizable={false}>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdefault: ({\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\trow,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tcolumn,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t$index,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}: {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\trow: DefaultRow;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tcolumn: FaTableColumnCtx;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t$index: number;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}) => (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<Fragment>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{col.render?.({ row, column, $index, ...getTableDefaultSlots(state) })}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{col.slot &&\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tslots[col.slot]?.({\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\trow,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tcolumn,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t$index,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t...getTableDefaultSlots(state),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</Fragment>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t</ElTableColumn>\n\t\t\t\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tcol.prop && (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<FaTableColumn\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tvSlots={slots}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{...omit(col, tableColumnOmitNames)}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\thideImage={props.hideImage}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tresizable={true}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tonImagePreview={handleImagePreview}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tonCustomCellClick={handleCustomCellClick}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t\t\t))\n\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t</Fragment>\n\t\t\t\t\t\t\t),\n\t\t\t\t\t\t}}\n\t\t\t\t\t</ElTable>\n\t\t\t\t\t<div class=\"fa-table__main-footer\">\n\t\t\t\t\t\t<div class=\"fa-table__main-footer__left\">\n\t\t\t\t\t\t\t{slots.footer?.({ ...{ search: tableSearch }, ...getTableDefaultSlots(state) })}\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t{slots.pagination ? (\n\t\t\t\t\t\t\tslots.pagination({\n\t\t\t\t\t\t\t\tpageIndex: state.tablePagination.pageIndex,\n\t\t\t\t\t\t\t\tpageSize: state.tablePagination.pageSize,\n\t\t\t\t\t\t\t\ttotalRows: state.tablePagination.totalRows,\n\t\t\t\t\t\t\t\thandleSizeChange,\n\t\t\t\t\t\t\t\thandlePaginationChange,\n\t\t\t\t\t\t\t})\n\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t<Fragment>\n\t\t\t\t\t\t\t\t{props.pagination ? (\n\t\t\t\t\t\t\t\t\t<FaTablePagination\n\t\t\t\t\t\t\t\t\t\tpageSizes={props.pageSizes}\n\t\t\t\t\t\t\t\t\t\tonSizeChange={handleSizeChange}\n\t\t\t\t\t\t\t\t\t\tonCurrentChange={handlePaginationChange}\n\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t<ElPagination class=\"fa-table-pagination\" size=\"small\" layout=\"total\" total={state.tableData.length} />\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t</Fragment>\n\t\t\t\t\t\t)}\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t{state.imagePreview && (\n\t\t\t\t\t<ElImageViewer\n\t\t\t\t\t\tcloseOnPressEscape\n\t\t\t\t\t\thideOnClickModal\n\t\t\t\t\t\tteleported\n\t\t\t\t\t\tshowProgress\n\t\t\t\t\t\tonClose={() => (state.imagePreview = false)}\n\t\t\t\t\t\turlList={state.previewList}\n\t\t\t\t\t/>\n\t\t\t\t)}\n\t\t\t\t{props.columnSettingBtn && <FaTableColumnsSettingDialog ref={columnSettingRef} change={props.columnsChange} />}\n\t\t\t</div>\n\t\t));\n\n\t\treturn useExpose(expose, {\n\t\t\t/** @description 用于多选表格,清空用户的选择 */\n\t\t\tclearSelection: computed(() => tableRef.value?.clearSelection),\n\t\t\t/** @description 返回当前选中的行 */\n\t\t\tgetSelectionRows: computed(() => tableRef.value?.getSelectionRows),\n\t\t\t/** @description 返回当前半选中的行。 */\n\t\t\tgetHalfSelectionRows: computed(() => tableRef.value?.getHalfSelectionRows),\n\t\t\t/** @description 用于多选表格,切换某一行的选中状态, 如果使用了第二个参数,则可直接设置这一行选中与否 */\n\t\t\ttoggleRowSelection: computed(() => tableRef.value?.toggleRowSelection),\n\t\t\t/** @description 用于多选表格,切换全选和全不选 */\n\t\t\ttoggleAllSelection: computed(() => tableRef.value?.toggleAllSelection),\n\t\t\t/** @description 用于可扩展的表格或树表格,如果某行被扩展,则切换。 使用第二个参数,您可以直接设置该行应该被扩展或折叠。 */\n\t\t\ttoggleRowExpansion: computed(() => tableRef.value?.toggleRowExpansion),\n\t\t\t/** @description 用于单选表格,设定某一行为选中行, 如果调用时不加参数,则会取消目前高亮行的选中状态。 */\n\t\t\tsetCurrentRow: computed(() => tableRef.value?.setCurrentRow),\n\t\t\t/** @description 用于清空排序条件,数据会恢复成未排序的状态 */\n\t\t\tclearSort: computed(() => tableRef.value?.clearSort),\n\t\t\t/** @description 传入由columnKey 组成的数组以清除指定列的过滤条件。 如果没有参数,清除所有过滤器 */\n\t\t\tclearFilter: computed(() => tableRef.value?.clearFilter),\n\t\t\t/** @description 对 Table 进行重新布局。 当表格可见性变化时,您可能需要调用此方法以获得正确的布局 */\n\t\t\tdoLayout: computed(() => tableRef.value?.doLayout),\n\t\t\t/** @description 手动排序表格。 参数 prop 属性指定排序列,order 指定排序顺序。 */\n\t\t\tsort: computed(() => tableRef.value?.sort),\n\t\t\t/** @description 滚动到一组特定坐标 */\n\t\t\tscrollTo: computed(() => tableRef.value?.scrollTo),\n\t\t\t/** @description 设置垂直滚动位置 */\n\t\t\tsetScrollTop: computed(() => tableRef.value?.setScrollTop),\n\t\t\t/** @description 设置水平滚动位置 */\n\t\t\tsetScrollLeft: computed(() => tableRef.value?.setScrollLeft),\n\t\t\t/** @description 获取表列的 context */\n\t\t\tcolumns: computed(() => tableRef.value?.columns),\n\t\t\t/** @description 适用于 lazy Table, 需要设置 rowKey, 更新 key children */\n\t\t\tupdateKeyChildren: computed(() => tableRef.value?.updateKeyChildren),\n\t\t\t/** @description 加载状态 */\n\t\t\tloading: computed(() => state.loading),\n\t\t\t/** @description 表格数据 */\n\t\t\ttableData: computed(() => state.tableData),\n\t\t\t/** @description 分页数据 */\n\t\t\ttablePagination: computed(() => state.tablePagination),\n\t\t\t/** @description 搜索参数 */\n\t\t\tsearchParam: computed(() => state.searchParam),\n\t\t\t/** @description 选中状态 */\n\t\t\tselected: computed(() => state.selected),\n\t\t\t/** @description 选中数据列表 */\n\t\t\tselectedList: computed(() => state.selectedList),\n\t\t\t/** @description 选中数据 rowKey 列表 */\n\t\t\tselectedListIds: computed(() => state.selectedListIds),\n\t\t\t/** @description 部分选中数据 rowKey 列表 */\n\t\t\tindeterminateSelectedListIds: computed(() => state.indeterminateSelectedListIds),\n\t\t\t/** @description 表格宽度 */\n\t\t\ttableWidth: computed(() => state.tableWidth),\n\t\t\t/** @description 表格高度 */\n\t\t\ttableHeight: computed(() => state.tableHeight),\n\t\t\t/** @description 部分选中(样式不一样而已),用于多选表格,切换某一行的选中状态, 如果使用了第二个参数,则可直接设置这一行选中与否 */\n\t\t\ttoggleRowIndeterminateSelection,\n\t\t\t/** @description 异步方法,刷新表格 */\n\t\t\trefresh: tableSearch,\n\t\t\t/** @description 异步方法,重置表格 */\n\t\t\treset: tableReset,\n\t\t\t/** @description 对 Table 进行重新渲染。当 TableKey 发生变化的时候可以通过此方法重新渲染表格 */\n\t\t\tdoRender,\n\t\t\t/** @description Table 加载 */\n\t\t\tdoLoading,\n\t\t});\n\t},\n});\n"],"mappings":"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"}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import type { PagedInput } from "./page.type";
|
|
2
|
+
import type { FaTableColumnCtx } from "./table.type";
|
|
3
|
+
/** 表格行允许包含任意字段,但字段值在使用前必须显式收窄。 */
|
|
4
|
+
export type FaTableRow = Record<string, unknown>;
|
|
5
|
+
/** FaTable 的响应式状态。 */
|
|
6
|
+
export interface FaTableState {
|
|
7
|
+
/**
|
|
8
|
+
* 表格加载
|
|
9
|
+
*/
|
|
10
|
+
loading: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* 加载文字
|
|
13
|
+
*/
|
|
14
|
+
loadingText: string;
|
|
15
|
+
/**
|
|
16
|
+
* 源列数据
|
|
17
|
+
* 扁平化后的
|
|
18
|
+
*/
|
|
19
|
+
orgColumns: FaTableColumnCtx[];
|
|
20
|
+
/**
|
|
21
|
+
* 正常显示的列
|
|
22
|
+
* @description prop 不为空,并且不是纯搜索字段的
|
|
23
|
+
*/
|
|
24
|
+
tableColumns: FaTableColumnCtx[];
|
|
25
|
+
/**
|
|
26
|
+
* 搜索列
|
|
27
|
+
* @description 纯搜索字段或el 不为空的
|
|
28
|
+
*/
|
|
29
|
+
searchColumns: FaTableColumnCtx[];
|
|
30
|
+
/**
|
|
31
|
+
* 合并列
|
|
32
|
+
*/
|
|
33
|
+
spanColumns: {
|
|
34
|
+
prop: string;
|
|
35
|
+
spanProp: string;
|
|
36
|
+
}[];
|
|
37
|
+
/**
|
|
38
|
+
* 表格数据
|
|
39
|
+
*/
|
|
40
|
+
tableData: FaTableRow[];
|
|
41
|
+
/**
|
|
42
|
+
* 表格合并数据
|
|
43
|
+
*/
|
|
44
|
+
tableSpanData: Record<string, number[]>;
|
|
45
|
+
/**
|
|
46
|
+
* 分页数据
|
|
47
|
+
*/
|
|
48
|
+
tablePagination: {
|
|
49
|
+
pageIndex: number;
|
|
50
|
+
pageSize: number;
|
|
51
|
+
totalRows: number;
|
|
52
|
+
};
|
|
53
|
+
/**
|
|
54
|
+
* 初始化参数,组件渲染时的初始化参数
|
|
55
|
+
*/
|
|
56
|
+
initParam: Record<string, unknown>;
|
|
57
|
+
/**
|
|
58
|
+
* 搜索参数
|
|
59
|
+
*/
|
|
60
|
+
searchParam: PagedInput & Record<string, unknown>;
|
|
61
|
+
/**
|
|
62
|
+
* 中文输入法模式下的拼音
|
|
63
|
+
*/
|
|
64
|
+
searchValueUpdate: string;
|
|
65
|
+
/**
|
|
66
|
+
* 显示搜索表单
|
|
67
|
+
*/
|
|
68
|
+
searchForm: boolean;
|
|
69
|
+
/**
|
|
70
|
+
* 是否选中数据
|
|
71
|
+
*/
|
|
72
|
+
selected: boolean;
|
|
73
|
+
/**
|
|
74
|
+
* 选中数据列表
|
|
75
|
+
*/
|
|
76
|
+
selectedList: FaTableRow[];
|
|
77
|
+
/**
|
|
78
|
+
* 当前选中数据的ids
|
|
79
|
+
*/
|
|
80
|
+
selectedListIds: (string | number)[];
|
|
81
|
+
/**
|
|
82
|
+
* 当前不确定选中数据的ids
|
|
83
|
+
* @description 仅样式存在区别
|
|
84
|
+
*/
|
|
85
|
+
indeterminateSelectedListIds: (string | number)[];
|
|
86
|
+
/**
|
|
87
|
+
* 操作列宽度
|
|
88
|
+
*/
|
|
89
|
+
operationColumnWidth: string;
|
|
90
|
+
/**
|
|
91
|
+
* 图片预览
|
|
92
|
+
*/
|
|
93
|
+
imagePreview: boolean;
|
|
94
|
+
/**
|
|
95
|
+
* 预览Url
|
|
96
|
+
*/
|
|
97
|
+
previewList: string[];
|
|
98
|
+
/**
|
|
99
|
+
* 表格宽度
|
|
100
|
+
*/
|
|
101
|
+
tableWidth: number;
|
|
102
|
+
/**
|
|
103
|
+
* 表格高度
|
|
104
|
+
*/
|
|
105
|
+
tableHeight: number;
|
|
106
|
+
/**
|
|
107
|
+
* 自动列宽数据
|
|
108
|
+
*/
|
|
109
|
+
autoColumnWidth: {
|
|
110
|
+
prop: string;
|
|
111
|
+
width: number;
|
|
112
|
+
}[];
|
|
113
|
+
}
|
|
@@ -0,0 +1,266 @@
|
|
|
1
|
+
import type { FaTableRow, FaTableState } from "./table.state";
|
|
2
|
+
import type { FaLayoutGridBreakPoint, FaLayoutGridItemResponsive } from "../../layoutGrid";
|
|
3
|
+
import type { TableColumnCtx } from "element-plus";
|
|
4
|
+
import type { VNode } from "vue";
|
|
5
|
+
/** FaTable 默认插槽共享的状态与操作。 */
|
|
6
|
+
export interface FaTableDefaultSlotsResult {
|
|
7
|
+
loading: boolean;
|
|
8
|
+
searchParam: Record<string, unknown>;
|
|
9
|
+
selected: boolean;
|
|
10
|
+
selectedList: FaTableRow[];
|
|
11
|
+
selectedListIds: (string | number)[];
|
|
12
|
+
indeterminateSelectedListIds: (string | number)[];
|
|
13
|
+
/** @description 可能为空 */
|
|
14
|
+
search?: () => Promise<void>;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* 获取 FaTable 默认插槽共享数据。
|
|
18
|
+
* @param state - FaTable 内部状态。
|
|
19
|
+
* @returns 可传给业务插槽的选择、搜索和加载状态。
|
|
20
|
+
*/
|
|
21
|
+
export declare const getTableDefaultSlots: (state: FaTableState) => FaTableDefaultSlotsResult;
|
|
22
|
+
/** FaTable 默认时间搜索支持的快捷日期范围。 */
|
|
23
|
+
export type FaTableDataRange = "Past1D" | "Past3D" | "Past1W" | "Past1M" | "Past3M" | "Past6M" | "Past1Y" | "Past3Y";
|
|
24
|
+
/** FaTable 枚举列的选项配置。 */
|
|
25
|
+
export interface FaTableEnumColumnCtx {
|
|
26
|
+
[key: string]: unknown;
|
|
27
|
+
/**
|
|
28
|
+
* 选项框显示的文字
|
|
29
|
+
*/
|
|
30
|
+
label: string;
|
|
31
|
+
/**
|
|
32
|
+
* 选项框值
|
|
33
|
+
*/
|
|
34
|
+
value: string | number | boolean;
|
|
35
|
+
/**
|
|
36
|
+
* 显示
|
|
37
|
+
*/
|
|
38
|
+
show?: boolean;
|
|
39
|
+
/**
|
|
40
|
+
* 是否禁用此选项
|
|
41
|
+
*/
|
|
42
|
+
disabled?: boolean;
|
|
43
|
+
/**
|
|
44
|
+
* 为树形选择是,可以通过 children 属性指定子选项
|
|
45
|
+
*/
|
|
46
|
+
children?: FaTableEnumColumnCtx[];
|
|
47
|
+
/**
|
|
48
|
+
* 提示
|
|
49
|
+
*/
|
|
50
|
+
tips?: string;
|
|
51
|
+
/**
|
|
52
|
+
* Tag的类型,默认 "primary"
|
|
53
|
+
*/
|
|
54
|
+
type?: "primary" | "success" | "info" | "warning" | "danger";
|
|
55
|
+
}
|
|
56
|
+
/** FaTable 枚举列接受的字典名称、选项集合或选项工厂。 */
|
|
57
|
+
export type FaTableEnumColumnType = string | FaTableEnumColumnCtx[] | ((...arguments_: unknown[]) => FaTableEnumColumnCtx[]);
|
|
58
|
+
/** FaTable 搜索项支持的内置组件名或自定义组件名。 */
|
|
59
|
+
export type FaTableSearchColumnEl = "" | "el-input" | "el-input-number" | "el-select" | "el-select-v2" | "el-tree-select" | "el-cascader" | "el-date-picker" | "el-time-picker" | "el-time-select" | "el-switch" | "el-slider" | "slot" | (string & Record<never, never>);
|
|
60
|
+
/** FaTable 单列搜索项的组件、布局和默认值配置。 */
|
|
61
|
+
export type FaTableSearchColumnCtx = Partial<Record<FaLayoutGridBreakPoint, FaLayoutGridItemResponsive>> & {
|
|
62
|
+
/**
|
|
63
|
+
* 当前项搜索框的类型
|
|
64
|
+
*/
|
|
65
|
+
el: FaTableSearchColumnEl;
|
|
66
|
+
/**
|
|
67
|
+
* 搜索项参数,根据 element plus 官方文档来传递,该属性所有值会透传到组件
|
|
68
|
+
*/
|
|
69
|
+
props?: Record<string, unknown>;
|
|
70
|
+
/**
|
|
71
|
+
* 当搜索项 label 不为列 label 属性时,可通过 label 指定
|
|
72
|
+
*/
|
|
73
|
+
label?: string;
|
|
74
|
+
/**
|
|
75
|
+
* 当搜索项 key 不为 prop 属性时,可通过 key 指定
|
|
76
|
+
*/
|
|
77
|
+
key?: string;
|
|
78
|
+
/**
|
|
79
|
+
* 搜索项排序(从大到小)
|
|
80
|
+
*/
|
|
81
|
+
order?: number;
|
|
82
|
+
/**
|
|
83
|
+
* 搜索项所占用的列数,默认为1列
|
|
84
|
+
*/
|
|
85
|
+
span?: number;
|
|
86
|
+
/**
|
|
87
|
+
* 搜索字段左侧偏移列数
|
|
88
|
+
*/
|
|
89
|
+
offset?: number;
|
|
90
|
+
/**
|
|
91
|
+
* 插槽名称
|
|
92
|
+
*/
|
|
93
|
+
slot?: string;
|
|
94
|
+
/**
|
|
95
|
+
* 搜索项默认值
|
|
96
|
+
*/
|
|
97
|
+
defaultValue?: unknown;
|
|
98
|
+
};
|
|
99
|
+
/**
|
|
100
|
+
* FaTable 内置业务列类型。
|
|
101
|
+
* @property default 默认
|
|
102
|
+
* @property selection 选择列
|
|
103
|
+
* @property expand 可展开按钮列
|
|
104
|
+
* @property expand 可展开按钮列
|
|
105
|
+
* @property image 图片列
|
|
106
|
+
* @property date 日期显示(格式 "YYYY-MM-DD")
|
|
107
|
+
* @property time 时间显示(格式 "HH:mm:ss")
|
|
108
|
+
* @property dateTime 日期时间显示(格式 "YYYY-MM-DD HH:mm:ss")
|
|
109
|
+
* @property d2 数值列,保留 2 位小数,不带千分位
|
|
110
|
+
* @property d4 数值列,保留 4 位小数,不带千分位
|
|
111
|
+
* @property d6 数值列,保留 6 位小数,不带千分位
|
|
112
|
+
* @property gd2 数值列,保留 2 位小数,带千分位
|
|
113
|
+
* @property gd4 数值列,保留 4 位小数,带千分位
|
|
114
|
+
* @property gd6 数值列,保留 6 位小数,带千分位
|
|
115
|
+
* @property timeInfo 时间信息列
|
|
116
|
+
*/
|
|
117
|
+
export type FaTableColumnType = "default" | "selection" | "index" | "expand" | "image" | "date" | "time" | "dateTime" | "d2" | "d4" | "d6" | "gd2" | "gd4" | "gd6" | "timeInfo";
|
|
118
|
+
/** FaTable 日期、时间列支持的格式化模板。 */
|
|
119
|
+
export type FaTableColumnDateFormat = "YYYY-MM-DD HH:mm:ss" | "YYYY-MM-DD HH:mm" | "YYYY-MM-DD" | "YYYY-MM" | "YYYY" | "MM" | "DD" | "MM-DD" | "HH:mm:ss" | "HH:mm" | "HH" | "mm:ss" | "mm" | "ss";
|
|
120
|
+
/** FaTable 列配置,扩展 Element Plus 列能力和 Fast 业务渲染选项。 */
|
|
121
|
+
export type FaTableColumnCtx<T extends Record<PropertyKey, unknown> = FaTableRow> = Partial<Omit<TableColumnCtx<T>, "order" | "type" | "prop" | "sortable" | "_children">> & {
|
|
122
|
+
/**
|
|
123
|
+
* 内部的计算属性,一般不做使用
|
|
124
|
+
* @description FaTable
|
|
125
|
+
*/
|
|
126
|
+
multiOrder?: "" | "ascending" | "descending";
|
|
127
|
+
/**
|
|
128
|
+
* 列Id
|
|
129
|
+
* @description FaTable
|
|
130
|
+
*/
|
|
131
|
+
columnId?: number;
|
|
132
|
+
/**
|
|
133
|
+
* 排序
|
|
134
|
+
* @description FaTable
|
|
135
|
+
*/
|
|
136
|
+
order?: number;
|
|
137
|
+
/**
|
|
138
|
+
* 排序字段
|
|
139
|
+
* @description FaTable
|
|
140
|
+
*/
|
|
141
|
+
sortableField?: string;
|
|
142
|
+
/**
|
|
143
|
+
* 禁用排序配置
|
|
144
|
+
* @description FaTable
|
|
145
|
+
*/
|
|
146
|
+
disabledSortable?: boolean;
|
|
147
|
+
/**
|
|
148
|
+
* 合并行字段
|
|
149
|
+
* @description FaTable
|
|
150
|
+
*/
|
|
151
|
+
spanProp?: string;
|
|
152
|
+
/**
|
|
153
|
+
* 纯搜索
|
|
154
|
+
* @description FaTable
|
|
155
|
+
*/
|
|
156
|
+
pureSearch?: boolean;
|
|
157
|
+
/**
|
|
158
|
+
* 搜索项配置
|
|
159
|
+
* @description FaTable
|
|
160
|
+
*/
|
|
161
|
+
search?: FaTableSearchColumnCtx;
|
|
162
|
+
/** 上面所有属性,全部非 FaTableColumn props,均为计算属性 */
|
|
163
|
+
/**
|
|
164
|
+
* 对应列的类型
|
|
165
|
+
*/
|
|
166
|
+
type?: FaTableColumnType;
|
|
167
|
+
/**
|
|
168
|
+
* 字段名称
|
|
169
|
+
*/
|
|
170
|
+
prop?: string;
|
|
171
|
+
/**
|
|
172
|
+
* 是否显示在表格当中,默认 true
|
|
173
|
+
*/
|
|
174
|
+
show?: boolean;
|
|
175
|
+
/**
|
|
176
|
+
* 对应列是否可以排序,
|
|
177
|
+
* 默认为 'custom' 模式,即远程排序,
|
|
178
|
+
* 需要监听 Table 的 sort-change 事件
|
|
179
|
+
*/
|
|
180
|
+
sortable?: boolean;
|
|
181
|
+
/**
|
|
182
|
+
* 小页面的宽度,如果为空,则继承默认宽度
|
|
183
|
+
*/
|
|
184
|
+
smallWidth?: string | number;
|
|
185
|
+
/**
|
|
186
|
+
* 自适应宽度
|
|
187
|
+
*/
|
|
188
|
+
autoWidth?: boolean;
|
|
189
|
+
/**
|
|
190
|
+
* 插槽名称
|
|
191
|
+
*/
|
|
192
|
+
slot?: string;
|
|
193
|
+
/**
|
|
194
|
+
* 表格头部插槽名称
|
|
195
|
+
*/
|
|
196
|
+
headerSlot?: string;
|
|
197
|
+
/**
|
|
198
|
+
* 自定义表头内容渲染(tsx语法)
|
|
199
|
+
*/
|
|
200
|
+
headerRender?: ({ column, $index }: {
|
|
201
|
+
column: TableColumnCtx<FaTableRow>;
|
|
202
|
+
$index: number;
|
|
203
|
+
} & FaTableDefaultSlotsResult) => VNode[];
|
|
204
|
+
/**
|
|
205
|
+
* 自定义单元格内容渲染(tsx语法)
|
|
206
|
+
*/
|
|
207
|
+
render?: ({ row, column, $index }: {
|
|
208
|
+
row: FaTableRow;
|
|
209
|
+
column: FaTableColumnCtx;
|
|
210
|
+
$index: number;
|
|
211
|
+
} & FaTableDefaultSlotsResult) => VNode[];
|
|
212
|
+
/**
|
|
213
|
+
* 多级表头
|
|
214
|
+
*/
|
|
215
|
+
_children?: FaTableColumnCtx<T>[];
|
|
216
|
+
/**
|
|
217
|
+
* 复制
|
|
218
|
+
*/
|
|
219
|
+
copy?: boolean;
|
|
220
|
+
/**
|
|
221
|
+
* 是否为 Link Button
|
|
222
|
+
*/
|
|
223
|
+
link?: boolean;
|
|
224
|
+
/**
|
|
225
|
+
* 点击事件,优先级最高
|
|
226
|
+
*/
|
|
227
|
+
click?: ({ row, $index }: {
|
|
228
|
+
row: T;
|
|
229
|
+
$index?: number;
|
|
230
|
+
} & FaTableDefaultSlotsResult) => void;
|
|
231
|
+
/**
|
|
232
|
+
* 点击Emits事件回调
|
|
233
|
+
*/
|
|
234
|
+
clickEmit?: string;
|
|
235
|
+
/**
|
|
236
|
+
* 图片列是否显示为原图,默认 false 显示缩略图
|
|
237
|
+
*/
|
|
238
|
+
originalImage?: boolean;
|
|
239
|
+
/**
|
|
240
|
+
* 显示时间格式化字符串,默认 false
|
|
241
|
+
*/
|
|
242
|
+
dateFix?: boolean;
|
|
243
|
+
/**
|
|
244
|
+
* 显示在页面中的日期格式
|
|
245
|
+
*/
|
|
246
|
+
dateFormat?: FaTableColumnDateFormat;
|
|
247
|
+
/**
|
|
248
|
+
* 是否是标签展示,默认 false
|
|
249
|
+
*/
|
|
250
|
+
tag?: boolean;
|
|
251
|
+
/**
|
|
252
|
+
* 枚举类型(渲染值的字典)
|
|
253
|
+
*/
|
|
254
|
+
enum?: FaTableEnumColumnType;
|
|
255
|
+
/**
|
|
256
|
+
* 数据删除字段,如果为 true 会显示遮罩层
|
|
257
|
+
*/
|
|
258
|
+
dataDeleteField?: string;
|
|
259
|
+
/**
|
|
260
|
+
* 时间信息字段
|
|
261
|
+
*/
|
|
262
|
+
timeInfoField?: {
|
|
263
|
+
userName?: string;
|
|
264
|
+
time?: string;
|
|
265
|
+
};
|
|
266
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
//#region src/components/table/src/table.type.ts
|
|
2
|
+
/**
|
|
3
|
+
* 获取 FaTable 默认插槽共享数据。
|
|
4
|
+
* @param state - FaTable 内部状态。
|
|
5
|
+
* @returns 可传给业务插槽的选择、搜索和加载状态。
|
|
6
|
+
*/
|
|
7
|
+
const getTableDefaultSlots = (state) => {
|
|
8
|
+
return {
|
|
9
|
+
loading: state.loading,
|
|
10
|
+
searchParam: state.searchParam,
|
|
11
|
+
selected: state.selected,
|
|
12
|
+
selectedList: state.selectedList,
|
|
13
|
+
selectedListIds: state.selectedListIds,
|
|
14
|
+
indeterminateSelectedListIds: state.indeterminateSelectedListIds
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
//#endregion
|
|
18
|
+
export { getTableDefaultSlots };
|
|
19
|
+
|
|
20
|
+
//# sourceMappingURL=table.type.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"table.type.mjs","names":[],"sources":["../../../../src/components/table/src/table.type.ts"],"sourcesContent":["import type { FaTableRow, FaTableState } from \"./table.state\";\nimport type { FaLayoutGridBreakPoint, FaLayoutGridItemResponsive } from \"../../layoutGrid\";\nimport type { TableColumnCtx } from \"element-plus\";\nimport type { VNode } from \"vue\";\n\n/** FaTable 默认插槽共享的状态与操作。 */\nexport interface FaTableDefaultSlotsResult {\n\tloading: boolean;\n\tsearchParam: Record<string, unknown>;\n\tselected: boolean;\n\tselectedList: FaTableRow[];\n\tselectedListIds: (string | number)[];\n\tindeterminateSelectedListIds: (string | number)[];\n\t/** @description 可能为空 */\n\tsearch?: () => Promise<void>;\n}\n\n/**\n * 获取 FaTable 默认插槽共享数据。\n * @param state - FaTable 内部状态。\n * @returns 可传给业务插槽的选择、搜索和加载状态。\n */\nexport const getTableDefaultSlots = (state: FaTableState): FaTableDefaultSlotsResult => {\n\treturn {\n\t\tloading: state.loading,\n\t\tsearchParam: state.searchParam,\n\t\tselected: state.selected,\n\t\tselectedList: state.selectedList,\n\t\tselectedListIds: state.selectedListIds,\n\t\tindeterminateSelectedListIds: state.indeterminateSelectedListIds,\n\t};\n};\n\n/** FaTable 默认时间搜索支持的快捷日期范围。 */\nexport type FaTableDataRange = \"Past1D\" | \"Past3D\" | \"Past1W\" | \"Past1M\" | \"Past3M\" | \"Past6M\" | \"Past1Y\" | \"Past3Y\";\n\n/** FaTable 枚举列的选项配置。 */\nexport interface FaTableEnumColumnCtx {\n\t[key: string]: unknown;\n\t/**\n\t * 选项框显示的文字\n\t */\n\tlabel: string;\n\t/**\n\t * 选项框值\n\t */\n\tvalue: string | number | boolean;\n\t/**\n\t * 显示\n\t */\n\tshow?: boolean;\n\t/**\n\t * 是否禁用此选项\n\t */\n\tdisabled?: boolean;\n\t/**\n\t * 为树形选择是,可以通过 children 属性指定子选项\n\t */\n\tchildren?: FaTableEnumColumnCtx[];\n\t/**\n\t * 提示\n\t */\n\ttips?: string;\n\t/**\n\t * Tag的类型,默认 \"primary\"\n\t */\n\ttype?: \"primary\" | \"success\" | \"info\" | \"warning\" | \"danger\";\n}\n\n/** FaTable 枚举列接受的字典名称、选项集合或选项工厂。 */\nexport type FaTableEnumColumnType = string | FaTableEnumColumnCtx[] | ((...arguments_: unknown[]) => FaTableEnumColumnCtx[]);\n\n/** FaTable 搜索项支持的内置组件名或自定义组件名。 */\nexport type FaTableSearchColumnEl =\n\t| \"\"\n\t| \"el-input\"\n\t| \"el-input-number\"\n\t| \"el-select\"\n\t| \"el-select-v2\"\n\t| \"el-tree-select\"\n\t| \"el-cascader\"\n\t| \"el-date-picker\"\n\t| \"el-time-picker\"\n\t| \"el-time-select\"\n\t| \"el-switch\"\n\t| \"el-slider\"\n\t| \"slot\"\n\t| (string & Record<never, never>);\n\n/** FaTable 单列搜索项的组件、布局和默认值配置。 */\nexport type FaTableSearchColumnCtx = Partial<Record<FaLayoutGridBreakPoint, FaLayoutGridItemResponsive>> & {\n\t/**\n\t * 当前项搜索框的类型\n\t */\n\tel: FaTableSearchColumnEl;\n\t/**\n\t * 搜索项参数,根据 element plus 官方文档来传递,该属性所有值会透传到组件\n\t */\n\tprops?: Record<string, unknown>;\n\t/**\n\t * 当搜索项 label 不为列 label 属性时,可通过 label 指定\n\t */\n\tlabel?: string;\n\t/**\n\t * 当搜索项 key 不为 prop 属性时,可通过 key 指定\n\t */\n\tkey?: string;\n\t/**\n\t * 搜索项排序(从大到小)\n\t */\n\torder?: number;\n\t/**\n\t * 搜索项所占用的列数,默认为1列\n\t */\n\tspan?: number;\n\t/**\n\t * 搜索字段左侧偏移列数\n\t */\n\toffset?: number;\n\t/**\n\t * 插槽名称\n\t */\n\tslot?: string;\n\t/**\n\t * 搜索项默认值\n\t */\n\tdefaultValue?: unknown;\n};\n\n/**\n * FaTable 内置业务列类型。\n * @property default 默认\n * @property selection\t 选择列\n * @property expand 可展开按钮列\n * @property expand 可展开按钮列\n * @property image 图片列\n * @property date 日期显示(格式 \"YYYY-MM-DD\")\n * @property time 时间显示(格式 \"HH:mm:ss\")\n * @property dateTime 日期时间显示(格式 \"YYYY-MM-DD HH:mm:ss\")\n * @property d2 数值列,保留 2 位小数,不带千分位\n * @property d4 数值列,保留 4 位小数,不带千分位\n * @property d6 数值列,保留 6 位小数,不带千分位\n * @property gd2 数值列,保留 2 位小数,带千分位\n * @property gd4 数值列,保留 4 位小数,带千分位\n * @property gd6 数值列,保留 6 位小数,带千分位\n * @property timeInfo 时间信息列\n */\nexport type FaTableColumnType =\n\t\"default\" | \"selection\" | \"index\" | \"expand\" | \"image\" | \"date\" | \"time\" | \"dateTime\" | \"d2\" | \"d4\" | \"d6\" | \"gd2\" | \"gd4\" | \"gd6\" | \"timeInfo\";\n\n/** FaTable 日期、时间列支持的格式化模板。 */\nexport type FaTableColumnDateFormat =\n\t| \"YYYY-MM-DD HH:mm:ss\"\n\t| \"YYYY-MM-DD HH:mm\"\n\t| \"YYYY-MM-DD\"\n\t| \"YYYY-MM\"\n\t| \"YYYY\"\n\t| \"MM\"\n\t| \"DD\"\n\t| \"MM-DD\"\n\t| \"HH:mm:ss\"\n\t| \"HH:mm\"\n\t| \"HH\"\n\t| \"mm:ss\"\n\t| \"mm\"\n\t| \"ss\";\n\n/** FaTable 列配置,扩展 Element Plus 列能力和 Fast 业务渲染选项。 */\nexport type FaTableColumnCtx<T extends Record<PropertyKey, unknown> = FaTableRow> = Partial<\n\tOmit<TableColumnCtx<T>, \"order\" | \"type\" | \"prop\" | \"sortable\" | \"_children\">\n> & {\n\t/**\n\t * 内部的计算属性,一般不做使用\n\t * @description FaTable\n\t */\n\tmultiOrder?: \"\" | \"ascending\" | \"descending\";\n\t/**\n\t * 列Id\n\t * @description FaTable\n\t */\n\tcolumnId?: number;\n\t/**\n\t * 排序\n\t * @description FaTable\n\t */\n\torder?: number;\n\t/**\n\t * 排序字段\n\t * @description FaTable\n\t */\n\tsortableField?: string;\n\t/**\n\t * 禁用排序配置\n\t * @description FaTable\n\t */\n\tdisabledSortable?: boolean;\n\t/**\n\t * 合并行字段\n\t * @description FaTable\n\t */\n\tspanProp?: string;\n\t/**\n\t * 纯搜索\n\t * @description FaTable\n\t */\n\tpureSearch?: boolean;\n\t/**\n\t * 搜索项配置\n\t * @description FaTable\n\t */\n\tsearch?: FaTableSearchColumnCtx;\n\t/** 上面所有属性,全部非 FaTableColumn props,均为计算属性 */\n\t/**\n\t * 对应列的类型\n\t */\n\ttype?: FaTableColumnType;\n\t/**\n\t * 字段名称\n\t */\n\tprop?: string;\n\t/**\n\t * 是否显示在表格当中,默认 true\n\t */\n\tshow?: boolean;\n\t/**\n\t * 对应列是否可以排序,\n\t * 默认为 'custom' 模式,即远程排序,\n\t * 需要监听 Table 的 sort-change 事件\n\t */\n\tsortable?: boolean;\n\t/**\n\t * 小页面的宽度,如果为空,则继承默认宽度\n\t */\n\tsmallWidth?: string | number;\n\t/**\n\t * 自适应宽度\n\t */\n\tautoWidth?: boolean;\n\t/**\n\t * 插槽名称\n\t */\n\tslot?: string;\n\t/**\n\t * 表格头部插槽名称\n\t */\n\theaderSlot?: string;\n\t/**\n\t * 自定义表头内容渲染(tsx语法)\n\t */\n\theaderRender?: ({ column, $index }: { column: TableColumnCtx<FaTableRow>; $index: number } & FaTableDefaultSlotsResult) => VNode[];\n\t/**\n\t * 自定义单元格内容渲染(tsx语法)\n\t */\n\trender?: ({ row, column, $index }: { row: FaTableRow; column: FaTableColumnCtx; $index: number } & FaTableDefaultSlotsResult) => VNode[];\n\t/**\n\t * 多级表头\n\t */\n\t_children?: FaTableColumnCtx<T>[];\n\t/**\n\t * 复制\n\t */\n\tcopy?: boolean;\n\t/**\n\t * 是否为 Link Button\n\t */\n\tlink?: boolean;\n\t/**\n\t * 点击事件,优先级最高\n\t */\n\tclick?: ({ row, $index }: { row: T; $index?: number } & FaTableDefaultSlotsResult) => void;\n\t/**\n\t * 点击Emits事件回调\n\t */\n\tclickEmit?: string;\n\t/**\n\t * 图片列是否显示为原图,默认 false 显示缩略图\n\t */\n\toriginalImage?: boolean;\n\t/**\n\t * 显示时间格式化字符串,默认 false\n\t */\n\tdateFix?: boolean;\n\t/**\n\t * 显示在页面中的日期格式\n\t */\n\tdateFormat?: FaTableColumnDateFormat;\n\t/**\n\t * 是否是标签展示,默认 false\n\t */\n\ttag?: boolean;\n\t/**\n\t * 枚举类型(渲染值的字典)\n\t */\n\tenum?: FaTableEnumColumnType;\n\t/**\n\t * 数据删除字段,如果为 true 会显示遮罩层\n\t */\n\tdataDeleteField?: string;\n\t/**\n\t * 时间信息字段\n\t */\n\ttimeInfoField?: { userName?: string; time?: string };\n};\n"],"mappings":";;;;;;AAsBA,MAAa,wBAAwB,UAAmD;CACvF,OAAO;EACN,SAAS,MAAM;EACf,aAAa,MAAM;EACnB,UAAU,MAAM;EAChB,cAAc,MAAM;EACpB,iBAAiB,MAAM;EACvB,8BAA8B,MAAM;CACrC;AACD"}
|