@aplus-frontend/ui 0.6.0-beta.9 → 0.6.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 +307 -289
- package/es/src/ap-button/ap-button.vue.mjs +1 -1
- package/es/src/ap-descriptions/ap-descriptions.vue.mjs +9 -8
- package/es/src/ap-descriptions/help-message/index.vue2.mjs +1 -1
- package/es/src/ap-drawer/components/ApDrawerClose.vue.d.ts +7 -0
- package/es/src/ap-drawer/components/ApDrawerClose.vue.mjs +4 -0
- package/es/src/ap-drawer/components/ApDrawerClose.vue2.mjs +25 -0
- package/es/src/ap-drawer/index.d.ts +2 -0
- package/es/src/ap-drawer/index.mjs +5 -2
- package/es/src/ap-drawer/utils/createDrawer.mjs +38 -33
- package/es/src/ap-field/date-range/index.vue.mjs +8 -7
- package/es/src/ap-field/hooks/use-date-timezone.mjs +17 -8
- package/es/src/ap-field/number/index.vue.d.ts +2 -4
- package/es/src/ap-field/radio/index.vue.d.ts +2 -4
- package/es/src/ap-field/rate/index.vue.d.ts +2 -4
- package/es/src/ap-field/select/index.vue.d.ts +3 -6
- package/es/src/ap-field/slider/index.vue.d.ts +2 -4
- package/es/src/ap-field/text/index.vue2.mjs +42 -44
- package/es/src/ap-field/text/password.vue.mjs +15 -17
- package/es/src/ap-field/text-area/index.vue.d.ts +2 -2
- package/es/src/ap-field/tree-select/index.vue.mjs +31 -30
- package/es/src/ap-form/ap-form.vue2.mjs +89 -77
- package/es/src/ap-form/dependency/index.vue.mjs +29 -23
- package/es/src/ap-form/drawer-form/index.vue.d.ts +13 -7
- package/es/src/ap-form/drawer-form/index.vue.mjs +58 -49
- package/es/src/ap-form/interface.d.ts +9 -5
- package/es/src/ap-form/item/index.vue.d.ts +5 -10
- package/es/src/ap-form/item/index.vue.mjs +69 -73
- package/es/src/ap-form/item-group/index.vue.mjs +34 -35
- package/es/src/ap-form/items/select/index.vue.mjs +12 -14
- package/es/src/ap-form/items/text/password.vue.mjs +9 -9
- package/es/src/ap-form/items/text-area/index.vue.d.ts +5 -5
- package/es/src/ap-form/items/tree-select/index.vue.mjs +12 -14
- package/es/src/ap-form/modal-form/index.vue.d.ts +9 -7
- package/es/src/ap-form/modal-form/index.vue.mjs +64 -55
- package/es/src/ap-form/provider/index.vue.mjs +6 -5
- package/es/src/ap-form/search-form/components/popover-sorter/index.vue2.mjs +4 -1
- package/es/src/ap-form/search-form/hooks/use-count-per-row.mjs +31 -13
- package/es/src/ap-form/search-form/index.vue.d.ts +4 -8
- package/es/src/ap-form/search-form/index.vue.mjs +63 -62
- package/es/src/ap-form/set/index.vue.mjs +20 -20
- package/es/src/ap-grid/editable/form-item.vue.mjs +39 -36
- package/es/src/ap-grid/editable/index.vue.mjs +13 -10
- package/es/src/ap-grid/hooks/use-editable-columns.mjs +17 -17
- package/es/src/ap-grid/hooks/use-inner-params.d.ts +2 -1
- package/es/src/ap-grid/hooks/use-inner-params.mjs +24 -35
- package/es/src/ap-grid/hooks/use-render-columns.mjs +8 -8
- package/es/src/ap-grid/hooks/use-row-selection.d.ts +100 -0
- package/es/src/ap-grid/hooks/use-row-selection.mjs +122 -0
- package/es/src/ap-grid/hooks/use-table-style.d.ts +18 -0
- package/es/src/ap-grid/hooks/use-table-style.mjs +28 -0
- package/es/src/ap-grid/index.vue.mjs +295 -243
- package/es/src/ap-grid/interface.d.ts +32 -3
- package/es/src/ap-grid/utils/table.mjs +15 -15
- package/es/src/ap-list/index.vue.d.ts +2 -9
- package/es/src/ap-list/index.vue.mjs +113 -103
- package/es/src/ap-list/interface.d.ts +24 -3
- package/es/src/ap-modal/interface.d.ts +2 -1
- package/es/src/ap-modal/utils/createModalStream.mjs +24 -24
- package/es/src/ap-table/ap-table.vue.d.ts +10 -2
- package/es/src/ap-table/ap-table.vue2.mjs +86 -82
- package/es/src/ap-table/components/setting/modal/index.vue2.mjs +42 -44
- package/es/src/ap-table/constants.d.ts +22 -22
- package/es/src/ap-table/hooks/use-table-paging-ng.d.ts +24 -5
- package/es/src/ap-table/hooks/use-table-paging-ng.mjs +158 -130
- package/es/src/ap-table/interface.d.ts +17 -4
- package/es/src/ap-table/utils.d.ts +21 -21
- package/es/src/business/ap-card/ApCard.vue.d.ts +2 -4
- package/es/src/business/ap-card/ApCard.vue2.mjs +34 -33
- package/es/src/business/ap-card/index.d.ts +2 -4
- package/es/src/business/ap-card/interface.d.ts +5 -0
- package/es/src/business/ap-copy/ApCopy.d.ts +52 -0
- package/es/src/business/ap-copy/ApCopy.mjs +79 -0
- package/es/src/business/ap-copy/constans.d.ts +24 -0
- package/es/src/business/ap-copy/constans.mjs +25 -0
- package/es/src/business/ap-copy/index.d.ts +102 -0
- package/es/src/business/ap-copy/index.mjs +7 -0
- package/es/src/business/ap-copy/interface.d.ts +8 -0
- package/es/src/business/ap-copy/interface.mjs +1 -0
- package/es/src/business/ap-copy/style/css.d.ts +0 -0
- package/es/src/business/ap-copy/style/css.js +1 -0
- package/es/src/business/ap-copy/style/index.d.ts +0 -0
- package/es/src/business/ap-copy/style/index.js +1 -0
- package/es/src/business/ap-expand-alert/ApExpandAlert.vue2.mjs +51 -49
- package/es/src/business/ap-keep-alive/cacher/cacher.d.ts +10 -0
- package/es/src/business/ap-keep-alive/cacher/lru-cacher.d.ts +16 -0
- package/es/src/business/ap-keep-alive/cacher/lru-cacher.mjs +43 -0
- package/es/src/business/ap-keep-alive/hook.d.ts +10 -0
- package/es/src/business/ap-keep-alive/hook.mjs +33 -0
- package/es/src/business/ap-keep-alive/index.d.ts +108 -0
- package/es/src/business/ap-keep-alive/index.mjs +15 -0
- package/es/src/business/ap-keep-alive/interface.d.ts +36 -0
- package/es/src/business/ap-keep-alive/interface.mjs +54 -0
- package/es/src/business/ap-keep-alive/keep-alive.d.ts +54 -0
- package/es/src/business/ap-keep-alive/keep-alive.mjs +154 -0
- package/es/src/business/ap-keep-alive/keeper/ap-form-keeper.d.ts +7 -0
- package/es/src/business/ap-keep-alive/keeper/ap-form-keeper.mjs +21 -0
- package/es/src/business/ap-keep-alive/keeper/ap-grid-keeper.d.ts +14 -0
- package/es/src/business/ap-keep-alive/keeper/ap-grid-keeper.mjs +27 -0
- package/es/src/business/ap-keep-alive/keeper/ap-list-keeper.d.ts +13 -0
- package/es/src/business/ap-keep-alive/keeper/ap-list-keeper.mjs +18 -0
- package/es/src/business/ap-keep-alive/keeper/ap-radio-group-keeper.d.ts +6 -0
- package/es/src/business/ap-keep-alive/keeper/ap-radio-group-keeper.mjs +17 -0
- package/es/src/business/ap-keep-alive/keeper/ap-search-form-keeper.d.ts +7 -0
- package/es/src/business/ap-keep-alive/keeper/ap-search-form-keeper.mjs +18 -0
- package/es/src/business/ap-keep-alive/keeper/ap-table-keeper.d.ts +13 -0
- package/es/src/business/ap-keep-alive/keeper/ap-table-keeper.mjs +18 -0
- package/es/src/business/ap-keep-alive/keeper/ap-view-keeper.d.ts +6 -0
- package/es/src/business/ap-keep-alive/keeper/ap-view-keeper.mjs +12 -0
- package/es/src/business/ap-keep-alive/keeper/edit-grid-keeper.d.ts +6 -0
- package/es/src/business/ap-keep-alive/keeper/edit-grid-keeper.mjs +18 -0
- package/es/src/business/ap-keep-alive/keeper/edit-table-keeper.d.ts +6 -0
- package/es/src/business/ap-keep-alive/keeper/edit-table-keeper.mjs +18 -0
- package/es/src/business/ap-keep-alive/keeper/index.d.ts +3 -0
- package/es/src/business/ap-keep-alive/keeper/index.mjs +28 -0
- package/es/src/business/ap-keep-alive/keeper/step-keeper.d.ts +6 -0
- package/es/src/business/ap-keep-alive/keeper/step-keeper.mjs +17 -0
- package/es/src/business/ap-keep-alive/keeper/tab-keeper.d.ts +6 -0
- package/es/src/business/ap-keep-alive/keeper/tab-keeper.mjs +17 -0
- package/es/src/business/ap-keep-alive/utils.d.ts +23 -0
- package/es/src/business/ap-keep-alive/utils.mjs +42 -0
- package/es/src/business/ap-label/group/ApLabelGroup.mjs +15 -16
- package/es/src/business/ap-label/interface.d.ts +2 -3
- package/es/src/business/ap-product-info/ApProductInfo.d.ts +9 -0
- package/es/src/business/ap-product-info/ApProductInfo.mjs +53 -54
- package/es/src/business/ap-product-info/constans.d.ts +4 -0
- package/es/src/business/ap-product-info/constans.mjs +4 -0
- package/es/src/business/ap-product-info/index.d.ts +15 -0
- package/es/src/business/ap-product-info/interface.d.ts +1 -0
- package/es/src/business/ap-radio-group/ap-radio-group.vue.d.ts +21 -0
- package/es/src/business/ap-radio-group/ap-radio-group.vue.mjs +4 -0
- package/es/src/business/ap-radio-group/ap-radio-group.vue2.mjs +73 -0
- package/es/src/business/ap-radio-group/index.d.ts +66 -0
- package/es/src/business/ap-radio-group/index.mjs +8 -0
- package/es/src/business/ap-radio-group/interface.d.ts +11 -0
- package/es/src/business/ap-radio-group/interface.mjs +1 -0
- package/es/src/business/ap-radio-group/style/css.d.ts +0 -0
- package/es/src/business/ap-radio-group/style/css.js +1 -0
- package/es/src/business/ap-radio-group/style/index.d.ts +0 -0
- package/es/src/business/ap-radio-group/style/index.js +1 -0
- package/es/src/business/ap-table-modal/hooks/use-create-table-modal.d.ts +4 -1
- package/es/src/business/ap-table-modal/hooks/use-table-modal.d.ts +4 -1
- package/es/src/business/ap-table-modal/hooks/use-table-select-modal.d.ts +4 -1
- package/es/src/business/ap-table-modal/index.d.ts +32 -5
- package/es/src/business/ap-table-modal/table-modal.vue.d.ts +14 -3
- package/es/src/business/ap-table-modal/table-modal.vue2.mjs +43 -42
- package/es/src/business/ap-view/ap-view.vue.d.ts +4 -1
- package/es/src/business/ap-view/ap-view.vue2.mjs +135 -115
- package/es/src/business/ap-view/components/main-button-content.vue.d.ts +1 -1
- package/es/src/business/ap-view/components/menu-list-content.vue.d.ts +1 -1
- package/es/src/business/ap-view/index.d.ts +12 -3
- package/es/src/business/ap-view/interface.d.ts +7 -0
- package/es/src/business/batch-input-group/form-item.vue.mjs +14 -13
- package/es/src/business/batch-input-group/index.vue.mjs +10 -9
- package/es/src/business/hooks/usePageListApGrid.mjs +33 -28
- package/es/src/business/hooks/usePageListApTable.d.ts +4 -1
- package/es/src/business/index.d.ts +3 -0
- package/es/src/business/index.mjs +36 -30
- package/es/src/components.d.ts +1 -0
- package/es/src/editable-table/form-item.vue.mjs +23 -23
- package/es/src/full-screen/interface.d.ts +5 -6
- package/es/src/index.mjs +112 -97
- package/es/src/locale/lang/en.mjs +4 -0
- package/es/src/locale/lang/zh-cn.mjs +4 -0
- package/es/src/mask/index.vue.mjs +21 -20
- package/es/src/path-map.mjs +3 -1
- package/es/src/resize-observer/interface.d.ts +2 -3
- package/es/src/scroll-bar/interface.d.ts +7 -7
- package/es/src/scroll-view/interface.d.ts +2 -3
- package/es/src/splitter/SplitBar.vue2.mjs +1 -0
- package/es/src/splitter/Splitter.vue2.mjs +1 -0
- package/es/src/tests/mock-resize-observer.d.ts +2 -0
- package/es/src/tests/mock-warning.d.ts +1 -0
- package/es/src/tests/utils.d.ts +8 -0
- package/es/src/text/group.vue.mjs +7 -6
- package/es/src/text/index.vue.mjs +20 -19
- package/es/src/version.d.ts +2 -0
- package/es/src/version.mjs +4 -0
- package/es/src/work-order-modal/createWorkOrder.d.ts +2 -1
- package/es/src/work-order-modal/createWorkOrder.mjs +19 -15
- package/es/src/work-order-modal/interfaces.d.ts +4 -0
- package/es/src/work-order-modal/work-order-modal.vue.d.ts +1 -1
- package/es/src/work-order-modal/work-order-modal.vue.mjs +120 -105
- package/es/test/setup.d.ts +5 -0
- package/lib/index.js +1 -1
- package/lib/src/ap-button/ap-button.vue.js +1 -1
- package/lib/src/ap-descriptions/ap-descriptions.vue.js +1 -1
- package/lib/src/ap-descriptions/help-message/index.vue2.js +1 -1
- package/lib/src/ap-drawer/components/ApDrawerClose.vue.d.ts +7 -0
- package/lib/src/ap-drawer/components/ApDrawerClose.vue.js +1 -0
- package/lib/src/ap-drawer/components/ApDrawerClose.vue2.js +1 -0
- package/lib/src/ap-drawer/index.d.ts +2 -0
- package/lib/src/ap-drawer/index.js +1 -1
- package/lib/src/ap-drawer/utils/createDrawer.js +1 -1
- package/lib/src/ap-field/date-range/index.vue.js +1 -1
- package/lib/src/ap-field/hooks/use-date-timezone.js +1 -1
- package/lib/src/ap-field/number/index.vue.d.ts +2 -4
- package/lib/src/ap-field/radio/index.vue.d.ts +2 -4
- package/lib/src/ap-field/rate/index.vue.d.ts +2 -4
- package/lib/src/ap-field/select/index.vue.d.ts +3 -6
- package/lib/src/ap-field/slider/index.vue.d.ts +2 -4
- package/lib/src/ap-field/text/index.vue2.js +1 -1
- package/lib/src/ap-field/text/password.vue.js +1 -1
- package/lib/src/ap-field/text-area/index.vue.d.ts +2 -2
- package/lib/src/ap-field/tree-select/index.vue.js +1 -1
- package/lib/src/ap-form/ap-form.vue2.js +1 -1
- package/lib/src/ap-form/dependency/index.vue.js +1 -1
- package/lib/src/ap-form/drawer-form/index.vue.d.ts +13 -7
- package/lib/src/ap-form/drawer-form/index.vue.js +1 -1
- package/lib/src/ap-form/interface.d.ts +9 -5
- package/lib/src/ap-form/item/index.vue.d.ts +5 -10
- package/lib/src/ap-form/item/index.vue.js +1 -1
- package/lib/src/ap-form/item-group/index.vue.js +1 -1
- package/lib/src/ap-form/items/select/index.vue.js +1 -1
- package/lib/src/ap-form/items/text/password.vue.js +1 -1
- package/lib/src/ap-form/items/text-area/index.vue.d.ts +5 -5
- package/lib/src/ap-form/items/tree-select/index.vue.js +1 -1
- package/lib/src/ap-form/modal-form/index.vue.d.ts +9 -7
- package/lib/src/ap-form/modal-form/index.vue.js +1 -1
- package/lib/src/ap-form/provider/index.vue.js +1 -1
- package/lib/src/ap-form/search-form/components/popover-sorter/index.vue2.js +1 -1
- package/lib/src/ap-form/search-form/hooks/use-count-per-row.js +1 -1
- package/lib/src/ap-form/search-form/index.vue.d.ts +4 -8
- package/lib/src/ap-form/search-form/index.vue.js +1 -1
- package/lib/src/ap-form/set/index.vue.js +1 -1
- package/lib/src/ap-grid/editable/form-item.vue.js +1 -1
- package/lib/src/ap-grid/editable/index.vue.js +1 -1
- package/lib/src/ap-grid/hooks/use-editable-columns.js +1 -1
- package/lib/src/ap-grid/hooks/use-inner-params.d.ts +2 -1
- package/lib/src/ap-grid/hooks/use-inner-params.js +1 -1
- package/lib/src/ap-grid/hooks/use-render-columns.js +1 -1
- package/lib/src/ap-grid/hooks/use-row-selection.d.ts +100 -0
- package/lib/src/ap-grid/hooks/use-row-selection.js +1 -0
- package/lib/src/ap-grid/hooks/use-table-style.d.ts +18 -0
- package/lib/src/ap-grid/hooks/use-table-style.js +1 -0
- package/lib/src/ap-grid/index.vue.js +1 -1
- package/lib/src/ap-grid/interface.d.ts +32 -3
- package/lib/src/ap-grid/utils/table.js +1 -1
- package/lib/src/ap-list/index.vue.d.ts +2 -9
- package/lib/src/ap-list/index.vue.js +1 -1
- package/lib/src/ap-list/interface.d.ts +24 -3
- package/lib/src/ap-modal/interface.d.ts +2 -1
- package/lib/src/ap-modal/utils/createModalStream.js +1 -1
- package/lib/src/ap-table/ap-table.vue.d.ts +10 -2
- package/lib/src/ap-table/ap-table.vue2.js +1 -1
- package/lib/src/ap-table/components/setting/modal/index.vue2.js +1 -1
- package/lib/src/ap-table/constants.d.ts +22 -22
- package/lib/src/ap-table/hooks/use-table-paging-ng.d.ts +24 -5
- package/lib/src/ap-table/hooks/use-table-paging-ng.js +1 -1
- package/lib/src/ap-table/interface.d.ts +17 -4
- package/lib/src/ap-table/utils.d.ts +21 -21
- package/lib/src/business/ap-card/ApCard.vue.d.ts +2 -4
- package/lib/src/business/ap-card/ApCard.vue2.js +1 -1
- package/lib/src/business/ap-card/index.d.ts +2 -4
- package/lib/src/business/ap-card/interface.d.ts +5 -0
- package/lib/src/business/ap-copy/ApCopy.d.ts +52 -0
- package/lib/src/business/ap-copy/ApCopy.js +1 -0
- package/lib/src/business/ap-copy/constans.d.ts +24 -0
- package/lib/src/business/ap-copy/constans.js +1 -0
- package/lib/src/business/ap-copy/index.d.ts +102 -0
- package/lib/src/business/ap-copy/index.js +1 -0
- package/lib/src/business/ap-copy/interface.d.ts +8 -0
- package/lib/src/business/ap-copy/interface.js +1 -0
- package/lib/src/business/ap-copy/style/css.cjs +1 -0
- package/lib/src/business/ap-copy/style/css.d.ts +0 -0
- package/lib/src/business/ap-copy/style/index.cjs +1 -0
- package/lib/src/business/ap-copy/style/index.d.ts +0 -0
- package/lib/src/business/ap-expand-alert/ApExpandAlert.vue2.js +1 -1
- package/lib/src/business/ap-keep-alive/cacher/cacher.d.ts +10 -0
- package/lib/src/business/ap-keep-alive/cacher/lru-cacher.d.ts +16 -0
- package/lib/src/business/ap-keep-alive/cacher/lru-cacher.js +1 -0
- package/lib/src/business/ap-keep-alive/hook.d.ts +10 -0
- package/lib/src/business/ap-keep-alive/hook.js +1 -0
- package/lib/src/business/ap-keep-alive/index.d.ts +108 -0
- package/lib/src/business/ap-keep-alive/index.js +1 -0
- package/lib/src/business/ap-keep-alive/interface.d.ts +36 -0
- package/lib/src/business/ap-keep-alive/interface.js +1 -0
- package/lib/src/business/ap-keep-alive/keep-alive.d.ts +54 -0
- package/lib/src/business/ap-keep-alive/keep-alive.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-form-keeper.d.ts +7 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-form-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-grid-keeper.d.ts +14 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-grid-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-list-keeper.d.ts +13 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-list-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-radio-group-keeper.d.ts +6 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-radio-group-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-search-form-keeper.d.ts +7 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-search-form-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-table-keeper.d.ts +13 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-table-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-view-keeper.d.ts +6 -0
- package/lib/src/business/ap-keep-alive/keeper/ap-view-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/edit-grid-keeper.d.ts +6 -0
- package/lib/src/business/ap-keep-alive/keeper/edit-grid-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/edit-table-keeper.d.ts +6 -0
- package/lib/src/business/ap-keep-alive/keeper/edit-table-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/index.d.ts +3 -0
- package/lib/src/business/ap-keep-alive/keeper/index.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/step-keeper.d.ts +6 -0
- package/lib/src/business/ap-keep-alive/keeper/step-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/keeper/tab-keeper.d.ts +6 -0
- package/lib/src/business/ap-keep-alive/keeper/tab-keeper.js +1 -0
- package/lib/src/business/ap-keep-alive/utils.d.ts +23 -0
- package/lib/src/business/ap-keep-alive/utils.js +1 -0
- package/lib/src/business/ap-label/group/ApLabelGroup.js +1 -1
- package/lib/src/business/ap-label/interface.d.ts +2 -3
- package/lib/src/business/ap-product-info/ApProductInfo.d.ts +9 -0
- package/lib/src/business/ap-product-info/ApProductInfo.js +1 -1
- package/lib/src/business/ap-product-info/constans.d.ts +4 -0
- package/lib/src/business/ap-product-info/constans.js +1 -1
- package/lib/src/business/ap-product-info/index.d.ts +15 -0
- package/lib/src/business/ap-product-info/interface.d.ts +1 -0
- package/lib/src/business/ap-radio-group/ap-radio-group.vue.d.ts +21 -0
- package/lib/src/business/ap-radio-group/ap-radio-group.vue.js +1 -0
- package/lib/src/business/ap-radio-group/ap-radio-group.vue2.js +1 -0
- package/lib/src/business/ap-radio-group/index.d.ts +66 -0
- package/lib/src/business/ap-radio-group/index.js +1 -0
- package/lib/src/business/ap-radio-group/interface.d.ts +11 -0
- package/lib/src/business/ap-radio-group/interface.js +1 -0
- package/lib/src/business/ap-radio-group/style/css.cjs +1 -0
- package/lib/src/business/ap-radio-group/style/css.d.ts +0 -0
- package/lib/src/business/ap-radio-group/style/index.cjs +1 -0
- package/lib/src/business/ap-radio-group/style/index.d.ts +0 -0
- package/lib/src/business/ap-table-modal/hooks/use-create-table-modal.d.ts +4 -1
- package/lib/src/business/ap-table-modal/hooks/use-table-modal.d.ts +4 -1
- package/lib/src/business/ap-table-modal/hooks/use-table-select-modal.d.ts +4 -1
- package/lib/src/business/ap-table-modal/index.d.ts +32 -5
- package/lib/src/business/ap-table-modal/table-modal.vue.d.ts +14 -3
- package/lib/src/business/ap-table-modal/table-modal.vue2.js +1 -1
- package/lib/src/business/ap-view/ap-view.vue.d.ts +4 -1
- package/lib/src/business/ap-view/ap-view.vue2.js +1 -1
- package/lib/src/business/ap-view/components/main-button-content.vue.d.ts +1 -1
- package/lib/src/business/ap-view/components/menu-list-content.vue.d.ts +1 -1
- package/lib/src/business/ap-view/index.d.ts +12 -3
- package/lib/src/business/ap-view/interface.d.ts +7 -0
- package/lib/src/business/batch-input-group/form-item.vue.js +1 -1
- package/lib/src/business/batch-input-group/index.vue.js +2 -2
- package/lib/src/business/hooks/usePageListApGrid.js +1 -1
- package/lib/src/business/hooks/usePageListApTable.d.ts +4 -1
- package/lib/src/business/index.d.ts +3 -0
- package/lib/src/business/index.js +1 -1
- package/lib/src/components.d.ts +1 -0
- package/lib/src/editable-table/form-item.vue.js +1 -1
- package/lib/src/full-screen/interface.d.ts +5 -6
- 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/mask/index.vue.js +1 -1
- package/lib/src/path-map.js +1 -1
- package/lib/src/resize-observer/interface.d.ts +2 -3
- package/lib/src/scroll-bar/interface.d.ts +7 -7
- package/lib/src/scroll-view/interface.d.ts +2 -3
- package/lib/src/splitter/SplitBar.vue2.js +1 -1
- package/lib/src/splitter/Splitter.vue2.js +1 -1
- package/lib/src/tests/mock-resize-observer.d.ts +2 -0
- package/lib/src/tests/mock-warning.d.ts +1 -0
- package/lib/src/tests/utils.d.ts +8 -0
- package/lib/src/text/group.vue.js +1 -1
- package/lib/src/text/index.vue.js +1 -1
- package/lib/src/version.d.ts +2 -0
- package/lib/src/version.js +1 -0
- package/lib/src/work-order-modal/createWorkOrder.d.ts +2 -1
- package/lib/src/work-order-modal/createWorkOrder.js +1 -1
- package/lib/src/work-order-modal/interfaces.d.ts +4 -0
- package/lib/src/work-order-modal/work-order-modal.vue.d.ts +1 -1
- package/lib/src/work-order-modal/work-order-modal.vue.js +1 -1
- package/lib/test/setup.d.ts +5 -0
- package/package.json +18 -14
- package/theme/antd-global-overwrite/admin/alert.css +5 -18
- package/theme/antd-global-overwrite/admin/alert.less +25 -36
- package/theme/antd-global-overwrite/admin/button.css +13 -13
- package/theme/antd-global-overwrite/admin/button.less +24 -24
- package/theme/antd-global-overwrite/admin/drawer.css +3 -0
- package/theme/antd-global-overwrite/admin/drawer.less +5 -0
- package/theme/antd-global-overwrite/admin/field.css +42 -0
- package/theme/antd-global-overwrite/admin/field.less +43 -0
- package/theme/antd-global-overwrite/admin/index.css +93 -634
- package/theme/antd-global-overwrite/admin/index.less +1 -3
- package/theme/antd-global-overwrite/admin/message.css +2 -9
- package/theme/antd-global-overwrite/admin/message.less +2 -10
- package/theme/antd-global-overwrite/admin/modal.css +20 -37
- package/theme/antd-global-overwrite/admin/modal.less +20 -41
- package/theme/antd-global-overwrite/admin/table.css +11 -251
- package/theme/antd-global-overwrite/admin/table.less +4 -132
- package/theme/antd-global-overwrite/aplus/alert.css +8 -18
- package/theme/antd-global-overwrite/aplus/alert.less +27 -34
- package/theme/antd-global-overwrite/aplus/button.css +20 -20
- package/theme/antd-global-overwrite/aplus/button.less +24 -24
- package/theme/antd-global-overwrite/aplus/drawer.css +3 -0
- package/theme/antd-global-overwrite/aplus/drawer.less +5 -0
- package/theme/antd-global-overwrite/aplus/field.css +36 -0
- package/theme/antd-global-overwrite/aplus/field.less +36 -0
- package/theme/antd-global-overwrite/aplus/index.css +94 -683
- package/theme/antd-global-overwrite/aplus/index.less +0 -3
- package/theme/antd-global-overwrite/aplus/message.css +2 -9
- package/theme/antd-global-overwrite/aplus/message.less +2 -10
- package/theme/antd-global-overwrite/aplus/modal.css +19 -43
- package/theme/antd-global-overwrite/aplus/modal.less +20 -49
- package/theme/antd-global-overwrite/aplus/table.css +11 -236
- package/theme/antd-global-overwrite/aplus/table.less +4 -134
- package/theme/ap-action/item-dropdown.css +3 -3
- package/theme/ap-action/item.css +21 -10
- package/theme/ap-action/item.less +18 -6
- package/theme/ap-appendix/ap-appendix.css +10 -10
- package/theme/ap-appendix/ap-appendix.less +6 -6
- package/theme/ap-attachment/ap-attachment.css +4 -4
- package/theme/ap-batch-action/ap-batch-action.css +6 -6
- package/theme/ap-batch-action/ap-batch-action.less +3 -3
- package/theme/ap-button/ap-button.css +3 -3
- package/theme/ap-card/ap-card.css +4 -4
- package/theme/ap-card/ap-card.less +1 -1
- package/theme/ap-copy/ap-copy.css +96 -0
- package/theme/ap-copy/ap-copy.less +61 -0
- package/theme/ap-descriptions/ap-descriptions.css +9 -7
- package/theme/ap-descriptions/ap-descriptions.less +6 -4
- package/theme/ap-download/ap-download.css +6 -6
- package/theme/ap-drawer/ap-drawer.css +66 -0
- package/theme/ap-drawer/ap-drawer.less +27 -0
- package/theme/ap-expand-alert/ap-expand-alert.css +4 -3
- package/theme/ap-expand-alert/ap-expand-alert.less +2 -2
- package/theme/ap-field/checkbox.css +3 -3
- package/theme/ap-field/index.css +3 -3
- package/theme/ap-field/number.css +3 -3
- package/theme/ap-field/radio.css +3 -3
- package/theme/ap-field/text-area.css +3 -3
- package/theme/ap-form/ap-form-item-group.css +3 -3
- package/theme/ap-form/ap-form-item.css +11 -8
- package/theme/ap-form/ap-form-item.less +8 -5
- package/theme/ap-form/drawer-form.css +3 -3
- package/theme/ap-form/index.css +25 -20
- package/theme/ap-form/item-text-group.css +3 -3
- package/theme/ap-form/item-text.css +3 -3
- package/theme/ap-form/modal-form.css +3 -3
- package/theme/ap-form/search-form-sorter.css +14 -12
- package/theme/ap-form/search-form-sorter.less +7 -5
- package/theme/ap-form/search-form.css +25 -20
- package/theme/ap-form/search-form.less +3 -3
- package/theme/ap-grid/editable.css +3 -3
- package/theme/ap-grid/index.css +73 -40
- package/theme/ap-grid/index.less +26 -8
- package/theme/ap-group-search/ap-extension-select.css +3 -3
- package/theme/ap-group-search/ap-group-search.css +3 -3
- package/theme/ap-group-search/ap-popover-select.css +3 -3
- package/theme/ap-image/ap-image.css +3 -3
- package/theme/ap-input-radio/ap-input-radio.css +3 -3
- package/theme/ap-label/ap-label.css +3 -3
- package/theme/ap-ladder/ap-ladder.css +6 -6
- package/theme/ap-layout/ap-info-layout.css +3 -3
- package/theme/ap-list/index.css +3 -3
- package/theme/ap-product-info/ap-product-info.css +23 -33
- package/theme/ap-product-info/ap-product-info.less +28 -42
- package/theme/ap-radio-group/ap-radio-group.css +66 -0
- package/theme/ap-radio-group/ap-radio-group.less +26 -0
- package/theme/ap-select-layout/ap-select-layout.css +5 -5
- package/theme/ap-size-input/ap-size-input.css +3 -3
- package/theme/ap-status/ap-status.css +3 -3
- package/theme/ap-summary/index.css +3 -3
- package/theme/ap-table/ap-table-index.css +3 -3
- package/theme/ap-table/ap-table-paragraph-ellipsis.css +4 -4
- package/theme/ap-table/ap-table-paragraph-ellipsis.less +1 -1
- package/theme/ap-table/ap-table.css +80 -47
- package/theme/ap-table/ap-table.less +19 -7
- package/theme/ap-table/setting/index.css +18 -12
- package/theme/ap-table/setting/modal.css +10 -5
- package/theme/ap-table/setting/modal.less +6 -1
- package/theme/ap-table/setting/select-group.css +3 -3
- package/theme/ap-table/setting/sortable-item-meta.css +5 -5
- package/theme/ap-table/setting/sortable-item-meta.less +2 -2
- package/theme/ap-table/setting/sortable-item.css +3 -3
- package/theme/ap-table/setting/sorter.css +9 -8
- package/theme/ap-table/setting/sorter.less +4 -4
- package/theme/ap-table-modal/index.css +95 -60
- package/theme/ap-table-modal/index.less +15 -13
- package/theme/ap-tag/ap-tag-group.css +3 -3
- package/theme/ap-tag/ap-tag.css +7 -7
- package/theme/ap-tag/ap-tag.less +1 -1
- package/theme/ap-title/ap-title.css +3 -3
- package/theme/ap-upload/index.css +4 -4
- package/theme/ap-upload/multiple-file.css +3 -3
- package/theme/ap-upload/picture.css +3 -3
- package/theme/ap-upload/single-file.css +4 -4
- package/theme/ap-upload/upload.css +3 -3
- package/theme/ap-upload-single/index.css +7 -7
- package/theme/ap-upload-single/index.less +4 -4
- package/theme/ap-view/ap-view.css +10 -10
- package/theme/ap-view/ap-view.less +7 -7
- package/theme/batch-input-group/index.css +5 -5
- package/theme/batch-input-group/popover-input.css +5 -5
- package/theme/batch-input-group/popover-input.less +2 -2
- package/theme/check-card/index.css +11 -11
- package/theme/check-card/index.less +5 -5
- package/theme/editable-table/index.css +43 -27
- package/theme/full-screen/index.css +3 -3
- package/theme/index.css +350 -245
- package/theme/index.less +3 -0
- package/theme/mask/index.css +3 -3
- package/theme/mixins/config.less +3 -3
- package/theme/mixins/mixins.css +3 -3
- package/theme/mixins/mixins.less +2 -2
- package/theme/scroll-bar/index.css +3 -3
- package/theme/scroll-view/index.css +3 -3
- package/theme/splitter/index.css +7 -7
- package/theme/splitter/index.less +1 -1
- package/theme/text/group.css +3 -3
- package/theme/text/index.css +8 -8
- package/theme/text/index.less +4 -4
- package/theme/ui-mode.css +53 -83
- package/theme/ui-mode.less +103 -83
- package/theme/work-order-modal/index.css +3 -3
package/es/index.mjs
CHANGED
|
@@ -1,139 +1,149 @@
|
|
|
1
1
|
import * as o from "./src/index.mjs";
|
|
2
|
-
import { default as
|
|
2
|
+
import { default as s } from "./src/path-map.mjs";
|
|
3
|
+
import p from "./src/version.mjs";
|
|
3
4
|
import "./src/hooks/index.mjs";
|
|
4
|
-
import { configProviderProps as
|
|
5
|
-
import { DEFAULT_NAMESPACE as
|
|
6
|
-
import { keysOf as
|
|
7
|
-
import { buildLocaleContext as
|
|
8
|
-
import { defaultNamespace as
|
|
9
|
-
import { ConfigProvider as
|
|
10
|
-
import { APConfigProvider as
|
|
11
|
-
import { ApFormItemText as
|
|
12
|
-
import { default as
|
|
13
|
-
import { default as
|
|
14
|
-
import { default as
|
|
15
|
-
import { default as
|
|
16
|
-
import { default as
|
|
17
|
-
import { default as
|
|
18
|
-
import { default as
|
|
19
|
-
import { default as
|
|
20
|
-
import { default as
|
|
21
|
-
import { default as
|
|
22
|
-
import { ApForm as
|
|
23
|
-
import { default as
|
|
24
|
-
import { default as
|
|
25
|
-
import { default as
|
|
26
|
-
import { default as
|
|
27
|
-
import { default as
|
|
28
|
-
import { default as
|
|
29
|
-
import { default as
|
|
30
|
-
import { default as
|
|
31
|
-
import { default as
|
|
32
|
-
import { default as
|
|
33
|
-
import { default as
|
|
34
|
-
import { ApField as
|
|
35
|
-
import { ApFieldText as
|
|
36
|
-
import { default as
|
|
37
|
-
import { default as
|
|
38
|
-
import { default as
|
|
39
|
-
import { default as
|
|
40
|
-
import { default as
|
|
41
|
-
import { default as
|
|
42
|
-
import { default as
|
|
43
|
-
import { default as
|
|
44
|
-
import { default as
|
|
45
|
-
import { default as
|
|
46
|
-
import { default as
|
|
47
|
-
import { default as
|
|
48
|
-
import { default as
|
|
49
|
-
import { adminToken as
|
|
50
|
-
import { ApActionItem as
|
|
51
|
-
import { default as
|
|
52
|
-
import { default as
|
|
53
|
-
import { default as
|
|
54
|
-
import { default as
|
|
55
|
-
import { DictCode as
|
|
56
|
-
import { createWorkOrderModal as
|
|
57
|
-
import { default as
|
|
58
|
-
import { default as
|
|
59
|
-
import { default as
|
|
60
|
-
import { default as
|
|
61
|
-
import { NeedNameKeyDefault as
|
|
62
|
-
import { default as
|
|
63
|
-
import { ApDownLoadNeedNameKeyDefault as
|
|
64
|
-
import { default as
|
|
65
|
-
import { CheckCard as
|
|
66
|
-
import { default as
|
|
67
|
-
import { ApModal as
|
|
68
|
-
import { default as
|
|
69
|
-
import { default as
|
|
70
|
-
import { default as
|
|
71
|
-
import { default as
|
|
72
|
-
import { ApDrawer as
|
|
73
|
-
import { ApTransformDataHelper as
|
|
74
|
-
import { default as
|
|
75
|
-
import { useTableModal as
|
|
76
|
-
import { useTableSelectModal as
|
|
77
|
-
import { ApAttachment as
|
|
78
|
-
import { ApBatchAction as
|
|
79
|
-
import { ApBatchActionGroup as
|
|
80
|
-
import { ApButtonGroup as
|
|
81
|
-
import { ApCard as
|
|
82
|
-
import { ApExpandAlert as
|
|
83
|
-
import { ApExportGroupActionType as
|
|
84
|
-
import { ApExportGroup as
|
|
85
|
-
import { handleExportDownload as
|
|
86
|
-
import { convertExportField as
|
|
87
|
-
import { ApImage as
|
|
88
|
-
import { ApInputRadio as
|
|
89
|
-
import { ApLabel as
|
|
90
|
-
import { locales as
|
|
91
|
-
import { ApLadder as
|
|
92
|
-
import { ApSelectLayout as
|
|
93
|
-
import { ApStatus as
|
|
94
|
-
import { ApTitle as
|
|
95
|
-
import { usePageListApTable as
|
|
96
|
-
import { useTableRefresh as
|
|
97
|
-
import { usePageListApGrid as
|
|
98
|
-
import { useGridRefresh as
|
|
99
|
-
import { computedRecords as
|
|
100
|
-
import { ApSummary as
|
|
101
|
-
import { ApNeedNameKeyDefault as
|
|
102
|
-
import { ApAppendix as
|
|
103
|
-
import { ApExtensionSelect as
|
|
104
|
-
import { default as
|
|
105
|
-
import { default as
|
|
106
|
-
import { default as
|
|
107
|
-
import { ApSizeInput as
|
|
108
|
-
import { ApProductInfo as
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import { default as
|
|
120
|
-
import { default as
|
|
121
|
-
import { default as
|
|
122
|
-
import {
|
|
123
|
-
import { default as
|
|
124
|
-
import { default as
|
|
125
|
-
import { default as
|
|
126
|
-
import { default as
|
|
127
|
-
import { default as
|
|
128
|
-
import { default as
|
|
129
|
-
import {
|
|
130
|
-
import {
|
|
131
|
-
import {
|
|
132
|
-
import {
|
|
133
|
-
import {
|
|
134
|
-
import {
|
|
135
|
-
import {
|
|
136
|
-
|
|
5
|
+
import { configProviderProps as A } from "./src/config-provider/config-provider-props.mjs";
|
|
6
|
+
import { DEFAULT_NAMESPACE as n, DEFAULT_UIMODE as c, configProviderContextKey as F } from "./src/config-provider/constants.mjs";
|
|
7
|
+
import { keysOf as T, provideGlobalConfig as S, useGlobalConfig as b } from "./src/config-provider/hooks/use-global-config.mjs";
|
|
8
|
+
import { buildLocaleContext as g, buildTranslator as D, localeContextKey as h, translate as G, useLocale as P } from "./src/config-provider/hooks/use-locale.mjs";
|
|
9
|
+
import { defaultNamespace as R, namespaceContextKey as L, useGetDerivedNamespace as M, useNamespace as v } from "./src/config-provider/hooks/use-namespace.mjs";
|
|
10
|
+
import { ConfigProvider as y, globalConfigCached as w } from "./src/config-provider/config-provider.mjs";
|
|
11
|
+
import { APConfigProvider as B } from "./src/config-provider/index.mjs";
|
|
12
|
+
import { ApFormItemText as O } from "./src/ap-form/items/text/index.mjs";
|
|
13
|
+
import { default as V } from "./src/ap-form/items/text-area/index.vue.mjs";
|
|
14
|
+
import { default as z } from "./src/ap-form/items/number/index.vue.mjs";
|
|
15
|
+
import { default as $ } from "./src/ap-form/items/date/index.vue.mjs";
|
|
16
|
+
import { default as H } from "./src/ap-form/items/date-range/index.vue.mjs";
|
|
17
|
+
import { default as J } from "./src/ap-form/items/radio/index.vue.mjs";
|
|
18
|
+
import { default as X } from "./src/ap-form/items/select/index.vue.mjs";
|
|
19
|
+
import { default as Z } from "./src/ap-form/items/switch/index.vue.mjs";
|
|
20
|
+
import { default as oe } from "./src/ap-form/items/checkbox/index.vue.mjs";
|
|
21
|
+
import { default as te } from "./src/ap-form/items/text/password.vue.mjs";
|
|
22
|
+
import { default as ae } from "./src/ap-form/items/tree-select/index.vue.mjs";
|
|
23
|
+
import { ApForm as me } from "./src/ap-form/index.mjs";
|
|
24
|
+
import { default as xe } from "./src/ap-form/item/index.vue.mjs";
|
|
25
|
+
import { default as se } from "./src/ap-form/item-group/index.vue.mjs";
|
|
26
|
+
import { default as Ae } from "./src/ap-form/list/index.vue.mjs";
|
|
27
|
+
import { default as ne } from "./src/ap-form/search-form/index.vue.mjs";
|
|
28
|
+
import { default as Fe } from "./src/ap-form/modal-form/index.vue.mjs";
|
|
29
|
+
import { default as Te } from "./src/ap-form/dependency/index.vue.mjs";
|
|
30
|
+
import { default as be } from "./src/ap-form/set/index.vue.mjs";
|
|
31
|
+
import { default as ge } from "./src/ap-form/drawer-form/index.vue.mjs";
|
|
32
|
+
import { default as he } from "./src/ap-form/render/control.vue.mjs";
|
|
33
|
+
import { default as Pe } from "./src/ap-form/render/item.vue.mjs";
|
|
34
|
+
import { default as Re } from "./src/ap-form/provider/index.vue.mjs";
|
|
35
|
+
import { ApField as Me } from "./src/ap-field/index.mjs";
|
|
36
|
+
import { ApFieldText as Ne } from "./src/ap-field/text/index.mjs";
|
|
37
|
+
import { default as we } from "./src/ap-field/checkbox/index.vue.mjs";
|
|
38
|
+
import { default as Be } from "./src/ap-field/date/index.vue.mjs";
|
|
39
|
+
import { default as Oe } from "./src/ap-field/number/index.vue.mjs";
|
|
40
|
+
import { default as Ve } from "./src/ap-field/radio/index.vue.mjs";
|
|
41
|
+
import { default as ze } from "./src/ap-field/switch/index.vue.mjs";
|
|
42
|
+
import { default as $e } from "./src/ap-field/text-area/index.vue.mjs";
|
|
43
|
+
import { default as He } from "./src/ap-field/date-range/index.vue.mjs";
|
|
44
|
+
import { default as Je } from "./src/ap-field/select/index.vue.mjs";
|
|
45
|
+
import { default as Xe } from "./src/ap-field/text/password.vue.mjs";
|
|
46
|
+
import { default as Ze } from "./src/ap-field/slider/index.vue.mjs";
|
|
47
|
+
import { default as oo } from "./src/ap-field/segmented/index.vue.mjs";
|
|
48
|
+
import { default as to } from "./src/ap-field/rate/index.vue.mjs";
|
|
49
|
+
import { default as ao } from "./src/ap-field/tree-select/index.vue.mjs";
|
|
50
|
+
import { adminToken as mo, aplusToken as lo } from "./src/design-token/index.mjs";
|
|
51
|
+
import { ApActionItem as so } from "./src/ap-action/index.mjs";
|
|
52
|
+
import { default as Ao } from "./src/ap-action/item-modal/index.vue.mjs";
|
|
53
|
+
import { default as no } from "./src/ap-action/item-popconfirm/index.vue.mjs";
|
|
54
|
+
import { default as Fo } from "./src/ap-action/item-dropdown/index.vue.mjs";
|
|
55
|
+
import { default as To } from "./src/ap-action/group/index.vue.mjs";
|
|
56
|
+
import { DictCode as bo, langMap as Co } from "./src/work-order-modal/interfaces.mjs";
|
|
57
|
+
import { createWorkOrderModal as Do } from "./src/work-order-modal/createWorkOrder.mjs";
|
|
58
|
+
import { default as Go } from "./src/work-order-modal/work-order-modal.vue.mjs";
|
|
59
|
+
import { default as Eo } from "./src/ap-tag/ap-tag.vue.mjs";
|
|
60
|
+
import { default as Lo } from "./src/ap-tag/ap-tag-group.vue.mjs";
|
|
61
|
+
import { default as vo } from "./src/ap-info-layout/ApInfoLayout.vue.mjs";
|
|
62
|
+
import { NeedNameKeyDefault as yo } from "./src/ap-upload/apUploadTypes.mjs";
|
|
63
|
+
import { default as ko } from "./src/ap-upload/apUpload.vue.mjs";
|
|
64
|
+
import { ApDownLoadNeedNameKeyDefault as Ko } from "./src/ap-download/interface.mjs";
|
|
65
|
+
import { default as Uo } from "./src/ap-download/ap-download.vue.mjs";
|
|
66
|
+
import { CheckCard as _o } from "./src/check-card/index.mjs";
|
|
67
|
+
import { default as Wo } from "./src/check-card/group.vue.mjs";
|
|
68
|
+
import { ApModal as jo } from "./src/ap-modal/index.mjs";
|
|
69
|
+
import { default as qo } from "./src/ap-list/index.vue.mjs";
|
|
70
|
+
import { default as Qo } from "./src/ap-button/ap-button.vue.mjs";
|
|
71
|
+
import { default as Yo } from "./src/ap-button/ap-action-button.vue.mjs";
|
|
72
|
+
import { default as er } from "./src/ap-button/ap-confirm-button.vue.mjs";
|
|
73
|
+
import { ApDrawer as rr } from "./src/ap-drawer/index.mjs";
|
|
74
|
+
import { ApTransformDataHelper as pr } from "./src/utils/ap-trans-data/index.mjs";
|
|
75
|
+
import { default as fr } from "./src/business/ap-table-modal/index.mjs";
|
|
76
|
+
import { useTableModal as lr } from "./src/business/ap-table-modal/hooks/use-table-modal.mjs";
|
|
77
|
+
import { useTableSelectModal as dr } from "./src/business/ap-table-modal/hooks/use-table-select-modal.mjs";
|
|
78
|
+
import { ApAttachment as ur } from "./src/business/ap-attachment/index.mjs";
|
|
79
|
+
import { ApBatchAction as ir } from "./src/business/ap-batch-action/index.mjs";
|
|
80
|
+
import { ApBatchActionGroup as cr } from "./src/business/ap-batch-action-group/index.mjs";
|
|
81
|
+
import { ApButtonGroup as Ir } from "./src/business/ap-button-group/index.mjs";
|
|
82
|
+
import { ApCard as Sr } from "./src/business/ap-card/index.mjs";
|
|
83
|
+
import { ApExpandAlert as Cr } from "./src/business/ap-expand-alert/index.mjs";
|
|
84
|
+
import { ApExportGroupActionType as Dr } from "./src/business/ap-export-group/interface.mjs";
|
|
85
|
+
import { ApExportGroup as Gr } from "./src/business/ap-export-group/index.mjs";
|
|
86
|
+
import { handleExportDownload as Er } from "./src/business/ap-export-group/handleExportDownload.mjs";
|
|
87
|
+
import { convertExportField as Lr } from "./src/business/ap-export-group/convertExportField.mjs";
|
|
88
|
+
import { ApImage as vr } from "./src/business/ap-image/index.mjs";
|
|
89
|
+
import { ApInputRadio as yr } from "./src/business/ap-input-radio/index.mjs";
|
|
90
|
+
import { ApLabel as kr, ApLabelGroup as Br } from "./src/business/ap-label/index.mjs";
|
|
91
|
+
import { locales as Or } from "./src/business/ap-ladder/interface.mjs";
|
|
92
|
+
import { ApLadder as Vr } from "./src/business/ap-ladder/index.mjs";
|
|
93
|
+
import { ApSelectLayout as zr } from "./src/business/ap-select-layout/index.mjs";
|
|
94
|
+
import { ApStatus as $r, ApStatusGroup as jr } from "./src/business/ap-status/index.mjs";
|
|
95
|
+
import { ApTitle as qr } from "./src/business/ap-title/index.mjs";
|
|
96
|
+
import { usePageListApTable as Qr } from "./src/business/hooks/usePageListApTable.mjs";
|
|
97
|
+
import { useTableRefresh as Yr } from "./src/business/hooks/useTableRefresh.mjs";
|
|
98
|
+
import { usePageListApGrid as et } from "./src/business/hooks/usePageListApGrid.mjs";
|
|
99
|
+
import { useGridRefresh as rt } from "./src/business/hooks/useGridRefresh.mjs";
|
|
100
|
+
import { computedRecords as pt, flattenColumns as at, formatDataIndex as ft, formatNumber as mt } from "./src/business/ap-summary/utils.mjs";
|
|
101
|
+
import { ApSummary as xt } from "./src/business/ap-summary/index.mjs";
|
|
102
|
+
import { ApNeedNameKeyDefault as st } from "./src/business/ap-appendix/interface.mjs";
|
|
103
|
+
import { ApAppendix as At } from "./src/business/ap-appendix/index.mjs";
|
|
104
|
+
import { ApExtensionSelect as nt, ApGroupSearch as ct, ApPopoverSelect as Ft } from "./src/business/ap-group-search/index.mjs";
|
|
105
|
+
import { default as Tt } from "./src/business/ap-upload-file/ap-upload-single/ap-upload-single.vue.mjs";
|
|
106
|
+
import { default as bt } from "./src/business/batch-input-group/index.vue.mjs";
|
|
107
|
+
import { default as gt } from "./src/business/batch-input-group/form-item.vue.mjs";
|
|
108
|
+
import { ApSizeInput as ht } from "./src/business/ap-size-input/index.mjs";
|
|
109
|
+
import { ApProductInfo as Pt } from "./src/business/ap-product-info/index.mjs";
|
|
110
|
+
import { ApCopy as Rt } from "./src/business/ap-copy/index.mjs";
|
|
111
|
+
import { ApView as Mt } from "./src/business/ap-view/index.mjs";
|
|
112
|
+
import { ApRadioGroup as Nt } from "./src/business/ap-radio-group/index.mjs";
|
|
113
|
+
import { ApKeepAliveProps as wt, forceStopTags as kt } from "./src/business/ap-keep-alive/interface.mjs";
|
|
114
|
+
import { ApKeepAlive as Kt } from "./src/business/ap-keep-alive/index.mjs";
|
|
115
|
+
import { LruCacher as Ut } from "./src/business/ap-keep-alive/cacher/lru-cacher.mjs";
|
|
116
|
+
import { useApKeepAliveInject as _t } from "./src/business/ap-keep-alive/hook.mjs";
|
|
117
|
+
import { matches as Wt } from "./src/business/ap-keep-alive/utils.mjs";
|
|
118
|
+
import { useTablePaging as jt } from "./src/ap-table/hooks/use-table-paging.mjs";
|
|
119
|
+
import { ApTable as qt } from "./src/ap-table/index.mjs";
|
|
120
|
+
import { default as Qt } from "./src/editable-table/index.vue.mjs";
|
|
121
|
+
import { default as Yt } from "./src/editable-table/form-item.vue.mjs";
|
|
122
|
+
import { default as ep } from "./src/ap-descriptions/ap-descriptions.vue.mjs";
|
|
123
|
+
import { ensureRangeValue as rp } from "./src/scroll-bar/utils/index.mjs";
|
|
124
|
+
import { default as pp } from "./src/scroll-bar/index.vue.mjs";
|
|
125
|
+
import { default as fp } from "./src/scroll-bar/internal.vue.mjs";
|
|
126
|
+
import { default as lp } from "./src/scroll-view/index.vue.mjs";
|
|
127
|
+
import { default as dp } from "./src/portal/index.vue.mjs";
|
|
128
|
+
import { default as up } from "./src/full-screen/index.vue.mjs";
|
|
129
|
+
import { default as ip } from "./src/resize-observer/index.vue.mjs";
|
|
130
|
+
import { ROW_SELECTION_FIELD as cp } from "./src/ap-grid/constants.mjs";
|
|
131
|
+
import { default as Ip } from "./src/ap-grid/index.vue.mjs";
|
|
132
|
+
import { default as Sp } from "./src/ap-grid/editable/index.vue.mjs";
|
|
133
|
+
import { default as Cp } from "./src/ap-grid/editable/form-item.vue.mjs";
|
|
134
|
+
import { default as Dp } from "./src/text/index.vue.mjs";
|
|
135
|
+
import { default as Gp } from "./src/text/group.vue.mjs";
|
|
136
|
+
import { default as Ep } from "./src/mask/index.vue.mjs";
|
|
137
|
+
import { Splitter as Lp } from "./src/splitter/index.mjs";
|
|
138
|
+
import { useMessage as vp } from "./src/hooks/useMessage.mjs";
|
|
139
|
+
import { useControllableValue as yp } from "./src/hooks/useControllableValue.mjs";
|
|
140
|
+
import { useManualRef as kp } from "./src/hooks/useManualRef.mjs";
|
|
141
|
+
import { useThrottleRef as Kp } from "./src/hooks/useThrottleRef.mjs";
|
|
142
|
+
import { useFullScreen as Up } from "./src/hooks/useFullScreen.mjs";
|
|
143
|
+
import { useResize as _p } from "./src/hooks/useResize.mjs";
|
|
144
|
+
const a = console.log;
|
|
145
|
+
a(`APlus-UI version ${p}`);
|
|
146
|
+
const l = {
|
|
137
147
|
install: (r) => {
|
|
138
148
|
for (const t in o) {
|
|
139
149
|
const e = o[t];
|
|
@@ -142,159 +152,167 @@ const a = {
|
|
|
142
152
|
}
|
|
143
153
|
};
|
|
144
154
|
export {
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
O as
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
155
|
+
B as APConfigProvider,
|
|
156
|
+
Yo as ApActionButton,
|
|
157
|
+
To as ApActionGroup,
|
|
158
|
+
so as ApActionItem,
|
|
159
|
+
Fo as ApActionItemDropdown,
|
|
160
|
+
Ao as ApActionItemModal,
|
|
161
|
+
no as ApActionItemPopconfirm,
|
|
162
|
+
At as ApAppendix,
|
|
163
|
+
ur as ApAttachment,
|
|
164
|
+
ir as ApBatchAction,
|
|
165
|
+
cr as ApBatchActionGroup,
|
|
166
|
+
Qo as ApButton,
|
|
167
|
+
Ir as ApButtonGroup,
|
|
168
|
+
Sr as ApCard,
|
|
169
|
+
er as ApConfirmButton,
|
|
170
|
+
Rt as ApCopy,
|
|
171
|
+
ep as ApDescriptions,
|
|
172
|
+
Ko as ApDownLoadNeedNameKeyDefault,
|
|
173
|
+
Uo as ApDownload,
|
|
174
|
+
rr as ApDrawer,
|
|
175
|
+
Cr as ApExpandAlert,
|
|
176
|
+
Gr as ApExportGroup,
|
|
177
|
+
Dr as ApExportGroupActionType,
|
|
178
|
+
nt as ApExtensionSelect,
|
|
179
|
+
Me as ApField,
|
|
180
|
+
we as ApFieldCheckbox,
|
|
181
|
+
Be as ApFieldDate,
|
|
182
|
+
He as ApFieldDateRange,
|
|
183
|
+
Oe as ApFieldNumber,
|
|
184
|
+
Xe as ApFieldPassword,
|
|
185
|
+
Ve as ApFieldRadio,
|
|
186
|
+
to as ApFieldRate,
|
|
187
|
+
oo as ApFieldSegmented,
|
|
188
|
+
Je as ApFieldSelect,
|
|
189
|
+
Ze as ApFieldSlider,
|
|
190
|
+
ze as ApFieldSwitch,
|
|
191
|
+
Ne as ApFieldText,
|
|
192
|
+
$e as ApFieldTextArea,
|
|
193
|
+
ao as ApFieldTreeSelect,
|
|
194
|
+
me as ApForm,
|
|
195
|
+
he as ApFormControlRender,
|
|
196
|
+
Te as ApFormDependency,
|
|
197
|
+
ge as ApFormDrawerForm,
|
|
198
|
+
xe as ApFormItem,
|
|
199
|
+
gt as ApFormItemBatchInput,
|
|
200
|
+
oe as ApFormItemCheckbox,
|
|
201
|
+
$ as ApFormItemDate,
|
|
202
|
+
H as ApFormItemDateRange,
|
|
203
|
+
se as ApFormItemGroup,
|
|
204
|
+
z as ApFormItemNumber,
|
|
205
|
+
J as ApFormItemRadio,
|
|
206
|
+
Pe as ApFormItemRender,
|
|
207
|
+
X as ApFormItemSelect,
|
|
208
|
+
Z as ApFormItemSwitch,
|
|
209
|
+
O as ApFormItemText,
|
|
210
|
+
V as ApFormItemTextArea,
|
|
211
|
+
te as ApFormItemTextPassword,
|
|
212
|
+
ae as ApFormItemTreeSelect,
|
|
213
|
+
Ae as ApFormList,
|
|
214
|
+
Fe as ApFormModalForm,
|
|
215
|
+
Re as ApFormProvider,
|
|
216
|
+
ne as ApFormSearchForm,
|
|
217
|
+
be as ApFormSet,
|
|
218
|
+
Ip as ApGrid,
|
|
219
|
+
ct as ApGroupSearch,
|
|
220
|
+
vr as ApImage,
|
|
221
|
+
vo as ApInfoLayout,
|
|
222
|
+
yr as ApInputRadio,
|
|
223
|
+
Kt as ApKeepAlive,
|
|
224
|
+
wt as ApKeepAliveProps,
|
|
225
|
+
kr as ApLabel,
|
|
226
|
+
Br as ApLabelGroup,
|
|
227
|
+
Vr as ApLadder,
|
|
228
|
+
qo as ApList,
|
|
229
|
+
jo as ApModal,
|
|
230
|
+
st as ApNeedNameKeyDefault,
|
|
231
|
+
Ft as ApPopoverSelect,
|
|
232
|
+
Pt as ApProductInfo,
|
|
233
|
+
Nt as ApRadioGroup,
|
|
234
|
+
zr as ApSelectLayout,
|
|
235
|
+
ht as ApSizeInput,
|
|
236
|
+
$r as ApStatus,
|
|
237
|
+
jr as ApStatusGroup,
|
|
238
|
+
xt as ApSummary,
|
|
239
|
+
qt as ApTable,
|
|
240
|
+
fr as ApTableModal,
|
|
241
|
+
Eo as ApTag,
|
|
242
|
+
Lo as ApTagGroup,
|
|
243
|
+
Dp as ApText,
|
|
244
|
+
Gp as ApTextGroup,
|
|
245
|
+
qr as ApTitle,
|
|
246
|
+
pr as ApTransformDataHelper,
|
|
247
|
+
ko as ApUpload,
|
|
248
|
+
Tt as ApUploadSingle,
|
|
249
|
+
Mt as ApView,
|
|
250
|
+
bt as BatchInputGroup,
|
|
251
|
+
_o as CheckCard,
|
|
252
|
+
Wo as CheckCardGroup,
|
|
253
|
+
y as ConfigProvider,
|
|
254
|
+
n as DEFAULT_NAMESPACE,
|
|
255
|
+
c as DEFAULT_UIMODE,
|
|
256
|
+
bo as DictCode,
|
|
257
|
+
Sp as EditableGrid,
|
|
258
|
+
Cp as EditableGridFormItem,
|
|
259
|
+
Qt as EditableTable,
|
|
260
|
+
Yt as EditableTableFormItem,
|
|
261
|
+
up as FullScreen,
|
|
262
|
+
fp as InternalScrollBar,
|
|
263
|
+
Ut as LruCacher,
|
|
264
|
+
Ep as Mask,
|
|
265
|
+
yo as NeedNameKeyDefault,
|
|
266
|
+
dp as Portal,
|
|
267
|
+
cp as ROW_SELECTION_FIELD,
|
|
268
|
+
ip as ResizeObserver,
|
|
269
|
+
pp as ScrollBar,
|
|
270
|
+
lp as ScrollView,
|
|
271
|
+
Lp as Splitter,
|
|
272
|
+
Go as WorkOrderModal,
|
|
273
|
+
mo as adminToken,
|
|
274
|
+
lo as aplusToken,
|
|
275
|
+
g as buildLocaleContext,
|
|
276
|
+
D as buildTranslator,
|
|
277
|
+
pt as computedRecords,
|
|
278
|
+
F as configProviderContextKey,
|
|
279
|
+
A as configProviderProps,
|
|
280
|
+
Lr as convertExportField,
|
|
281
|
+
Do as createWorkOrderModal,
|
|
282
|
+
l as default,
|
|
283
|
+
R as defaultNamespace,
|
|
284
|
+
rp as ensureRangeValue,
|
|
285
|
+
at as flattenColumns,
|
|
286
|
+
kt as forceStopTags,
|
|
287
|
+
ft as formatDataIndex,
|
|
288
|
+
mt as formatNumber,
|
|
289
|
+
w as globalConfigCached,
|
|
290
|
+
Er as handleExportDownload,
|
|
291
|
+
Wt as isNameMatches,
|
|
292
|
+
T as keysOf,
|
|
293
|
+
Co as langMap,
|
|
294
|
+
h as localeContextKey,
|
|
295
|
+
Or as locales,
|
|
296
|
+
L as namespaceContextKey,
|
|
297
|
+
s as pathMap,
|
|
298
|
+
S as provideGlobalConfig,
|
|
299
|
+
G as translate,
|
|
300
|
+
_t as useApKeepAliveInject,
|
|
301
|
+
yp as useControllableValue,
|
|
302
|
+
Up as useFullScreen,
|
|
303
|
+
M as useGetDerivedNamespace,
|
|
304
|
+
b as useGlobalConfig,
|
|
305
|
+
rt as useGridRefresh,
|
|
306
|
+
P as useLocale,
|
|
307
|
+
kp as useManualRef,
|
|
308
|
+
vp as useMessage,
|
|
309
|
+
v as useNamespace,
|
|
310
|
+
et as usePageListApGrid,
|
|
311
|
+
Qr as usePageListApTable,
|
|
312
|
+
_p as useResize,
|
|
313
|
+
lr as useTableModal,
|
|
314
|
+
jt as useTablePaging,
|
|
315
|
+
Yr as useTableRefresh,
|
|
316
|
+
dr as useTableSelectModal,
|
|
317
|
+
Kp as useThrottleRef
|
|
300
318
|
};
|