@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
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
color: #182948;
|
|
6
6
|
font-size: 12px;
|
|
7
7
|
font-family: inherit;
|
|
8
|
-
line-height:
|
|
8
|
+
line-height: 18px;
|
|
9
9
|
list-style: none;
|
|
10
10
|
}
|
|
11
11
|
.reset-scrollbar ::-webkit-scrollbar {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
height: 10px;
|
|
14
14
|
}
|
|
15
15
|
.reset-scrollbar ::-webkit-scrollbar-thumb {
|
|
16
|
-
background-color: var(--
|
|
16
|
+
background-color: var(--ap-scrollbar-thumb-color-base);
|
|
17
17
|
background-clip: content-box;
|
|
18
18
|
border: 1px solid transparent;
|
|
19
19
|
border-radius: 4px;
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
}
|
|
25
25
|
.reset-scrollbar ::-webkit-scrollbar-thumb:hover,
|
|
26
26
|
.reset-scrollbar ::-webkit-scrollbar-thumb:active {
|
|
27
|
-
background-color: var(--
|
|
27
|
+
background-color: var(--ap-scrollbar-thumb-color-hover);
|
|
28
28
|
}
|
|
29
29
|
.clear-fix::before {
|
|
30
30
|
display: table;
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
display: block;
|
|
63
63
|
}
|
|
64
64
|
.aplus-sortable-item-meta:hover .aplus-sortable-item-meta-left__holder {
|
|
65
|
-
color: var(--
|
|
65
|
+
color: var(--ap-color-primary) !important;
|
|
66
66
|
}
|
|
67
67
|
.aplus-sortable-item-meta-left {
|
|
68
68
|
flex: 1;
|
|
@@ -92,5 +92,5 @@
|
|
|
92
92
|
margin-left: 16px;
|
|
93
93
|
}
|
|
94
94
|
.aplus-sortable-item-meta-action-icon:hover {
|
|
95
|
-
color: var(--
|
|
95
|
+
color: var(--ap-color-primary);
|
|
96
96
|
}
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
display: block;
|
|
21
21
|
}
|
|
22
22
|
.@{mlh} {
|
|
23
|
-
color: var(--
|
|
23
|
+
color: var(--ap-color-primary) !important;
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
&-left {
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
}
|
|
53
53
|
&-action-icon {
|
|
54
54
|
&:hover {
|
|
55
|
-
color: var(--
|
|
55
|
+
color: var(--ap-color-primary);
|
|
56
56
|
}
|
|
57
57
|
}
|
|
58
58
|
});
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
color: #182948;
|
|
6
6
|
font-size: 12px;
|
|
7
7
|
font-family: inherit;
|
|
8
|
-
line-height:
|
|
8
|
+
line-height: 18px;
|
|
9
9
|
list-style: none;
|
|
10
10
|
}
|
|
11
11
|
.reset-scrollbar ::-webkit-scrollbar {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
height: 10px;
|
|
14
14
|
}
|
|
15
15
|
.reset-scrollbar ::-webkit-scrollbar-thumb {
|
|
16
|
-
background-color: var(--
|
|
16
|
+
background-color: var(--ap-scrollbar-thumb-color-base);
|
|
17
17
|
background-clip: content-box;
|
|
18
18
|
border: 1px solid transparent;
|
|
19
19
|
border-radius: 4px;
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
}
|
|
25
25
|
.reset-scrollbar ::-webkit-scrollbar-thumb:hover,
|
|
26
26
|
.reset-scrollbar ::-webkit-scrollbar-thumb:active {
|
|
27
|
-
background-color: var(--
|
|
27
|
+
background-color: var(--ap-scrollbar-thumb-color-hover);
|
|
28
28
|
}
|
|
29
29
|
.clear-fix::before {
|
|
30
30
|
display: table;
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
color: #182948;
|
|
6
6
|
font-size: 12px;
|
|
7
7
|
font-family: inherit;
|
|
8
|
-
line-height:
|
|
8
|
+
line-height: 18px;
|
|
9
9
|
list-style: none;
|
|
10
10
|
}
|
|
11
11
|
.reset-scrollbar ::-webkit-scrollbar {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
height: 10px;
|
|
14
14
|
}
|
|
15
15
|
.reset-scrollbar ::-webkit-scrollbar-thumb {
|
|
16
|
-
background-color: var(--
|
|
16
|
+
background-color: var(--ap-scrollbar-thumb-color-base);
|
|
17
17
|
background-clip: content-box;
|
|
18
18
|
border: 1px solid transparent;
|
|
19
19
|
border-radius: 4px;
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
}
|
|
25
25
|
.reset-scrollbar ::-webkit-scrollbar-thumb:hover,
|
|
26
26
|
.reset-scrollbar ::-webkit-scrollbar-thumb:active {
|
|
27
|
-
background-color: var(--
|
|
27
|
+
background-color: var(--ap-scrollbar-thumb-color-hover);
|
|
28
28
|
}
|
|
29
29
|
.clear-fix::before {
|
|
30
30
|
display: table;
|
|
@@ -52,26 +52,27 @@
|
|
|
52
52
|
.aplus-column-setting-sorter-section-title {
|
|
53
53
|
font-size: 12px;
|
|
54
54
|
line-height: 20px;
|
|
55
|
-
color:
|
|
55
|
+
color: var(--ap-text-color-3);
|
|
56
56
|
padding: 2px 8px;
|
|
57
57
|
margin: 4px;
|
|
58
58
|
}
|
|
59
59
|
.aplus-column-setting-sorter-header {
|
|
60
|
-
padding:
|
|
60
|
+
padding: 12px 20px;
|
|
61
61
|
}
|
|
62
62
|
.aplus-column-setting-sorter-header-title {
|
|
63
63
|
box-sizing: border-box;
|
|
64
64
|
margin: 0;
|
|
65
65
|
padding: 0;
|
|
66
|
+
color: #182948;
|
|
66
67
|
font-size: 12px;
|
|
67
68
|
font-family: inherit;
|
|
68
|
-
line-height:
|
|
69
|
+
line-height: 18px;
|
|
69
70
|
list-style: none;
|
|
70
71
|
font-weight: bold;
|
|
71
|
-
color:
|
|
72
|
+
color: var(--ap-text-color-2);
|
|
72
73
|
}
|
|
73
74
|
.aplus-column-setting-sorter-content {
|
|
74
75
|
flex: 1;
|
|
75
76
|
overflow-y: auto;
|
|
76
|
-
padding: 8px 12px
|
|
77
|
+
padding: 8px 12px 0px 8px;
|
|
77
78
|
}
|
|
@@ -7,21 +7,21 @@
|
|
|
7
7
|
&-section-title {
|
|
8
8
|
font-size: 12px;
|
|
9
9
|
line-height: 20px;
|
|
10
|
-
color:
|
|
10
|
+
color: var(--ap-text-color-3);
|
|
11
11
|
padding: 2px 8px;
|
|
12
12
|
margin: 4px;
|
|
13
13
|
}
|
|
14
14
|
&-header {
|
|
15
|
-
padding:
|
|
15
|
+
padding: 12px 20px;
|
|
16
16
|
&-title {
|
|
17
17
|
.reset-component();
|
|
18
18
|
font-weight: bold;
|
|
19
|
-
color:
|
|
19
|
+
color: var(--ap-text-color-2);
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
&-content {
|
|
23
23
|
flex: 1;
|
|
24
24
|
overflow-y: auto;
|
|
25
|
-
padding: 8px 12px
|
|
25
|
+
padding: 8px 12px 0px 8px;
|
|
26
26
|
}
|
|
27
27
|
});
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
color: #182948;
|
|
6
6
|
font-size: 12px;
|
|
7
7
|
font-family: inherit;
|
|
8
|
-
line-height:
|
|
8
|
+
line-height: 18px;
|
|
9
9
|
list-style: none;
|
|
10
10
|
}
|
|
11
11
|
.reset-scrollbar ::-webkit-scrollbar {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
height: 10px;
|
|
14
14
|
}
|
|
15
15
|
.reset-scrollbar ::-webkit-scrollbar-thumb {
|
|
16
|
-
background-color: var(--
|
|
16
|
+
background-color: var(--ap-scrollbar-thumb-color-base);
|
|
17
17
|
background-clip: content-box;
|
|
18
18
|
border: 1px solid transparent;
|
|
19
19
|
border-radius: 4px;
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
}
|
|
25
25
|
.reset-scrollbar ::-webkit-scrollbar-thumb:hover,
|
|
26
26
|
.reset-scrollbar ::-webkit-scrollbar-thumb:active {
|
|
27
|
-
background-color: var(--
|
|
27
|
+
background-color: var(--ap-scrollbar-thumb-color-hover);
|
|
28
28
|
}
|
|
29
29
|
.clear-fix::before {
|
|
30
30
|
display: table;
|
|
@@ -61,6 +61,7 @@
|
|
|
61
61
|
flex-direction: row;
|
|
62
62
|
flex-wrap: nowrap;
|
|
63
63
|
height: 100%;
|
|
64
|
+
padding-block-end: 12px;
|
|
64
65
|
}
|
|
65
66
|
.aplus-ap-column-setting-wrapper .aplus-ap-table-table-header__title {
|
|
66
67
|
box-sizing: border-box;
|
|
@@ -69,7 +70,7 @@
|
|
|
69
70
|
color: #182948;
|
|
70
71
|
font-size: 12px;
|
|
71
72
|
font-family: inherit;
|
|
72
|
-
line-height:
|
|
73
|
+
line-height: 18px;
|
|
73
74
|
list-style: none;
|
|
74
75
|
display: inline-block;
|
|
75
76
|
-webkit-line-clamp: unset;
|
|
@@ -80,6 +81,7 @@
|
|
|
80
81
|
white-space: nowrap;
|
|
81
82
|
overflow: hidden;
|
|
82
83
|
text-overflow: ellipsis;
|
|
84
|
+
color: var(--ap-text-color-2);
|
|
83
85
|
}
|
|
84
86
|
.aplus-ap-column-setting-left {
|
|
85
87
|
flex: 1;
|
|
@@ -95,7 +97,10 @@
|
|
|
95
97
|
flex-wrap: nowrap;
|
|
96
98
|
justify-content: space-between;
|
|
97
99
|
align-items: center;
|
|
98
|
-
padding:
|
|
100
|
+
padding: 8px;
|
|
101
|
+
}
|
|
102
|
+
.aplus-ap-column-setting-left__header-tips {
|
|
103
|
+
color: var(--ap-text-color-3);
|
|
99
104
|
}
|
|
100
105
|
.aplus-ap-column-setting-left__content {
|
|
101
106
|
flex: 1;
|
|
@@ -140,7 +145,7 @@
|
|
|
140
145
|
display: block;
|
|
141
146
|
}
|
|
142
147
|
.aplus-sortable-item-meta:hover .aplus-sortable-item-meta-left__holder {
|
|
143
|
-
color: var(--
|
|
148
|
+
color: var(--ap-color-primary) !important;
|
|
144
149
|
}
|
|
145
150
|
.aplus-sortable-item-meta-left {
|
|
146
151
|
flex: 1;
|
|
@@ -170,7 +175,7 @@
|
|
|
170
175
|
margin-left: 16px;
|
|
171
176
|
}
|
|
172
177
|
.aplus-sortable-item-meta-action-icon:hover {
|
|
173
|
-
color: var(--
|
|
178
|
+
color: var(--ap-color-primary);
|
|
174
179
|
}
|
|
175
180
|
.aplus-sortable-item .is-hidden {
|
|
176
181
|
display: none;
|
|
@@ -183,28 +188,29 @@
|
|
|
183
188
|
.aplus-column-setting-sorter-section-title {
|
|
184
189
|
font-size: 12px;
|
|
185
190
|
line-height: 20px;
|
|
186
|
-
color:
|
|
191
|
+
color: var(--ap-text-color-3);
|
|
187
192
|
padding: 2px 8px;
|
|
188
193
|
margin: 4px;
|
|
189
194
|
}
|
|
190
195
|
.aplus-column-setting-sorter-header {
|
|
191
|
-
padding:
|
|
196
|
+
padding: 12px 20px;
|
|
192
197
|
}
|
|
193
198
|
.aplus-column-setting-sorter-header-title {
|
|
194
199
|
box-sizing: border-box;
|
|
195
200
|
margin: 0;
|
|
196
201
|
padding: 0;
|
|
202
|
+
color: #182948;
|
|
197
203
|
font-size: 12px;
|
|
198
204
|
font-family: inherit;
|
|
199
|
-
line-height:
|
|
205
|
+
line-height: 18px;
|
|
200
206
|
list-style: none;
|
|
201
207
|
font-weight: bold;
|
|
202
|
-
color:
|
|
208
|
+
color: var(--ap-text-color-2);
|
|
203
209
|
}
|
|
204
210
|
.aplus-column-setting-sorter-content {
|
|
205
211
|
flex: 1;
|
|
206
212
|
overflow-y: auto;
|
|
207
|
-
padding: 8px 12px
|
|
213
|
+
padding: 8px 12px 0px 8px;
|
|
208
214
|
}
|
|
209
215
|
.aplus-ap-table-paragraph-ellipsis {
|
|
210
216
|
display: flex;
|
|
@@ -229,7 +235,7 @@
|
|
|
229
235
|
flex-shrink: 0;
|
|
230
236
|
margin-left: 8px;
|
|
231
237
|
cursor: pointer;
|
|
232
|
-
color: var(--ap-
|
|
238
|
+
color: var(--ap-color-link);
|
|
233
239
|
}
|
|
234
240
|
.aplus-ap-form-item-group .ant-form-item-control .ant-picker {
|
|
235
241
|
display: flex;
|
|
@@ -242,14 +248,14 @@
|
|
|
242
248
|
}
|
|
243
249
|
.aplus-ap-form-item--bordered {
|
|
244
250
|
box-sizing: border-box;
|
|
245
|
-
border: 1px solid var(--ap-
|
|
251
|
+
border: 1px solid var(--ap-border-color-base);
|
|
246
252
|
border-radius: 4px;
|
|
247
253
|
padding-inline: 8px;
|
|
248
254
|
}
|
|
249
255
|
.aplus-ap-form-item--bordered .ant-input-affix-wrapper {
|
|
250
256
|
padding: 0;
|
|
251
257
|
}
|
|
252
|
-
.aplus-ap-form-item--bordered:has(.aplus-batch-input-group) .ant-input-affix-wrapper {
|
|
258
|
+
.aplus-ap-form-item--bordered:has(.aplus-batch-input-group):has(.ant-select) .ant-input-affix-wrapper {
|
|
253
259
|
padding-right: 8px;
|
|
254
260
|
}
|
|
255
261
|
.aplus-ap-form-item--bordered .ant-input {
|
|
@@ -274,6 +280,9 @@
|
|
|
274
280
|
.aplus-ap-form-item--bordered .ant-select-single .ant-select-selector {
|
|
275
281
|
height: 30px !important;
|
|
276
282
|
}
|
|
283
|
+
.aplus-ap-form-item--bordered:has(.ant-input-number) {
|
|
284
|
+
padding-right: 0;
|
|
285
|
+
}
|
|
277
286
|
.aplus-ap-form-item--bordered:has(.ant-select) {
|
|
278
287
|
padding-right: 0px;
|
|
279
288
|
}
|
|
@@ -291,17 +300,17 @@
|
|
|
291
300
|
min-height: 30px;
|
|
292
301
|
}
|
|
293
302
|
.aplus-ap-form-item--bordered:hover {
|
|
294
|
-
border-color: var(--ap-
|
|
303
|
+
border-color: var(--ap-hover-color-base);
|
|
295
304
|
}
|
|
296
305
|
.aplus-ap-form-item--bordered:focus {
|
|
297
|
-
border-color: var(--ap-
|
|
306
|
+
border-color: var(--ap-active-color-base);
|
|
298
307
|
box-shadow: 0 0 0 2px var(--ap-form-bordered-shadow-color, rgba(5, 155, 255, 0.1));
|
|
299
308
|
}
|
|
300
309
|
.aplus-ap-form-item--bordered .aplus-batch-input-group-popover-input__popover {
|
|
301
310
|
width: calc(100% + 12px);
|
|
302
311
|
}
|
|
303
312
|
.aplus-ap-form-item--focused {
|
|
304
|
-
border-color: var(--ap-
|
|
313
|
+
border-color: var(--ap-active-color-base);
|
|
305
314
|
box-shadow: 0 0 0 2px var(--ap-form-bordered-shadow-color, rgba(5, 155, 255, 0.1));
|
|
306
315
|
}
|
|
307
316
|
.aplus-ap-form-item .ant-form-show-help .ant-form-item-explain-error {
|
|
@@ -370,8 +379,9 @@
|
|
|
370
379
|
color: #182948;
|
|
371
380
|
font-size: 12px;
|
|
372
381
|
font-family: inherit;
|
|
373
|
-
line-height:
|
|
382
|
+
line-height: 18px;
|
|
374
383
|
list-style: none;
|
|
384
|
+
color: var(--ap-text-color-2);
|
|
375
385
|
font-size: 14px;
|
|
376
386
|
font-weight: 700;
|
|
377
387
|
display: inline-block;
|
|
@@ -384,9 +394,9 @@
|
|
|
384
394
|
color: #182948;
|
|
385
395
|
font-size: 12px;
|
|
386
396
|
font-family: inherit;
|
|
387
|
-
line-height:
|
|
397
|
+
line-height: 18px;
|
|
388
398
|
list-style: none;
|
|
389
|
-
color:
|
|
399
|
+
color: var(--ap-text-color-3);
|
|
390
400
|
}
|
|
391
401
|
.aplus-search-form-sorter-header-action-wrapper {
|
|
392
402
|
padding: 8px;
|
|
@@ -400,9 +410,9 @@
|
|
|
400
410
|
color: #182948;
|
|
401
411
|
font-size: 12px;
|
|
402
412
|
font-family: inherit;
|
|
403
|
-
line-height:
|
|
413
|
+
line-height: 18px;
|
|
404
414
|
list-style: none;
|
|
405
|
-
color:
|
|
415
|
+
color: var(--ap-color-link);
|
|
406
416
|
}
|
|
407
417
|
.aplus-search-form-sorter-sorter-wrapper {
|
|
408
418
|
display: flex;
|
|
@@ -418,7 +428,7 @@
|
|
|
418
428
|
padding-inline: 4px;
|
|
419
429
|
}
|
|
420
430
|
.aplus-search-form-sorter-sorter-item > div {
|
|
421
|
-
border: 1px solid
|
|
431
|
+
border: 1px solid var(--ap-color-bg);
|
|
422
432
|
border-radius: 4px;
|
|
423
433
|
padding: 8px;
|
|
424
434
|
display: flex;
|
|
@@ -426,11 +436,11 @@
|
|
|
426
436
|
background-color: #fff;
|
|
427
437
|
}
|
|
428
438
|
.aplus-search-form-sorter-sorter-item > div:hover {
|
|
429
|
-
border-color: var(--
|
|
439
|
+
border-color: var(--ap-color-primary);
|
|
430
440
|
cursor: pointer;
|
|
431
441
|
}
|
|
432
442
|
.aplus-search-form-sorter-sorter-item > div:hover .aplus-search-form-sorter-sorter-item-holder {
|
|
433
|
-
color: var(--
|
|
443
|
+
color: var(--ap-color-primary) !important;
|
|
434
444
|
}
|
|
435
445
|
.aplus-search-form-sorter-sorter-item--hidden {
|
|
436
446
|
display: none;
|
|
@@ -442,9 +452,10 @@
|
|
|
442
452
|
color: #182948;
|
|
443
453
|
font-size: 12px;
|
|
444
454
|
font-family: inherit;
|
|
445
|
-
line-height:
|
|
455
|
+
line-height: 18px;
|
|
446
456
|
list-style: none;
|
|
447
457
|
padding-left: 4px;
|
|
458
|
+
color: var(--ap-text-color-2);
|
|
448
459
|
max-width: 100%;
|
|
449
460
|
white-space: nowrap;
|
|
450
461
|
overflow: hidden;
|
|
@@ -487,8 +498,8 @@
|
|
|
487
498
|
font-size: 0px;
|
|
488
499
|
}
|
|
489
500
|
.aplus-ap-form-search-form-trigger-btn-active {
|
|
490
|
-
color: var(--ap-
|
|
491
|
-
border-color: var(--ap-
|
|
501
|
+
color: var(--ap-hover-color-base);
|
|
502
|
+
border-color: var(--ap-hover-color-base);
|
|
492
503
|
z-index: 1;
|
|
493
504
|
}
|
|
494
505
|
.aplus-ap-form-search-form-column-setting-trigger-wrapper {
|
|
@@ -517,7 +528,7 @@
|
|
|
517
528
|
padding-inline: 12px;
|
|
518
529
|
}
|
|
519
530
|
.aplus-ap-form-search-form-action-btn-reset {
|
|
520
|
-
background-color:
|
|
531
|
+
background-color: var(--ap-color-bg);
|
|
521
532
|
}
|
|
522
533
|
.aplus-ap-form-item-text-group-compact .ant-select-focused {
|
|
523
534
|
z-index: 1;
|
|
@@ -600,25 +611,25 @@
|
|
|
600
611
|
color: #182948;
|
|
601
612
|
font-size: 12px;
|
|
602
613
|
font-family: inherit;
|
|
603
|
-
line-height:
|
|
614
|
+
line-height: 18px;
|
|
604
615
|
list-style: none;
|
|
605
616
|
display: inline-block;
|
|
606
617
|
cursor: pointer;
|
|
607
618
|
}
|
|
608
619
|
.aplus-action-item--primary {
|
|
609
|
-
color: var(--ap-
|
|
620
|
+
color: var(--ap-color-link);
|
|
610
621
|
}
|
|
611
622
|
.aplus-action-item--primary:not(.aplus-action-item--disabled):hover {
|
|
612
|
-
color: var(--ap-
|
|
623
|
+
color: var(--ap-color-link-hover);
|
|
613
624
|
}
|
|
614
625
|
.aplus-action-item--success {
|
|
615
|
-
color: var(--ap-
|
|
626
|
+
color: var(--ap-color-success);
|
|
616
627
|
}
|
|
617
628
|
.aplus-action-item--error {
|
|
618
|
-
color: var(--ap-
|
|
629
|
+
color: var(--ap-color-error);
|
|
619
630
|
}
|
|
620
631
|
.aplus-action-item--warn {
|
|
621
|
-
color: var(--ap-
|
|
632
|
+
color: var(--ap-color-warn);
|
|
622
633
|
}
|
|
623
634
|
.aplus-action-item--loading {
|
|
624
635
|
opacity: 0.35;
|
|
@@ -629,9 +640,20 @@
|
|
|
629
640
|
margin-right: 4px;
|
|
630
641
|
}
|
|
631
642
|
.aplus-action-item--disabled {
|
|
632
|
-
color: #CCE2FF;
|
|
633
643
|
cursor: not-allowed;
|
|
634
644
|
}
|
|
645
|
+
.aplus-action-item--primary.aplus-action-item--disabled {
|
|
646
|
+
color: var(--ap-color-link-disabled);
|
|
647
|
+
}
|
|
648
|
+
.aplus-action-item--success.aplus-action-item--disabled {
|
|
649
|
+
color: var(--ap-color-success-disabled);
|
|
650
|
+
}
|
|
651
|
+
.aplus-action-item--error.aplus-action-item--disabled {
|
|
652
|
+
color: var(--ap-color-error-disabled);
|
|
653
|
+
}
|
|
654
|
+
.aplus-action-item--warn.aplus-action-item--disabled {
|
|
655
|
+
color: var(--ap-color-warn-disabled);
|
|
656
|
+
}
|
|
635
657
|
.aplus-action-item-dropdown__item .aplus-action-item {
|
|
636
658
|
width: 100%;
|
|
637
659
|
}
|
|
@@ -697,7 +719,7 @@
|
|
|
697
719
|
height: 10px;
|
|
698
720
|
}
|
|
699
721
|
.aplus-ap-table ::-webkit-scrollbar-thumb {
|
|
700
|
-
background-color: var(--
|
|
722
|
+
background-color: var(--ap-scrollbar-thumb-color-base);
|
|
701
723
|
background-clip: content-box;
|
|
702
724
|
border: 1px solid transparent;
|
|
703
725
|
border-radius: 4px;
|
|
@@ -708,12 +730,15 @@
|
|
|
708
730
|
}
|
|
709
731
|
.aplus-ap-table ::-webkit-scrollbar-thumb:hover,
|
|
710
732
|
.aplus-ap-table ::-webkit-scrollbar-thumb:active {
|
|
711
|
-
background-color: var(--
|
|
733
|
+
background-color: var(--ap-scrollbar-thumb-color-hover);
|
|
712
734
|
}
|
|
713
735
|
.aplus-ap-table-wrapper {
|
|
714
|
-
padding: 8px
|
|
736
|
+
padding: 8px;
|
|
715
737
|
background-color: #fff;
|
|
716
738
|
}
|
|
739
|
+
.aplus-ap-table-wrapper:has(.ant-pagination) {
|
|
740
|
+
padding-bottom: 0;
|
|
741
|
+
}
|
|
717
742
|
.aplus-ap-table-adaptive {
|
|
718
743
|
height: 100%;
|
|
719
744
|
display: flex;
|
|
@@ -754,16 +779,24 @@
|
|
|
754
779
|
flex-direction: column;
|
|
755
780
|
}
|
|
756
781
|
.aplus-ap-table__table-wrapper-card {
|
|
757
|
-
padding: 8px
|
|
782
|
+
padding: 8px;
|
|
758
783
|
border-radius: 4px;
|
|
759
784
|
background-color: #fff;
|
|
760
785
|
overflow: hidden;
|
|
761
786
|
}
|
|
762
|
-
.aplus-ap-
|
|
763
|
-
|
|
787
|
+
.aplus-ap-table__table-wrapper-card:has(.ant-pagination) {
|
|
788
|
+
padding-bottom: 0;
|
|
764
789
|
}
|
|
765
|
-
.aplus-ap-table-table .ant-pagination
|
|
790
|
+
.aplus-ap-table-table ul.ant-table-pagination.ant-pagination {
|
|
791
|
+
margin-block: 8px;
|
|
792
|
+
align-items: center;
|
|
793
|
+
}
|
|
794
|
+
.aplus-ap-table-table ul.ant-table-pagination.ant-pagination .ant-pagination-total-text {
|
|
766
795
|
flex: 1;
|
|
796
|
+
height: unset;
|
|
797
|
+
line-height: 18px;
|
|
798
|
+
display: flex;
|
|
799
|
+
align-items: center;
|
|
767
800
|
}
|
|
768
801
|
.aplus-ap-table-table tr > th.ant-table-cell {
|
|
769
802
|
background-color: var(--ap-table-header-bg, #F2F6F9);
|
|
@@ -808,13 +841,13 @@
|
|
|
808
841
|
margin-bottom: 0;
|
|
809
842
|
}
|
|
810
843
|
.aplus-ap-table-pagination-count-text {
|
|
811
|
-
color: var(--ap-
|
|
844
|
+
color: var(--ap-text-color-2);
|
|
812
845
|
}
|
|
813
846
|
.aplus-ap-table-pagination--total-right {
|
|
814
847
|
padding-left: 12px;
|
|
815
848
|
}
|
|
816
849
|
.aplus-ap-table-pagination-total-wrapper {
|
|
817
|
-
color: var(--ap-
|
|
850
|
+
color: var(--ap-text-color-1);
|
|
818
851
|
}
|
|
819
852
|
.aplus-ap-table-header {
|
|
820
853
|
padding-bottom: 8px;
|
|
@@ -841,7 +874,7 @@
|
|
|
841
874
|
flex: 1;
|
|
842
875
|
}
|
|
843
876
|
.aplus-ap-table-setting-trigger-button {
|
|
844
|
-
color: var(--ap-
|
|
877
|
+
color: var(--ap-text-color-3);
|
|
845
878
|
}
|
|
846
879
|
.aplus-ap-table-setting-trigger-button:hover {
|
|
847
880
|
color: unset;
|
|
@@ -861,38 +894,40 @@
|
|
|
861
894
|
height: 100%;
|
|
862
895
|
}
|
|
863
896
|
.aplus-ap-table-modal--table-layout.complex-layout {
|
|
897
|
+
height: 100%;
|
|
864
898
|
position: relative;
|
|
865
899
|
}
|
|
866
|
-
.aplus-ap-table-modal--table-layout.complex-layout::before {
|
|
867
|
-
content: '';
|
|
868
|
-
width: calc(100% + 40px);
|
|
869
|
-
height: 1px;
|
|
870
|
-
background-color: #dee4ed;
|
|
871
|
-
position: absolute;
|
|
872
|
-
left: -20px;
|
|
873
|
-
bottom: 0px;
|
|
874
|
-
}
|
|
875
900
|
.aplus-ap-table-modal--table-layout-left {
|
|
876
901
|
width: calc(100% - 410px);
|
|
877
902
|
padding-right: 20px;
|
|
878
|
-
padding-bottom: 16px;
|
|
879
903
|
box-sizing: border-box;
|
|
904
|
+
display: flex;
|
|
905
|
+
flex-direction: column;
|
|
906
|
+
}
|
|
907
|
+
.aplus-ap-table-modal--table-layout-left-content {
|
|
908
|
+
flex: 1;
|
|
909
|
+
}
|
|
910
|
+
.aplus-ap-table-modal--table-layout-left-content .ant-table-body {
|
|
911
|
+
height: 100%;
|
|
880
912
|
}
|
|
881
913
|
.aplus-ap-table-modal--table-layout-right {
|
|
882
914
|
width: 410px;
|
|
883
915
|
padding-left: 20px;
|
|
884
916
|
position: relative;
|
|
917
|
+
display: flex;
|
|
918
|
+
flex-direction: column;
|
|
885
919
|
}
|
|
886
920
|
.aplus-ap-table-modal--table-layout-right-content {
|
|
887
|
-
|
|
921
|
+
flex: 1;
|
|
922
|
+
max-height: 540px;
|
|
888
923
|
overflow-y: auto;
|
|
889
924
|
}
|
|
890
925
|
.aplus-ap-table-modal--table-layout-right::before {
|
|
891
926
|
content: '';
|
|
892
|
-
height: calc(100% +
|
|
927
|
+
height: calc(100% + 16px);
|
|
893
928
|
width: 1px;
|
|
894
929
|
background-color: #dee4ed;
|
|
895
930
|
position: absolute;
|
|
896
931
|
left: 0px;
|
|
897
|
-
top: -
|
|
932
|
+
top: -16px;
|
|
898
933
|
}
|
|
@@ -11,42 +11,44 @@
|
|
|
11
11
|
justify-content: space-between;
|
|
12
12
|
height: 100%;
|
|
13
13
|
&.complex-layout {
|
|
14
|
+
height: 100%;
|
|
14
15
|
position: relative;
|
|
15
|
-
&::before {
|
|
16
|
-
content: '';
|
|
17
|
-
width: calc(100% + 40px);
|
|
18
|
-
height: 1px;
|
|
19
|
-
background-color: @border-color;
|
|
20
|
-
position: absolute;
|
|
21
|
-
left: -20px;
|
|
22
|
-
bottom: 0px;
|
|
23
|
-
}
|
|
24
16
|
}
|
|
25
17
|
|
|
26
18
|
|
|
27
19
|
&-left {
|
|
28
20
|
width: calc(100% - 410px);
|
|
29
21
|
padding-right: 20px;
|
|
30
|
-
padding-bottom: 16px;
|
|
31
22
|
box-sizing: border-box;
|
|
23
|
+
display: flex;
|
|
24
|
+
flex-direction: column;
|
|
25
|
+
&-content {
|
|
26
|
+
flex: 1;
|
|
27
|
+
.ant-table-body {
|
|
28
|
+
height: 100%;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
32
31
|
}
|
|
33
32
|
|
|
34
33
|
&-right {
|
|
35
34
|
width: 410px;
|
|
36
35
|
padding-left: 20px;
|
|
37
36
|
position: relative;
|
|
37
|
+
display: flex;
|
|
38
|
+
flex-direction: column;
|
|
38
39
|
&-content {
|
|
39
|
-
|
|
40
|
+
flex: 1;
|
|
41
|
+
max-height: 540px;
|
|
40
42
|
overflow-y: auto;
|
|
41
43
|
}
|
|
42
44
|
&::before {
|
|
43
45
|
content: '';
|
|
44
|
-
height: calc(100% +
|
|
46
|
+
height: calc(100% + 16px);
|
|
45
47
|
width: 1px;
|
|
46
48
|
background-color: @border-color;
|
|
47
49
|
position: absolute;
|
|
48
50
|
left: 0px;
|
|
49
|
-
top:-
|
|
51
|
+
top:-16px;
|
|
50
52
|
}
|
|
51
53
|
}
|
|
52
54
|
}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
color: #182948;
|
|
6
6
|
font-size: 12px;
|
|
7
7
|
font-family: inherit;
|
|
8
|
-
line-height:
|
|
8
|
+
line-height: 18px;
|
|
9
9
|
list-style: none;
|
|
10
10
|
}
|
|
11
11
|
.reset-scrollbar ::-webkit-scrollbar {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
height: 10px;
|
|
14
14
|
}
|
|
15
15
|
.reset-scrollbar ::-webkit-scrollbar-thumb {
|
|
16
|
-
background-color: var(--
|
|
16
|
+
background-color: var(--ap-scrollbar-thumb-color-base);
|
|
17
17
|
background-clip: content-box;
|
|
18
18
|
border: 1px solid transparent;
|
|
19
19
|
border-radius: 4px;
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
}
|
|
25
25
|
.reset-scrollbar ::-webkit-scrollbar-thumb:hover,
|
|
26
26
|
.reset-scrollbar ::-webkit-scrollbar-thumb:active {
|
|
27
|
-
background-color: var(--
|
|
27
|
+
background-color: var(--ap-scrollbar-thumb-color-hover);
|
|
28
28
|
}
|
|
29
29
|
.clear-fix::before {
|
|
30
30
|
display: table;
|