@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
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
@import './alert.less'; // 警告提示
|
|
2
2
|
@import './button.less'; // 按钮
|
|
3
|
-
@import './form.less'; // 表单
|
|
4
3
|
@import './message.less'; // 全局提示
|
|
5
4
|
@import './modal.less'; // 弹框
|
|
6
|
-
@import './pagination.less'; // 分页
|
|
7
|
-
@import './steps.less'; // 步骤条
|
|
8
5
|
@import './table.less'; // 表格
|
|
9
6
|
@import './field.less'; // 输入类型控件
|
|
10
7
|
@import './tooltip.less'; // 文字提示
|
|
@@ -1,17 +1,10 @@
|
|
|
1
|
-
.ant-message .ant-message-notice-content {
|
|
1
|
+
.ant-message div.ant-message-notice-content {
|
|
2
2
|
padding: 10px 16px;
|
|
3
|
-
/* 文字颜色/一级-333333 */
|
|
4
|
-
color: #333333;
|
|
5
|
-
font-weight: normal;
|
|
6
3
|
font-size: 14px;
|
|
7
4
|
line-height: 22px;
|
|
8
|
-
letter-spacing: 0;
|
|
9
|
-
border-radius: 4px;
|
|
10
5
|
box-shadow: 0 3px 6px 0 rgba(44, 54, 69, 0.102);
|
|
11
6
|
}
|
|
12
7
|
.ant-message .ant-message-notice .anticon {
|
|
13
|
-
|
|
14
|
-
line-height: 22px;
|
|
15
|
-
vertical-align: -0.18em;
|
|
8
|
+
margin-bottom: 1px;
|
|
16
9
|
margin-inline-end: 9px;
|
|
17
10
|
}
|
|
@@ -1,21 +1,13 @@
|
|
|
1
1
|
.ant-message {
|
|
2
|
-
.ant-message-notice-content {
|
|
2
|
+
div.ant-message-notice-content {
|
|
3
3
|
padding: 10px 16px;
|
|
4
|
-
|
|
5
|
-
/* 文字颜色/一级-333333 */
|
|
6
|
-
color: #333333;
|
|
7
|
-
font-weight: normal;
|
|
8
4
|
font-size: 14px;
|
|
9
5
|
line-height: 22px;
|
|
10
|
-
letter-spacing: 0;
|
|
11
|
-
border-radius: 4px;
|
|
12
6
|
box-shadow: 0 3px 6px 0 rgba(44, 54, 69, 0.102);
|
|
13
7
|
}
|
|
14
8
|
|
|
15
9
|
.ant-message-notice .anticon {
|
|
16
|
-
|
|
17
|
-
line-height: 22px;
|
|
18
|
-
vertical-align: -0.18em;
|
|
10
|
+
margin-bottom: 1px;
|
|
19
11
|
margin-inline-end: 9px;
|
|
20
12
|
}
|
|
21
13
|
}
|
|
@@ -1,36 +1,13 @@
|
|
|
1
1
|
.ant-modal-root .ant-modal .ant-modal-close {
|
|
2
|
-
top:
|
|
3
|
-
|
|
4
|
-
width: auto;
|
|
2
|
+
top: 14px;
|
|
3
|
+
inset-inline-end: 18px;
|
|
5
4
|
color: #8796b0;
|
|
6
|
-
font-weight: normal;
|
|
7
|
-
background: transparent;
|
|
8
|
-
outline: none;
|
|
9
|
-
cursor: default;
|
|
10
5
|
}
|
|
11
6
|
.ant-modal-root .ant-modal .ant-modal-close:hover {
|
|
12
|
-
color: #8796b0;
|
|
13
7
|
background-color: transparent;
|
|
14
8
|
}
|
|
15
9
|
.ant-modal-root .ant-modal .ant-modal-close-x {
|
|
16
|
-
|
|
17
|
-
width: 96px;
|
|
18
|
-
height: 47px;
|
|
19
|
-
line-height: 47px;
|
|
20
|
-
text-align: start;
|
|
21
|
-
}
|
|
22
|
-
.ant-modal-root .ant-modal .ant-modal-close-x > div {
|
|
23
|
-
height: 100%;
|
|
24
|
-
}
|
|
25
|
-
.ant-modal-root .ant-modal .ant-modal-close-x > span {
|
|
26
|
-
display: inline-block;
|
|
27
|
-
margin-left: 48px;
|
|
28
|
-
padding: 10px;
|
|
29
|
-
cursor: pointer;
|
|
30
|
-
transition: all 0.2s;
|
|
31
|
-
}
|
|
32
|
-
.ant-modal-root .ant-modal .ant-modal-close-x > span:hover {
|
|
33
|
-
color: #ed6f6f;
|
|
10
|
+
line-height: 0;
|
|
34
11
|
}
|
|
35
12
|
.ant-modal-root .ant-modal .ant-modal-content {
|
|
36
13
|
padding: 0;
|
|
@@ -41,13 +18,7 @@
|
|
|
41
18
|
border-bottom: 1px solid #E9EDF3;
|
|
42
19
|
}
|
|
43
20
|
.ant-modal-root .ant-modal .ant-modal-content .ant-modal-body {
|
|
44
|
-
padding: 20px
|
|
45
|
-
}
|
|
46
|
-
.ant-modal-root .ant-modal .ant-modal-content .ant-modal-body > .scrollbar {
|
|
47
|
-
padding: 0;
|
|
48
|
-
}
|
|
49
|
-
.ant-modal-root .ant-modal .ant-modal-content .ant-modal-body .scrollbar__wrap {
|
|
50
|
-
margin-bottom: 0 !important;
|
|
21
|
+
padding: 16px 20px;
|
|
51
22
|
}
|
|
52
23
|
.ant-modal-root .ant-modal .ant-modal-content .ant-modal-body:has([class*='ap-modal-body-wrapper']) {
|
|
53
24
|
padding: 20px 0 !important;
|
|
@@ -59,14 +30,19 @@
|
|
|
59
30
|
.ant-modal-root .ant-modal .ant-modal-content .ant-modal-footer {
|
|
60
31
|
margin-top: 0;
|
|
61
32
|
padding: 0 20px 12px;
|
|
62
|
-
border-top: none;
|
|
63
33
|
}
|
|
64
34
|
.ant-modal-root .ant-modal .ant-modal-content .ant-modal-footer button {
|
|
65
35
|
min-width: 72px;
|
|
66
36
|
}
|
|
37
|
+
.ant-modal-root .ant-modal .ant-modal-content .ant-modal-footer .ant-btn + .ant-btn:not(.ant-dropdown-trigger) {
|
|
38
|
+
margin-inline-start: 8px;
|
|
39
|
+
}
|
|
40
|
+
.ant-modal-root .ant-modal-confirm .ant-modal-content .ant-modal-body {
|
|
41
|
+
padding: 20px 24px;
|
|
42
|
+
}
|
|
67
43
|
.ant-modal-root .ant-modal-confirm .ant-modal-content .ant-modal-body .ant-modal-confirm-body > .anticon {
|
|
68
|
-
margin-inline-end:
|
|
69
|
-
font-size:
|
|
44
|
+
margin-inline-end: 10px;
|
|
45
|
+
font-size: 22px;
|
|
70
46
|
}
|
|
71
47
|
.ant-modal-root .ant-modal-confirm .ant-modal-content .ant-modal-body .ant-modal-confirm-body .ant-modal-confirm-title {
|
|
72
48
|
color: #182948;
|
|
@@ -80,19 +56,22 @@
|
|
|
80
56
|
font-weight: normal;
|
|
81
57
|
font-size: 14px;
|
|
82
58
|
line-height: 200%;
|
|
83
|
-
margin-block-start:
|
|
84
|
-
margin-inline-start:
|
|
59
|
+
margin-block-start: 4px;
|
|
60
|
+
margin-inline-start: 34px;
|
|
85
61
|
}
|
|
86
62
|
.ant-modal-root .ant-modal-confirm .ant-modal-content .ant-modal-body .ant-modal-confirm-body .ant-modal-confirm-content > * {
|
|
87
63
|
color: #8896b0;
|
|
88
64
|
}
|
|
89
65
|
.ant-modal-root .ant-modal-confirm .ant-modal-content .ant-modal-body .ant-modal-confirm-btns {
|
|
90
66
|
margin-top: 0;
|
|
91
|
-
padding-top:
|
|
67
|
+
padding-top: 16px;
|
|
92
68
|
}
|
|
93
69
|
.ant-modal-root .ant-modal-confirm .ant-modal-content .ant-modal-body .ant-modal-confirm-btns button {
|
|
94
70
|
min-width: 72px;
|
|
95
71
|
}
|
|
72
|
+
.ant-modal-root .ant-modal-confirm .ant-modal-content .ant-modal-body .ant-modal-confirm-btns .ant-btn + .ant-btn:not(.ant-dropdown-trigger) {
|
|
73
|
+
margin-inline-start: 8px;
|
|
74
|
+
}
|
|
96
75
|
.ant-modal-confirm-success .ant-modal-confirm-body > .anticon {
|
|
97
76
|
color: #06c687;
|
|
98
77
|
}
|
|
@@ -1,43 +1,17 @@
|
|
|
1
1
|
.ant-modal-root {
|
|
2
2
|
.ant-modal {
|
|
3
3
|
.ant-modal-close {
|
|
4
|
-
top:
|
|
5
|
-
|
|
6
|
-
width: auto;
|
|
4
|
+
top: 14px;
|
|
5
|
+
inset-inline-end: 18px;
|
|
7
6
|
color: rgb(135, 150, 176);
|
|
8
|
-
font-weight: normal;
|
|
9
|
-
background: transparent;
|
|
10
|
-
outline: none;
|
|
11
|
-
cursor: default;
|
|
12
7
|
|
|
13
8
|
&:hover {
|
|
14
|
-
color: rgb(135, 150, 176);
|
|
15
9
|
background-color: transparent;
|
|
16
10
|
}
|
|
17
11
|
}
|
|
18
12
|
|
|
19
13
|
.ant-modal-close-x {
|
|
20
|
-
|
|
21
|
-
width: 96px;
|
|
22
|
-
height: 47px;
|
|
23
|
-
line-height: 47px;
|
|
24
|
-
text-align: start;
|
|
25
|
-
|
|
26
|
-
& > div {
|
|
27
|
-
height: 100%;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
& > span {
|
|
31
|
-
display: inline-block;
|
|
32
|
-
margin-left: 48px;
|
|
33
|
-
padding: 10px;
|
|
34
|
-
cursor: pointer;
|
|
35
|
-
transition: all 0.2s;
|
|
36
|
-
|
|
37
|
-
&:hover {
|
|
38
|
-
color: #ed6f6f;
|
|
39
|
-
}
|
|
40
|
-
}
|
|
14
|
+
line-height: 0;
|
|
41
15
|
}
|
|
42
16
|
|
|
43
17
|
.ant-modal-content {
|
|
@@ -50,15 +24,7 @@
|
|
|
50
24
|
}
|
|
51
25
|
|
|
52
26
|
.ant-modal-body {
|
|
53
|
-
padding: 20px
|
|
54
|
-
|
|
55
|
-
& > .scrollbar {
|
|
56
|
-
padding: 0;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.scrollbar__wrap {
|
|
60
|
-
margin-bottom: 0 !important;
|
|
61
|
-
}
|
|
27
|
+
padding: 16px 20px;
|
|
62
28
|
|
|
63
29
|
&:has([class*='ap-modal-body-wrapper']) {
|
|
64
30
|
padding: 20px 0 !important;
|
|
@@ -73,11 +39,14 @@
|
|
|
73
39
|
.ant-modal-footer {
|
|
74
40
|
margin-top: 0;
|
|
75
41
|
padding: 0 20px 12px;
|
|
76
|
-
border-top: none;
|
|
77
42
|
|
|
78
43
|
button {
|
|
79
44
|
min-width: 72px;
|
|
80
45
|
}
|
|
46
|
+
|
|
47
|
+
.ant-btn + .ant-btn:not(.ant-dropdown-trigger) {
|
|
48
|
+
margin-inline-start: 8px;
|
|
49
|
+
}
|
|
81
50
|
}
|
|
82
51
|
}
|
|
83
52
|
}
|
|
@@ -85,12 +54,13 @@
|
|
|
85
54
|
.ant-modal-confirm {
|
|
86
55
|
.ant-modal-content {
|
|
87
56
|
.ant-modal-body {
|
|
88
|
-
|
|
57
|
+
padding: 20px 24px;
|
|
89
58
|
|
|
90
59
|
.ant-modal-confirm-body {
|
|
60
|
+
// left icon
|
|
91
61
|
& > .anticon {
|
|
92
|
-
margin-inline-end:
|
|
93
|
-
font-size:
|
|
62
|
+
margin-inline-end: 10px;
|
|
63
|
+
font-size: 22px;
|
|
94
64
|
}
|
|
95
65
|
|
|
96
66
|
.ant-modal-confirm-title {
|
|
@@ -106,8 +76,8 @@
|
|
|
106
76
|
font-weight: normal;
|
|
107
77
|
font-size: 14px;
|
|
108
78
|
line-height: 200%;
|
|
109
|
-
margin-block-start:
|
|
110
|
-
margin-inline-start:
|
|
79
|
+
margin-block-start: 4px;
|
|
80
|
+
margin-inline-start: 34px;
|
|
111
81
|
|
|
112
82
|
& > * {
|
|
113
83
|
color: #8896b0;
|
|
@@ -117,11 +87,15 @@
|
|
|
117
87
|
|
|
118
88
|
.ant-modal-confirm-btns {
|
|
119
89
|
margin-top: 0;
|
|
120
|
-
padding-top:
|
|
90
|
+
padding-top: 16px;
|
|
121
91
|
|
|
122
92
|
button {
|
|
123
93
|
min-width: 72px;
|
|
124
94
|
}
|
|
95
|
+
|
|
96
|
+
.ant-btn + .ant-btn:not(.ant-dropdown-trigger) {
|
|
97
|
+
margin-inline-start: 8px;
|
|
98
|
+
}
|
|
125
99
|
}
|
|
126
100
|
}
|
|
127
101
|
}
|
|
@@ -1,303 +1,78 @@
|
|
|
1
|
-
[class$='-basic-table'],
|
|
2
|
-
[class$='-basic-table-form-container'],
|
|
3
|
-
[class$='-basic-table ap-table--sticky'],
|
|
4
|
-
[class$='-basic-table-form-container ap-table--sticky'] {
|
|
5
|
-
width: 100%;
|
|
6
|
-
height: 100%;
|
|
7
|
-
}
|
|
8
|
-
[class$='-basic-table'] .ant-table-wrapper .ant-table.ant-table.ant-table-small .ant-table-title,
|
|
9
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table.ant-table-small .ant-table-title,
|
|
10
|
-
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table.ant-table.ant-table-small .ant-table-title,
|
|
11
|
-
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table.ant-table.ant-table-small .ant-table-title,
|
|
12
|
-
[class$='-basic-table'] .ant-table-wrapper .ant-table.ant-table.ant-table-middle .ant-table-title,
|
|
13
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table.ant-table-middle .ant-table-title,
|
|
14
|
-
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table.ant-table.ant-table-middle .ant-table-title,
|
|
15
|
-
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table.ant-table.ant-table-middle .ant-table-title {
|
|
16
|
-
display: flex;
|
|
17
|
-
align-items: center;
|
|
18
|
-
justify-content: space-between;
|
|
19
|
-
min-height: 40px;
|
|
20
|
-
padding: 0 0 10px;
|
|
21
|
-
border: none;
|
|
22
|
-
}
|
|
23
|
-
[class$='-basic-table'] .ant-table-wrapper .ant-table,
|
|
24
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table,
|
|
25
|
-
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table,
|
|
26
|
-
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table {
|
|
27
|
-
width: 100%;
|
|
28
|
-
overflow-x: hidden;
|
|
29
|
-
border-radius: 0;
|
|
30
|
-
}
|
|
31
|
-
[class$='-basic-table'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
32
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
33
|
-
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
34
|
-
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header {
|
|
35
|
-
border-radius: 0;
|
|
36
|
-
}
|
|
37
|
-
[class$='-basic-table'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header .ant-table-thead > tr > th,
|
|
38
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header .ant-table-thead > tr > th,
|
|
39
|
-
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header .ant-table-thead > tr > th,
|
|
40
|
-
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header .ant-table-thead > tr > th {
|
|
41
|
-
color: #182948;
|
|
42
|
-
font-weight: 700;
|
|
43
|
-
font-size: 14px;
|
|
44
|
-
font-style: normal;
|
|
45
|
-
text-align: left;
|
|
46
|
-
text-transform: none;
|
|
47
|
-
background: #f2f6f9;
|
|
48
|
-
}
|
|
49
|
-
[class$='-basic-table'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header .ant-table-thead > tr > th::before,
|
|
50
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header .ant-table-thead > tr > th::before,
|
|
51
|
-
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header .ant-table-thead > tr > th::before,
|
|
52
|
-
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table .ant-table-container .ant-table-header .ant-table-thead > tr > th::before {
|
|
53
|
-
display: none;
|
|
54
|
-
width: 0;
|
|
55
|
-
visibility: hidden;
|
|
56
|
-
}
|
|
57
|
-
[class$='-basic-table'] .ant-table-wrapper .ant-table-body .ant-table-tbody > tr.ant-table-row:hover,
|
|
58
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table-body .ant-table-tbody > tr.ant-table-row:hover,
|
|
59
|
-
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table-body .ant-table-tbody > tr.ant-table-row:hover,
|
|
60
|
-
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table-body .ant-table-tbody > tr.ant-table-row:hover {
|
|
61
|
-
background: #f6f9fa;
|
|
62
|
-
}
|
|
63
|
-
[class$='-basic-table'] .ant-table-wrapper .ant-table-body .ant-table-tbody > tr.ant-table-row:hover > td,
|
|
64
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table-body .ant-table-tbody > tr.ant-table-row:hover > td,
|
|
65
|
-
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table-body .ant-table-tbody > tr.ant-table-row:hover > td,
|
|
66
|
-
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table-body .ant-table-tbody > tr.ant-table-row:hover > td {
|
|
67
|
-
background: #f6f9fa;
|
|
68
|
-
}
|
|
69
|
-
[class$='-basic-table'] .ant-table-wrapper .ant-table-body .ant-table-tbody > tr.ant-table-row > td,
|
|
70
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table-body .ant-table-tbody > tr.ant-table-row > td,
|
|
71
|
-
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table-body .ant-table-tbody > tr.ant-table-row > td,
|
|
72
|
-
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table-body .ant-table-tbody > tr.ant-table-row > td {
|
|
73
|
-
color: #182948;
|
|
74
|
-
font-weight: 400;
|
|
75
|
-
font-size: 14px;
|
|
76
|
-
font-style: normal;
|
|
77
|
-
text-align: left;
|
|
78
|
-
text-transform: none;
|
|
79
|
-
transition: unset;
|
|
80
|
-
}
|
|
81
|
-
[class$='-basic-table'] .ant-table-wrapper .ant-table.ant-table-middle .ant-table-container .ant-table-thead tr > th,
|
|
82
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table-middle .ant-table-container .ant-table-thead tr > th,
|
|
83
|
-
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table.ant-table-middle .ant-table-container .ant-table-thead tr > th,
|
|
84
|
-
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table.ant-table-middle .ant-table-container .ant-table-thead tr > th {
|
|
85
|
-
padding: 12px 16px;
|
|
86
|
-
line-height: 22px;
|
|
87
|
-
}
|
|
88
|
-
[class$='-basic-table'] .ant-table-wrapper .ant-table.ant-table-middle .ant-table-container .ant-table-tbody tr.ant-table-measure-row + tr > td,
|
|
89
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table-middle .ant-table-container .ant-table-tbody tr.ant-table-measure-row + tr > td,
|
|
90
|
-
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table.ant-table-middle .ant-table-container .ant-table-tbody tr.ant-table-measure-row + tr > td,
|
|
91
|
-
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table.ant-table-middle .ant-table-container .ant-table-tbody tr.ant-table-measure-row + tr > td {
|
|
92
|
-
border-top: 1px solid;
|
|
93
|
-
border-top-color: transparent;
|
|
94
|
-
}
|
|
95
|
-
[class$='-basic-table'] .ant-table-wrapper .ant-table.ant-table-middle .ant-table-container .ant-table-tbody tr > .ant-table-cell,
|
|
96
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table-middle .ant-table-container .ant-table-tbody tr > .ant-table-cell,
|
|
97
|
-
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table.ant-table-middle .ant-table-container .ant-table-tbody tr > .ant-table-cell,
|
|
98
|
-
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table.ant-table-middle .ant-table-container .ant-table-tbody tr > .ant-table-cell {
|
|
99
|
-
padding: 12px 16px;
|
|
100
|
-
line-height: 22px;
|
|
101
|
-
}
|
|
102
|
-
[class$='-basic-table'] .ant-table-wrapper .ant-table.ant-table-small .ant-table-container .ant-table-thead tr > th,
|
|
103
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table-small .ant-table-container .ant-table-thead tr > th,
|
|
104
|
-
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table.ant-table-small .ant-table-container .ant-table-thead tr > th,
|
|
105
|
-
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table.ant-table-small .ant-table-container .ant-table-thead tr > th {
|
|
106
|
-
padding: 10.5px 16px;
|
|
107
|
-
line-height: 18px;
|
|
108
|
-
}
|
|
109
|
-
[class$='-basic-table'] .ant-table-wrapper .ant-table.ant-table-small .ant-table-container .ant-table-tbody tr.ant-table-measure-row + tr > td,
|
|
110
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table-small .ant-table-container .ant-table-tbody tr.ant-table-measure-row + tr > td,
|
|
111
|
-
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table.ant-table-small .ant-table-container .ant-table-tbody tr.ant-table-measure-row + tr > td,
|
|
112
|
-
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table.ant-table-small .ant-table-container .ant-table-tbody tr.ant-table-measure-row + tr > td {
|
|
113
|
-
border-top: 1px solid;
|
|
114
|
-
border-top-color: transparent;
|
|
115
|
-
}
|
|
116
|
-
[class$='-basic-table'] .ant-table-wrapper .ant-table.ant-table-small .ant-table-container .ant-table-tbody tr > .ant-table-cell,
|
|
117
|
-
[class$='-basic-table-form-container'] .ant-table-wrapper .ant-table.ant-table-small .ant-table-container .ant-table-tbody tr > .ant-table-cell,
|
|
118
|
-
[class$='-basic-table ap-table--sticky'] .ant-table-wrapper .ant-table.ant-table-small .ant-table-container .ant-table-tbody tr > .ant-table-cell,
|
|
119
|
-
[class$='-basic-table-form-container ap-table--sticky'] .ant-table-wrapper .ant-table.ant-table-small .ant-table-container .ant-table-tbody tr > .ant-table-cell {
|
|
120
|
-
padding: 10.5px 16px;
|
|
121
|
-
line-height: 18px;
|
|
122
|
-
}
|
|
123
|
-
[class$='-basic-table-row__striped'] td {
|
|
124
|
-
background-color: #f6f9fa;
|
|
125
|
-
}
|
|
126
|
-
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper:has(ul.ant-pagination),
|
|
127
1
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper:has(ul.ant-pagination),
|
|
128
|
-
[class*='-
|
|
129
|
-
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper:has(ul.ant-pagination),
|
|
130
|
-
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper:has(ul.ant-pagination),
|
|
131
|
-
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper:has(ul.ant-pagination) {
|
|
2
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper:has(ul.ant-pagination) {
|
|
132
3
|
padding-bottom: 0;
|
|
133
4
|
}
|
|
134
|
-
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
135
5
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
136
|
-
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
137
|
-
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
138
6
|
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
139
|
-
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
140
|
-
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper,
|
|
141
7
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper,
|
|
142
|
-
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper,
|
|
143
|
-
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper,
|
|
144
8
|
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper,
|
|
145
|
-
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper,
|
|
146
|
-
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
147
9
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container,
|
|
148
|
-
[class*='-
|
|
149
|
-
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
150
|
-
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container,
|
|
151
|
-
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container {
|
|
10
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container {
|
|
152
11
|
overflow: visible;
|
|
153
12
|
}
|
|
154
|
-
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
155
13
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
156
|
-
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
157
|
-
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
158
14
|
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
159
|
-
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
160
|
-
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table,
|
|
161
15
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table,
|
|
162
|
-
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table,
|
|
163
|
-
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-table,
|
|
164
16
|
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-table,
|
|
165
|
-
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-table,
|
|
166
|
-
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
167
17
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table,
|
|
168
|
-
[class*='-
|
|
169
|
-
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
170
|
-
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table,
|
|
171
|
-
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table {
|
|
18
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table {
|
|
172
19
|
overflow: visible;
|
|
173
20
|
}
|
|
174
|
-
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
175
21
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
176
|
-
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
177
|
-
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
178
22
|
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
179
|
-
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
180
|
-
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container,
|
|
181
23
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container,
|
|
182
|
-
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container,
|
|
183
|
-
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container,
|
|
184
24
|
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container,
|
|
185
|
-
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container,
|
|
186
|
-
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
187
25
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
188
|
-
[class*='-
|
|
189
|
-
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
190
|
-
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container,
|
|
191
|
-
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container {
|
|
26
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container {
|
|
192
27
|
overflow: visible;
|
|
193
28
|
}
|
|
194
|
-
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
195
29
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
196
|
-
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
197
|
-
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
198
30
|
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
199
|
-
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
200
|
-
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
201
31
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
202
|
-
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
203
|
-
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
204
32
|
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
205
|
-
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-table .ant-table-container .ant-table-header,
|
|
206
|
-
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
207
33
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
208
|
-
[class*='-
|
|
209
|
-
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
210
|
-
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header,
|
|
211
|
-
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header {
|
|
34
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header {
|
|
212
35
|
position: sticky;
|
|
213
36
|
top: 0;
|
|
214
37
|
z-index: 90;
|
|
215
38
|
border-top: 4px solid #ffffff;
|
|
216
39
|
}
|
|
217
|
-
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .aplus-scroll-bar,
|
|
218
40
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .aplus-scroll-bar,
|
|
219
|
-
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .aplus-scroll-bar,
|
|
220
|
-
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .aplus-scroll-bar,
|
|
221
41
|
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .aplus-scroll-bar,
|
|
222
|
-
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .aplus-scroll-bar,
|
|
223
|
-
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .aplus-scroll-bar,
|
|
224
42
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .aplus-scroll-bar,
|
|
225
|
-
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .aplus-scroll-bar,
|
|
226
|
-
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .aplus-scroll-bar,
|
|
227
43
|
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .aplus-scroll-bar,
|
|
228
|
-
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .aplus-scroll-bar,
|
|
229
|
-
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .aplus-scroll-bar,
|
|
230
44
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container .aplus-scroll-bar,
|
|
231
|
-
[class*='-
|
|
232
|
-
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .aplus-scroll-bar,
|
|
233
|
-
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .aplus-scroll-bar,
|
|
234
|
-
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .aplus-scroll-bar {
|
|
45
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container .aplus-scroll-bar {
|
|
235
46
|
position: sticky;
|
|
236
47
|
bottom: -1px;
|
|
237
48
|
z-index: 90;
|
|
238
49
|
}
|
|
239
|
-
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container:has(ul.ant-pagination) .aplus-scroll-bar,
|
|
240
50
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container:has(ul.ant-pagination) .aplus-scroll-bar,
|
|
241
|
-
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container:has(ul.ant-pagination) .aplus-scroll-bar,
|
|
242
|
-
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container:has(ul.ant-pagination) .aplus-scroll-bar,
|
|
243
51
|
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container:has(ul.ant-pagination) .aplus-scroll-bar,
|
|
244
|
-
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container:has(ul.ant-pagination) .aplus-scroll-bar,
|
|
245
|
-
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper:has(ul.ant-pagination) .aplus-scroll-bar,
|
|
246
52
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper:has(ul.ant-pagination) .aplus-scroll-bar,
|
|
247
|
-
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper:has(ul.ant-pagination) .aplus-scroll-bar,
|
|
248
|
-
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper:has(ul.ant-pagination) .aplus-scroll-bar,
|
|
249
53
|
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper:has(ul.ant-pagination) .aplus-scroll-bar,
|
|
250
|
-
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper:has(ul.ant-pagination) .aplus-scroll-bar,
|
|
251
|
-
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container:has(ul.ant-pagination) .aplus-scroll-bar,
|
|
252
54
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container:has(ul.ant-pagination) .aplus-scroll-bar,
|
|
253
|
-
[class*='-
|
|
254
|
-
|
|
255
|
-
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container:has(ul.ant-pagination) .aplus-scroll-bar,
|
|
256
|
-
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container:has(ul.ant-pagination) .aplus-scroll-bar {
|
|
257
|
-
bottom: 48px;
|
|
55
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container:has(ul.ant-pagination) .aplus-scroll-bar {
|
|
56
|
+
bottom: 44px;
|
|
258
57
|
}
|
|
259
|
-
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
260
58
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
261
|
-
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
262
|
-
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
263
59
|
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
264
|
-
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
265
|
-
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper ul.ant-pagination,
|
|
266
60
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper ul.ant-pagination,
|
|
267
|
-
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper ul.ant-pagination,
|
|
268
|
-
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper ul.ant-pagination,
|
|
269
61
|
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper ul.ant-pagination,
|
|
270
|
-
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper ul.ant-pagination,
|
|
271
|
-
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
272
62
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container ul.ant-pagination,
|
|
273
|
-
[class*='-
|
|
274
|
-
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
275
|
-
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination,
|
|
276
|
-
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination {
|
|
63
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container ul.ant-pagination {
|
|
277
64
|
position: sticky;
|
|
278
65
|
bottom: 0;
|
|
279
66
|
z-index: 90;
|
|
280
67
|
margin: 0;
|
|
281
|
-
padding:
|
|
68
|
+
padding: 8px 0;
|
|
282
69
|
background-color: #ffffff;
|
|
283
70
|
}
|
|
284
|
-
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container:has(.aplus-scroll-bar) ul.ant-pagination,
|
|
285
71
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container:has(.aplus-scroll-bar) ul.ant-pagination,
|
|
286
|
-
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container:has(.aplus-scroll-bar) ul.ant-pagination,
|
|
287
|
-
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container:has(.aplus-scroll-bar) ul.ant-pagination,
|
|
288
72
|
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container:has(.aplus-scroll-bar) ul.ant-pagination,
|
|
289
|
-
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container:has(.aplus-scroll-bar) ul.ant-pagination,
|
|
290
|
-
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper:has(.aplus-scroll-bar) ul.ant-pagination,
|
|
291
73
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper:has(.aplus-scroll-bar) ul.ant-pagination,
|
|
292
|
-
[class*='-pro-table'].ap-table--sticky .aplus-ap-table__table-wrapper:has(.aplus-scroll-bar) ul.ant-pagination,
|
|
293
|
-
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper:has(.aplus-scroll-bar) ul.ant-pagination,
|
|
294
74
|
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper:has(.aplus-scroll-bar) ul.ant-pagination,
|
|
295
|
-
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper:has(.aplus-scroll-bar) ul.ant-pagination,
|
|
296
|
-
[class*='-basic-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container:has(.aplus-scroll-bar) ul.ant-pagination,
|
|
297
75
|
[class*='-ap-table'].ap-table--sticky .aplus-ap-table__table-wrapper .ant-spin-container:has(.aplus-scroll-bar) ul.ant-pagination,
|
|
298
|
-
[class*='-
|
|
299
|
-
[class*='-basic-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container:has(.aplus-scroll-bar) ul.ant-pagination,
|
|
300
|
-
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container:has(.aplus-scroll-bar) ul.ant-pagination,
|
|
301
|
-
[class*='-pro-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container:has(.aplus-scroll-bar) ul.ant-pagination {
|
|
76
|
+
[class*='-ap-table'].ap-table--sticky .ant-table-wrapper .ant-spin-container:has(.aplus-scroll-bar) ul.ant-pagination {
|
|
302
77
|
padding-top: 4px;
|
|
303
78
|
}
|