@aplus-frontend/ui 0.0.1-beta.9 → 0.0.2
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/es/index.mjs +196 -138
- package/es/src/ap-action/group/index.vue.mjs +35 -27
- package/es/src/ap-action/interface.d.ts +2 -1
- package/es/src/ap-action/item/index.vue2.mjs +19 -19
- package/es/src/ap-action/item-dropdown/index.vue.mjs +34 -34
- package/es/src/ap-action/style/item.css +6 -1
- package/es/src/ap-custom-column/column-select.vue.d.ts +18 -0
- package/es/src/ap-custom-column/column-select.vue.mjs +102 -0
- package/es/src/ap-custom-column/column-select.vue2.mjs +4 -0
- package/es/src/ap-custom-column/custom-column.vue.d.ts +18 -0
- package/es/src/ap-custom-column/custom-column.vue.mjs +86 -0
- package/es/src/ap-custom-column/custom-column.vue2.mjs +4 -0
- package/es/src/ap-custom-column/index.d.ts +7 -0
- package/es/src/ap-custom-column/index.mjs +9 -0
- package/es/src/ap-custom-column/interfaces.d.ts +41 -0
- package/es/src/ap-custom-column/interfaces.mjs +1 -0
- package/es/src/ap-custom-column/storage.d.ts +8 -0
- package/es/src/ap-custom-column/storage.mjs +29 -0
- package/es/src/ap-custom-column/styles/column-select.css +44 -0
- package/es/src/ap-custom-column/styles/custom-column.css +46 -0
- package/es/src/ap-custom-column/useCacheColumnSetting.d.ts +10 -0
- package/es/src/ap-custom-column/useCacheColumnSetting.mjs +9 -0
- package/es/src/ap-custom-column/utils.d.ts +3 -0
- package/es/src/ap-custom-column/utils.mjs +17 -0
- package/es/src/ap-download/ap-download.vue.d.ts +41 -0
- package/es/src/ap-download/ap-download.vue.mjs +56 -0
- package/es/src/ap-download/ap-download.vue2.mjs +4 -0
- package/es/src/ap-download/hooks/index.d.ts +9 -0
- package/es/src/ap-download/hooks/index.mjs +20 -0
- package/es/src/ap-download/index.d.ts +4 -0
- package/es/src/ap-download/index.mjs +2 -0
- package/es/src/ap-download/interface.d.ts +33 -0
- package/es/src/ap-download/interface.mjs +1 -0
- package/es/src/ap-download/style/ap-download.css +51 -0
- package/es/src/ap-field/checkbox/index.vue.mjs +16 -16
- package/es/src/ap-field/date/index.vue.d.ts +63 -5
- package/es/src/ap-field/date/index.vue.mjs +115 -46
- package/es/src/ap-field/date-range/index.vue.d.ts +68 -6
- package/es/src/ap-field/date-range/index.vue.mjs +137 -58
- package/es/src/ap-field/interface.d.ts +4 -8
- package/es/src/ap-field/number/index.vue.mjs +8 -8
- package/es/src/ap-field/radio/index.vue.mjs +6 -6
- package/es/src/ap-field/select/index.vue.d.ts +45 -179
- package/es/src/ap-field/select/index.vue.mjs +137 -66
- package/es/src/ap-field/switch/index.vue.d.ts +2 -2
- package/es/src/ap-field/switch/index.vue.mjs +31 -31
- package/es/src/ap-field/text/index.vue.d.ts +4 -1
- package/es/src/ap-field/text/index.vue.mjs +11 -10
- package/es/src/ap-field/text-area/index.vue.d.ts +1 -1
- package/es/src/ap-field/text-area/index.vue.mjs +8 -8
- package/es/src/ap-form/ap-form-item-group/helper.d.ts +10 -0
- package/es/src/ap-form/ap-form-item-group/helper.mjs +30 -11
- package/es/src/ap-form/ap-form-item-group/index.vue.mjs +60 -2
- package/es/src/ap-form/ap-form-item-group/index.vue2.mjs +2 -56
- package/es/src/ap-form/ap-form-item.vue.d.ts +23 -5
- package/es/src/ap-form/ap-form-item.vue.mjs +149 -2
- package/es/src/ap-form/ap-form-item.vue2.mjs +2 -80
- package/es/src/ap-form/ap-form-list.vue.d.ts +35 -0
- package/es/src/ap-form/ap-form-list.vue.mjs +41 -0
- package/es/src/ap-form/ap-form-list.vue2.mjs +4 -0
- package/es/src/ap-form/ap-form.vue.d.ts +66 -0
- package/es/src/ap-form/ap-form.vue.mjs +4 -0
- package/es/src/ap-form/ap-form.vue2.mjs +89 -0
- package/es/src/ap-form/context.d.ts +11 -0
- package/es/src/ap-form/context.mjs +17 -0
- package/es/src/ap-form/index.d.ts +15 -939
- package/es/src/ap-form/index.mjs +24 -11
- package/es/src/ap-form/interface.d.ts +62 -1
- package/es/src/ap-form/interface.mjs +1 -0
- package/es/src/ap-form/items/checkbox/index.vue.d.ts +47 -0
- package/es/src/ap-form/items/checkbox/index.vue.mjs +61 -0
- package/es/src/ap-form/items/checkbox/index.vue2.mjs +4 -0
- package/es/src/ap-form/items/date/index.vue.d.ts +65 -0
- package/es/src/ap-form/items/date/index.vue.mjs +78 -0
- package/es/src/ap-form/items/date/index.vue2.mjs +4 -0
- package/es/src/ap-form/items/date-range/index.vue.d.ts +64 -0
- package/es/src/ap-form/items/date-range/index.vue.mjs +78 -0
- package/es/src/ap-form/items/date-range/index.vue2.mjs +4 -0
- package/es/src/ap-form/items/index.d.ts +9 -1
- package/es/src/ap-form/items/index.mjs +8 -0
- package/es/src/ap-form/items/interface.d.ts +39 -6
- package/es/src/ap-form/items/number/index.vue.d.ts +63 -0
- package/es/src/ap-form/items/number/index.vue.mjs +84 -0
- package/es/src/ap-form/items/number/index.vue2.mjs +4 -0
- package/es/src/ap-form/items/radio/index.vue.d.ts +50 -0
- package/es/src/ap-form/items/radio/index.vue.mjs +74 -0
- package/es/src/ap-form/items/radio/index.vue2.mjs +4 -0
- package/es/src/ap-form/items/select/index.vue.d.ts +69 -0
- package/es/src/ap-form/items/select/index.vue.mjs +89 -0
- package/es/src/ap-form/items/select/index.vue2.mjs +4 -0
- package/es/src/ap-form/items/switch/index.vue.d.ts +60 -0
- package/es/src/ap-form/items/switch/index.vue.mjs +68 -0
- package/es/src/ap-form/items/switch/index.vue2.mjs +4 -0
- package/es/src/ap-form/items/text/index.vue.d.ts +0 -3
- package/es/src/ap-form/items/text/index.vue.mjs +24 -31
- package/es/src/ap-form/items/text-area/index.vue.d.ts +52 -0
- package/es/src/ap-form/items/text-area/index.vue.mjs +79 -0
- package/es/src/ap-form/items/text-area/index.vue2.mjs +4 -0
- package/es/src/ap-form/modal-form/index.vue.d.ts +378 -0
- package/es/src/ap-form/modal-form/index.vue.mjs +239 -0
- package/es/src/ap-form/modal-form/index.vue2.mjs +4 -0
- package/es/src/ap-form/search-form/index.vue.d.ts +79 -0
- package/es/src/ap-form/search-form/index.vue.mjs +209 -0
- package/es/src/ap-form/search-form/index.vue2.mjs +4 -0
- package/es/src/ap-form/style/ap-form-item.css +46 -0
- package/es/src/ap-form/style/modal-form.css +17 -0
- package/es/src/ap-form/style/search-form.css +3 -0
- package/es/src/ap-layout/ap-info-layout/ap-info-layout.vue.d.ts +42 -0
- package/es/src/ap-layout/ap-info-layout/ap-info-layout.vue.mjs +62 -0
- package/es/src/ap-layout/ap-info-layout/ap-info-layout.vue2.mjs +4 -0
- package/es/src/ap-layout/index.d.ts +3 -0
- package/es/src/ap-layout/index.mjs +1 -0
- package/es/src/ap-layout/interface.d.ts +4 -0
- package/es/src/ap-layout/style/ap-info-layout.css +19 -0
- package/es/src/ap-table/ap-table.vue.d.ts +193 -0
- package/es/src/ap-table/ap-table.vue.mjs +277 -0
- package/es/src/ap-table/ap-table.vue2.mjs +4 -0
- package/es/src/ap-table/components/index/index.vue.d.ts +28 -0
- package/es/src/ap-table/components/index/index.vue.mjs +4 -0
- package/es/src/ap-table/components/index/index.vue2.mjs +21 -0
- package/es/src/ap-table/components/interface.d.ts +20 -0
- package/es/src/ap-table/components/style/index.css +12 -0
- package/es/src/ap-table/components/style/pagination.css +12 -0
- package/es/src/ap-table/constants.d.ts +12340 -0
- package/es/src/ap-table/constants.mjs +55 -0
- package/es/src/ap-table/hooks/use-table-paging.d.ts +82 -0
- package/es/src/ap-table/hooks/use-table-paging.mjs +142 -0
- package/es/src/ap-table/index.d.ts +5 -0
- package/es/src/ap-table/index.mjs +6 -0
- package/es/src/ap-table/interface.d.ts +180 -0
- package/es/src/ap-table/interface.mjs +1 -0
- package/es/src/ap-table/style/ap-table.css +46 -0
- package/es/src/ap-table/utils.d.ts +32 -0
- package/es/src/ap-table/utils.mjs +63 -0
- package/es/src/ap-tag/ap-tag-group.vue.d.ts +34 -0
- package/es/src/ap-tag/ap-tag-group.vue.mjs +137 -0
- package/es/src/ap-tag/ap-tag-group.vue2.mjs +4 -0
- package/es/src/ap-tag/ap-tag.vue.d.ts +34 -0
- package/es/src/ap-tag/ap-tag.vue.mjs +41 -0
- package/es/src/ap-tag/ap-tag.vue2.mjs +4 -0
- package/es/src/ap-tag/index.d.ts +5 -0
- package/es/src/ap-tag/index.mjs +3 -0
- package/es/src/ap-tag/interface.d.ts +35 -0
- package/es/src/ap-tag/interface.mjs +1 -0
- package/es/src/ap-tag/style/ap-tag-group.css +6 -0
- package/es/src/ap-tag/style/ap-tag.css +40 -0
- package/es/src/ap-upload/apUpload.vue.d.ts +111 -0
- package/es/src/ap-upload/apUpload.vue.mjs +95 -0
- package/es/src/ap-upload/apUpload.vue2.mjs +4 -0
- package/es/src/ap-upload/apUploadTypes.d.ts +90 -0
- package/es/src/ap-upload/apUploadTypes.mjs +4 -0
- package/es/src/ap-upload/assets/single-file-icon.png.mjs +4 -0
- package/es/src/ap-upload/components/MultipleFile.vue.d.ts +4 -0
- package/es/src/ap-upload/components/MultipleFile.vue.mjs +4 -0
- package/es/src/ap-upload/components/MultipleFile.vue2.mjs +197 -0
- package/es/src/ap-upload/components/Picture.vue.d.ts +4 -0
- package/es/src/ap-upload/components/Picture.vue.mjs +4 -0
- package/es/src/ap-upload/components/Picture.vue2.mjs +219 -0
- package/es/src/ap-upload/components/SingleFile.vue.d.ts +4 -0
- package/es/src/ap-upload/components/SingleFile.vue.mjs +4 -0
- package/es/src/ap-upload/components/SingleFile.vue2.mjs +213 -0
- package/es/src/ap-upload/hooks/useOss.d.ts +19 -0
- package/es/src/ap-upload/hooks/useOss.mjs +62 -0
- package/es/src/ap-upload/index.d.ts +5 -0
- package/es/src/ap-upload/index.mjs +11 -0
- package/es/src/ap-upload/styles/multiple-file.css +58 -0
- package/es/src/ap-upload/styles/picture.css +112 -0
- package/es/src/ap-upload/styles/single-file.css +98 -0
- package/es/src/ap-upload/styles/upload.css +6 -0
- package/es/src/ap-upload/utils/accept.d.ts +13 -0
- package/es/src/ap-upload/utils/accept.mjs +51 -0
- package/es/src/ap-upload/utils/returnData.d.ts +19 -0
- package/es/src/ap-upload/utils/returnData.mjs +21 -0
- package/es/src/basic/help.vue.d.ts +4 -4
- package/es/src/basic/index.d.ts +8 -8
- package/es/src/components.d.ts +2 -0
- package/es/src/config-provider/config-provider-props.d.ts +1 -1
- package/es/src/config-provider/config-provider.d.ts +11 -11
- package/es/src/config-provider/config-provider.mjs +26 -33
- package/es/src/config-provider/hooks/use-global-config.d.ts +1 -1
- package/es/src/config-provider/index.d.ts +31 -31
- package/es/src/design-token/index.mjs +8 -2
- package/es/src/hooks/useControllableValue.mjs +11 -14
- package/es/src/icon-picker/icon-picker.vue.d.ts +1 -1
- package/es/src/icon-picker/index.d.ts +15 -15
- package/es/src/index.d.ts +7 -0
- package/es/src/index.mjs +226 -161
- package/es/src/locale/lang/en.mjs +14 -1
- package/es/src/locale/lang/zh-cn.mjs +14 -1
- package/es/src/modal/basic.vue.d.ts +1 -2
- package/es/src/modal/basic.vue2.mjs +10 -11
- package/es/src/modal/components/modal-footer.vue.d.ts +1 -1
- package/es/src/modal/index.d.ts +2 -2
- package/es/src/modal/style/index.css +0 -103
- package/es/src/pro-form/components/api-cascader.vue.d.ts +1 -1
- package/es/src/pro-form/components/api-radio-group.vue.d.ts +1 -1
- package/es/src/pro-form/components/api-select.vue.d.ts +2 -2
- package/es/src/pro-form/components/api-transfer.vue.d.ts +1 -1
- package/es/src/pro-form/components/api-tree-select.vue.d.ts +1 -1
- package/es/src/pro-form/components/api-tree.vue.d.ts +1 -1
- package/es/src/pro-form/hooks/use-label-width.d.ts +3 -3
- package/es/src/pro-form/index.d.ts +4 -1
- package/es/src/pro-form/index.mjs +12 -9
- package/es/src/pro-form/pro-form.vue.d.ts +1 -1
- package/es/src/pro-form/style/index.css +0 -3
- package/es/src/pro-form/style/table-form.css +104 -0
- package/es/src/pro-form/table-form-inner.vue.d.ts +44 -0
- package/es/src/pro-form/table-form-inner.vue.mjs +176 -0
- package/es/src/pro-form/table-form-inner.vue2.mjs +4 -0
- package/es/src/pro-form/table-form.vue.d.ts +42 -0
- package/es/src/pro-form/table-form.vue.mjs +41 -0
- package/es/src/pro-form/table-form.vue2.mjs +4 -0
- package/es/src/pro-form/types/form.d.ts +1 -1
- package/es/src/pro-form/types/table-form.d.ts +37 -0
- package/es/src/pro-form/types/table-form.mjs +1 -0
- package/es/src/pro-table/hooks/use-data-source.mjs +45 -46
- package/es/src/prompt/utils.d.ts +1 -1
- package/es/src/scroll-bar/index.d.ts +12 -12
- package/es/src/theme/antd-global-overwrite/admin/alert.css +47 -0
- package/es/src/theme/antd-global-overwrite/admin/button.css +27 -0
- package/es/src/theme/antd-global-overwrite/admin/form.css +65 -0
- package/es/src/theme/antd-global-overwrite/admin/index.css +525 -0
- package/es/src/theme/antd-global-overwrite/admin/message.css +17 -0
- package/es/src/theme/antd-global-overwrite/admin/modal.css +117 -0
- package/es/src/theme/antd-global-overwrite/admin/pagination.css +68 -0
- package/es/src/theme/antd-global-overwrite/admin/steps.css +103 -0
- package/es/src/theme/antd-global-overwrite/admin/table.css +81 -0
- package/es/src/theme/antd-global-overwrite/aplus/alert.css +47 -0
- package/es/src/theme/antd-global-overwrite/aplus/button.css +27 -0
- package/es/src/theme/antd-global-overwrite/aplus/form.css +90 -0
- package/es/src/theme/antd-global-overwrite/aplus/index.css +554 -0
- package/es/src/theme/antd-global-overwrite/aplus/message.css +17 -0
- package/es/src/theme/antd-global-overwrite/aplus/modal.css +111 -0
- package/es/src/theme/antd-global-overwrite/aplus/pagination.css +81 -0
- package/es/src/theme/antd-global-overwrite/aplus/steps.css +103 -0
- package/es/src/theme/antd-global-overwrite/aplus/table.css +78 -0
- package/es/src/theme/ap-action/item.css +6 -1
- package/es/src/theme/ap-download/ap-download.css +51 -0
- package/es/src/theme/ap-form/ap-form-item.css +46 -0
- package/es/src/theme/ap-form/modal-form.css +17 -0
- package/es/src/theme/ap-form/search-form.css +3 -0
- package/es/src/theme/ap-layout/ap-info-layout.css +19 -0
- package/es/src/theme/ap-table/ap-table-index.css +12 -0
- package/es/src/theme/ap-table/ap-table-pagination.css +12 -0
- package/es/src/theme/ap-table/ap-table.css +46 -0
- package/es/src/theme/ap-tag/ap-tag-group.css +6 -0
- package/es/src/theme/ap-tag/ap-tag.css +40 -0
- package/es/src/theme/ap-upload/multiple-file.css +58 -0
- package/es/src/theme/ap-upload/picture.css +112 -0
- package/es/src/theme/ap-upload/single-file.css +98 -0
- package/es/src/theme/ap-upload/upload.css +6 -0
- package/es/src/theme/custom-column/column-select.css +44 -0
- package/es/src/theme/custom-column/custom-column.css +46 -0
- package/es/src/theme/modal/index.css +0 -103
- package/es/src/theme/pro-form/form.css +0 -3
- package/es/src/theme/pro-form/table-form-inner.css +104 -0
- package/es/src/theme/work-order-modal/index.css +3 -0
- package/es/src/utils/config-provider-preset.d.ts +79 -0
- package/es/src/utils/config-provider-preset.mjs +30 -0
- package/es/src/utils/index.d.ts +16 -0
- package/es/src/utils/index.mjs +40 -20
- package/es/src/utils/slot.d.ts +7 -1
- package/es/src/utils/slot.mjs +25 -15
- package/es/src/work-order-modal/createWorkOrder.d.ts +1 -0
- package/es/src/work-order-modal/createWorkOrder.mjs +19 -0
- package/es/src/work-order-modal/help-message.vue.d.ts +3 -0
- package/es/src/work-order-modal/help-message.vue.mjs +4 -0
- package/es/src/work-order-modal/help-message.vue2.mjs +33 -0
- package/es/src/work-order-modal/index.d.ts +5 -0
- package/es/src/work-order-modal/index.mjs +7 -0
- package/es/src/work-order-modal/interfaces.d.ts +23 -0
- package/es/src/work-order-modal/interfaces.mjs +4 -0
- package/es/src/work-order-modal/style/index.css +3 -0
- package/es/src/work-order-modal/work-order-modal.vue.d.ts +18 -0
- package/es/src/work-order-modal/work-order-modal.vue.mjs +180 -0
- package/es/src/work-order-modal/work-order-modal.vue2.mjs +4 -0
- package/lib/index.js +1 -1
- package/lib/src/ap-action/group/index.vue.js +1 -1
- package/lib/src/ap-action/interface.d.ts +2 -1
- package/lib/src/ap-action/item/index.vue2.js +1 -1
- package/lib/src/ap-action/item-dropdown/index.vue.js +1 -1
- package/lib/src/ap-action/style/item.css +6 -1
- package/lib/src/ap-custom-column/column-select.vue.d.ts +18 -0
- package/lib/src/ap-custom-column/column-select.vue.js +1 -0
- package/lib/src/ap-custom-column/column-select.vue2.js +1 -0
- package/lib/src/ap-custom-column/custom-column.vue.d.ts +18 -0
- package/lib/src/ap-custom-column/custom-column.vue.js +1 -0
- package/lib/src/ap-custom-column/custom-column.vue2.js +1 -0
- package/lib/src/ap-custom-column/index.d.ts +7 -0
- package/lib/src/ap-custom-column/index.js +1 -0
- package/lib/src/ap-custom-column/interfaces.d.ts +41 -0
- package/lib/src/ap-custom-column/interfaces.js +1 -0
- package/lib/src/ap-custom-column/storage.d.ts +8 -0
- package/lib/src/ap-custom-column/storage.js +1 -0
- package/lib/src/ap-custom-column/styles/column-select.css +44 -0
- package/lib/src/ap-custom-column/styles/custom-column.css +46 -0
- package/lib/src/ap-custom-column/useCacheColumnSetting.d.ts +10 -0
- package/lib/src/ap-custom-column/useCacheColumnSetting.js +1 -0
- package/lib/src/ap-custom-column/utils.d.ts +3 -0
- package/lib/src/ap-custom-column/utils.js +1 -0
- package/lib/src/ap-download/ap-download.vue.d.ts +41 -0
- package/lib/src/ap-download/ap-download.vue.js +1 -0
- package/lib/src/ap-download/ap-download.vue2.js +1 -0
- package/lib/src/ap-download/hooks/index.d.ts +9 -0
- package/lib/src/ap-download/hooks/index.js +1 -0
- package/lib/src/ap-download/index.d.ts +4 -0
- package/lib/src/ap-download/index.js +1 -0
- package/lib/src/ap-download/interface.d.ts +33 -0
- package/lib/src/ap-download/interface.js +1 -0
- package/lib/src/ap-download/style/ap-download.css +51 -0
- package/lib/src/ap-field/checkbox/index.vue.js +1 -1
- package/lib/src/ap-field/date/index.vue.d.ts +63 -5
- package/lib/src/ap-field/date/index.vue.js +1 -1
- package/lib/src/ap-field/date-range/index.vue.d.ts +68 -6
- package/lib/src/ap-field/date-range/index.vue.js +1 -1
- package/lib/src/ap-field/interface.d.ts +4 -8
- package/lib/src/ap-field/number/index.vue.js +1 -1
- package/lib/src/ap-field/radio/index.vue.js +1 -1
- package/lib/src/ap-field/select/index.vue.d.ts +45 -179
- package/lib/src/ap-field/select/index.vue.js +1 -1
- package/lib/src/ap-field/switch/index.vue.d.ts +2 -2
- package/lib/src/ap-field/switch/index.vue.js +1 -1
- package/lib/src/ap-field/text/index.vue.d.ts +4 -1
- package/lib/src/ap-field/text/index.vue.js +1 -1
- package/lib/src/ap-field/text-area/index.vue.d.ts +1 -1
- package/lib/src/ap-field/text-area/index.vue.js +1 -1
- package/lib/src/ap-form/ap-form-item-group/helper.d.ts +10 -0
- package/lib/src/ap-form/ap-form-item-group/helper.js +1 -1
- package/lib/src/ap-form/ap-form-item-group/index.vue.js +1 -1
- package/lib/src/ap-form/ap-form-item-group/index.vue2.js +1 -1
- package/lib/src/ap-form/ap-form-item.vue.d.ts +23 -5
- package/lib/src/ap-form/ap-form-item.vue.js +1 -1
- package/lib/src/ap-form/ap-form-item.vue2.js +1 -1
- package/lib/src/ap-form/ap-form-list.vue.d.ts +35 -0
- package/lib/src/ap-form/ap-form-list.vue.js +1 -0
- package/lib/src/ap-form/ap-form-list.vue2.js +1 -0
- package/lib/src/ap-form/ap-form.vue.d.ts +66 -0
- package/lib/src/ap-form/ap-form.vue.js +1 -0
- package/lib/src/ap-form/ap-form.vue2.js +1 -0
- package/lib/src/ap-form/context.d.ts +11 -0
- package/lib/src/ap-form/context.js +1 -0
- package/lib/src/ap-form/index.d.ts +15 -939
- package/lib/src/ap-form/index.js +1 -1
- package/lib/src/ap-form/interface.d.ts +62 -1
- package/lib/src/ap-form/interface.js +1 -0
- package/lib/src/ap-form/items/checkbox/index.vue.d.ts +47 -0
- package/lib/src/ap-form/items/checkbox/index.vue.js +1 -0
- package/lib/src/ap-form/items/checkbox/index.vue2.js +1 -0
- package/lib/src/ap-form/items/date/index.vue.d.ts +65 -0
- package/lib/src/ap-form/items/date/index.vue.js +1 -0
- package/lib/src/ap-form/items/date/index.vue2.js +1 -0
- package/lib/src/ap-form/items/date-range/index.vue.d.ts +64 -0
- package/lib/src/ap-form/items/date-range/index.vue.js +1 -0
- package/lib/src/ap-form/items/date-range/index.vue2.js +1 -0
- package/lib/src/ap-form/items/index.d.ts +9 -1
- package/lib/src/ap-form/items/index.js +1 -1
- package/lib/src/ap-form/items/interface.d.ts +39 -6
- package/lib/src/ap-form/items/number/index.vue.d.ts +63 -0
- package/lib/src/ap-form/items/number/index.vue.js +1 -0
- package/lib/src/ap-form/items/number/index.vue2.js +1 -0
- package/lib/src/ap-form/items/radio/index.vue.d.ts +50 -0
- package/lib/src/ap-form/items/radio/index.vue.js +1 -0
- package/lib/src/ap-form/items/radio/index.vue2.js +1 -0
- package/lib/src/ap-form/items/select/index.vue.d.ts +69 -0
- package/lib/src/ap-form/items/select/index.vue.js +1 -0
- package/lib/src/ap-form/items/select/index.vue2.js +1 -0
- package/lib/src/ap-form/items/switch/index.vue.d.ts +60 -0
- package/lib/src/ap-form/items/switch/index.vue.js +1 -0
- package/lib/src/ap-form/items/switch/index.vue2.js +1 -0
- package/lib/src/ap-form/items/text/index.vue.d.ts +0 -3
- package/lib/src/ap-form/items/text/index.vue.js +1 -1
- package/lib/src/ap-form/items/text-area/index.vue.d.ts +52 -0
- package/lib/src/ap-form/items/text-area/index.vue.js +1 -0
- package/lib/src/ap-form/items/text-area/index.vue2.js +1 -0
- package/lib/src/ap-form/modal-form/index.vue.d.ts +378 -0
- package/lib/src/ap-form/modal-form/index.vue.js +1 -0
- package/lib/src/ap-form/modal-form/index.vue2.js +1 -0
- package/lib/src/ap-form/search-form/index.vue.d.ts +79 -0
- package/lib/src/ap-form/search-form/index.vue.js +1 -0
- package/lib/src/ap-form/search-form/index.vue2.js +1 -0
- package/lib/src/ap-form/style/ap-form-item.css +46 -0
- package/lib/src/ap-form/style/modal-form.css +17 -0
- package/lib/src/ap-form/style/search-form.css +3 -0
- package/lib/src/ap-layout/ap-info-layout/ap-info-layout.vue.d.ts +42 -0
- package/lib/src/ap-layout/ap-info-layout/ap-info-layout.vue.js +1 -0
- package/lib/src/ap-layout/ap-info-layout/ap-info-layout.vue2.js +1 -0
- package/lib/src/ap-layout/index.d.ts +3 -0
- package/lib/src/ap-layout/index.js +1 -0
- package/lib/src/ap-layout/interface.d.ts +4 -0
- package/lib/src/ap-layout/style/ap-info-layout.css +19 -0
- package/lib/src/ap-table/ap-table.vue.d.ts +193 -0
- package/lib/src/ap-table/ap-table.vue.js +1 -0
- package/lib/src/ap-table/ap-table.vue2.js +1 -0
- package/lib/src/ap-table/components/index/index.vue.d.ts +28 -0
- package/lib/src/ap-table/components/index/index.vue.js +1 -0
- package/lib/src/ap-table/components/index/index.vue2.js +1 -0
- package/lib/src/ap-table/components/interface.d.ts +20 -0
- package/lib/src/ap-table/components/style/index.css +12 -0
- package/lib/src/ap-table/components/style/pagination.css +12 -0
- package/lib/src/ap-table/constants.d.ts +12340 -0
- package/lib/src/ap-table/constants.js +1 -0
- package/lib/src/ap-table/hooks/use-table-paging.d.ts +82 -0
- package/lib/src/ap-table/hooks/use-table-paging.js +1 -0
- package/lib/src/ap-table/index.d.ts +5 -0
- package/lib/src/ap-table/index.js +1 -0
- package/lib/src/ap-table/interface.d.ts +180 -0
- package/lib/src/ap-table/interface.js +1 -0
- package/lib/src/ap-table/style/ap-table.css +46 -0
- package/lib/src/ap-table/utils.d.ts +32 -0
- package/lib/src/ap-table/utils.js +1 -0
- package/lib/src/ap-tag/ap-tag-group.vue.d.ts +34 -0
- package/lib/src/ap-tag/ap-tag-group.vue.js +1 -0
- package/lib/src/ap-tag/ap-tag-group.vue2.js +1 -0
- package/lib/src/ap-tag/ap-tag.vue.d.ts +34 -0
- package/lib/src/ap-tag/ap-tag.vue.js +1 -0
- package/lib/src/ap-tag/ap-tag.vue2.js +1 -0
- package/lib/src/ap-tag/index.d.ts +5 -0
- package/lib/src/ap-tag/index.js +1 -0
- package/lib/src/ap-tag/interface.d.ts +35 -0
- package/lib/src/ap-tag/interface.js +1 -0
- package/lib/src/ap-tag/style/ap-tag-group.css +6 -0
- package/lib/src/ap-tag/style/ap-tag.css +40 -0
- package/lib/src/ap-upload/apUpload.vue.d.ts +111 -0
- package/lib/src/ap-upload/apUpload.vue.js +1 -0
- package/lib/src/ap-upload/apUpload.vue2.js +1 -0
- package/lib/src/ap-upload/apUploadTypes.d.ts +90 -0
- package/lib/src/ap-upload/apUploadTypes.js +1 -0
- package/lib/src/ap-upload/assets/single-file-icon.png.js +1 -0
- package/lib/src/ap-upload/components/MultipleFile.vue.d.ts +4 -0
- package/lib/src/ap-upload/components/MultipleFile.vue.js +1 -0
- package/lib/src/ap-upload/components/MultipleFile.vue2.js +1 -0
- package/lib/src/ap-upload/components/Picture.vue.d.ts +4 -0
- package/lib/src/ap-upload/components/Picture.vue.js +1 -0
- package/lib/src/ap-upload/components/Picture.vue2.js +1 -0
- package/lib/src/ap-upload/components/SingleFile.vue.d.ts +4 -0
- package/lib/src/ap-upload/components/SingleFile.vue.js +1 -0
- package/lib/src/ap-upload/components/SingleFile.vue2.js +1 -0
- package/lib/src/ap-upload/hooks/useOss.d.ts +19 -0
- package/lib/src/ap-upload/hooks/useOss.js +1 -0
- package/lib/src/ap-upload/index.d.ts +5 -0
- package/lib/src/ap-upload/index.js +1 -0
- package/lib/src/ap-upload/styles/multiple-file.css +58 -0
- package/lib/src/ap-upload/styles/picture.css +112 -0
- package/lib/src/ap-upload/styles/single-file.css +98 -0
- package/lib/src/ap-upload/styles/upload.css +6 -0
- package/lib/src/ap-upload/utils/accept.d.ts +13 -0
- package/lib/src/ap-upload/utils/accept.js +1 -0
- package/lib/src/ap-upload/utils/returnData.d.ts +19 -0
- package/lib/src/ap-upload/utils/returnData.js +1 -0
- package/lib/src/basic/help.vue.d.ts +4 -4
- package/lib/src/basic/help.vue2.js +1 -1
- package/lib/src/basic/index.d.ts +8 -8
- package/lib/src/components.d.ts +2 -0
- package/lib/src/config-provider/config-provider-props.d.ts +1 -1
- package/lib/src/config-provider/config-provider.d.ts +11 -11
- package/lib/src/config-provider/config-provider.js +1 -1
- package/lib/src/config-provider/hooks/use-global-config.d.ts +1 -1
- package/lib/src/config-provider/index.d.ts +31 -31
- package/lib/src/design-token/index.js +1 -1
- package/lib/src/hooks/useControllableValue.js +1 -1
- package/lib/src/hooks/useMessage.js +1 -1
- package/lib/src/icon-picker/icon-picker.vue.d.ts +1 -1
- package/lib/src/icon-picker/index.d.ts +15 -15
- package/lib/src/index.d.ts +7 -0
- package/lib/src/index.js +1 -1
- package/lib/src/locale/lang/en.js +1 -1
- package/lib/src/locale/lang/zh-cn.js +1 -1
- package/lib/src/modal/basic.vue.d.ts +1 -2
- package/lib/src/modal/basic.vue2.js +1 -1
- package/lib/src/modal/components/modal-footer.vue.d.ts +1 -1
- package/lib/src/modal/index.d.ts +2 -2
- package/lib/src/modal/style/index.css +0 -103
- package/lib/src/pro-form/components/api-cascader.vue.d.ts +1 -1
- package/lib/src/pro-form/components/api-cascader.vue.js +1 -1
- package/lib/src/pro-form/components/api-radio-group.vue.d.ts +1 -1
- package/lib/src/pro-form/components/api-select.vue.d.ts +2 -2
- package/lib/src/pro-form/components/api-select.vue.js +1 -1
- package/lib/src/pro-form/components/api-transfer.vue.d.ts +1 -1
- package/lib/src/pro-form/components/api-tree-select.vue.d.ts +1 -1
- package/lib/src/pro-form/components/api-tree-select.vue.js +1 -1
- package/lib/src/pro-form/components/api-tree.vue.d.ts +1 -1
- package/lib/src/pro-form/hooks/use-label-width.d.ts +3 -3
- package/lib/src/pro-form/index.d.ts +4 -1
- package/lib/src/pro-form/index.js +1 -1
- package/lib/src/pro-form/pro-form.vue.d.ts +1 -1
- package/lib/src/pro-form/style/index.css +0 -3
- package/lib/src/pro-form/style/table-form.css +104 -0
- package/lib/src/pro-form/table-form-inner.vue.d.ts +44 -0
- package/lib/src/pro-form/table-form-inner.vue.js +1 -0
- package/lib/src/pro-form/table-form-inner.vue2.js +1 -0
- package/lib/src/pro-form/table-form.vue.d.ts +42 -0
- package/lib/src/pro-form/table-form.vue.js +1 -0
- package/lib/src/pro-form/table-form.vue2.js +1 -0
- package/lib/src/pro-form/types/form.d.ts +1 -1
- package/lib/src/pro-form/types/table-form.d.ts +37 -0
- package/lib/src/pro-form/types/table-form.js +1 -0
- package/lib/src/pro-table/components/editable/editable-cell.vue2.js +1 -1
- package/lib/src/pro-table/components/settings/column-setting.vue2.js +1 -1
- package/lib/src/pro-table/components/settings/redo-setting.vue2.js +1 -1
- package/lib/src/pro-table/components/settings/size-setting.vue2.js +1 -1
- package/lib/src/pro-table/components/table-action.vue.js +1 -1
- package/lib/src/pro-table/hooks/use-data-source.js +1 -1
- package/lib/src/prompt/utils.d.ts +1 -1
- package/lib/src/scroll-bar/index.d.ts +12 -12
- package/lib/src/theme/antd-global-overwrite/admin/alert.css +47 -0
- package/lib/src/theme/antd-global-overwrite/admin/button.css +27 -0
- package/lib/src/theme/antd-global-overwrite/admin/form.css +65 -0
- package/lib/src/theme/antd-global-overwrite/admin/index.css +525 -0
- package/lib/src/theme/antd-global-overwrite/admin/message.css +17 -0
- package/lib/src/theme/antd-global-overwrite/admin/modal.css +117 -0
- package/lib/src/theme/antd-global-overwrite/admin/pagination.css +68 -0
- package/lib/src/theme/antd-global-overwrite/admin/steps.css +103 -0
- package/lib/src/theme/antd-global-overwrite/admin/table.css +81 -0
- package/lib/src/theme/antd-global-overwrite/aplus/alert.css +47 -0
- package/lib/src/theme/antd-global-overwrite/aplus/button.css +27 -0
- package/lib/src/theme/antd-global-overwrite/aplus/form.css +90 -0
- package/lib/src/theme/antd-global-overwrite/aplus/index.css +554 -0
- package/lib/src/theme/antd-global-overwrite/aplus/message.css +17 -0
- package/lib/src/theme/antd-global-overwrite/aplus/modal.css +111 -0
- package/lib/src/theme/antd-global-overwrite/aplus/pagination.css +81 -0
- package/lib/src/theme/antd-global-overwrite/aplus/steps.css +103 -0
- package/lib/src/theme/antd-global-overwrite/aplus/table.css +78 -0
- package/lib/src/theme/ap-action/item.css +6 -1
- package/lib/src/theme/ap-download/ap-download.css +51 -0
- package/lib/src/theme/ap-form/ap-form-item.css +46 -0
- package/lib/src/theme/ap-form/modal-form.css +17 -0
- package/lib/src/theme/ap-form/search-form.css +3 -0
- package/lib/src/theme/ap-layout/ap-info-layout.css +19 -0
- package/lib/src/theme/ap-table/ap-table-index.css +12 -0
- package/lib/src/theme/ap-table/ap-table-pagination.css +12 -0
- package/lib/src/theme/ap-table/ap-table.css +46 -0
- package/lib/src/theme/ap-tag/ap-tag-group.css +6 -0
- package/lib/src/theme/ap-tag/ap-tag.css +40 -0
- package/lib/src/theme/ap-upload/multiple-file.css +58 -0
- package/lib/src/theme/ap-upload/picture.css +112 -0
- package/lib/src/theme/ap-upload/single-file.css +98 -0
- package/lib/src/theme/ap-upload/upload.css +6 -0
- package/lib/src/theme/custom-column/column-select.css +44 -0
- package/lib/src/theme/custom-column/custom-column.css +46 -0
- package/lib/src/theme/modal/index.css +0 -103
- package/lib/src/theme/pro-form/form.css +0 -3
- package/lib/src/theme/pro-form/table-form-inner.css +104 -0
- package/lib/src/theme/work-order-modal/index.css +3 -0
- package/lib/src/utils/config-provider-preset.d.ts +79 -0
- package/lib/src/utils/config-provider-preset.js +1 -0
- package/lib/src/utils/index.d.ts +16 -0
- package/lib/src/utils/index.js +1 -1
- package/lib/src/utils/slot.d.ts +7 -1
- package/lib/src/utils/slot.js +1 -1
- package/lib/src/work-order-modal/createWorkOrder.d.ts +1 -0
- package/lib/src/work-order-modal/createWorkOrder.js +1 -0
- package/lib/src/work-order-modal/help-message.vue.d.ts +3 -0
- package/lib/src/work-order-modal/help-message.vue.js +1 -0
- package/lib/src/work-order-modal/help-message.vue2.js +1 -0
- package/lib/src/work-order-modal/index.d.ts +5 -0
- package/lib/src/work-order-modal/index.js +1 -0
- package/lib/src/work-order-modal/interfaces.d.ts +23 -0
- package/lib/src/work-order-modal/interfaces.js +1 -0
- package/lib/src/work-order-modal/style/index.css +3 -0
- package/lib/src/work-order-modal/work-order-modal.vue.d.ts +18 -0
- package/lib/src/work-order-modal/work-order-modal.vue.js +1 -0
- package/lib/src/work-order-modal/work-order-modal.vue2.js +1 -0
- package/package.json +17 -7
- package/es/src/ap-form/ap-form.d.ts +0 -1681
- package/es/src/ap-form/ap-form.mjs +0 -5
- package/lib/src/ap-form/ap-form.d.ts +0 -1681
- package/lib/src/ap-form/ap-form.js +0 -1
|
@@ -1,108 +1,179 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { debounce as
|
|
3
|
-
import { Select as
|
|
1
|
+
import { defineComponent as P, ref as c, onMounted as k, computed as p, unref as l, openBlock as m, createElementBlock as A, toDisplayString as O, createBlock as T, mergeProps as M, createSlots as N, renderList as _, withCtx as v, renderSlot as R, normalizeProps as q, guardReactiveProps as U, createVNode as D } from "vue";
|
|
2
|
+
import { debounce as L, isFunction as h, isArray as z, omit as K, isNil as H } from "lodash-unified";
|
|
3
|
+
import { Select as $, Spin as j } from "ant-design-vue";
|
|
4
4
|
import "../../hooks/index.mjs";
|
|
5
|
-
import {
|
|
6
|
-
|
|
5
|
+
import { omitUndefined as E } from "../../utils/index.mjs";
|
|
6
|
+
import { useControllableValue as W } from "../../hooks/useControllableValue.mjs";
|
|
7
|
+
const G = { key: 0 }, oe = /* @__PURE__ */ P({
|
|
7
8
|
name: "ApFieldSelect",
|
|
8
9
|
__name: "index",
|
|
9
10
|
props: {
|
|
10
11
|
mode: { default: "edit" },
|
|
11
|
-
|
|
12
|
+
defaultValue: {},
|
|
13
|
+
notFoundContent: {},
|
|
14
|
+
suffixIcon: {},
|
|
15
|
+
itemIcon: {},
|
|
16
|
+
size: {},
|
|
17
|
+
bordered: { type: Boolean, default: void 0 },
|
|
18
|
+
transitionName: {},
|
|
19
|
+
choiceTransitionName: {},
|
|
20
|
+
popupClassName: {},
|
|
21
|
+
dropdownClassName: {},
|
|
22
|
+
placement: {},
|
|
23
|
+
status: {},
|
|
24
|
+
children: {},
|
|
25
|
+
listHeight: {},
|
|
26
|
+
onMouseenter: {},
|
|
27
|
+
onMouseleave: {},
|
|
28
|
+
tabindex: {},
|
|
29
|
+
onClick: {},
|
|
30
|
+
onFocus: {},
|
|
31
|
+
onBlur: {},
|
|
32
|
+
onChange: {},
|
|
33
|
+
onKeydown: {},
|
|
34
|
+
onKeyup: {},
|
|
35
|
+
onMousedown: {},
|
|
36
|
+
onSelect: {},
|
|
37
|
+
open: { type: Boolean, default: void 0 },
|
|
38
|
+
animation: {},
|
|
39
|
+
direction: {},
|
|
40
|
+
disabled: { type: Boolean, default: void 0 },
|
|
41
|
+
prefixCls: {},
|
|
42
|
+
id: {},
|
|
43
|
+
autofocus: { type: Boolean, default: void 0 },
|
|
44
|
+
getPopupContainer: {},
|
|
45
|
+
virtual: { type: Boolean, default: void 0 },
|
|
46
|
+
dropdownMatchSelectWidth: {},
|
|
47
|
+
options: {},
|
|
48
|
+
showAction: {},
|
|
49
|
+
placeholder: {},
|
|
50
|
+
onDeselect: {},
|
|
51
|
+
loading: { type: Boolean, default: void 0 },
|
|
52
|
+
clearIcon: {},
|
|
53
|
+
allowClear: { type: Boolean, default: void 0 },
|
|
54
|
+
fieldNames: {},
|
|
55
|
+
dropdownStyle: {},
|
|
56
|
+
dropdownRender: {},
|
|
57
|
+
dropdownAlign: {},
|
|
58
|
+
showSearch: { type: Boolean, default: void 0 },
|
|
59
|
+
searchValue: {},
|
|
60
|
+
onInputKeyDown: {},
|
|
61
|
+
removeIcon: {},
|
|
62
|
+
maxTagCount: {},
|
|
63
|
+
maxTagTextLength: {},
|
|
64
|
+
maxTagPlaceholder: {},
|
|
65
|
+
tokenSeparators: {},
|
|
66
|
+
tagRender: {},
|
|
67
|
+
optionLabelRender: {},
|
|
68
|
+
onClear: {},
|
|
69
|
+
defaultOpen: { type: Boolean, default: void 0 },
|
|
70
|
+
onDropdownVisibleChange: {},
|
|
71
|
+
showArrow: { type: Boolean, default: void 0 },
|
|
72
|
+
onPopupScroll: {},
|
|
73
|
+
menuItemSelectedIcon: {},
|
|
74
|
+
listItemHeight: {},
|
|
75
|
+
inputValue: {},
|
|
76
|
+
autoClearSearchValue: { type: Boolean, default: void 0 },
|
|
77
|
+
filterOption: {},
|
|
78
|
+
filterSort: {},
|
|
79
|
+
optionFilterProp: {},
|
|
80
|
+
optionLabelProp: {},
|
|
81
|
+
defaultActiveFirstOption: { type: Boolean, default: void 0 },
|
|
82
|
+
labelInValue: { type: Boolean, default: void 0 },
|
|
12
83
|
emptyText: { default: "-" },
|
|
13
84
|
request: {},
|
|
14
|
-
multiple: { type: Boolean },
|
|
85
|
+
multiple: { type: Boolean, default: void 0 },
|
|
15
86
|
value: {},
|
|
16
87
|
"onUpdate:value": {}
|
|
17
88
|
},
|
|
18
89
|
emits: ["update:value"],
|
|
19
|
-
setup(
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
if (!P(t.request))
|
|
90
|
+
setup(y, { expose: w, emit: g }) {
|
|
91
|
+
let a = 0;
|
|
92
|
+
const S = (o, t) => typeof (t == null ? void 0 : t.label) == "string" && t.label.indexOf(o) > -1, B = L((o) => {
|
|
93
|
+
if (!h(e.request))
|
|
24
94
|
return;
|
|
25
|
-
|
|
26
|
-
const
|
|
27
|
-
|
|
28
|
-
|
|
95
|
+
a += 1;
|
|
96
|
+
const t = a;
|
|
97
|
+
r.value = [], n.value = !0, e.request(o).then((i) => {
|
|
98
|
+
a === t && (r.value = i);
|
|
29
99
|
}).finally(() => {
|
|
30
100
|
n.value = !1;
|
|
31
101
|
});
|
|
32
|
-
}, 300),
|
|
33
|
-
|
|
34
|
-
if (
|
|
35
|
-
n.value = !0,
|
|
36
|
-
const
|
|
37
|
-
|
|
38
|
-
|
|
102
|
+
}, 300), e = y, r = c((e == null ? void 0 : e.options) || []), d = c(), n = c((e == null ? void 0 : e.loading) || !1), C = g;
|
|
103
|
+
k(() => {
|
|
104
|
+
if (h(e.request)) {
|
|
105
|
+
n.value = !0, a += 1;
|
|
106
|
+
const o = a;
|
|
107
|
+
e.request().then((t) => {
|
|
108
|
+
o === a && (r.value = t);
|
|
39
109
|
}).finally(() => {
|
|
40
110
|
n.value = !1;
|
|
41
111
|
});
|
|
42
112
|
}
|
|
43
113
|
});
|
|
44
|
-
const { value:
|
|
45
|
-
const
|
|
46
|
-
if (!
|
|
47
|
-
return
|
|
48
|
-
if (
|
|
49
|
-
return
|
|
50
|
-
(
|
|
51
|
-
var
|
|
52
|
-
return (
|
|
114
|
+
const { value: f, updateValue: b } = W(e, C), x = p(() => {
|
|
115
|
+
const o = l(f);
|
|
116
|
+
if (!o)
|
|
117
|
+
return e.emptyText;
|
|
118
|
+
if (z(o))
|
|
119
|
+
return o.map(
|
|
120
|
+
(i) => {
|
|
121
|
+
var u;
|
|
122
|
+
return (u = l(r).find((s) => s.value === i)) == null ? void 0 : u.label;
|
|
53
123
|
}
|
|
54
|
-
).filter(Boolean).join("、") ||
|
|
55
|
-
const
|
|
56
|
-
return (
|
|
57
|
-
}),
|
|
58
|
-
|
|
59
|
-
const l = !!((o = t.fieldProps) != null && o.showSearch) ? {
|
|
124
|
+
).filter(Boolean).join("、") || e.emptyText;
|
|
125
|
+
const t = l(r).find((i) => i.value === o);
|
|
126
|
+
return (t == null ? void 0 : t.label) || e.emptyText;
|
|
127
|
+
}), F = p(() => {
|
|
128
|
+
const t = !!(e != null && e.showSearch) ? {
|
|
60
129
|
showArrow: !1,
|
|
61
130
|
defaultActiveFirstOption: !1,
|
|
62
|
-
onSearch:
|
|
131
|
+
onSearch: B,
|
|
63
132
|
notFoundContent: n.value ? void 0 : null
|
|
64
133
|
} : {
|
|
65
134
|
showArrow: !0
|
|
66
135
|
};
|
|
67
136
|
return {
|
|
68
|
-
...
|
|
69
|
-
|
|
70
|
-
|
|
137
|
+
...E(
|
|
138
|
+
K(e, ["mode", "value", "onUpdate:value", "onSearch"])
|
|
139
|
+
),
|
|
140
|
+
...t,
|
|
141
|
+
filterOption: e.showSearch ? !1 : H(e == null ? void 0 : e.filterOption) ? S : e == null ? void 0 : e.filterOption
|
|
71
142
|
};
|
|
72
143
|
});
|
|
73
|
-
function
|
|
74
|
-
var
|
|
75
|
-
(
|
|
144
|
+
function I() {
|
|
145
|
+
var o;
|
|
146
|
+
(o = d.value) == null || o.focus();
|
|
76
147
|
}
|
|
77
|
-
function
|
|
78
|
-
var
|
|
79
|
-
(
|
|
148
|
+
function V() {
|
|
149
|
+
var o;
|
|
150
|
+
(o = d.value) == null || o.blur();
|
|
80
151
|
}
|
|
81
|
-
return
|
|
82
|
-
focus:
|
|
83
|
-
blur:
|
|
84
|
-
}), (
|
|
152
|
+
return w({
|
|
153
|
+
focus: I,
|
|
154
|
+
blur: V
|
|
155
|
+
}), (o, t) => o.mode === "read" ? (m(), A("span", G, O(x.value), 1)) : (m(), T(l($), M({
|
|
85
156
|
key: 1,
|
|
86
157
|
"allow-clear": "",
|
|
87
158
|
ref_key: "selectRef",
|
|
88
|
-
ref:
|
|
89
|
-
},
|
|
90
|
-
mode:
|
|
91
|
-
value:
|
|
92
|
-
"onUpdate:value":
|
|
93
|
-
options:
|
|
159
|
+
ref: d
|
|
160
|
+
}, F.value, {
|
|
161
|
+
mode: o.multiple ? "multiple" : void 0,
|
|
162
|
+
value: l(f),
|
|
163
|
+
"onUpdate:value": l(b),
|
|
164
|
+
options: r.value,
|
|
94
165
|
loading: n.value
|
|
95
|
-
}),
|
|
96
|
-
|
|
97
|
-
name:
|
|
98
|
-
fn:
|
|
99
|
-
|
|
166
|
+
}), N({ _: 2 }, [
|
|
167
|
+
_(o.$slots, (i, u) => ({
|
|
168
|
+
name: u,
|
|
169
|
+
fn: v((s) => [
|
|
170
|
+
R(o.$slots, u, q(U(s || {})))
|
|
100
171
|
])
|
|
101
172
|
})),
|
|
102
173
|
n.value ? {
|
|
103
174
|
name: "notFoundContent",
|
|
104
|
-
fn:
|
|
105
|
-
|
|
175
|
+
fn: v(() => [
|
|
176
|
+
D(l(j), { size: "small" })
|
|
106
177
|
]),
|
|
107
178
|
key: "0"
|
|
108
179
|
} : void 0
|
|
@@ -110,5 +181,5 @@ const K = { key: 0 }, ee = /* @__PURE__ */ B({
|
|
|
110
181
|
}
|
|
111
182
|
});
|
|
112
183
|
export {
|
|
113
|
-
|
|
184
|
+
oe as default
|
|
114
185
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ApFieldSwitchProps } from '../interface';
|
|
2
2
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
3
3
|
|
|
4
|
-
type
|
|
4
|
+
type ApFieldSwitchSlots = {
|
|
5
5
|
checkedChildren: any;
|
|
6
6
|
unCheckedChildren: any;
|
|
7
7
|
default: any;
|
|
@@ -28,7 +28,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
28
28
|
checkedValue: string | number | boolean;
|
|
29
29
|
unCheckedValue: string | number | boolean;
|
|
30
30
|
emptyText: string;
|
|
31
|
-
}, {}>, Readonly<
|
|
31
|
+
}, {}>, Readonly<ApFieldSwitchSlots> & ApFieldSwitchSlots>;
|
|
32
32
|
export default _default;
|
|
33
33
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
34
34
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as U, useSlots as
|
|
1
|
+
import { defineComponent as U, useSlots as z, ref as D, unref as o, computed as T, createVNode as u, Fragment as s, openBlock as h, createBlock as k, resolveDynamicComponent as $, createElementBlock as E, mergeProps as p, createSlots as g, renderList as V, withCtx as C, renderSlot as v, normalizeProps as B, guardReactiveProps as w } from "vue";
|
|
2
2
|
import { Switch as A, Popconfirm as K } from "ant-design-vue";
|
|
3
3
|
import "../../hooks/index.mjs";
|
|
4
4
|
import { isNil as L, omit as P } from "lodash-unified";
|
|
@@ -48,14 +48,14 @@ const J = /* @__PURE__ */ U({
|
|
|
48
48
|
},
|
|
49
49
|
emits: ["update:checked"],
|
|
50
50
|
setup(S, {
|
|
51
|
-
emit:
|
|
51
|
+
emit: b
|
|
52
52
|
}) {
|
|
53
|
-
const
|
|
54
|
-
value:
|
|
53
|
+
const c = z(), n = S, N = b, {
|
|
54
|
+
value: l,
|
|
55
55
|
updateValue: a
|
|
56
|
-
} = M(n,
|
|
56
|
+
} = M(n, N, {
|
|
57
57
|
valuePropName: "checked"
|
|
58
|
-
}), i =
|
|
58
|
+
}), i = D(!1);
|
|
59
59
|
async function y(e, r) {
|
|
60
60
|
if (!f(n.confirm)) {
|
|
61
61
|
if (!f(n.onAction)) {
|
|
@@ -70,51 +70,51 @@ const J = /* @__PURE__ */ U({
|
|
|
70
70
|
}
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
|
-
async function
|
|
74
|
-
const e = o(
|
|
73
|
+
async function _() {
|
|
74
|
+
const e = o(l) === n.checkedValue ? n.unCheckedValue : n.checkedValue;
|
|
75
75
|
if (!f(n.onAction)) {
|
|
76
76
|
a(e);
|
|
77
77
|
return;
|
|
78
78
|
}
|
|
79
79
|
await n.onAction(e) && a(e);
|
|
80
80
|
}
|
|
81
|
-
const F =
|
|
82
|
-
var
|
|
83
|
-
const e = o(
|
|
84
|
-
return L(e) ? u(s, null, [n.emptyText]) : e === n.checkedValue ? u(s, null, [n.checkedChildren || ((
|
|
81
|
+
const F = T(() => {
|
|
82
|
+
var t, d;
|
|
83
|
+
const e = o(l);
|
|
84
|
+
return L(e) ? u(s, null, [n.emptyText]) : e === n.checkedValue ? u(s, null, [n.checkedChildren || ((t = c.checkedChildren) == null ? void 0 : t.call(c)) || n.checkedValue]) : u(s, null, [n.unCheckedChildren || ((d = c.unCheckedChildren) == null ? void 0 : d.call(c)) || n.unCheckedValue]);
|
|
85
85
|
});
|
|
86
|
-
return (e, r) => e.mode === "read" ? (h(), k(
|
|
86
|
+
return (e, r) => e.mode === "read" ? (h(), k($(F.value), {
|
|
87
87
|
key: 0
|
|
88
88
|
})) : (h(), E(s, {
|
|
89
89
|
key: 1
|
|
90
|
-
}, [o(f)(e.confirm) ? (h(), k(o(
|
|
90
|
+
}, [!o(f)(e.confirm) || e.disabled ? (h(), k(o(A), p({
|
|
91
|
+
key: 0
|
|
92
|
+
}, o(P)(n, "onUpdate:checked"), {
|
|
93
|
+
checked: o(l),
|
|
94
|
+
onClick: y,
|
|
95
|
+
loading: e.loading ?? i.value
|
|
96
|
+
}), g({
|
|
97
|
+
_: 2
|
|
98
|
+
}, [V(c, (t, d) => ({
|
|
99
|
+
name: d,
|
|
100
|
+
fn: C((m) => [v(e.$slots, d, B(w(m || {})))])
|
|
101
|
+
}))]), 1040, ["checked", "loading"])) : (h(), k(o(K), p({
|
|
91
102
|
key: 1
|
|
92
103
|
}, e.confirm || {}, {
|
|
93
|
-
onConfirm:
|
|
104
|
+
onConfirm: _
|
|
94
105
|
}), {
|
|
95
106
|
default: C(() => [u(o(A), p(o(P)(n, "onUpdate:checked"), {
|
|
96
|
-
checked: o(
|
|
107
|
+
checked: o(l),
|
|
97
108
|
onClick: y,
|
|
98
109
|
loading: e.loading ?? i.value
|
|
99
110
|
}), g({
|
|
100
111
|
_: 2
|
|
101
|
-
}, [V(
|
|
102
|
-
name:
|
|
103
|
-
fn: C((m) => [v(e.$slots,
|
|
112
|
+
}, [V(c, (t, d) => ({
|
|
113
|
+
name: d,
|
|
114
|
+
fn: C((m) => [v(e.$slots, d, B(w(m || {})))])
|
|
104
115
|
}))]), 1040, ["checked", "loading"])]),
|
|
105
116
|
_: 3
|
|
106
|
-
}, 16))
|
|
107
|
-
key: 0
|
|
108
|
-
}, o(P)(n, "onUpdate:checked"), {
|
|
109
|
-
checked: o(d),
|
|
110
|
-
onClick: y,
|
|
111
|
-
loading: e.loading ?? i.value
|
|
112
|
-
}), g({
|
|
113
|
-
_: 2
|
|
114
|
-
}, [V(e.$slots, (l, c) => ({
|
|
115
|
-
name: c,
|
|
116
|
-
fn: C((m) => [v(e.$slots, c, B(w(m || {})))])
|
|
117
|
-
}))]), 1040, ["checked", "loading"]))], 64));
|
|
117
|
+
}, 16))], 64));
|
|
118
118
|
}
|
|
119
119
|
});
|
|
120
120
|
export {
|
|
@@ -15,6 +15,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
15
15
|
bordered: boolean;
|
|
16
16
|
type: string;
|
|
17
17
|
lazy: boolean;
|
|
18
|
+
allowClear: undefined;
|
|
18
19
|
}>, {
|
|
19
20
|
focus: (options?: InputFocusOptions | undefined) => void;
|
|
20
21
|
blur: () => void;
|
|
@@ -29,12 +30,14 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefau
|
|
|
29
30
|
bordered: boolean;
|
|
30
31
|
type: string;
|
|
31
32
|
lazy: boolean;
|
|
33
|
+
allowClear: undefined;
|
|
32
34
|
}>>> & {
|
|
33
35
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
34
36
|
}, {
|
|
35
|
-
type: "number" | "text" | "color" | "
|
|
37
|
+
type: "number" | "text" | "color" | "button" | "time" | "image" | "search" | "submit" | "reset" | "hidden" | "tel" | "url" | "email" | "checkbox" | "radio" | "range" | "date" | "week" | "month" | "datetime-local" | "file" | "password";
|
|
36
38
|
mode: FieldMode;
|
|
37
39
|
bordered: boolean;
|
|
40
|
+
allowClear: boolean;
|
|
38
41
|
lazy: boolean;
|
|
39
42
|
emptyText: string;
|
|
40
43
|
}, {}>, Readonly<ApFieldTextSlots> & ApFieldTextSlots>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { isVNode as x, defineComponent as
|
|
1
|
+
import { isVNode as x, defineComponent as v, ref as B, useSlots as g, computed as b, createVNode as p, mergeProps as C, unref as i, Fragment as h, openBlock as S, createBlock as _, resolveDynamicComponent as R } from "vue";
|
|
2
2
|
import { Input as V } from "ant-design-vue";
|
|
3
3
|
import "../../hooks/index.mjs";
|
|
4
4
|
import { omit as j } from "lodash-unified";
|
|
@@ -6,7 +6,7 @@ import { useControllableValue as F } from "../../hooks/useControllableValue.mjs"
|
|
|
6
6
|
function T(u) {
|
|
7
7
|
return typeof u == "function" || Object.prototype.toString.call(u) === "[object Object]" && !x(u);
|
|
8
8
|
}
|
|
9
|
-
const
|
|
9
|
+
const K = /* @__PURE__ */ v({
|
|
10
10
|
name: "ApFieldText",
|
|
11
11
|
__name: "index",
|
|
12
12
|
props: {
|
|
@@ -76,7 +76,8 @@ const P = /* @__PURE__ */ B({
|
|
|
76
76
|
suffix: {},
|
|
77
77
|
clearIcon: {},
|
|
78
78
|
allowClear: {
|
|
79
|
-
type: Boolean
|
|
79
|
+
type: Boolean,
|
|
80
|
+
default: void 0
|
|
80
81
|
},
|
|
81
82
|
emptyText: {
|
|
82
83
|
default: "-"
|
|
@@ -84,11 +85,11 @@ const P = /* @__PURE__ */ B({
|
|
|
84
85
|
},
|
|
85
86
|
emits: ["update:value"],
|
|
86
87
|
setup(u, {
|
|
87
|
-
expose:
|
|
88
|
-
emit:
|
|
88
|
+
expose: d,
|
|
89
|
+
emit: c
|
|
89
90
|
}) {
|
|
90
|
-
const n =
|
|
91
|
-
|
|
91
|
+
const n = B(), t = g();
|
|
92
|
+
d({
|
|
92
93
|
focus: (e) => {
|
|
93
94
|
var o;
|
|
94
95
|
(o = n.value) == null || o.focus(e);
|
|
@@ -110,13 +111,13 @@ const P = /* @__PURE__ */ B({
|
|
|
110
111
|
return (e = n.value) == null ? void 0 : e.input;
|
|
111
112
|
})
|
|
112
113
|
});
|
|
113
|
-
const f =
|
|
114
|
+
const f = c, a = u, {
|
|
114
115
|
value: l,
|
|
115
116
|
updateValue: s
|
|
116
117
|
} = F(a, f);
|
|
117
118
|
function m() {
|
|
118
119
|
var e, o;
|
|
119
|
-
return a.mode === "edit" ? p(V, C(j(a, ["mode", "emptyText"]), {
|
|
120
|
+
return a.mode === "edit" ? p(V, C(j(a, ["mode", "emptyText", "value", "onUpdate:value"]), {
|
|
120
121
|
value: i(l),
|
|
121
122
|
"onUpdate:value": s,
|
|
122
123
|
ref: n
|
|
@@ -128,5 +129,5 @@ const P = /* @__PURE__ */ B({
|
|
|
128
129
|
}
|
|
129
130
|
});
|
|
130
131
|
export {
|
|
131
|
-
|
|
132
|
+
K as default
|
|
132
133
|
};
|
|
@@ -23,7 +23,7 @@ declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRunt
|
|
|
23
23
|
}>>> & {
|
|
24
24
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
25
25
|
}, {
|
|
26
|
-
type: "number" | "text" | "color" | "
|
|
26
|
+
type: "number" | "text" | "color" | "button" | "time" | "image" | "search" | "submit" | "reset" | "hidden" | "tel" | "url" | "email" | "checkbox" | "radio" | "range" | "date" | "week" | "month" | "datetime-local" | "file" | "password";
|
|
27
27
|
mode: FieldMode;
|
|
28
28
|
bordered: boolean;
|
|
29
29
|
lazy: boolean;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { defineComponent as c, ref as f, computed as y, openBlock as r, createElementBlock as B, normalizeClass as
|
|
2
|
-
import { isNil as C } from "lodash-unified";
|
|
1
|
+
import { defineComponent as c, ref as f, computed as y, openBlock as r, createElementBlock as B, normalizeClass as v, unref as o, toDisplayString as x, createBlock as b, mergeProps as z } from "vue";
|
|
2
|
+
import { isNil as C, omit as h } from "lodash-unified";
|
|
3
3
|
import "../../hooks/index.mjs";
|
|
4
4
|
import "../../config-provider/index.mjs";
|
|
5
|
-
import { Input as
|
|
5
|
+
import { Input as g } from "ant-design-vue";
|
|
6
6
|
import "./style.css";
|
|
7
|
-
import { useControllableValue as
|
|
8
|
-
import { useNamespace as
|
|
7
|
+
import { useControllableValue as A } from "../../hooks/useControllableValue.mjs";
|
|
8
|
+
import { useNamespace as k } from "../../config-provider/hooks/use-namespace.mjs";
|
|
9
9
|
const I = /* @__PURE__ */ c({
|
|
10
10
|
name: "ApFieldTextArea",
|
|
11
11
|
__name: "index",
|
|
@@ -56,7 +56,7 @@ const I = /* @__PURE__ */ c({
|
|
|
56
56
|
},
|
|
57
57
|
emits: ["update:value"],
|
|
58
58
|
setup(u, { expose: p, emit: s }) {
|
|
59
|
-
const t = f(), n = u, i = s, { value: a, updateValue: d } =
|
|
59
|
+
const t = f(), n = u, i = s, { value: a, updateValue: d } = A(n, i), { b: m } = k("field-text-area");
|
|
60
60
|
return p({
|
|
61
61
|
focus: (e) => {
|
|
62
62
|
var l;
|
|
@@ -72,8 +72,8 @@ const I = /* @__PURE__ */ c({
|
|
|
72
72
|
})
|
|
73
73
|
}), (e, l) => e.mode === "read" ? (r(), B("span", {
|
|
74
74
|
key: 0,
|
|
75
|
-
class:
|
|
76
|
-
},
|
|
75
|
+
class: v(o(m)())
|
|
76
|
+
}, x(o(C)(o(a)) || o(a) === "" ? e.emptyText : o(a)), 3)) : (r(), b(o(g).TextArea, z({ key: 1 }, o(h)(n, ["onUpdate:value", "value"]), {
|
|
77
77
|
value: o(a),
|
|
78
78
|
"onUpdate:value": o(d),
|
|
79
79
|
ref_key: "textAreaRef",
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { VNode, RendererNode, RendererElement } from 'vue';
|
|
2
|
+
|
|
1
3
|
export declare const buildColSpan: (count: number, times?: number) => {
|
|
2
4
|
xs: number;
|
|
3
5
|
sm: number;
|
|
@@ -6,3 +8,11 @@ export declare const buildColSpan: (count: number, times?: number) => {
|
|
|
6
8
|
xl: number;
|
|
7
9
|
xxl: number;
|
|
8
10
|
};
|
|
11
|
+
/**
|
|
12
|
+
* 递归获取children节点,排除fragment和注释的干扰
|
|
13
|
+
* @param nodes
|
|
14
|
+
* @returns
|
|
15
|
+
*/
|
|
16
|
+
export declare const genRealChildren: (nodes: VNode[]) => VNode< RendererNode, RendererElement, {
|
|
17
|
+
[key: string]: any;
|
|
18
|
+
}>[];
|
|
@@ -1,14 +1,33 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
import { isArray as f } from "lodash-unified";
|
|
2
|
+
const l = (e) => e <= 1 ? 1 : e, n = (e, r = 1) => {
|
|
3
|
+
const o = Math.floor(24 / e), t = o * r;
|
|
4
|
+
return t > 24 ? o : t;
|
|
5
|
+
}, p = (e, r = 1) => ({
|
|
6
|
+
xs: n(l(e - 3), r),
|
|
7
|
+
sm: n(l(e - 2), r),
|
|
8
|
+
md: n(l(e - 1), r),
|
|
9
|
+
lg: n(l(e - 1), r),
|
|
10
|
+
xl: n(e, r),
|
|
11
|
+
xxl: n(e, r)
|
|
11
12
|
});
|
|
13
|
+
function s(e) {
|
|
14
|
+
const r = [];
|
|
15
|
+
for (const o of e.filter(Boolean).filter((t) => t.type !== Symbol.for("v-cmt")))
|
|
16
|
+
if (o.type === Symbol.for("v-fgt")) {
|
|
17
|
+
const t = s(o.children);
|
|
18
|
+
r.push(...t);
|
|
19
|
+
} else if (f(o)) {
|
|
20
|
+
const t = s(o);
|
|
21
|
+
r.push(...t);
|
|
22
|
+
} else
|
|
23
|
+
r.push(o);
|
|
24
|
+
return r;
|
|
25
|
+
}
|
|
26
|
+
const c = (e) => {
|
|
27
|
+
const r = [];
|
|
28
|
+
return r.push(...s(e)), r;
|
|
29
|
+
};
|
|
12
30
|
export {
|
|
13
|
-
|
|
31
|
+
p as buildColSpan,
|
|
32
|
+
c as genRealChildren
|
|
14
33
|
};
|
|
@@ -1,4 +1,62 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { isVNode as w, defineComponent as _, useSlots as k, watch as b, shallowRef as h, computed as x, unref as n, createVNode as R, mergeProps as u, openBlock as a, createBlock as m, withCtx as S, createElementBlock as j, Fragment as B, renderList as N, resolveDynamicComponent as P } from "vue";
|
|
2
|
+
import { Col as v, Row as F } from "ant-design-vue";
|
|
3
|
+
import { pick as I } from "lodash-unified";
|
|
4
|
+
import { apFormItemColPropKeys as O } from "../constant.mjs";
|
|
5
|
+
import { genRealChildren as i, buildColSpan as V } from "./helper.mjs";
|
|
6
|
+
import "../../config-provider/index.mjs";
|
|
7
|
+
import "../style/ap-form-item-group.css";
|
|
8
|
+
import { useNamespace as A } from "../../config-provider/hooks/use-namespace.mjs";
|
|
9
|
+
function D(r) {
|
|
10
|
+
return typeof r == "function" || Object.prototype.toString.call(r) === "[object Object]" && !w(r);
|
|
11
|
+
}
|
|
12
|
+
const M = /* @__PURE__ */ _({
|
|
13
|
+
name: "ApFormItemGroup",
|
|
14
|
+
__name: "index",
|
|
15
|
+
props: {
|
|
16
|
+
align: {},
|
|
17
|
+
justify: {},
|
|
18
|
+
prefixCls: {},
|
|
19
|
+
gutter: {
|
|
20
|
+
default: 16
|
|
21
|
+
},
|
|
22
|
+
wrap: {
|
|
23
|
+
type: Boolean,
|
|
24
|
+
default: void 0
|
|
25
|
+
},
|
|
26
|
+
countPerRow: {
|
|
27
|
+
default: 3
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
setup(r) {
|
|
31
|
+
const {
|
|
32
|
+
b: s
|
|
33
|
+
} = A("ap-form-item-group"), {
|
|
34
|
+
countPerRow: f,
|
|
35
|
+
...d
|
|
36
|
+
} = r, p = k();
|
|
37
|
+
b(() => p.default(), (e) => {
|
|
38
|
+
c.value = i(e);
|
|
39
|
+
});
|
|
40
|
+
const c = h(i(p.default())), y = x(() => n(c).map((e, l) => {
|
|
41
|
+
const t = e.props, o = I(t, O), C = o != null && o.span ? {} : V(f), g = !!(t != null && t.hidden);
|
|
42
|
+
return R(v, u({
|
|
43
|
+
key: l
|
|
44
|
+
}, C, o, {
|
|
45
|
+
class: g ? s("col-hidden") : ""
|
|
46
|
+
}), D(e) ? e : {
|
|
47
|
+
default: () => [e]
|
|
48
|
+
});
|
|
49
|
+
}));
|
|
50
|
+
return (e, l) => (a(), m(n(F), u({
|
|
51
|
+
class: n(s)()
|
|
52
|
+
}, d), {
|
|
53
|
+
default: S(() => [(a(!0), j(B, null, N(y.value, (t, o) => (a(), m(P(t), {
|
|
54
|
+
key: o
|
|
55
|
+
}))), 128))]),
|
|
56
|
+
_: 1
|
|
57
|
+
}, 16, ["class"]));
|
|
58
|
+
}
|
|
59
|
+
});
|
|
2
60
|
export {
|
|
3
|
-
|
|
61
|
+
M as default
|
|
4
62
|
};
|