@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;
|
|
@@ -46,14 +46,14 @@
|
|
|
46
46
|
}
|
|
47
47
|
.aplus-ap-form-item--bordered {
|
|
48
48
|
box-sizing: border-box;
|
|
49
|
-
border: 1px solid var(--ap-
|
|
49
|
+
border: 1px solid var(--ap-border-color-base);
|
|
50
50
|
border-radius: 4px;
|
|
51
51
|
padding-inline: 8px;
|
|
52
52
|
}
|
|
53
53
|
.aplus-ap-form-item--bordered .ant-input-affix-wrapper {
|
|
54
54
|
padding: 0;
|
|
55
55
|
}
|
|
56
|
-
.aplus-ap-form-item--bordered:has(.aplus-batch-input-group) .ant-input-affix-wrapper {
|
|
56
|
+
.aplus-ap-form-item--bordered:has(.aplus-batch-input-group):has(.ant-select) .ant-input-affix-wrapper {
|
|
57
57
|
padding-right: 8px;
|
|
58
58
|
}
|
|
59
59
|
.aplus-ap-form-item--bordered .ant-input {
|
|
@@ -78,6 +78,9 @@
|
|
|
78
78
|
.aplus-ap-form-item--bordered .ant-select-single .ant-select-selector {
|
|
79
79
|
height: 30px !important;
|
|
80
80
|
}
|
|
81
|
+
.aplus-ap-form-item--bordered:has(.ant-input-number) {
|
|
82
|
+
padding-right: 0;
|
|
83
|
+
}
|
|
81
84
|
.aplus-ap-form-item--bordered:has(.ant-select) {
|
|
82
85
|
padding-right: 0px;
|
|
83
86
|
}
|
|
@@ -95,17 +98,17 @@
|
|
|
95
98
|
min-height: 30px;
|
|
96
99
|
}
|
|
97
100
|
.aplus-ap-form-item--bordered:hover {
|
|
98
|
-
border-color: var(--ap-
|
|
101
|
+
border-color: var(--ap-hover-color-base);
|
|
99
102
|
}
|
|
100
103
|
.aplus-ap-form-item--bordered:focus {
|
|
101
|
-
border-color: var(--ap-
|
|
104
|
+
border-color: var(--ap-active-color-base);
|
|
102
105
|
box-shadow: 0 0 0 2px var(--ap-form-bordered-shadow-color, rgba(5, 155, 255, 0.1));
|
|
103
106
|
}
|
|
104
107
|
.aplus-ap-form-item--bordered .aplus-batch-input-group-popover-input__popover {
|
|
105
108
|
width: calc(100% + 12px);
|
|
106
109
|
}
|
|
107
110
|
.aplus-ap-form-item--focused {
|
|
108
|
-
border-color: var(--ap-
|
|
111
|
+
border-color: var(--ap-active-color-base);
|
|
109
112
|
box-shadow: 0 0 0 2px var(--ap-form-bordered-shadow-color, rgba(5, 155, 255, 0.1));
|
|
110
113
|
}
|
|
111
114
|
.aplus-ap-form-item .ant-form-show-help .ant-form-item-explain-error {
|
|
@@ -135,10 +138,10 @@
|
|
|
135
138
|
box-sizing: border-box;
|
|
136
139
|
margin: 0;
|
|
137
140
|
padding: 0;
|
|
138
|
-
color:
|
|
141
|
+
color: #182948;
|
|
139
142
|
font-size: 12px;
|
|
140
143
|
font-family: inherit;
|
|
141
|
-
line-height:
|
|
144
|
+
line-height: 18px;
|
|
142
145
|
list-style: none;
|
|
143
146
|
font-size: 14px;
|
|
144
147
|
font-weight: 700;
|
|
@@ -149,12 +152,12 @@
|
|
|
149
152
|
box-sizing: border-box;
|
|
150
153
|
margin: 0;
|
|
151
154
|
padding: 0;
|
|
152
|
-
color:
|
|
155
|
+
color: #182948;
|
|
153
156
|
font-size: 12px;
|
|
154
157
|
font-family: inherit;
|
|
155
|
-
line-height:
|
|
158
|
+
line-height: 18px;
|
|
156
159
|
list-style: none;
|
|
157
|
-
color:
|
|
160
|
+
color: var(--ap-text-color-3);
|
|
158
161
|
}
|
|
159
162
|
.aplus-search-form-sorter-header-action-wrapper {
|
|
160
163
|
padding: 8px;
|
|
@@ -165,12 +168,12 @@
|
|
|
165
168
|
box-sizing: border-box;
|
|
166
169
|
margin: 0;
|
|
167
170
|
padding: 0;
|
|
168
|
-
color:
|
|
171
|
+
color: #182948;
|
|
169
172
|
font-size: 12px;
|
|
170
173
|
font-family: inherit;
|
|
171
|
-
line-height:
|
|
174
|
+
line-height: 18px;
|
|
172
175
|
list-style: none;
|
|
173
|
-
color:
|
|
176
|
+
color: var(--ap-color-link);
|
|
174
177
|
}
|
|
175
178
|
.aplus-search-form-sorter-sorter-wrapper {
|
|
176
179
|
display: flex;
|
|
@@ -191,13 +194,14 @@
|
|
|
191
194
|
padding: 8px;
|
|
192
195
|
display: flex;
|
|
193
196
|
align-items: center;
|
|
197
|
+
background-color: #fff;
|
|
194
198
|
}
|
|
195
199
|
.aplus-search-form-sorter-sorter-item > div:hover {
|
|
196
|
-
border-color: var(--
|
|
200
|
+
border-color: var(--ap-color-primary);
|
|
197
201
|
cursor: pointer;
|
|
198
202
|
}
|
|
199
203
|
.aplus-search-form-sorter-sorter-item > div:hover .aplus-search-form-sorter-sorter-item-holder {
|
|
200
|
-
color: var(--
|
|
204
|
+
color: var(--ap-color-primary) !important;
|
|
201
205
|
}
|
|
202
206
|
.aplus-search-form-sorter-sorter-item--hidden {
|
|
203
207
|
display: none;
|
|
@@ -206,10 +210,10 @@
|
|
|
206
210
|
box-sizing: border-box;
|
|
207
211
|
margin: 0;
|
|
208
212
|
padding: 0;
|
|
209
|
-
color:
|
|
213
|
+
color: #182948;
|
|
210
214
|
font-size: 12px;
|
|
211
215
|
font-family: inherit;
|
|
212
|
-
line-height:
|
|
216
|
+
line-height: 18px;
|
|
213
217
|
list-style: none;
|
|
214
218
|
padding-left: 4px;
|
|
215
219
|
max-width: 100%;
|
|
@@ -250,6 +254,14 @@
|
|
|
250
254
|
.aplus-ap-form-search-form__popover-footer button.ant-btn {
|
|
251
255
|
padding-inline: 16px;
|
|
252
256
|
}
|
|
257
|
+
.aplus-ap-form-search-form-trigger-btn {
|
|
258
|
+
font-size: 0px;
|
|
259
|
+
}
|
|
260
|
+
.aplus-ap-form-search-form-trigger-btn-active {
|
|
261
|
+
color: var(--ap-hover-color-base);
|
|
262
|
+
border-color: var(--ap-hover-color-base);
|
|
263
|
+
z-index: 1;
|
|
264
|
+
}
|
|
253
265
|
.aplus-ap-form-search-form-column-setting-trigger-wrapper {
|
|
254
266
|
flex-shrink: 0;
|
|
255
267
|
}
|
|
@@ -276,5 +288,5 @@
|
|
|
276
288
|
padding-inline: 12px;
|
|
277
289
|
}
|
|
278
290
|
.aplus-ap-form-search-form-action-btn-reset {
|
|
279
|
-
background-color:
|
|
291
|
+
background-color: var(--ap-color-bg);
|
|
280
292
|
}
|
|
@@ -42,6 +42,14 @@
|
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
|
+
&-trigger-btn {
|
|
46
|
+
font-size: 0px;
|
|
47
|
+
&-active {
|
|
48
|
+
color: var(--ap-hover-color-base);
|
|
49
|
+
border-color: var(--ap-hover-color-base);
|
|
50
|
+
z-index: 1;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
45
53
|
&-column-setting-trigger-wrapper {
|
|
46
54
|
flex-shrink: 0;
|
|
47
55
|
.ant-btn:not(:only-child) {
|
|
@@ -70,6 +78,6 @@
|
|
|
70
78
|
padding-inline: @spacing-lg;
|
|
71
79
|
}
|
|
72
80
|
&-action-btn-reset {
|
|
73
|
-
background-color:
|
|
81
|
+
background-color: var(--ap-color-bg);
|
|
74
82
|
}
|
|
75
83
|
});
|
|
@@ -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;
|
package/theme/ap-grid/index.css
CHANGED
|
@@ -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;
|
|
@@ -55,14 +55,14 @@
|
|
|
55
55
|
}
|
|
56
56
|
.aplus-ap-form-item--bordered {
|
|
57
57
|
box-sizing: border-box;
|
|
58
|
-
border: 1px solid var(--ap-
|
|
58
|
+
border: 1px solid var(--ap-border-color-base);
|
|
59
59
|
border-radius: 4px;
|
|
60
60
|
padding-inline: 8px;
|
|
61
61
|
}
|
|
62
62
|
.aplus-ap-form-item--bordered .ant-input-affix-wrapper {
|
|
63
63
|
padding: 0;
|
|
64
64
|
}
|
|
65
|
-
.aplus-ap-form-item--bordered:has(.aplus-batch-input-group) .ant-input-affix-wrapper {
|
|
65
|
+
.aplus-ap-form-item--bordered:has(.aplus-batch-input-group):has(.ant-select) .ant-input-affix-wrapper {
|
|
66
66
|
padding-right: 8px;
|
|
67
67
|
}
|
|
68
68
|
.aplus-ap-form-item--bordered .ant-input {
|
|
@@ -87,6 +87,9 @@
|
|
|
87
87
|
.aplus-ap-form-item--bordered .ant-select-single .ant-select-selector {
|
|
88
88
|
height: 30px !important;
|
|
89
89
|
}
|
|
90
|
+
.aplus-ap-form-item--bordered:has(.ant-input-number) {
|
|
91
|
+
padding-right: 0;
|
|
92
|
+
}
|
|
90
93
|
.aplus-ap-form-item--bordered:has(.ant-select) {
|
|
91
94
|
padding-right: 0px;
|
|
92
95
|
}
|
|
@@ -104,17 +107,17 @@
|
|
|
104
107
|
min-height: 30px;
|
|
105
108
|
}
|
|
106
109
|
.aplus-ap-form-item--bordered:hover {
|
|
107
|
-
border-color: var(--ap-
|
|
110
|
+
border-color: var(--ap-hover-color-base);
|
|
108
111
|
}
|
|
109
112
|
.aplus-ap-form-item--bordered:focus {
|
|
110
|
-
border-color: var(--ap-
|
|
113
|
+
border-color: var(--ap-active-color-base);
|
|
111
114
|
box-shadow: 0 0 0 2px var(--ap-form-bordered-shadow-color, rgba(5, 155, 255, 0.1));
|
|
112
115
|
}
|
|
113
116
|
.aplus-ap-form-item--bordered .aplus-batch-input-group-popover-input__popover {
|
|
114
117
|
width: calc(100% + 12px);
|
|
115
118
|
}
|
|
116
119
|
.aplus-ap-form-item--focused {
|
|
117
|
-
border-color: var(--ap-
|
|
120
|
+
border-color: var(--ap-active-color-base);
|
|
118
121
|
box-shadow: 0 0 0 2px var(--ap-form-bordered-shadow-color, rgba(5, 155, 255, 0.1));
|
|
119
122
|
}
|
|
120
123
|
.aplus-ap-form-item .ant-form-show-help .ant-form-item-explain-error {
|
|
@@ -180,10 +183,10 @@
|
|
|
180
183
|
box-sizing: border-box;
|
|
181
184
|
margin: 0;
|
|
182
185
|
padding: 0;
|
|
183
|
-
color:
|
|
186
|
+
color: #182948;
|
|
184
187
|
font-size: 12px;
|
|
185
188
|
font-family: inherit;
|
|
186
|
-
line-height:
|
|
189
|
+
line-height: 18px;
|
|
187
190
|
list-style: none;
|
|
188
191
|
font-size: 14px;
|
|
189
192
|
font-weight: 700;
|
|
@@ -194,12 +197,12 @@
|
|
|
194
197
|
box-sizing: border-box;
|
|
195
198
|
margin: 0;
|
|
196
199
|
padding: 0;
|
|
197
|
-
color:
|
|
200
|
+
color: #182948;
|
|
198
201
|
font-size: 12px;
|
|
199
202
|
font-family: inherit;
|
|
200
|
-
line-height:
|
|
203
|
+
line-height: 18px;
|
|
201
204
|
list-style: none;
|
|
202
|
-
color:
|
|
205
|
+
color: var(--ap-text-color-3);
|
|
203
206
|
}
|
|
204
207
|
.aplus-search-form-sorter-header-action-wrapper {
|
|
205
208
|
padding: 8px;
|
|
@@ -210,12 +213,12 @@
|
|
|
210
213
|
box-sizing: border-box;
|
|
211
214
|
margin: 0;
|
|
212
215
|
padding: 0;
|
|
213
|
-
color:
|
|
216
|
+
color: #182948;
|
|
214
217
|
font-size: 12px;
|
|
215
218
|
font-family: inherit;
|
|
216
|
-
line-height:
|
|
219
|
+
line-height: 18px;
|
|
217
220
|
list-style: none;
|
|
218
|
-
color:
|
|
221
|
+
color: var(--ap-color-link);
|
|
219
222
|
}
|
|
220
223
|
.aplus-search-form-sorter-sorter-wrapper {
|
|
221
224
|
display: flex;
|
|
@@ -236,13 +239,14 @@
|
|
|
236
239
|
padding: 8px;
|
|
237
240
|
display: flex;
|
|
238
241
|
align-items: center;
|
|
242
|
+
background-color: #fff;
|
|
239
243
|
}
|
|
240
244
|
.aplus-search-form-sorter-sorter-item > div:hover {
|
|
241
|
-
border-color: var(--
|
|
245
|
+
border-color: var(--ap-color-primary);
|
|
242
246
|
cursor: pointer;
|
|
243
247
|
}
|
|
244
248
|
.aplus-search-form-sorter-sorter-item > div:hover .aplus-search-form-sorter-sorter-item-holder {
|
|
245
|
-
color: var(--
|
|
249
|
+
color: var(--ap-color-primary) !important;
|
|
246
250
|
}
|
|
247
251
|
.aplus-search-form-sorter-sorter-item--hidden {
|
|
248
252
|
display: none;
|
|
@@ -251,10 +255,10 @@
|
|
|
251
255
|
box-sizing: border-box;
|
|
252
256
|
margin: 0;
|
|
253
257
|
padding: 0;
|
|
254
|
-
color:
|
|
258
|
+
color: #182948;
|
|
255
259
|
font-size: 12px;
|
|
256
260
|
font-family: inherit;
|
|
257
|
-
line-height:
|
|
261
|
+
line-height: 18px;
|
|
258
262
|
list-style: none;
|
|
259
263
|
padding-left: 4px;
|
|
260
264
|
max-width: 100%;
|
|
@@ -295,6 +299,14 @@
|
|
|
295
299
|
.aplus-ap-form-search-form__popover-footer button.ant-btn {
|
|
296
300
|
padding-inline: 16px;
|
|
297
301
|
}
|
|
302
|
+
.aplus-ap-form-search-form-trigger-btn {
|
|
303
|
+
font-size: 0px;
|
|
304
|
+
}
|
|
305
|
+
.aplus-ap-form-search-form-trigger-btn-active {
|
|
306
|
+
color: var(--ap-hover-color-base);
|
|
307
|
+
border-color: var(--ap-hover-color-base);
|
|
308
|
+
z-index: 1;
|
|
309
|
+
}
|
|
298
310
|
.aplus-ap-form-search-form-column-setting-trigger-wrapper {
|
|
299
311
|
flex-shrink: 0;
|
|
300
312
|
}
|
|
@@ -321,7 +333,7 @@
|
|
|
321
333
|
padding-inline: 12px;
|
|
322
334
|
}
|
|
323
335
|
.aplus-ap-form-search-form-action-btn-reset {
|
|
324
|
-
background-color:
|
|
336
|
+
background-color: var(--ap-color-bg);
|
|
325
337
|
}
|
|
326
338
|
.aplus-ap-form-item-text-group-compact .ant-select-focused {
|
|
327
339
|
z-index: 1;
|
|
@@ -401,28 +413,28 @@
|
|
|
401
413
|
box-sizing: border-box;
|
|
402
414
|
margin: 0;
|
|
403
415
|
padding: 0;
|
|
404
|
-
color:
|
|
416
|
+
color: #182948;
|
|
405
417
|
font-size: 12px;
|
|
406
418
|
font-family: inherit;
|
|
407
|
-
line-height:
|
|
419
|
+
line-height: 18px;
|
|
408
420
|
list-style: none;
|
|
409
421
|
display: inline-block;
|
|
410
422
|
cursor: pointer;
|
|
411
423
|
}
|
|
412
424
|
.aplus-action-item--primary {
|
|
413
|
-
color: var(--ap-
|
|
425
|
+
color: var(--ap-color-link);
|
|
414
426
|
}
|
|
415
427
|
.aplus-action-item--primary:not(.aplus-action-item--disabled):hover {
|
|
416
|
-
color: var(--ap-
|
|
428
|
+
color: var(--ap-color-link-hover);
|
|
417
429
|
}
|
|
418
430
|
.aplus-action-item--success {
|
|
419
|
-
color: var(--ap-
|
|
431
|
+
color: var(--ap-color-success);
|
|
420
432
|
}
|
|
421
433
|
.aplus-action-item--error {
|
|
422
|
-
color: var(--ap-
|
|
434
|
+
color: var(--ap-color-error);
|
|
423
435
|
}
|
|
424
436
|
.aplus-action-item--warn {
|
|
425
|
-
color: var(--ap-
|
|
437
|
+
color: var(--ap-color-warn);
|
|
426
438
|
}
|
|
427
439
|
.aplus-action-item--loading {
|
|
428
440
|
opacity: 0.35;
|
|
@@ -433,9 +445,20 @@
|
|
|
433
445
|
margin-right: 4px;
|
|
434
446
|
}
|
|
435
447
|
.aplus-action-item--disabled {
|
|
436
|
-
color: #CCE2FF;
|
|
437
448
|
cursor: not-allowed;
|
|
438
449
|
}
|
|
450
|
+
.aplus-action-item--primary.aplus-action-item--disabled {
|
|
451
|
+
color: var(--ap-color-link-disabled);
|
|
452
|
+
}
|
|
453
|
+
.aplus-action-item--success.aplus-action-item--disabled {
|
|
454
|
+
color: var(--ap-color-success-disabled);
|
|
455
|
+
}
|
|
456
|
+
.aplus-action-item--error.aplus-action-item--disabled {
|
|
457
|
+
color: var(--ap-color-error-disabled);
|
|
458
|
+
}
|
|
459
|
+
.aplus-action-item--warn.aplus-action-item--disabled {
|
|
460
|
+
color: var(--ap-color-warn-disabled);
|
|
461
|
+
}
|
|
439
462
|
.aplus-action-item-dropdown__item .aplus-action-item {
|
|
440
463
|
width: 100%;
|
|
441
464
|
}
|
|
@@ -455,7 +478,7 @@
|
|
|
455
478
|
height: 10px;
|
|
456
479
|
}
|
|
457
480
|
.aplus-ap-grid ::-webkit-scrollbar-thumb {
|
|
458
|
-
background-color: var(--
|
|
481
|
+
background-color: var(--ap-scrollbar-thumb-color-base);
|
|
459
482
|
background-clip: content-box;
|
|
460
483
|
border: 1px solid transparent;
|
|
461
484
|
border-radius: 4px;
|
|
@@ -466,18 +489,20 @@
|
|
|
466
489
|
}
|
|
467
490
|
.aplus-ap-grid ::-webkit-scrollbar-thumb:hover,
|
|
468
491
|
.aplus-ap-grid ::-webkit-scrollbar-thumb:active {
|
|
469
|
-
background-color: var(--
|
|
492
|
+
background-color: var(--ap-scrollbar-thumb-color-hover);
|
|
470
493
|
}
|
|
471
|
-
.aplus-ap-grid .vxe-table .vxe-cell
|
|
494
|
+
.aplus-ap-grid .vxe-table--render-default.size--medium .vxe-body--column.is--padding div.vxe-cell,
|
|
495
|
+
.aplus-ap-grid .vxe-table--render-default.size--medium .vxe-header--column.is--padding div.vxe-cell {
|
|
472
496
|
min-height: unset !important;
|
|
473
|
-
padding: 9px 12px
|
|
497
|
+
padding: 9px 12px;
|
|
474
498
|
font-size: 12px;
|
|
475
|
-
line-height:
|
|
499
|
+
line-height: 18px;
|
|
476
500
|
}
|
|
477
|
-
.aplus-ap-grid .vxe-table.size--mini .vxe-cell
|
|
501
|
+
.aplus-ap-grid .vxe-table--render-default.size--mini .vxe-body--column.is--padding div.vxe-cell,
|
|
502
|
+
.aplus-ap-grid .vxe-table--render-default.size--mini .vxe-header--column.is--padding div.vxe-cell {
|
|
478
503
|
min-height: unset !important;
|
|
479
|
-
padding: 6px 9px
|
|
480
|
-
line-height:
|
|
504
|
+
padding: 6px 9px;
|
|
505
|
+
line-height: 18px;
|
|
481
506
|
}
|
|
482
507
|
.aplus-ap-grid-adaptive {
|
|
483
508
|
height: 100%;
|
|
@@ -489,7 +514,7 @@
|
|
|
489
514
|
flex: 1;
|
|
490
515
|
}
|
|
491
516
|
.aplus-ap-grid .aplus-ap-grid-pagination-wrapper ul.ant-pagination {
|
|
492
|
-
margin-block:
|
|
517
|
+
margin-block: 8px;
|
|
493
518
|
}
|
|
494
519
|
.aplus-ap-grid-sticky .aplus-ap-grid-pagination-wrapper {
|
|
495
520
|
background-color: #fff;
|
|
@@ -549,19 +574,24 @@
|
|
|
549
574
|
margin-block: 12px;
|
|
550
575
|
display: flex;
|
|
551
576
|
flex-wrap: wrap;
|
|
577
|
+
align-items: center;
|
|
552
578
|
row-gap: 8px;
|
|
553
579
|
}
|
|
554
580
|
.aplus-ap-grid-pagination .ant-pagination-total-text {
|
|
555
581
|
flex: 1;
|
|
582
|
+
height: unset;
|
|
583
|
+
line-height: 18px;
|
|
584
|
+
display: flex;
|
|
585
|
+
align-items: center;
|
|
556
586
|
}
|
|
557
587
|
.aplus-ap-grid-pagination-count-text {
|
|
558
|
-
color: var(--ap-
|
|
588
|
+
color: var(--ap-text-color-2);
|
|
559
589
|
}
|
|
560
590
|
.aplus-ap-grid-pagination--total-right {
|
|
561
591
|
padding-left: 12px;
|
|
562
592
|
}
|
|
563
593
|
.aplus-ap-grid-pagination-total-wrapper {
|
|
564
|
-
color: var(--ap-
|
|
594
|
+
color: var(--ap-text-color-1);
|
|
565
595
|
}
|
|
566
596
|
.aplus-ap-grid-table-header__title {
|
|
567
597
|
display: -webkit-inline-box;
|
|
@@ -575,13 +605,22 @@
|
|
|
575
605
|
word-break: break-all;
|
|
576
606
|
flex: 1;
|
|
577
607
|
}
|
|
578
|
-
.aplus-ap-grid th .vxe-cell--wrapper {
|
|
608
|
+
.aplus-ap-grid th.vxe-header--column .vxe-cell--wrapper {
|
|
579
609
|
display: flex;
|
|
580
610
|
flex-direction: row;
|
|
581
611
|
flex-wrap: nowrap;
|
|
582
612
|
align-items: center;
|
|
613
|
+
min-width: unset;
|
|
583
614
|
}
|
|
584
|
-
.aplus-ap-grid th .vxe-cell--wrapper .vxe-cell--title {
|
|
615
|
+
.aplus-ap-grid th.vxe-header--column .vxe-cell--wrapper .vxe-cell--title {
|
|
585
616
|
flex-shrink: 1;
|
|
586
|
-
flex-grow:
|
|
617
|
+
flex-grow: 0;
|
|
618
|
+
}
|
|
619
|
+
.aplus-ap-grid .fixed-left--wrapper .vxe-table--header,
|
|
620
|
+
.aplus-ap-grid .fixed-right--wrapper .vxe-table--header {
|
|
621
|
+
height: 100%;
|
|
622
|
+
}
|
|
623
|
+
.aplus-ap-grid .fixed-left--wrapper .vxe-table--footer,
|
|
624
|
+
.aplus-ap-grid .fixed-right--wrapper .vxe-table--footer {
|
|
625
|
+
height: 100%;
|
|
587
626
|
}
|
package/theme/ap-grid/index.less
CHANGED
|
@@ -11,15 +11,15 @@
|
|
|
11
11
|
|
|
12
12
|
.b(ap-grid, {
|
|
13
13
|
.reset-scrollbar();
|
|
14
|
-
.vxe-table .vxe-cell {
|
|
14
|
+
.vxe-table--render-default.size--medium .vxe-body--column.is--padding div.vxe-cell, .vxe-table--render-default.size--medium .vxe-header--column.is--padding div.vxe-cell {
|
|
15
15
|
min-height: unset !important;
|
|
16
|
-
padding: 9px 12px
|
|
16
|
+
padding: 9px 12px;
|
|
17
17
|
font-size: @font-size-base;
|
|
18
18
|
line-height: @line-height-base;
|
|
19
19
|
}
|
|
20
|
-
.vxe-table.size--mini .vxe-cell {
|
|
20
|
+
.vxe-table--render-default.size--mini .vxe-body--column.is--padding div.vxe-cell, .vxe-table--render-default.size--mini .vxe-header--column.is--padding div.vxe-cell {
|
|
21
21
|
min-height: unset !important;
|
|
22
|
-
padding: 6px 9px
|
|
22
|
+
padding: 6px 9px;
|
|
23
23
|
line-height: @line-height-base;
|
|
24
24
|
}
|
|
25
25
|
&-adaptive {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
}
|
|
34
34
|
.@{pg} {
|
|
35
35
|
ul.ant-pagination {
|
|
36
|
-
margin-block: @spacing
|
|
36
|
+
margin-block: @spacing;
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
39
|
&-sticky {
|
|
@@ -102,19 +102,24 @@
|
|
|
102
102
|
margin-block: @spacing-lg;
|
|
103
103
|
display: flex;
|
|
104
104
|
flex-wrap: wrap;
|
|
105
|
+
align-items: center;
|
|
105
106
|
row-gap: 8px;
|
|
106
107
|
.ant-pagination-total-text {
|
|
107
108
|
flex: 1;
|
|
109
|
+
height: unset;
|
|
110
|
+
line-height: @line-height-base;
|
|
111
|
+
display: flex;
|
|
112
|
+
align-items: center;
|
|
108
113
|
}
|
|
109
114
|
}
|
|
110
115
|
&-pagination-count-text {
|
|
111
|
-
color: var(--ap-
|
|
116
|
+
color: var(--ap-text-color-2);
|
|
112
117
|
}
|
|
113
118
|
&-pagination--total-right {
|
|
114
119
|
padding-left: 12px;
|
|
115
120
|
}
|
|
116
121
|
&-pagination-total-wrapper {
|
|
117
|
-
color: var(--ap-
|
|
122
|
+
color: var(--ap-text-color-1);
|
|
118
123
|
}
|
|
119
124
|
&-header-wrapper {
|
|
120
125
|
}
|
|
@@ -134,14 +139,26 @@
|
|
|
134
139
|
}
|
|
135
140
|
}
|
|
136
141
|
// 实现表头不换行排列
|
|
137
|
-
th .vxe-cell--wrapper {
|
|
142
|
+
th.vxe-header--column .vxe-cell--wrapper {
|
|
138
143
|
display: flex;
|
|
139
144
|
flex-direction: row;
|
|
140
145
|
flex-wrap: nowrap;
|
|
141
146
|
align-items: center;
|
|
147
|
+
min-width: unset;
|
|
142
148
|
.vxe-cell--title {
|
|
143
149
|
flex-shrink: 1;
|
|
144
|
-
flex-grow:
|
|
150
|
+
flex-grow: 0;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
// 浮动表头和浮动页脚为对齐问题
|
|
155
|
+
.fixed-left--wrapper,
|
|
156
|
+
.fixed-right--wrapper {
|
|
157
|
+
.vxe-table--header {
|
|
158
|
+
height: 100%;
|
|
159
|
+
}
|
|
160
|
+
.vxe-table--footer {
|
|
161
|
+
height: 100%;
|
|
145
162
|
}
|
|
146
163
|
}
|
|
147
164
|
});
|
|
@@ -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;
|