@aplus-frontend/ui 0.6.0-beta.8 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/index.mjs +307 -289
- 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 +9 -7
- package/es/src/ap-form/drawer-form/index.vue.mjs +58 -49
- package/es/src/ap-form/interface.d.ts +13 -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-filter.vue.d.ts +131 -2
- package/es/src/ap-form/search-form/components/popover-filter.vue2.mjs +40 -36
- package/es/src/ap-form/search-form/components/popover-sorter/index.vue2.mjs +79 -71
- 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 +2 -2
- package/es/src/ap-form/search-form/index.vue.mjs +99 -97
- 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 +16 -0
- package/es/src/ap-grid/hooks/use-table-style.mjs +26 -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 +25 -6
- 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/ap-tag/ap-tag-group.vue.mjs +32 -28
- 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 +92 -71
- package/es/src/business/ap-export-group/ApExportGroup.vue2.mjs +18 -17
- package/es/src/business/ap-input-radio/ApInputRadio.vue2.mjs +27 -25
- 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/constans.mjs +1 -1
- 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/main-button-content.vue2.mjs +55 -51
- 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-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 +9 -7
- package/lib/src/ap-form/drawer-form/index.vue.js +1 -1
- package/lib/src/ap-form/interface.d.ts +13 -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-filter.vue.d.ts +131 -2
- package/lib/src/ap-form/search-form/components/popover-filter.vue2.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 +2 -2
- 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 +16 -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 +25 -6
- 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/ap-tag/ap-tag-group.vue.js +1 -1
- 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-export-group/ApExportGroup.vue2.js +1 -1
- package/lib/src/business/ap-input-radio/ApInputRadio.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/constans.js +1 -1
- 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/main-button-content.vue2.js +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 -631
- 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 -34
- package/theme/antd-global-overwrite/admin/modal.less +20 -38
- 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 +93 -679
- 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 +18 -39
- package/theme/antd-global-overwrite/aplus/modal.less +19 -45
- 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 +4 -4
- package/theme/ap-action/item.css +23 -12
- package/theme/ap-action/item.less +18 -6
- package/theme/ap-appendix/ap-appendix.css +13 -13
- package/theme/ap-appendix/ap-appendix.less +8 -8
- package/theme/ap-attachment/ap-attachment.css +6 -5
- package/theme/ap-attachment/ap-attachment.less +2 -2
- package/theme/ap-batch-action/ap-batch-action.css +7 -7
- package/theme/ap-batch-action/ap-batch-action.less +3 -3
- package/theme/ap-button/ap-button.css +4 -4
- package/theme/ap-card/ap-card.css +5 -5
- 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 +10 -8
- package/theme/ap-descriptions/ap-descriptions.less +6 -4
- package/theme/ap-download/ap-download.css +7 -7
- 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 +5 -4
- package/theme/ap-expand-alert/ap-expand-alert.less +2 -1
- package/theme/ap-field/checkbox.css +4 -4
- package/theme/ap-field/index.css +4 -4
- package/theme/ap-field/number.css +4 -4
- package/theme/ap-field/radio.css +4 -4
- package/theme/ap-field/text-area.css +4 -4
- package/theme/ap-form/ap-form-item-group.css +4 -4
- package/theme/ap-form/ap-form-item.css +12 -9
- package/theme/ap-form/ap-form-item.less +8 -5
- package/theme/ap-form/drawer-form.css +4 -4
- package/theme/ap-form/index.css +34 -22
- package/theme/ap-form/item-text-group.css +4 -4
- package/theme/ap-form/item-text.css +4 -4
- package/theme/ap-form/modal-form.css +4 -4
- package/theme/ap-form/search-form-sorter.css +17 -16
- package/theme/ap-form/search-form-sorter.less +5 -4
- package/theme/ap-form/search-form.css +34 -22
- package/theme/ap-form/search-form.less +9 -1
- package/theme/ap-grid/editable.css +4 -4
- package/theme/ap-grid/index.css +83 -44
- package/theme/ap-grid/index.less +26 -9
- package/theme/ap-group-search/ap-extension-select.css +4 -4
- package/theme/ap-group-search/ap-group-search.css +4 -4
- package/theme/ap-group-search/ap-popover-select.css +4 -4
- package/theme/ap-image/ap-image.css +4 -4
- package/theme/ap-input-radio/ap-input-radio.css +4 -4
- package/theme/ap-label/ap-label.css +4 -4
- package/theme/ap-ladder/ap-ladder.css +7 -6
- package/theme/ap-ladder/ap-ladder.less +1 -0
- package/theme/ap-layout/ap-info-layout.css +4 -4
- package/theme/ap-list/index.css +4 -4
- package/theme/ap-product-info/ap-product-info.css +24 -34
- 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 +6 -6
- package/theme/ap-size-input/ap-size-input.css +4 -4
- package/theme/ap-status/ap-status.css +5 -5
- package/theme/ap-status/ap-status.less +1 -1
- package/theme/ap-summary/index.css +4 -4
- package/theme/ap-table/ap-table-index.css +4 -4
- package/theme/ap-table/ap-table-paragraph-ellipsis.css +5 -5
- package/theme/ap-table/ap-table-paragraph-ellipsis.less +1 -1
- package/theme/ap-table/ap-table.css +90 -52
- package/theme/ap-table/ap-table.less +19 -7
- package/theme/ap-table/setting/index.css +19 -15
- package/theme/ap-table/setting/modal.css +11 -7
- package/theme/ap-table/setting/modal.less +5 -1
- package/theme/ap-table/setting/select-group.css +4 -4
- package/theme/ap-table/setting/sortable-item-meta.css +6 -6
- package/theme/ap-table/setting/sortable-item-meta.less +2 -2
- package/theme/ap-table/setting/sortable-item.css +4 -4
- package/theme/ap-table/setting/sorter.css +10 -10
- package/theme/ap-table/setting/sorter.less +4 -4
- package/theme/ap-table-modal/index.css +105 -65
- package/theme/ap-table-modal/index.less +15 -13
- package/theme/ap-tag/ap-tag-group.css +6 -6
- package/theme/ap-tag/ap-tag-group.less +2 -3
- package/theme/ap-tag/ap-tag.css +10 -10
- package/theme/ap-tag/ap-tag.less +4 -4
- package/theme/ap-title/ap-title.css +9 -7
- package/theme/ap-title/ap-title.less +5 -3
- package/theme/ap-upload/index.css +9 -9
- package/theme/ap-upload/multiple-file.css +5 -5
- package/theme/ap-upload/multiple-file.less +1 -1
- package/theme/ap-upload/picture.css +6 -6
- package/theme/ap-upload/picture.less +2 -2
- package/theme/ap-upload/single-file.css +6 -6
- package/theme/ap-upload/single-file.less +2 -2
- package/theme/ap-upload/upload.css +4 -4
- package/theme/ap-upload-single/index.css +8 -8
- package/theme/ap-upload-single/index.less +4 -4
- package/theme/ap-view/ap-view.css +11 -11
- package/theme/ap-view/ap-view.less +7 -7
- package/theme/batch-input-group/index.css +7 -6
- package/theme/batch-input-group/popover-input.css +7 -6
- package/theme/batch-input-group/popover-input.less +3 -2
- package/theme/check-card/index.css +15 -15
- package/theme/check-card/index.less +5 -5
- package/theme/editable-table/index.css +53 -30
- package/theme/full-screen/index.css +4 -4
- package/theme/index.css +382 -270
- package/theme/index.less +3 -0
- package/theme/mask/index.css +4 -4
- package/theme/mixins/config.less +4 -4
- package/theme/mixins/mixins.css +4 -4
- package/theme/mixins/mixins.less +2 -2
- package/theme/scroll-bar/index.css +4 -4
- package/theme/scroll-view/index.css +4 -4
- package/theme/splitter/index.css +10 -10
- package/theme/splitter/index.less +1 -1
- package/theme/text/group.css +4 -4
- package/theme/text/index.css +10 -10
- package/theme/text/index.less +4 -4
- package/theme/ui-mode.css +51 -83
- package/theme/ui-mode.less +99 -83
- package/theme/work-order-modal/index.css +4 -4
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
box-sizing: border-box;
|
|
3
3
|
margin: 0;
|
|
4
4
|
padding: 0;
|
|
5
|
-
color:
|
|
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;
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
box-sizing: border-box;
|
|
3
3
|
margin: 0;
|
|
4
4
|
padding: 0;
|
|
5
|
-
color:
|
|
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;
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
box-sizing: border-box;
|
|
3
3
|
margin: 0;
|
|
4
4
|
padding: 0;
|
|
5
|
-
color:
|
|
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;
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
flex-shrink: 0;
|
|
68
68
|
margin-left: 8px;
|
|
69
69
|
cursor: pointer;
|
|
70
|
-
color: var(--ap-
|
|
70
|
+
color: var(--ap-color-link);
|
|
71
71
|
}
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
box-sizing: border-box;
|
|
3
3
|
margin: 0;
|
|
4
4
|
padding: 0;
|
|
5
|
-
color:
|
|
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,15 +61,16 @@
|
|
|
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;
|
|
67
68
|
margin: 0;
|
|
68
69
|
padding: 0;
|
|
69
|
-
color:
|
|
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;
|
|
@@ -95,7 +96,10 @@
|
|
|
95
96
|
flex-wrap: nowrap;
|
|
96
97
|
justify-content: space-between;
|
|
97
98
|
align-items: center;
|
|
98
|
-
padding:
|
|
99
|
+
padding: 8px;
|
|
100
|
+
}
|
|
101
|
+
.aplus-ap-column-setting-left__header-tips {
|
|
102
|
+
color: var(--ap-text-color-3);
|
|
99
103
|
}
|
|
100
104
|
.aplus-ap-column-setting-left__content {
|
|
101
105
|
flex: 1;
|
|
@@ -140,7 +144,7 @@
|
|
|
140
144
|
display: block;
|
|
141
145
|
}
|
|
142
146
|
.aplus-sortable-item-meta:hover .aplus-sortable-item-meta-left__holder {
|
|
143
|
-
color: var(--
|
|
147
|
+
color: var(--ap-color-primary) !important;
|
|
144
148
|
}
|
|
145
149
|
.aplus-sortable-item-meta-left {
|
|
146
150
|
flex: 1;
|
|
@@ -170,7 +174,7 @@
|
|
|
170
174
|
margin-left: 16px;
|
|
171
175
|
}
|
|
172
176
|
.aplus-sortable-item-meta-action-icon:hover {
|
|
173
|
-
color: var(--
|
|
177
|
+
color: var(--ap-color-primary);
|
|
174
178
|
}
|
|
175
179
|
.aplus-sortable-item .is-hidden {
|
|
176
180
|
display: none;
|
|
@@ -183,29 +187,29 @@
|
|
|
183
187
|
.aplus-column-setting-sorter-section-title {
|
|
184
188
|
font-size: 12px;
|
|
185
189
|
line-height: 20px;
|
|
186
|
-
color:
|
|
190
|
+
color: var(--ap-text-color-3);
|
|
187
191
|
padding: 2px 8px;
|
|
188
192
|
margin: 4px;
|
|
189
193
|
}
|
|
190
194
|
.aplus-column-setting-sorter-header {
|
|
191
|
-
padding:
|
|
195
|
+
padding: 12px 20px;
|
|
192
196
|
}
|
|
193
197
|
.aplus-column-setting-sorter-header-title {
|
|
194
198
|
box-sizing: border-box;
|
|
195
199
|
margin: 0;
|
|
196
200
|
padding: 0;
|
|
197
|
-
color:
|
|
201
|
+
color: #182948;
|
|
198
202
|
font-size: 12px;
|
|
199
203
|
font-family: inherit;
|
|
200
|
-
line-height:
|
|
204
|
+
line-height: 18px;
|
|
201
205
|
list-style: none;
|
|
202
206
|
font-weight: bold;
|
|
203
|
-
color:
|
|
207
|
+
color: var(--ap-text-color-2);
|
|
204
208
|
}
|
|
205
209
|
.aplus-column-setting-sorter-content {
|
|
206
210
|
flex: 1;
|
|
207
211
|
overflow-y: auto;
|
|
208
|
-
padding: 8px 12px
|
|
212
|
+
padding: 8px 12px 0px 8px;
|
|
209
213
|
}
|
|
210
214
|
.aplus-ap-table-paragraph-ellipsis {
|
|
211
215
|
display: flex;
|
|
@@ -230,7 +234,7 @@
|
|
|
230
234
|
flex-shrink: 0;
|
|
231
235
|
margin-left: 8px;
|
|
232
236
|
cursor: pointer;
|
|
233
|
-
color: var(--ap-
|
|
237
|
+
color: var(--ap-color-link);
|
|
234
238
|
}
|
|
235
239
|
.aplus-ap-form-item-group .ant-form-item-control .ant-picker {
|
|
236
240
|
display: flex;
|
|
@@ -243,14 +247,14 @@
|
|
|
243
247
|
}
|
|
244
248
|
.aplus-ap-form-item--bordered {
|
|
245
249
|
box-sizing: border-box;
|
|
246
|
-
border: 1px solid var(--ap-
|
|
250
|
+
border: 1px solid var(--ap-border-color-base);
|
|
247
251
|
border-radius: 4px;
|
|
248
252
|
padding-inline: 8px;
|
|
249
253
|
}
|
|
250
254
|
.aplus-ap-form-item--bordered .ant-input-affix-wrapper {
|
|
251
255
|
padding: 0;
|
|
252
256
|
}
|
|
253
|
-
.aplus-ap-form-item--bordered:has(.aplus-batch-input-group) .ant-input-affix-wrapper {
|
|
257
|
+
.aplus-ap-form-item--bordered:has(.aplus-batch-input-group):has(.ant-select) .ant-input-affix-wrapper {
|
|
254
258
|
padding-right: 8px;
|
|
255
259
|
}
|
|
256
260
|
.aplus-ap-form-item--bordered .ant-input {
|
|
@@ -275,6 +279,9 @@
|
|
|
275
279
|
.aplus-ap-form-item--bordered .ant-select-single .ant-select-selector {
|
|
276
280
|
height: 30px !important;
|
|
277
281
|
}
|
|
282
|
+
.aplus-ap-form-item--bordered:has(.ant-input-number) {
|
|
283
|
+
padding-right: 0;
|
|
284
|
+
}
|
|
278
285
|
.aplus-ap-form-item--bordered:has(.ant-select) {
|
|
279
286
|
padding-right: 0px;
|
|
280
287
|
}
|
|
@@ -292,17 +299,17 @@
|
|
|
292
299
|
min-height: 30px;
|
|
293
300
|
}
|
|
294
301
|
.aplus-ap-form-item--bordered:hover {
|
|
295
|
-
border-color: var(--ap-
|
|
302
|
+
border-color: var(--ap-hover-color-base);
|
|
296
303
|
}
|
|
297
304
|
.aplus-ap-form-item--bordered:focus {
|
|
298
|
-
border-color: var(--ap-
|
|
305
|
+
border-color: var(--ap-active-color-base);
|
|
299
306
|
box-shadow: 0 0 0 2px var(--ap-form-bordered-shadow-color, rgba(5, 155, 255, 0.1));
|
|
300
307
|
}
|
|
301
308
|
.aplus-ap-form-item--bordered .aplus-batch-input-group-popover-input__popover {
|
|
302
309
|
width: calc(100% + 12px);
|
|
303
310
|
}
|
|
304
311
|
.aplus-ap-form-item--focused {
|
|
305
|
-
border-color: var(--ap-
|
|
312
|
+
border-color: var(--ap-active-color-base);
|
|
306
313
|
box-shadow: 0 0 0 2px var(--ap-form-bordered-shadow-color, rgba(5, 155, 255, 0.1));
|
|
307
314
|
}
|
|
308
315
|
.aplus-ap-form-item .ant-form-show-help .ant-form-item-explain-error {
|
|
@@ -368,10 +375,10 @@
|
|
|
368
375
|
box-sizing: border-box;
|
|
369
376
|
margin: 0;
|
|
370
377
|
padding: 0;
|
|
371
|
-
color:
|
|
378
|
+
color: #182948;
|
|
372
379
|
font-size: 12px;
|
|
373
380
|
font-family: inherit;
|
|
374
|
-
line-height:
|
|
381
|
+
line-height: 18px;
|
|
375
382
|
list-style: none;
|
|
376
383
|
font-size: 14px;
|
|
377
384
|
font-weight: 700;
|
|
@@ -382,12 +389,12 @@
|
|
|
382
389
|
box-sizing: border-box;
|
|
383
390
|
margin: 0;
|
|
384
391
|
padding: 0;
|
|
385
|
-
color:
|
|
392
|
+
color: #182948;
|
|
386
393
|
font-size: 12px;
|
|
387
394
|
font-family: inherit;
|
|
388
|
-
line-height:
|
|
395
|
+
line-height: 18px;
|
|
389
396
|
list-style: none;
|
|
390
|
-
color:
|
|
397
|
+
color: var(--ap-text-color-3);
|
|
391
398
|
}
|
|
392
399
|
.aplus-search-form-sorter-header-action-wrapper {
|
|
393
400
|
padding: 8px;
|
|
@@ -398,12 +405,12 @@
|
|
|
398
405
|
box-sizing: border-box;
|
|
399
406
|
margin: 0;
|
|
400
407
|
padding: 0;
|
|
401
|
-
color:
|
|
408
|
+
color: #182948;
|
|
402
409
|
font-size: 12px;
|
|
403
410
|
font-family: inherit;
|
|
404
|
-
line-height:
|
|
411
|
+
line-height: 18px;
|
|
405
412
|
list-style: none;
|
|
406
|
-
color:
|
|
413
|
+
color: var(--ap-color-link);
|
|
407
414
|
}
|
|
408
415
|
.aplus-search-form-sorter-sorter-wrapper {
|
|
409
416
|
display: flex;
|
|
@@ -424,13 +431,14 @@
|
|
|
424
431
|
padding: 8px;
|
|
425
432
|
display: flex;
|
|
426
433
|
align-items: center;
|
|
434
|
+
background-color: #fff;
|
|
427
435
|
}
|
|
428
436
|
.aplus-search-form-sorter-sorter-item > div:hover {
|
|
429
|
-
border-color: var(--
|
|
437
|
+
border-color: var(--ap-color-primary);
|
|
430
438
|
cursor: pointer;
|
|
431
439
|
}
|
|
432
440
|
.aplus-search-form-sorter-sorter-item > div:hover .aplus-search-form-sorter-sorter-item-holder {
|
|
433
|
-
color: var(--
|
|
441
|
+
color: var(--ap-color-primary) !important;
|
|
434
442
|
}
|
|
435
443
|
.aplus-search-form-sorter-sorter-item--hidden {
|
|
436
444
|
display: none;
|
|
@@ -439,10 +447,10 @@
|
|
|
439
447
|
box-sizing: border-box;
|
|
440
448
|
margin: 0;
|
|
441
449
|
padding: 0;
|
|
442
|
-
color:
|
|
450
|
+
color: #182948;
|
|
443
451
|
font-size: 12px;
|
|
444
452
|
font-family: inherit;
|
|
445
|
-
line-height:
|
|
453
|
+
line-height: 18px;
|
|
446
454
|
list-style: none;
|
|
447
455
|
padding-left: 4px;
|
|
448
456
|
max-width: 100%;
|
|
@@ -483,6 +491,14 @@
|
|
|
483
491
|
.aplus-ap-form-search-form__popover-footer button.ant-btn {
|
|
484
492
|
padding-inline: 16px;
|
|
485
493
|
}
|
|
494
|
+
.aplus-ap-form-search-form-trigger-btn {
|
|
495
|
+
font-size: 0px;
|
|
496
|
+
}
|
|
497
|
+
.aplus-ap-form-search-form-trigger-btn-active {
|
|
498
|
+
color: var(--ap-hover-color-base);
|
|
499
|
+
border-color: var(--ap-hover-color-base);
|
|
500
|
+
z-index: 1;
|
|
501
|
+
}
|
|
486
502
|
.aplus-ap-form-search-form-column-setting-trigger-wrapper {
|
|
487
503
|
flex-shrink: 0;
|
|
488
504
|
}
|
|
@@ -509,7 +525,7 @@
|
|
|
509
525
|
padding-inline: 12px;
|
|
510
526
|
}
|
|
511
527
|
.aplus-ap-form-search-form-action-btn-reset {
|
|
512
|
-
background-color:
|
|
528
|
+
background-color: var(--ap-color-bg);
|
|
513
529
|
}
|
|
514
530
|
.aplus-ap-form-item-text-group-compact .ant-select-focused {
|
|
515
531
|
z-index: 1;
|
|
@@ -589,28 +605,28 @@
|
|
|
589
605
|
box-sizing: border-box;
|
|
590
606
|
margin: 0;
|
|
591
607
|
padding: 0;
|
|
592
|
-
color:
|
|
608
|
+
color: #182948;
|
|
593
609
|
font-size: 12px;
|
|
594
610
|
font-family: inherit;
|
|
595
|
-
line-height:
|
|
611
|
+
line-height: 18px;
|
|
596
612
|
list-style: none;
|
|
597
613
|
display: inline-block;
|
|
598
614
|
cursor: pointer;
|
|
599
615
|
}
|
|
600
616
|
.aplus-action-item--primary {
|
|
601
|
-
color: var(--ap-
|
|
617
|
+
color: var(--ap-color-link);
|
|
602
618
|
}
|
|
603
619
|
.aplus-action-item--primary:not(.aplus-action-item--disabled):hover {
|
|
604
|
-
color: var(--ap-
|
|
620
|
+
color: var(--ap-color-link-hover);
|
|
605
621
|
}
|
|
606
622
|
.aplus-action-item--success {
|
|
607
|
-
color: var(--ap-
|
|
623
|
+
color: var(--ap-color-success);
|
|
608
624
|
}
|
|
609
625
|
.aplus-action-item--error {
|
|
610
|
-
color: var(--ap-
|
|
626
|
+
color: var(--ap-color-error);
|
|
611
627
|
}
|
|
612
628
|
.aplus-action-item--warn {
|
|
613
|
-
color: var(--ap-
|
|
629
|
+
color: var(--ap-color-warn);
|
|
614
630
|
}
|
|
615
631
|
.aplus-action-item--loading {
|
|
616
632
|
opacity: 0.35;
|
|
@@ -621,9 +637,20 @@
|
|
|
621
637
|
margin-right: 4px;
|
|
622
638
|
}
|
|
623
639
|
.aplus-action-item--disabled {
|
|
624
|
-
color: #CCE2FF;
|
|
625
640
|
cursor: not-allowed;
|
|
626
641
|
}
|
|
642
|
+
.aplus-action-item--primary.aplus-action-item--disabled {
|
|
643
|
+
color: var(--ap-color-link-disabled);
|
|
644
|
+
}
|
|
645
|
+
.aplus-action-item--success.aplus-action-item--disabled {
|
|
646
|
+
color: var(--ap-color-success-disabled);
|
|
647
|
+
}
|
|
648
|
+
.aplus-action-item--error.aplus-action-item--disabled {
|
|
649
|
+
color: var(--ap-color-error-disabled);
|
|
650
|
+
}
|
|
651
|
+
.aplus-action-item--warn.aplus-action-item--disabled {
|
|
652
|
+
color: var(--ap-color-warn-disabled);
|
|
653
|
+
}
|
|
627
654
|
.aplus-action-item-dropdown__item .aplus-action-item {
|
|
628
655
|
width: 100%;
|
|
629
656
|
}
|
|
@@ -689,7 +716,7 @@
|
|
|
689
716
|
height: 10px;
|
|
690
717
|
}
|
|
691
718
|
.aplus-ap-table ::-webkit-scrollbar-thumb {
|
|
692
|
-
background-color: var(--
|
|
719
|
+
background-color: var(--ap-scrollbar-thumb-color-base);
|
|
693
720
|
background-clip: content-box;
|
|
694
721
|
border: 1px solid transparent;
|
|
695
722
|
border-radius: 4px;
|
|
@@ -700,12 +727,15 @@
|
|
|
700
727
|
}
|
|
701
728
|
.aplus-ap-table ::-webkit-scrollbar-thumb:hover,
|
|
702
729
|
.aplus-ap-table ::-webkit-scrollbar-thumb:active {
|
|
703
|
-
background-color: var(--
|
|
730
|
+
background-color: var(--ap-scrollbar-thumb-color-hover);
|
|
704
731
|
}
|
|
705
732
|
.aplus-ap-table-wrapper {
|
|
706
|
-
padding: 8px
|
|
733
|
+
padding: 8px;
|
|
707
734
|
background-color: #fff;
|
|
708
735
|
}
|
|
736
|
+
.aplus-ap-table-wrapper:has(.ant-pagination) {
|
|
737
|
+
padding-bottom: 0;
|
|
738
|
+
}
|
|
709
739
|
.aplus-ap-table-adaptive {
|
|
710
740
|
height: 100%;
|
|
711
741
|
display: flex;
|
|
@@ -746,16 +776,24 @@
|
|
|
746
776
|
flex-direction: column;
|
|
747
777
|
}
|
|
748
778
|
.aplus-ap-table__table-wrapper-card {
|
|
749
|
-
padding: 8px
|
|
779
|
+
padding: 8px;
|
|
750
780
|
border-radius: 4px;
|
|
751
781
|
background-color: #fff;
|
|
752
782
|
overflow: hidden;
|
|
753
783
|
}
|
|
754
|
-
.aplus-ap-
|
|
755
|
-
|
|
784
|
+
.aplus-ap-table__table-wrapper-card:has(.ant-pagination) {
|
|
785
|
+
padding-bottom: 0;
|
|
786
|
+
}
|
|
787
|
+
.aplus-ap-table-table ul.ant-table-pagination.ant-pagination {
|
|
788
|
+
margin-block: 8px;
|
|
789
|
+
align-items: center;
|
|
756
790
|
}
|
|
757
|
-
.aplus-ap-table-table .ant-pagination .ant-pagination-total-text {
|
|
791
|
+
.aplus-ap-table-table ul.ant-table-pagination.ant-pagination .ant-pagination-total-text {
|
|
758
792
|
flex: 1;
|
|
793
|
+
height: unset;
|
|
794
|
+
line-height: 18px;
|
|
795
|
+
display: flex;
|
|
796
|
+
align-items: center;
|
|
759
797
|
}
|
|
760
798
|
.aplus-ap-table-table tr > th.ant-table-cell {
|
|
761
799
|
background-color: var(--ap-table-header-bg, #F2F6F9);
|
|
@@ -800,13 +838,13 @@
|
|
|
800
838
|
margin-bottom: 0;
|
|
801
839
|
}
|
|
802
840
|
.aplus-ap-table-pagination-count-text {
|
|
803
|
-
color: var(--ap-
|
|
841
|
+
color: var(--ap-text-color-2);
|
|
804
842
|
}
|
|
805
843
|
.aplus-ap-table-pagination--total-right {
|
|
806
844
|
padding-left: 12px;
|
|
807
845
|
}
|
|
808
846
|
.aplus-ap-table-pagination-total-wrapper {
|
|
809
|
-
color: var(--ap-
|
|
847
|
+
color: var(--ap-text-color-1);
|
|
810
848
|
}
|
|
811
849
|
.aplus-ap-table-header {
|
|
812
850
|
padding-bottom: 8px;
|
|
@@ -833,7 +871,7 @@
|
|
|
833
871
|
flex: 1;
|
|
834
872
|
}
|
|
835
873
|
.aplus-ap-table-setting-trigger-button {
|
|
836
|
-
color: var(--ap-
|
|
874
|
+
color: var(--ap-text-color-3);
|
|
837
875
|
}
|
|
838
876
|
.aplus-ap-table-setting-trigger-button:hover {
|
|
839
877
|
color: unset;
|
|
@@ -15,8 +15,11 @@
|
|
|
15
15
|
.b(ap-table, {
|
|
16
16
|
.reset-scrollbar();
|
|
17
17
|
&-wrapper {
|
|
18
|
-
padding: @spacing
|
|
18
|
+
padding: @spacing;
|
|
19
19
|
background-color: #fff;
|
|
20
|
+
&:has(.ant-pagination) {
|
|
21
|
+
padding-bottom: 0;
|
|
22
|
+
}
|
|
20
23
|
}
|
|
21
24
|
&-adaptive {
|
|
22
25
|
height: 100%;
|
|
@@ -56,16 +59,25 @@
|
|
|
56
59
|
flex-direction: column;
|
|
57
60
|
}
|
|
58
61
|
&__table-wrapper-card {
|
|
59
|
-
padding: @spacing
|
|
62
|
+
padding: @spacing;
|
|
60
63
|
border-radius: @border-radius;
|
|
61
64
|
background-color: #fff;
|
|
62
65
|
overflow: hidden;
|
|
66
|
+
|
|
67
|
+
&:has(.ant-pagination) {
|
|
68
|
+
padding-bottom: 0;
|
|
69
|
+
}
|
|
63
70
|
}
|
|
64
71
|
&-table {
|
|
65
|
-
.ant-pagination {
|
|
66
|
-
margin-
|
|
72
|
+
ul.ant-table-pagination.ant-pagination {
|
|
73
|
+
margin-block: @spacing;
|
|
74
|
+
align-items: center;
|
|
67
75
|
.ant-pagination-total-text {
|
|
68
76
|
flex: 1;
|
|
77
|
+
height: unset;
|
|
78
|
+
line-height: @line-height-base;
|
|
79
|
+
display: flex;
|
|
80
|
+
align-items: center;
|
|
69
81
|
}
|
|
70
82
|
}
|
|
71
83
|
tr > th.ant-table-cell {
|
|
@@ -118,13 +130,13 @@
|
|
|
118
130
|
margin-bottom: 0;
|
|
119
131
|
}
|
|
120
132
|
&-pagination-count-text {
|
|
121
|
-
color: var(--ap-
|
|
133
|
+
color: var(--ap-text-color-2);
|
|
122
134
|
}
|
|
123
135
|
&-pagination--total-right {
|
|
124
136
|
padding-left: 12px;
|
|
125
137
|
}
|
|
126
138
|
&-pagination-total-wrapper {
|
|
127
|
-
color: var(--ap-
|
|
139
|
+
color: var(--ap-text-color-1);
|
|
128
140
|
}
|
|
129
141
|
&-header-wrapper {
|
|
130
142
|
}
|
|
@@ -157,7 +169,7 @@
|
|
|
157
169
|
}
|
|
158
170
|
}
|
|
159
171
|
&-setting-trigger-button {
|
|
160
|
-
color: var(--ap-
|
|
172
|
+
color: var(--ap-text-color-3);
|
|
161
173
|
&:hover {
|
|
162
174
|
color: unset;
|
|
163
175
|
}
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
box-sizing: border-box;
|
|
3
3
|
margin: 0;
|
|
4
4
|
padding: 0;
|
|
5
|
-
color:
|
|
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;
|
|
@@ -49,15 +49,16 @@
|
|
|
49
49
|
flex-direction: row;
|
|
50
50
|
flex-wrap: nowrap;
|
|
51
51
|
height: 100%;
|
|
52
|
+
padding-block-end: 12px;
|
|
52
53
|
}
|
|
53
54
|
.aplus-ap-column-setting-wrapper .aplus-ap-table-table-header__title {
|
|
54
55
|
box-sizing: border-box;
|
|
55
56
|
margin: 0;
|
|
56
57
|
padding: 0;
|
|
57
|
-
color:
|
|
58
|
+
color: #182948;
|
|
58
59
|
font-size: 12px;
|
|
59
60
|
font-family: inherit;
|
|
60
|
-
line-height:
|
|
61
|
+
line-height: 18px;
|
|
61
62
|
list-style: none;
|
|
62
63
|
display: inline-block;
|
|
63
64
|
-webkit-line-clamp: unset;
|
|
@@ -83,7 +84,10 @@
|
|
|
83
84
|
flex-wrap: nowrap;
|
|
84
85
|
justify-content: space-between;
|
|
85
86
|
align-items: center;
|
|
86
|
-
padding:
|
|
87
|
+
padding: 8px;
|
|
88
|
+
}
|
|
89
|
+
.aplus-ap-column-setting-left__header-tips {
|
|
90
|
+
color: var(--ap-text-color-3);
|
|
87
91
|
}
|
|
88
92
|
.aplus-ap-column-setting-left__content {
|
|
89
93
|
flex: 1;
|
|
@@ -128,7 +132,7 @@
|
|
|
128
132
|
display: block;
|
|
129
133
|
}
|
|
130
134
|
.aplus-sortable-item-meta:hover .aplus-sortable-item-meta-left__holder {
|
|
131
|
-
color: var(--
|
|
135
|
+
color: var(--ap-color-primary) !important;
|
|
132
136
|
}
|
|
133
137
|
.aplus-sortable-item-meta-left {
|
|
134
138
|
flex: 1;
|
|
@@ -158,7 +162,7 @@
|
|
|
158
162
|
margin-left: 16px;
|
|
159
163
|
}
|
|
160
164
|
.aplus-sortable-item-meta-action-icon:hover {
|
|
161
|
-
color: var(--
|
|
165
|
+
color: var(--ap-color-primary);
|
|
162
166
|
}
|
|
163
167
|
.aplus-sortable-item .is-hidden {
|
|
164
168
|
display: none;
|
|
@@ -171,27 +175,27 @@
|
|
|
171
175
|
.aplus-column-setting-sorter-section-title {
|
|
172
176
|
font-size: 12px;
|
|
173
177
|
line-height: 20px;
|
|
174
|
-
color:
|
|
178
|
+
color: var(--ap-text-color-3);
|
|
175
179
|
padding: 2px 8px;
|
|
176
180
|
margin: 4px;
|
|
177
181
|
}
|
|
178
182
|
.aplus-column-setting-sorter-header {
|
|
179
|
-
padding:
|
|
183
|
+
padding: 12px 20px;
|
|
180
184
|
}
|
|
181
185
|
.aplus-column-setting-sorter-header-title {
|
|
182
186
|
box-sizing: border-box;
|
|
183
187
|
margin: 0;
|
|
184
188
|
padding: 0;
|
|
185
|
-
color:
|
|
189
|
+
color: #182948;
|
|
186
190
|
font-size: 12px;
|
|
187
191
|
font-family: inherit;
|
|
188
|
-
line-height:
|
|
192
|
+
line-height: 18px;
|
|
189
193
|
list-style: none;
|
|
190
194
|
font-weight: bold;
|
|
191
|
-
color:
|
|
195
|
+
color: var(--ap-text-color-2);
|
|
192
196
|
}
|
|
193
197
|
.aplus-column-setting-sorter-content {
|
|
194
198
|
flex: 1;
|
|
195
199
|
overflow-y: auto;
|
|
196
|
-
padding: 8px 12px
|
|
200
|
+
padding: 8px 12px 0px 8px;
|
|
197
201
|
}
|