@aplus-frontend/ui 0.0.1-beta.9 → 0.0.1
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 +1 -1
- package/es/src/ap-field/date-range/index.vue.d.ts +1 -1
- package/es/src/ap-field/date-range/index.vue.mjs +54 -48
- package/es/src/ap-field/interface.d.ts +3 -3
- 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/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 +80 -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 +80 -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 +189 -0
- package/es/src/ap-table/ap-table.vue.mjs +267 -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 +11075 -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 +184 -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 +14 -0
- package/es/src/ap-table/utils.mjs +35 -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 +38 -0
- package/es/src/theme/antd-global-overwrite/admin/form.css +65 -0
- package/es/src/theme/antd-global-overwrite/admin/index.css +536 -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 +38 -0
- package/es/src/theme/antd-global-overwrite/aplus/form.css +90 -0
- package/es/src/theme/antd-global-overwrite/aplus/index.css +565 -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 +8 -0
- package/es/src/utils/index.mjs +29 -17
- 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 +182 -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 +1 -1
- package/lib/src/ap-field/date-range/index.vue.d.ts +1 -1
- package/lib/src/ap-field/date-range/index.vue.js +1 -1
- package/lib/src/ap-field/interface.d.ts +3 -3
- 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/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 +189 -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 +11075 -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 +184 -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 +14 -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 +38 -0
- package/lib/src/theme/antd-global-overwrite/admin/form.css +65 -0
- package/lib/src/theme/antd-global-overwrite/admin/index.css +536 -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 +38 -0
- package/lib/src/theme/antd-global-overwrite/aplus/form.css +90 -0
- package/lib/src/theme/antd-global-overwrite/aplus/index.css +565 -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 +8 -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
package/es/src/index.mjs
CHANGED
|
@@ -1,165 +1,230 @@
|
|
|
1
|
-
import { Icon as
|
|
2
|
-
import { APConfigProvider as
|
|
3
|
-
import { Scrollbar as
|
|
4
|
-
import { CollapseContainer as
|
|
5
|
-
import { IconPicker as
|
|
1
|
+
import { Icon as i, SvgIcon as x } from "./icon/index.mjs";
|
|
2
|
+
import { APConfigProvider as u } from "./config-provider/index.mjs";
|
|
3
|
+
import { Scrollbar as c } from "./scroll-bar/index.mjs";
|
|
4
|
+
import { CollapseContainer as F, ScrollContainer as C } from "./container/index.mjs";
|
|
5
|
+
import { IconPicker as I } from "./icon-picker/index.mjs";
|
|
6
6
|
import "./locale/index.mjs";
|
|
7
|
-
import { BasicArrow as
|
|
8
|
-
import { ExpandTransition as
|
|
9
|
-
import { Description as
|
|
10
|
-
import { Field as
|
|
11
|
-
import { BaseButton as
|
|
12
|
-
import { StrengthMeter as
|
|
13
|
-
import { BaseModal as
|
|
14
|
-
import { CropperAvatar as
|
|
15
|
-
import { CountdownButton as
|
|
16
|
-
import { createPrompt as
|
|
17
|
-
import { Dropdown as
|
|
7
|
+
import { BasicArrow as g, BasicHelp as P, BasicTitle as D } from "./basic/index.mjs";
|
|
8
|
+
import { ExpandTransition as R, ExpandXTransition as h, FadeTransition as B, ScaleRotateTransition as M, ScaleTransition as k, ScrollXReverseTransition as w, ScrollXTransition as G, ScrollYReverseTransition as N, ScrollYTransition as y, SlideXReverseTransition as L, SlideXTransition as X, SlideYReverseTransition as K, SlideYTransition as Y } from "./transition/index.mjs";
|
|
9
|
+
import { Description as O } from "./description/index.mjs";
|
|
10
|
+
import { Field as W } from "./pro-form/index.mjs";
|
|
11
|
+
import { BaseButton as U } from "./base-button/index.mjs";
|
|
12
|
+
import { StrengthMeter as q } from "./strength-meter/index.mjs";
|
|
13
|
+
import { BaseModal as Q } from "./modal/index.mjs";
|
|
14
|
+
import { CropperAvatar as Z, CropperImage as _ } from "./cropper/index.mjs";
|
|
15
|
+
import { CountdownButton as oo, CountdownInput as eo } from "./count-down/index.mjs";
|
|
16
|
+
import { createPrompt as to } from "./prompt/index.mjs";
|
|
17
|
+
import { Dropdown as po } from "./dropdown/index.mjs";
|
|
18
18
|
import "./pro-table/index.mjs";
|
|
19
|
-
import { ApForm as
|
|
20
|
-
import { ApField as
|
|
21
|
-
import { adminToken as
|
|
22
|
-
import { ApActionItem as
|
|
23
|
-
import
|
|
24
|
-
import
|
|
25
|
-
import
|
|
26
|
-
import
|
|
27
|
-
import
|
|
28
|
-
import
|
|
29
|
-
import
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import { default as
|
|
37
|
-
import { default as
|
|
38
|
-
import { default as
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import { default as
|
|
44
|
-
import { default as
|
|
45
|
-
import { default as
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import { default as
|
|
49
|
-
import { default as
|
|
50
|
-
import { default as
|
|
51
|
-
import { default as
|
|
52
|
-
import {
|
|
53
|
-
import { default as
|
|
54
|
-
import { default as
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import { default as
|
|
58
|
-
import { default as
|
|
59
|
-
import { default as
|
|
60
|
-
import { default as
|
|
61
|
-
import {
|
|
62
|
-
import { default as
|
|
63
|
-
import { default as
|
|
64
|
-
import { default as
|
|
65
|
-
import { default as
|
|
66
|
-
import { default as
|
|
19
|
+
import { ApForm as mo } from "./ap-form/index.mjs";
|
|
20
|
+
import { ApField as so } from "./ap-field/index.mjs";
|
|
21
|
+
import { adminToken as xo, aplusToken as no } from "./design-token/index.mjs";
|
|
22
|
+
import { ApActionItem as Ao } from "./ap-action/index.mjs";
|
|
23
|
+
import "./ap-custom-column/index.mjs";
|
|
24
|
+
import "./work-order-modal/index.mjs";
|
|
25
|
+
import "./ap-tag/index.mjs";
|
|
26
|
+
import "./ap-layout/index.mjs";
|
|
27
|
+
import "./ap-upload/index.mjs";
|
|
28
|
+
import "./ap-download/index.mjs";
|
|
29
|
+
import "./ap-table/index.mjs";
|
|
30
|
+
import { configProviderProps as To } from "./config-provider/config-provider-props.mjs";
|
|
31
|
+
import { configProviderContextKey as Co, tableDefaultConfig as So } from "./config-provider/constants.mjs";
|
|
32
|
+
import { keysOf as bo, provideGlobalConfig as go, useGlobalConfig as Po } from "./config-provider/hooks/use-global-config.mjs";
|
|
33
|
+
import { buildLocaleContext as vo, buildTranslator as Ro, localeContextKey as ho, translate as Bo, useLocale as Mo } from "./config-provider/hooks/use-locale.mjs";
|
|
34
|
+
import { defaultNamespace as wo, namespaceContextKey as Go, useGetDerivedNamespace as No, useNamespace as yo } from "./config-provider/hooks/use-namespace.mjs";
|
|
35
|
+
import { ConfigProvider as Xo } from "./config-provider/config-provider.mjs";
|
|
36
|
+
import { default as Yo } from "./locale/lang/zh-cn.mjs";
|
|
37
|
+
import { default as Oo } from "./locale/lang/en.mjs";
|
|
38
|
+
import { default as Wo } from "./transition/collapse-transition.vue.mjs";
|
|
39
|
+
import { useDescription as Uo } from "./description/use-description.mjs";
|
|
40
|
+
import { useComponentRegister as qo } from "./pro-form/hooks/use-component-register.mjs";
|
|
41
|
+
import { useForm as Qo } from "./pro-form/hooks/use-form.mjs";
|
|
42
|
+
import { isComponentFormSchema as Zo, isSlotFormSchema as _o } from "./pro-form/types/form.mjs";
|
|
43
|
+
import { default as oe } from "./pro-form/components/api-cascader.vue.mjs";
|
|
44
|
+
import { default as re } from "./pro-form/components/api-radio-group.vue.mjs";
|
|
45
|
+
import { default as ae } from "./pro-form/components/api-select.vue.mjs";
|
|
46
|
+
import { default as fe } from "./pro-form/components/api-transfer.vue.mjs";
|
|
47
|
+
import { default as le } from "./pro-form/components/api-tree.vue.mjs";
|
|
48
|
+
import { default as de } from "./pro-form/components/radio-button-group.vue.mjs";
|
|
49
|
+
import { default as xe } from "./pro-form/pro-form.vue.mjs";
|
|
50
|
+
import { default as ue } from "./pro-form/components/api-tree-select.vue.mjs";
|
|
51
|
+
import { default as ce } from "./pro-form/table-form.vue.mjs";
|
|
52
|
+
import { default as Fe } from "./pro-form/table-form-inner.vue.mjs";
|
|
53
|
+
import { default as Se } from "./base-button/modal-button.vue.mjs";
|
|
54
|
+
import { default as be } from "./base-button/pop-confirm-button.vue.mjs";
|
|
55
|
+
import { useModalContext as Pe } from "./modal/hooks/use-modal-context.mjs";
|
|
56
|
+
import { useModal as ve, useModalInner as Re } from "./modal/hooks/use-modal.mjs";
|
|
57
|
+
import { default as Be } from "./pro-table/pro-table.vue.mjs";
|
|
58
|
+
import { default as ke } from "./pro-table/components/table-action.vue.mjs";
|
|
59
|
+
import { default as Ge } from "./pro-table/components/edit-table-header-icon.vue.mjs";
|
|
60
|
+
import { default as ye } from "./pro-table/components/table-image.vue.mjs";
|
|
61
|
+
import { useTable as Xe } from "./pro-table/hooks/use-table.mjs";
|
|
62
|
+
import { default as Ye } from "./ap-form/items/text/index.vue.mjs";
|
|
63
|
+
import { default as Oe } from "./ap-form/items/text-area/index.vue.mjs";
|
|
64
|
+
import { default as We } from "./ap-form/items/number/index.vue.mjs";
|
|
65
|
+
import { default as Ue } from "./ap-form/items/date/index.vue.mjs";
|
|
66
|
+
import { default as qe } from "./ap-form/items/date-range/index.vue.mjs";
|
|
67
|
+
import { default as Qe } from "./ap-form/items/radio/index.vue.mjs";
|
|
68
|
+
import { default as Ze } from "./ap-form/items/select/index.vue.mjs";
|
|
69
|
+
import { default as $e } from "./ap-form/items/switch/index.vue.mjs";
|
|
70
|
+
import { default as er } from "./ap-form/items/checkbox/index.vue.mjs";
|
|
71
|
+
import { default as tr } from "./ap-form/ap-form-item.vue.mjs";
|
|
72
|
+
import { default as pr } from "./ap-form/ap-form-item-group/index.vue.mjs";
|
|
73
|
+
import { default as mr } from "./ap-form/ap-form-list.vue.mjs";
|
|
74
|
+
import { default as sr } from "./ap-form/search-form/index.vue.mjs";
|
|
75
|
+
import { default as ir } from "./ap-form/modal-form/index.vue.mjs";
|
|
76
|
+
import { default as nr } from "./ap-field/text/index.vue.mjs";
|
|
77
|
+
import { default as Ar } from "./ap-field/checkbox/index.vue.mjs";
|
|
78
|
+
import { default as Tr } from "./ap-field/date/index.vue.mjs";
|
|
79
|
+
import { default as Cr } from "./ap-field/number/index.vue.mjs";
|
|
80
|
+
import { default as Ir } from "./ap-field/radio/index.vue.mjs";
|
|
81
|
+
import { default as gr } from "./ap-field/switch/index.vue.mjs";
|
|
82
|
+
import { default as Dr } from "./ap-field/text-area/index.vue.mjs";
|
|
83
|
+
import { default as Rr } from "./ap-field/date-range/index.vue.mjs";
|
|
84
|
+
import { default as Br } from "./ap-field/select/index.vue.mjs";
|
|
85
|
+
import { default as kr } from "./ap-action/item-modal/index.vue.mjs";
|
|
86
|
+
import { default as Gr } from "./ap-action/item-popconfirm/index.vue.mjs";
|
|
87
|
+
import { default as yr } from "./ap-action/item-dropdown/index.vue.mjs";
|
|
88
|
+
import { default as Xr } from "./ap-action/group/index.vue.mjs";
|
|
89
|
+
import { generateTableList as Yr } from "./ap-custom-column/utils.mjs";
|
|
90
|
+
import { useCacheColumnSetting as Or } from "./ap-custom-column/useCacheColumnSetting.mjs";
|
|
91
|
+
import { default as Wr } from "./ap-custom-column/custom-column.vue.mjs";
|
|
92
|
+
import { default as Ur } from "./ap-custom-column/column-select.vue.mjs";
|
|
93
|
+
import { DictCode as qr } from "./work-order-modal/interfaces.mjs";
|
|
94
|
+
import { createWorkOrderModal as Qr } from "./work-order-modal/createWorkOrder.mjs";
|
|
95
|
+
import { default as Zr } from "./work-order-modal/work-order-modal.vue.mjs";
|
|
96
|
+
import { default as $r } from "./ap-tag/ap-tag.vue.mjs";
|
|
97
|
+
import { default as et } from "./ap-tag/ap-tag-group.vue.mjs";
|
|
98
|
+
import { default as tt } from "./ap-layout/ap-info-layout/ap-info-layout.vue.mjs";
|
|
99
|
+
import { NeedNameKeyDefault as pt } from "./ap-upload/apUploadTypes.mjs";
|
|
100
|
+
import { default as mt } from "./ap-upload/apUpload.vue.mjs";
|
|
101
|
+
import { default as st } from "./ap-download/ap-download.vue.mjs";
|
|
102
|
+
import { useTablePaging as it } from "./ap-table/hooks/use-table-paging.mjs";
|
|
103
|
+
import { default as nt } from "./ap-table/ap-table.vue.mjs";
|
|
67
104
|
export {
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
h as
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
105
|
+
u as APConfigProvider,
|
|
106
|
+
Xr as ApActionGroup,
|
|
107
|
+
Ao as ApActionItem,
|
|
108
|
+
yr as ApActionItemDropdown,
|
|
109
|
+
kr as ApActionItemModal,
|
|
110
|
+
Gr as ApActionItemPopconfirm,
|
|
111
|
+
Wr as ApCustomColumn,
|
|
112
|
+
Ur as ApCustomSelect,
|
|
113
|
+
st as ApDownload,
|
|
114
|
+
so as ApField,
|
|
115
|
+
Ar as ApFieldCheckbox,
|
|
116
|
+
Tr as ApFieldDate,
|
|
117
|
+
Rr as ApFieldDateRange,
|
|
118
|
+
Cr as ApFieldNumber,
|
|
119
|
+
Ir as ApFieldRadio,
|
|
120
|
+
Br as ApFieldSelect,
|
|
121
|
+
gr as ApFieldSwitch,
|
|
122
|
+
nr as ApFieldText,
|
|
123
|
+
Dr as ApFieldTextArea,
|
|
124
|
+
mo as ApForm,
|
|
125
|
+
tr as ApFormItem,
|
|
126
|
+
er as ApFormItemCheckbox,
|
|
127
|
+
Ue as ApFormItemDate,
|
|
128
|
+
qe as ApFormItemDateRange,
|
|
129
|
+
pr as ApFormItemGroup,
|
|
130
|
+
We as ApFormItemNumber,
|
|
131
|
+
Qe as ApFormItemRadio,
|
|
132
|
+
Ze as ApFormItemSelect,
|
|
133
|
+
$e as ApFormItemSwitch,
|
|
134
|
+
Ye as ApFormItemText,
|
|
135
|
+
Oe as ApFormItemTextArea,
|
|
136
|
+
mr as ApFormList,
|
|
137
|
+
ir as ApFormModalForm,
|
|
138
|
+
sr as ApFormSearchForm,
|
|
139
|
+
tt as ApInfoLayout,
|
|
140
|
+
nt as ApTable,
|
|
141
|
+
$r as ApTag,
|
|
142
|
+
et as ApTagGroup,
|
|
143
|
+
mt as ApUpload,
|
|
144
|
+
oe as ApiCascader,
|
|
145
|
+
re as ApiRadioGroup,
|
|
146
|
+
ae as ApiSelect,
|
|
147
|
+
fe as ApiTransfer,
|
|
148
|
+
le as ApiTree,
|
|
149
|
+
ue as ApiTreeSelect,
|
|
150
|
+
U as BaseButton,
|
|
151
|
+
Q as BaseModal,
|
|
152
|
+
g as BasicArrow,
|
|
153
|
+
P as BasicHelp,
|
|
154
|
+
D as BasicTitle,
|
|
155
|
+
F as CollapseContainer,
|
|
156
|
+
Wo as CollapseTransition,
|
|
157
|
+
Xo as ConfigProvider,
|
|
158
|
+
oo as CountdownButton,
|
|
159
|
+
eo as CountdownInput,
|
|
160
|
+
Z as CropperAvatar,
|
|
161
|
+
_ as CropperImage,
|
|
162
|
+
O as Description,
|
|
163
|
+
qr as DictCode,
|
|
164
|
+
po as Dropdown,
|
|
165
|
+
Ge as EditTableHeaderIcon,
|
|
166
|
+
R as ExpandTransition,
|
|
167
|
+
h as ExpandXTransition,
|
|
168
|
+
B as FadeTransition,
|
|
169
|
+
W as Field,
|
|
170
|
+
i as Icon,
|
|
171
|
+
I as IconPicker,
|
|
172
|
+
Se as ModalButton,
|
|
173
|
+
pt as NeedNameKeyDefault,
|
|
174
|
+
be as PopConfirmButton,
|
|
175
|
+
xe as ProForm,
|
|
176
|
+
Be as ProTable,
|
|
177
|
+
ce as ProTableForm,
|
|
178
|
+
Fe as ProTableFormInner,
|
|
179
|
+
de as RadioButtonGroup,
|
|
180
|
+
M as ScaleRotateTransition,
|
|
181
|
+
k as ScaleTransition,
|
|
182
|
+
C as ScrollContainer,
|
|
183
|
+
w as ScrollXReverseTransition,
|
|
184
|
+
G as ScrollXTransition,
|
|
185
|
+
N as ScrollYReverseTransition,
|
|
186
|
+
y as ScrollYTransition,
|
|
187
|
+
c as Scrollbar,
|
|
188
|
+
L as SlideXReverseTransition,
|
|
189
|
+
X as SlideXTransition,
|
|
190
|
+
K as SlideYReverseTransition,
|
|
191
|
+
Y as SlideYTransition,
|
|
192
|
+
q as StrengthMeter,
|
|
193
|
+
x as SvgIcon,
|
|
194
|
+
ke as TableAction,
|
|
195
|
+
ye as TableImg,
|
|
196
|
+
Zr as WorkOrderModal,
|
|
197
|
+
xo as adminToken,
|
|
198
|
+
no as aplusToken,
|
|
199
|
+
vo as buildLocaleContext,
|
|
200
|
+
Ro as buildTranslator,
|
|
201
|
+
Co as configProviderContextKey,
|
|
202
|
+
To as configProviderProps,
|
|
203
|
+
to as createPrompt,
|
|
204
|
+
Qr as createWorkOrderModal,
|
|
205
|
+
wo as defaultNamespace,
|
|
206
|
+
Oo as en,
|
|
207
|
+
Yr as generateTableList,
|
|
208
|
+
Zo as isComponentFormSchema,
|
|
209
|
+
_o as isSlotFormSchema,
|
|
210
|
+
bo as keysOf,
|
|
211
|
+
ho as localeContextKey,
|
|
212
|
+
Go as namespaceContextKey,
|
|
213
|
+
go as provideGlobalConfig,
|
|
214
|
+
So as tableDefaultConfig,
|
|
215
|
+
Bo as translate,
|
|
216
|
+
Or as useCacheColumnSetting,
|
|
217
|
+
qo as useComponentRegister,
|
|
218
|
+
Uo as useDescription,
|
|
219
|
+
Qo as useForm,
|
|
220
|
+
No as useGetDerivedNamespace,
|
|
221
|
+
Po as useGlobalConfig,
|
|
222
|
+
Mo as useLocale,
|
|
223
|
+
ve as useModal,
|
|
224
|
+
Pe as useModalContext,
|
|
225
|
+
Re as useModalInner,
|
|
226
|
+
yo as useNamespace,
|
|
227
|
+
Xe as useTable,
|
|
228
|
+
it as useTablePaging,
|
|
229
|
+
Yo as zhCn
|
|
165
230
|
};
|
|
@@ -28,7 +28,8 @@ const e = {
|
|
|
28
28
|
closeText: "Put away",
|
|
29
29
|
inputText: "Please enter",
|
|
30
30
|
chooseText: "Please choose",
|
|
31
|
-
redo: "Refresh"
|
|
31
|
+
redo: "Refresh",
|
|
32
|
+
back: "Back"
|
|
32
33
|
},
|
|
33
34
|
cropper: {
|
|
34
35
|
modalTitle: "Avatar upload",
|
|
@@ -70,6 +71,18 @@ const e = {
|
|
|
70
71
|
selectionBarClear: "Clear",
|
|
71
72
|
total: "total of {total}",
|
|
72
73
|
index: "Index"
|
|
74
|
+
},
|
|
75
|
+
apForm: {
|
|
76
|
+
search: {
|
|
77
|
+
search: "Search",
|
|
78
|
+
reset: "Reset"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
apTable: {
|
|
82
|
+
pagination: {
|
|
83
|
+
totalLeft: "Total {total} items",
|
|
84
|
+
totalRight: "Page {page}"
|
|
85
|
+
}
|
|
73
86
|
}
|
|
74
87
|
}
|
|
75
88
|
};
|
|
@@ -28,7 +28,8 @@ const e = {
|
|
|
28
28
|
closeText: "收起",
|
|
29
29
|
inputText: "请输入",
|
|
30
30
|
chooseText: "请选择",
|
|
31
|
-
redo: "刷新"
|
|
31
|
+
redo: "刷新",
|
|
32
|
+
back: "返回"
|
|
32
33
|
},
|
|
33
34
|
cropper: {
|
|
34
35
|
modalTitle: "头像上传",
|
|
@@ -70,6 +71,18 @@ const e = {
|
|
|
70
71
|
selectionBarClear: "清空",
|
|
71
72
|
total: "共 {total} 条数据",
|
|
72
73
|
index: "索引"
|
|
74
|
+
},
|
|
75
|
+
apForm: {
|
|
76
|
+
search: {
|
|
77
|
+
search: "查询",
|
|
78
|
+
reset: "重置"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
apTable: {
|
|
82
|
+
pagination: {
|
|
83
|
+
totalLeft: "共 {total} 条记录",
|
|
84
|
+
totalRight: "第 {page} 页"
|
|
85
|
+
}
|
|
73
86
|
}
|
|
74
87
|
}
|
|
75
88
|
};
|
|
@@ -4,7 +4,6 @@ import { ButtonType, ButtonShape, ButtonSize } from 'ant-design-vue/es/button';
|
|
|
4
4
|
import { ButtonHTMLType } from 'ant-design-vue/es/button/buttonTypes';
|
|
5
5
|
import { VueTypeValidableDef } from '../../node_modules/vue-types';
|
|
6
6
|
import { MouseEventHandler } from 'ant-design-vue/es/_util/EventInterface';
|
|
7
|
-
|
|
8
7
|
declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
9
8
|
open: {
|
|
10
9
|
type: BooleanConstructor;
|
|
@@ -213,8 +212,8 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
213
212
|
type: NumberConstructor;
|
|
214
213
|
};
|
|
215
214
|
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
216
|
-
cancel: (...args: any[]) => void;
|
|
217
215
|
ok: (...args: any[]) => void;
|
|
216
|
+
cancel: (...args: any[]) => void;
|
|
218
217
|
"height-change": (...args: any[]) => void;
|
|
219
218
|
fullscreen: (...args: any[]) => void;
|
|
220
219
|
"open-change": (...args: any[]) => void;
|
|
@@ -10,13 +10,12 @@ import { omit as g } from "lodash-unified";
|
|
|
10
10
|
import { deepMerge as oe } from "@aplus-frontend/utils";
|
|
11
11
|
import { isFunction as te } from "@fruits-chain/utils";
|
|
12
12
|
import "../config-provider/index.mjs";
|
|
13
|
-
import "./style/index.css";
|
|
14
13
|
import { useNamespace as ne } from "../config-provider/hooks/use-namespace.mjs";
|
|
15
14
|
import le from "./components/modal-wrapper.vue2.mjs";
|
|
16
15
|
import ae from "./components/modal-close.vue2.mjs";
|
|
17
16
|
import re from "./components/modal-header.vue2.mjs";
|
|
18
17
|
import se from "./components/modal-footer.vue2.mjs";
|
|
19
|
-
const
|
|
18
|
+
const be = /* @__PURE__ */ q({
|
|
20
19
|
name: "BasicModal",
|
|
21
20
|
inheritAttrs: !1,
|
|
22
21
|
__name: "basic",
|
|
@@ -39,9 +38,9 @@ const Me = /* @__PURE__ */ q({
|
|
|
39
38
|
o(i) && o(i).setModalHeight();
|
|
40
39
|
});
|
|
41
40
|
}
|
|
42
|
-
},
|
|
43
|
-
|
|
44
|
-
const
|
|
41
|
+
}, f = J();
|
|
42
|
+
f && r("register", F, f.uid);
|
|
43
|
+
const p = d(() => ({
|
|
45
44
|
...t,
|
|
46
45
|
...o(v)
|
|
47
46
|
})), {
|
|
@@ -51,10 +50,10 @@ const Me = /* @__PURE__ */ q({
|
|
|
51
50
|
} = ee({
|
|
52
51
|
modalWrapperRef: i,
|
|
53
52
|
extHeightRef: w,
|
|
54
|
-
wrapClassName: K(
|
|
53
|
+
wrapClassName: K(p.value, "wrapClassName")
|
|
55
54
|
}), l = d(() => ({
|
|
56
55
|
...{
|
|
57
|
-
...o(
|
|
56
|
+
...o(p),
|
|
58
57
|
open: o(n),
|
|
59
58
|
okButtonProps: void 0,
|
|
60
59
|
cancelButtonProps: void 0,
|
|
@@ -64,7 +63,7 @@ const Me = /* @__PURE__ */ q({
|
|
|
64
63
|
})), b = d(() => {
|
|
65
64
|
const e = {
|
|
66
65
|
...B,
|
|
67
|
-
...o(
|
|
66
|
+
...o(p),
|
|
68
67
|
open: o(n)
|
|
69
68
|
};
|
|
70
69
|
return e.wrapClassName = `${(e == null ? void 0 : e.wrapClassName) || ""} ${o(P)}vben-basic-modal-wrap`, o(c) ? g(e, ["height", "title"]) : g(e, "title");
|
|
@@ -77,7 +76,7 @@ const Me = /* @__PURE__ */ q({
|
|
|
77
76
|
}), U(
|
|
78
77
|
() => o(n),
|
|
79
78
|
(e) => {
|
|
80
|
-
r("open-change", e), r("update:open", e),
|
|
79
|
+
r("open-change", e), r("update:open", e), f && F.emitOpen && F.emitOpen(e, f.uid), S(() => {
|
|
81
80
|
t.scrollTop && e && o(i) && o(i).scrollTop();
|
|
82
81
|
});
|
|
83
82
|
},
|
|
@@ -164,7 +163,7 @@ const Me = /* @__PURE__ */ q({
|
|
|
164
163
|
fn: s(() => [
|
|
165
164
|
h(re, {
|
|
166
165
|
helpMessage: l.value.helpMessage,
|
|
167
|
-
title:
|
|
166
|
+
title: p.value.title,
|
|
168
167
|
onDblclick: z
|
|
169
168
|
}, null, 8, ["helpMessage", "title"])
|
|
170
169
|
]),
|
|
@@ -197,5 +196,5 @@ const Me = /* @__PURE__ */ q({
|
|
|
197
196
|
}
|
|
198
197
|
});
|
|
199
198
|
export {
|
|
200
|
-
|
|
199
|
+
be as default
|
|
201
200
|
};
|
|
@@ -213,8 +213,8 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
213
213
|
type: NumberConstructor;
|
|
214
214
|
};
|
|
215
215
|
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
216
|
-
cancel: (...args: any[]) => void;
|
|
217
216
|
ok: (...args: any[]) => void;
|
|
217
|
+
cancel: (...args: any[]) => void;
|
|
218
218
|
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
219
219
|
open: {
|
|
220
220
|
type: BooleanConstructor;
|
package/es/src/modal/index.d.ts
CHANGED
|
@@ -221,8 +221,8 @@ export declare const BaseModal: {
|
|
|
221
221
|
"onOpen-change"?: ((...args: any[]) => any) | undefined;
|
|
222
222
|
onRegister?: ((...args: any[]) => any) | undefined;
|
|
223
223
|
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
224
|
-
cancel: (...args: any[]) => void;
|
|
225
224
|
ok: (...args: any[]) => void;
|
|
225
|
+
cancel: (...args: any[]) => void;
|
|
226
226
|
"height-change": (...args: any[]) => void;
|
|
227
227
|
fullscreen: (...args: any[]) => void;
|
|
228
228
|
"open-change": (...args: any[]) => void;
|
|
@@ -923,8 +923,8 @@ export declare const BaseModal: {
|
|
|
923
923
|
"onOpen-change"?: ((...args: any[]) => any) | undefined;
|
|
924
924
|
onRegister?: ((...args: any[]) => any) | undefined;
|
|
925
925
|
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
926
|
-
cancel: (...args: any[]) => void;
|
|
927
926
|
ok: (...args: any[]) => void;
|
|
927
|
+
cancel: (...args: any[]) => void;
|
|
928
928
|
"height-change": (...args: any[]) => void;
|
|
929
929
|
fullscreen: (...args: any[]) => void;
|
|
930
930
|
"open-change": (...args: any[]) => void;
|