@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;
|
|
@@ -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;
|
|
@@ -853,38 +891,40 @@
|
|
|
853
891
|
height: 100%;
|
|
854
892
|
}
|
|
855
893
|
.aplus-ap-table-modal--table-layout.complex-layout {
|
|
894
|
+
height: 100%;
|
|
856
895
|
position: relative;
|
|
857
896
|
}
|
|
858
|
-
.aplus-ap-table-modal--table-layout.complex-layout::before {
|
|
859
|
-
content: '';
|
|
860
|
-
width: calc(100% + 40px);
|
|
861
|
-
height: 1px;
|
|
862
|
-
background-color: #dee4ed;
|
|
863
|
-
position: absolute;
|
|
864
|
-
left: -20px;
|
|
865
|
-
bottom: 0px;
|
|
866
|
-
}
|
|
867
897
|
.aplus-ap-table-modal--table-layout-left {
|
|
868
898
|
width: calc(100% - 410px);
|
|
869
899
|
padding-right: 20px;
|
|
870
|
-
padding-bottom: 16px;
|
|
871
900
|
box-sizing: border-box;
|
|
901
|
+
display: flex;
|
|
902
|
+
flex-direction: column;
|
|
903
|
+
}
|
|
904
|
+
.aplus-ap-table-modal--table-layout-left-content {
|
|
905
|
+
flex: 1;
|
|
906
|
+
}
|
|
907
|
+
.aplus-ap-table-modal--table-layout-left-content .ant-table-body {
|
|
908
|
+
height: 100%;
|
|
872
909
|
}
|
|
873
910
|
.aplus-ap-table-modal--table-layout-right {
|
|
874
911
|
width: 410px;
|
|
875
912
|
padding-left: 20px;
|
|
876
913
|
position: relative;
|
|
914
|
+
display: flex;
|
|
915
|
+
flex-direction: column;
|
|
877
916
|
}
|
|
878
917
|
.aplus-ap-table-modal--table-layout-right-content {
|
|
879
|
-
|
|
918
|
+
flex: 1;
|
|
919
|
+
max-height: 540px;
|
|
880
920
|
overflow-y: auto;
|
|
881
921
|
}
|
|
882
922
|
.aplus-ap-table-modal--table-layout-right::before {
|
|
883
923
|
content: '';
|
|
884
|
-
height: calc(100% +
|
|
924
|
+
height: calc(100% + 16px);
|
|
885
925
|
width: 1px;
|
|
886
926
|
background-color: #dee4ed;
|
|
887
927
|
position: absolute;
|
|
888
928
|
left: 0px;
|
|
889
|
-
top: -
|
|
929
|
+
top: -16px;
|
|
890
930
|
}
|
|
@@ -11,42 +11,44 @@
|
|
|
11
11
|
justify-content: space-between;
|
|
12
12
|
height: 100%;
|
|
13
13
|
&.complex-layout {
|
|
14
|
+
height: 100%;
|
|
14
15
|
position: relative;
|
|
15
|
-
&::before {
|
|
16
|
-
content: '';
|
|
17
|
-
width: calc(100% + 40px);
|
|
18
|
-
height: 1px;
|
|
19
|
-
background-color: @border-color;
|
|
20
|
-
position: absolute;
|
|
21
|
-
left: -20px;
|
|
22
|
-
bottom: 0px;
|
|
23
|
-
}
|
|
24
16
|
}
|
|
25
17
|
|
|
26
18
|
|
|
27
19
|
&-left {
|
|
28
20
|
width: calc(100% - 410px);
|
|
29
21
|
padding-right: 20px;
|
|
30
|
-
padding-bottom: 16px;
|
|
31
22
|
box-sizing: border-box;
|
|
23
|
+
display: flex;
|
|
24
|
+
flex-direction: column;
|
|
25
|
+
&-content {
|
|
26
|
+
flex: 1;
|
|
27
|
+
.ant-table-body {
|
|
28
|
+
height: 100%;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
32
31
|
}
|
|
33
32
|
|
|
34
33
|
&-right {
|
|
35
34
|
width: 410px;
|
|
36
35
|
padding-left: 20px;
|
|
37
36
|
position: relative;
|
|
37
|
+
display: flex;
|
|
38
|
+
flex-direction: column;
|
|
38
39
|
&-content {
|
|
39
|
-
|
|
40
|
+
flex: 1;
|
|
41
|
+
max-height: 540px;
|
|
40
42
|
overflow-y: auto;
|
|
41
43
|
}
|
|
42
44
|
&::before {
|
|
43
45
|
content: '';
|
|
44
|
-
height: calc(100% +
|
|
46
|
+
height: calc(100% + 16px);
|
|
45
47
|
width: 1px;
|
|
46
48
|
background-color: @border-color;
|
|
47
49
|
position: absolute;
|
|
48
50
|
left: 0px;
|
|
49
|
-
top:-
|
|
51
|
+
top:-16px;
|
|
50
52
|
}
|
|
51
53
|
}
|
|
52
54
|
}
|
|
@@ -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;
|
|
@@ -53,9 +53,9 @@
|
|
|
53
53
|
}
|
|
54
54
|
.aplus-tag-group-ellipsis-text--admin {
|
|
55
55
|
font-size: 12px;
|
|
56
|
-
color: #
|
|
56
|
+
color: #333;
|
|
57
57
|
}
|
|
58
58
|
.aplus-tag-group-ellipsis-text--aplus {
|
|
59
59
|
font-size: 12px;
|
|
60
|
-
color: #
|
|
60
|
+
color: #182948;
|
|
61
61
|
}
|
|
@@ -6,17 +6,16 @@
|
|
|
6
6
|
flex-wrap: nowrap;
|
|
7
7
|
white-space: nowrap;
|
|
8
8
|
align-items: center;
|
|
9
|
-
|
|
10
9
|
&-ellipsis-text {
|
|
11
10
|
&--admin {
|
|
12
11
|
font-size: @font-size-base;
|
|
13
12
|
// 链接色
|
|
14
|
-
color: #
|
|
13
|
+
color: #333;
|
|
15
14
|
}
|
|
16
15
|
&--aplus {
|
|
17
16
|
font-size: @font-size-base;
|
|
18
17
|
// 链接色
|
|
19
|
-
color: #
|
|
18
|
+
color: #182948;
|
|
20
19
|
}
|
|
21
20
|
}
|
|
22
21
|
});
|
package/theme/ap-tag/ap-tag.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;
|
|
@@ -57,22 +57,22 @@
|
|
|
57
57
|
}
|
|
58
58
|
.aplus-tag-wrapper .aplus-tag-inner-wrapper--large {
|
|
59
59
|
padding: 6px;
|
|
60
|
-
line-height:
|
|
60
|
+
line-height: 22;
|
|
61
61
|
font-size: 14px;
|
|
62
62
|
}
|
|
63
63
|
.aplus-tag-wrapper .aplus-tag-inner-wrapper--middle {
|
|
64
|
-
line-height:
|
|
65
|
-
padding: 3px
|
|
64
|
+
line-height: 18px;
|
|
65
|
+
padding: 3px 6px;
|
|
66
66
|
font-size: 12px;
|
|
67
67
|
}
|
|
68
68
|
.aplus-tag-wrapper .aplus-tag-inner-wrapper--small {
|
|
69
69
|
padding: 0 4px;
|
|
70
|
-
line-height:
|
|
71
|
-
font-size:
|
|
70
|
+
line-height: 18px;
|
|
71
|
+
font-size: 12px;
|
|
72
72
|
}
|
|
73
73
|
.aplus-tag-wrapper-purely > * {
|
|
74
74
|
background-color: var(--tag-main-color-background);
|
|
75
|
-
color: var(--ap-
|
|
75
|
+
color: var(--ap-text-color-2);
|
|
76
76
|
}
|
|
77
77
|
.aplus-tag-wrapper-border > * {
|
|
78
78
|
border: 1px solid var(--tag-main-color);
|
package/theme/ap-tag/ap-tag.less
CHANGED
|
@@ -19,19 +19,19 @@
|
|
|
19
19
|
}
|
|
20
20
|
&--middle {
|
|
21
21
|
line-height: @line-height-base;
|
|
22
|
-
padding: 3px
|
|
22
|
+
padding: 3px 6px;
|
|
23
23
|
font-size: @font-size-base;
|
|
24
24
|
}
|
|
25
25
|
&--small {
|
|
26
26
|
padding: 0 4px;
|
|
27
|
-
line-height: @line-height-
|
|
28
|
-
font-size: @font-size-
|
|
27
|
+
line-height: @line-height-base;
|
|
28
|
+
font-size: @font-size-base;
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
31
|
&-wrapper-purely {
|
|
32
32
|
& > * {
|
|
33
33
|
background-color: var(--tag-main-color-background);
|
|
34
|
-
color: var(--ap-
|
|
34
|
+
color: var(--ap-text-color-2);
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
&-wrapper-border {
|