@aplus-frontend/ui 0.5.37 → 0.6.0-beta.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 +74 -72
- package/es/src/ap-field/select/index.vue.d.ts +2 -2
- package/es/src/ap-field/tree-select/index.vue.d.ts +3 -3
- package/es/src/ap-form/drawer-form/index.vue.d.ts +10 -10
- package/es/src/ap-form/interface.d.ts +31 -1
- package/es/src/ap-form/item/index.vue.d.ts +22 -22
- package/es/src/ap-form/items/checkbox/index.vue.d.ts +3 -3
- package/es/src/ap-form/items/date/index.vue.d.ts +3 -3
- package/es/src/ap-form/items/date-range/index.vue.d.ts +3 -3
- package/es/src/ap-form/items/number/index.vue.d.ts +13 -13
- package/es/src/ap-form/items/radio/index.vue.d.ts +3 -3
- package/es/src/ap-form/items/select/index.vue.d.ts +31 -31
- package/es/src/ap-form/items/switch/index.vue.d.ts +3 -3
- package/es/src/ap-form/items/text/index.vue.d.ts +15 -15
- package/es/src/ap-form/items/text/password.vue.d.ts +15 -15
- package/es/src/ap-form/items/text-area/index.vue.d.ts +3 -3
- package/es/src/ap-form/items/tree-select/index.vue.d.ts +35 -35
- package/es/src/ap-form/modal-form/index.vue.d.ts +10 -10
- package/es/src/ap-form/render/item.vue.d.ts +2 -2
- package/es/src/ap-form/search-form/components/popover-filter.vue.d.ts +4 -0
- package/es/src/ap-form/search-form/components/popover-filter.vue.mjs +4 -0
- package/es/src/ap-form/search-form/components/popover-filter.vue2.mjs +102 -0
- package/es/src/ap-form/search-form/components/popover-sorter/index.vue.d.ts +4 -0
- package/es/src/ap-form/search-form/components/popover-sorter/index.vue.mjs +4 -0
- package/es/src/ap-form/search-form/components/popover-sorter/index.vue2.mjs +128 -0
- package/es/src/ap-form/search-form/components/popover-sorter/sortable-item.vue.d.ts +6 -0
- package/es/src/ap-form/search-form/components/popover-sorter/sortable-item.vue.mjs +4 -0
- package/es/src/ap-form/search-form/components/popover-sorter/sortable-item.vue2.mjs +39 -0
- package/es/src/ap-form/search-form/hooks/use-count-per-row.d.ts +3 -0
- package/es/src/ap-form/search-form/hooks/use-count-per-row.mjs +17 -0
- package/es/src/ap-form/search-form/index.vue.d.ts +14 -16
- package/es/src/ap-form/search-form/index.vue.mjs +127 -127
- package/es/src/ap-grid/index.vue.mjs +97 -93
- package/es/src/ap-info-layout/ApInfoLayout.vue.mjs +21 -16
- package/es/src/ap-table/ap-table.vue2.mjs +108 -104
- package/es/src/ap-table/constants.d.ts +161 -161
- package/es/src/ap-table/context.d.ts +5 -0
- package/es/src/ap-table/context.mjs +13 -5
- package/es/src/ap-table/utils.d.ts +147 -147
- package/es/src/ap-upload/apUpload.vue.d.ts +8 -8
- package/es/src/business/ap-batch-action-group/ApBatchActionGroup.vue.d.ts +14 -1
- package/es/src/business/ap-batch-action-group/ApBatchActionGroup.vue2.mjs +65 -51
- package/es/src/business/ap-batch-action-group/index.d.ts +3 -1
- package/es/src/business/ap-size-input/ApSizeInput.d.ts +1 -1
- package/es/src/business/ap-size-input/index.d.ts +3 -3
- package/es/src/business/ap-table-modal/index.d.ts +15 -15
- package/es/src/business/ap-table-modal/table-modal.vue.d.ts +5 -5
- package/es/src/business/ap-view/ap-view.vue.d.ts +6 -0
- package/es/src/business/ap-view/ap-view.vue.mjs +4 -0
- package/es/src/business/ap-view/ap-view.vue2.mjs +171 -0
- package/es/src/business/ap-view/components/main-button-content.vue.d.ts +831 -0
- package/es/src/business/ap-view/components/main-button-content.vue.mjs +4 -0
- package/es/src/business/ap-view/components/main-button-content.vue2.mjs +175 -0
- package/es/src/business/ap-view/components/menu-list-content.vue.d.ts +832 -0
- package/es/src/business/ap-view/components/menu-list-content.vue.mjs +4 -0
- package/es/src/business/ap-view/components/menu-list-content.vue2.mjs +156 -0
- package/es/src/business/ap-view/hooks/use-view-provide.d.ts +14 -0
- package/es/src/business/ap-view/hooks/use-view-provide.mjs +8 -0
- package/es/src/business/ap-view/icons/line-delete.vue.d.ts +3 -0
- package/es/src/business/ap-view/icons/line-delete.vue.mjs +29 -0
- package/es/src/business/ap-view/icons/line-down.vue.d.ts +3 -0
- package/es/src/business/ap-view/icons/line-down.vue.mjs +29 -0
- package/es/src/business/ap-view/icons/line-eye.vue.d.ts +3 -0
- package/es/src/business/ap-view/icons/line-eye.vue.mjs +29 -0
- package/es/src/business/ap-view/index.d.ts +27 -0
- package/es/src/business/ap-view/index.mjs +8 -0
- package/es/src/business/ap-view/interface.d.ts +54 -0
- package/es/src/business/ap-view/interface.mjs +1 -0
- package/es/src/business/ap-view/style/css.d.ts +0 -0
- package/es/src/business/ap-view/style/css.js +1 -0
- package/es/src/business/ap-view/style/index.d.ts +0 -0
- package/es/src/business/ap-view/style/index.js +1 -0
- package/es/src/business/ap-view/utils/enum.d.ts +1 -0
- package/es/src/business/ap-view/utils/enum.mjs +4 -0
- package/es/src/business/ap-view/utils/uuid.d.ts +5 -0
- package/es/src/business/ap-view/utils/uuid.mjs +22 -0
- package/es/src/business/batch-input-group/form-item.vue.d.ts +3 -3
- package/es/src/business/batch-input-group/index.vue.d.ts +6 -6
- package/es/src/business/index.d.ts +1 -0
- package/es/src/business/index.mjs +25 -23
- package/es/src/config-provider/config-provider-props.d.ts +5 -0
- package/es/src/config-provider/config-provider-props.mjs +4 -0
- package/es/src/config-provider/config-provider.d.ts +25 -1
- package/es/src/config-provider/config-provider.mjs +21 -20
- package/es/src/config-provider/css-var.d.ts +14 -0
- package/es/src/config-provider/css-var.mjs +40 -12
- package/es/src/config-provider/hooks/use-global-config.d.ts +5 -0
- package/es/src/config-provider/index.d.ts +89 -3
- package/es/src/full-screen/interface.d.ts +1 -1
- package/es/src/index.mjs +61 -59
- package/es/src/locale/lang/en.mjs +22 -1
- package/es/src/locale/lang/zh-cn.mjs +22 -1
- package/es/src/path-map.mjs +2 -1
- package/es/src/utils/config-provider-preset.d.ts +4 -4
- package/es/src/work-order-modal/work-order-modal.vue.d.ts +6 -6
- package/lib/index.js +1 -1
- package/lib/src/ap-field/select/index.vue.d.ts +2 -2
- package/lib/src/ap-field/tree-select/index.vue.d.ts +3 -3
- package/lib/src/ap-form/drawer-form/index.vue.d.ts +10 -10
- package/lib/src/ap-form/interface.d.ts +31 -1
- package/lib/src/ap-form/item/index.vue.d.ts +22 -22
- package/lib/src/ap-form/items/checkbox/index.vue.d.ts +3 -3
- package/lib/src/ap-form/items/date/index.vue.d.ts +3 -3
- package/lib/src/ap-form/items/date-range/index.vue.d.ts +3 -3
- package/lib/src/ap-form/items/number/index.vue.d.ts +13 -13
- package/lib/src/ap-form/items/radio/index.vue.d.ts +3 -3
- package/lib/src/ap-form/items/select/index.vue.d.ts +31 -31
- package/lib/src/ap-form/items/switch/index.vue.d.ts +3 -3
- package/lib/src/ap-form/items/text/index.vue.d.ts +15 -15
- package/lib/src/ap-form/items/text/password.vue.d.ts +15 -15
- package/lib/src/ap-form/items/text-area/index.vue.d.ts +3 -3
- package/lib/src/ap-form/items/tree-select/index.vue.d.ts +35 -35
- package/lib/src/ap-form/modal-form/index.vue.d.ts +10 -10
- package/lib/src/ap-form/render/item.vue.d.ts +2 -2
- package/lib/src/ap-form/search-form/components/popover-filter.vue.d.ts +4 -0
- package/lib/src/ap-form/search-form/components/popover-filter.vue.js +1 -0
- package/lib/src/ap-form/search-form/components/popover-filter.vue2.js +1 -0
- package/lib/src/ap-form/search-form/components/popover-sorter/index.vue.d.ts +4 -0
- package/lib/src/ap-form/search-form/components/popover-sorter/index.vue.js +1 -0
- package/lib/src/ap-form/search-form/components/popover-sorter/index.vue2.js +1 -0
- package/lib/src/ap-form/search-form/components/popover-sorter/sortable-item.vue.d.ts +6 -0
- package/lib/src/ap-form/search-form/components/popover-sorter/sortable-item.vue.js +1 -0
- package/lib/src/ap-form/search-form/components/popover-sorter/sortable-item.vue2.js +1 -0
- package/lib/src/ap-form/search-form/hooks/use-count-per-row.d.ts +3 -0
- package/lib/src/ap-form/search-form/hooks/use-count-per-row.js +1 -0
- package/lib/src/ap-form/search-form/index.vue.d.ts +14 -16
- package/lib/src/ap-form/search-form/index.vue.js +1 -1
- package/lib/src/ap-grid/index.vue.js +1 -1
- package/lib/src/ap-info-layout/ApInfoLayout.vue.js +1 -1
- package/lib/src/ap-table/ap-table.vue2.js +1 -1
- package/lib/src/ap-table/constants.d.ts +161 -161
- package/lib/src/ap-table/context.d.ts +5 -0
- package/lib/src/ap-table/context.js +1 -1
- package/lib/src/ap-table/utils.d.ts +147 -147
- package/lib/src/ap-upload/apUpload.vue.d.ts +8 -8
- package/lib/src/business/ap-batch-action-group/ApBatchActionGroup.vue.d.ts +14 -1
- package/lib/src/business/ap-batch-action-group/ApBatchActionGroup.vue2.js +1 -1
- package/lib/src/business/ap-batch-action-group/index.d.ts +3 -1
- package/lib/src/business/ap-size-input/ApSizeInput.d.ts +1 -1
- package/lib/src/business/ap-size-input/index.d.ts +3 -3
- package/lib/src/business/ap-table-modal/index.d.ts +15 -15
- package/lib/src/business/ap-table-modal/table-modal.vue.d.ts +5 -5
- package/lib/src/business/ap-view/ap-view.vue.d.ts +6 -0
- package/lib/src/business/ap-view/ap-view.vue.js +1 -0
- package/lib/src/business/ap-view/ap-view.vue2.js +1 -0
- package/lib/src/business/ap-view/components/main-button-content.vue.d.ts +831 -0
- package/lib/src/business/ap-view/components/main-button-content.vue.js +1 -0
- package/lib/src/business/ap-view/components/main-button-content.vue2.js +1 -0
- package/lib/src/business/ap-view/components/menu-list-content.vue.d.ts +832 -0
- package/lib/src/business/ap-view/components/menu-list-content.vue.js +1 -0
- package/lib/src/business/ap-view/components/menu-list-content.vue2.js +1 -0
- package/lib/src/business/ap-view/hooks/use-view-provide.d.ts +14 -0
- package/lib/src/business/ap-view/hooks/use-view-provide.js +1 -0
- package/lib/src/business/ap-view/icons/line-delete.vue.d.ts +3 -0
- package/lib/src/business/ap-view/icons/line-delete.vue.js +1 -0
- package/lib/src/business/ap-view/icons/line-down.vue.d.ts +3 -0
- package/lib/src/business/ap-view/icons/line-down.vue.js +1 -0
- package/lib/src/business/ap-view/icons/line-eye.vue.d.ts +3 -0
- package/lib/src/business/ap-view/icons/line-eye.vue.js +1 -0
- package/lib/src/business/ap-view/index.d.ts +27 -0
- package/lib/src/business/ap-view/index.js +1 -0
- package/lib/src/business/ap-view/interface.d.ts +54 -0
- package/lib/src/business/ap-view/interface.js +1 -0
- package/lib/src/business/ap-view/style/css.cjs +1 -0
- package/lib/src/business/ap-view/style/css.d.ts +0 -0
- package/lib/src/business/ap-view/style/index.cjs +1 -0
- package/lib/src/business/ap-view/style/index.d.ts +0 -0
- package/lib/src/business/ap-view/utils/enum.d.ts +1 -0
- package/lib/src/business/ap-view/utils/enum.js +1 -0
- package/lib/src/business/ap-view/utils/uuid.d.ts +5 -0
- package/lib/src/business/ap-view/utils/uuid.js +1 -0
- package/lib/src/business/batch-input-group/form-item.vue.d.ts +3 -3
- package/lib/src/business/batch-input-group/index.vue.d.ts +6 -6
- package/lib/src/business/index.d.ts +1 -0
- package/lib/src/business/index.js +1 -1
- package/lib/src/config-provider/config-provider-props.d.ts +5 -0
- package/lib/src/config-provider/config-provider-props.js +1 -1
- package/lib/src/config-provider/config-provider.d.ts +25 -1
- package/lib/src/config-provider/config-provider.js +1 -1
- package/lib/src/config-provider/css-var.d.ts +14 -0
- package/lib/src/config-provider/css-var.js +1 -1
- package/lib/src/config-provider/hooks/use-global-config.d.ts +5 -0
- package/lib/src/config-provider/index.d.ts +89 -3
- package/lib/src/full-screen/interface.d.ts +1 -1
- 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/path-map.js +1 -1
- package/lib/src/utils/config-provider-preset.d.ts +4 -4
- package/lib/src/work-order-modal/work-order-modal.vue.d.ts +6 -6
- package/package.json +7 -7
- package/theme/ap-action/item-dropdown.css +28 -0
- package/theme/ap-action/item-dropdown.less +1 -1
- package/theme/ap-action/item.css +35 -1
- package/theme/ap-action/item.less +1 -2
- package/theme/ap-appendix/ap-appendix.css +28 -0
- package/theme/ap-attachment/ap-attachment.css +28 -0
- package/theme/ap-batch-action/ap-batch-action.css +28 -0
- package/theme/ap-button/ap-button.css +28 -0
- package/theme/ap-card/ap-card.css +28 -0
- package/theme/ap-descriptions/ap-descriptions.css +28 -0
- package/theme/ap-download/ap-download.css +28 -0
- package/theme/ap-expand-alert/ap-expand-alert.css +28 -0
- package/theme/ap-field/checkbox.css +28 -0
- package/theme/ap-field/index.css +28 -0
- package/theme/ap-field/number.css +28 -0
- package/theme/ap-field/radio.css +28 -0
- package/theme/ap-field/text-area.css +28 -0
- package/theme/ap-form/ap-form-item-group.css +28 -0
- package/theme/ap-form/ap-form-item.css +28 -0
- package/theme/ap-form/drawer-form.css +28 -0
- package/theme/ap-form/index.css +169 -0
- package/theme/ap-form/item-text-group.css +28 -0
- package/theme/ap-form/item-text.css +28 -0
- package/theme/ap-form/modal-form.css +28 -0
- package/theme/ap-form/search-form-sorter.css +120 -0
- package/theme/ap-form/search-form-sorter.less +71 -0
- package/theme/ap-form/search-form.css +169 -0
- package/theme/ap-form/search-form.less +56 -0
- package/theme/ap-grid/editable.css +28 -0
- package/theme/ap-grid/index.css +176 -1
- package/theme/ap-group-search/ap-extension-select.css +28 -0
- package/theme/ap-group-search/ap-group-search.css +28 -0
- package/theme/ap-group-search/ap-popover-select.css +28 -0
- package/theme/ap-image/ap-image.css +28 -0
- package/theme/ap-input-radio/ap-input-radio.css +28 -0
- package/theme/ap-label/ap-label.css +28 -0
- package/theme/ap-ladder/ap-ladder.css +28 -0
- package/theme/ap-layout/ap-info-layout.css +28 -0
- package/theme/ap-list/index.css +28 -0
- package/theme/ap-product-info/ap-product-info.css +28 -0
- package/theme/ap-select-layout/ap-select-layout.css +28 -0
- package/theme/ap-size-input/ap-size-input.css +28 -0
- package/theme/ap-status/ap-status.css +28 -0
- package/theme/ap-summary/index.css +28 -0
- package/theme/ap-table/ap-table-index.css +28 -0
- package/theme/ap-table/ap-table-paragraph-ellipsis.css +28 -0
- package/theme/ap-table/ap-table.css +190 -13
- package/theme/ap-table/ap-table.less +0 -1
- package/theme/ap-table/setting/index.css +42 -0
- package/theme/ap-table/setting/modal.css +36 -0
- package/theme/ap-table/setting/modal.less +1 -0
- package/theme/ap-table/setting/select-group.css +28 -0
- package/theme/ap-table/setting/sortable-item-meta.css +28 -0
- package/theme/ap-table/setting/sortable-item.css +28 -0
- package/theme/ap-table/setting/sorter.css +34 -0
- package/theme/ap-table/setting/sorter.less +1 -2
- package/theme/ap-table-modal/index.css +190 -13
- package/theme/ap-tag/ap-tag-group.css +28 -0
- package/theme/ap-tag/ap-tag.css +28 -0
- package/theme/ap-title/ap-title.css +28 -0
- package/theme/ap-upload/index.css +28 -0
- package/theme/ap-upload/multiple-file.css +28 -0
- package/theme/ap-upload/picture.css +28 -0
- package/theme/ap-upload/single-file.css +28 -0
- package/theme/ap-upload/upload.css +28 -0
- package/theme/ap-upload-single/index.css +28 -0
- package/theme/ap-view/ap-view.css +149 -0
- package/theme/ap-view/ap-view.less +128 -0
- package/theme/batch-input-group/index.css +28 -0
- package/theme/batch-input-group/popover-input.css +28 -0
- package/theme/check-card/index.css +49 -1
- package/theme/check-card/index.less +3 -4
- package/theme/editable-table/index.css +176 -1
- package/theme/full-screen/index.css +28 -0
- package/theme/index.css +340 -15
- package/theme/index.less +1 -0
- package/theme/mask/index.css +28 -0
- package/theme/mixins/config.less +1 -0
- package/theme/mixins/mixins.css +28 -0
- package/theme/mixins/mixins.less +35 -0
- package/theme/scroll-bar/index.css +28 -0
- package/theme/scroll-view/index.css +28 -0
- package/theme/splitter/index.css +28 -0
- package/theme/text/group.css +28 -0
- package/theme/text/index.css +36 -1
- package/theme/text/index.less +1 -1
- package/theme/work-order-modal/index.css +28 -0
package/theme/index.css
CHANGED
|
@@ -1,7 +1,41 @@
|
|
|
1
|
+
.reset-component {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
color: rgba(0 0 0 / 85%);
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
font-family: inherit;
|
|
8
|
+
line-height: 22px;
|
|
9
|
+
list-style: none;
|
|
10
|
+
}
|
|
11
|
+
.clear-fix::before {
|
|
12
|
+
display: table;
|
|
13
|
+
content: '';
|
|
14
|
+
}
|
|
15
|
+
.clear-fix::after {
|
|
16
|
+
display: table;
|
|
17
|
+
clear: both;
|
|
18
|
+
content: '';
|
|
19
|
+
}
|
|
20
|
+
.common-style {
|
|
21
|
+
box-sizing: border-box;
|
|
22
|
+
font-size: 14px;
|
|
23
|
+
font-family: inherit;
|
|
24
|
+
}
|
|
25
|
+
.common-style::before,
|
|
26
|
+
.common-style::after {
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
}
|
|
1
29
|
.aplus-action-item {
|
|
2
|
-
|
|
30
|
+
box-sizing: border-box;
|
|
31
|
+
margin: 0;
|
|
32
|
+
padding: 0;
|
|
33
|
+
color: rgba(0 0 0 / 85%);
|
|
3
34
|
font-size: 14px;
|
|
35
|
+
font-family: inherit;
|
|
4
36
|
line-height: 22px;
|
|
37
|
+
list-style: none;
|
|
38
|
+
display: inline-block;
|
|
5
39
|
cursor: pointer;
|
|
6
40
|
}
|
|
7
41
|
.aplus-action-item--primary {
|
|
@@ -485,6 +519,98 @@
|
|
|
485
519
|
.aplus-ap-form-modal-form .ant-modal-close {
|
|
486
520
|
top: 16px;
|
|
487
521
|
}
|
|
522
|
+
.aplus-search-form-sorter-content {
|
|
523
|
+
width: 560px;
|
|
524
|
+
}
|
|
525
|
+
.aplus-search-form-sorter-header {
|
|
526
|
+
padding: 16px 16px 0px;
|
|
527
|
+
}
|
|
528
|
+
.aplus-search-form-sorter-header-title {
|
|
529
|
+
box-sizing: border-box;
|
|
530
|
+
margin: 0;
|
|
531
|
+
padding: 0;
|
|
532
|
+
color: rgba(0 0 0 / 85%);
|
|
533
|
+
font-size: 14px;
|
|
534
|
+
font-family: inherit;
|
|
535
|
+
line-height: 22px;
|
|
536
|
+
list-style: none;
|
|
537
|
+
font-size: 16px;
|
|
538
|
+
font-weight: 700;
|
|
539
|
+
display: inline-block;
|
|
540
|
+
padding-bottom: 4px;
|
|
541
|
+
}
|
|
542
|
+
.aplus-search-form-sorter-header-desc {
|
|
543
|
+
box-sizing: border-box;
|
|
544
|
+
margin: 0;
|
|
545
|
+
padding: 0;
|
|
546
|
+
color: rgba(0 0 0 / 85%);
|
|
547
|
+
font-size: 14px;
|
|
548
|
+
font-family: inherit;
|
|
549
|
+
line-height: 22px;
|
|
550
|
+
list-style: none;
|
|
551
|
+
color: #8896b0;
|
|
552
|
+
}
|
|
553
|
+
.aplus-search-form-sorter-header-action-wrapper {
|
|
554
|
+
padding: 8px;
|
|
555
|
+
margin: -8px;
|
|
556
|
+
cursor: pointer;
|
|
557
|
+
}
|
|
558
|
+
.aplus-search-form-sorter-header-reset-btn {
|
|
559
|
+
box-sizing: border-box;
|
|
560
|
+
margin: 0;
|
|
561
|
+
padding: 0;
|
|
562
|
+
color: rgba(0 0 0 / 85%);
|
|
563
|
+
font-size: 14px;
|
|
564
|
+
font-family: inherit;
|
|
565
|
+
line-height: 22px;
|
|
566
|
+
list-style: none;
|
|
567
|
+
color: #0070ff;
|
|
568
|
+
}
|
|
569
|
+
.aplus-search-form-sorter-sorter-wrapper {
|
|
570
|
+
display: flex;
|
|
571
|
+
flex-direction: row;
|
|
572
|
+
flex-wrap: wrap;
|
|
573
|
+
margin-left: -4px;
|
|
574
|
+
margin-right: -4px;
|
|
575
|
+
row-gap: 8px;
|
|
576
|
+
}
|
|
577
|
+
.aplus-search-form-sorter-sorter-item {
|
|
578
|
+
flex: 0 0 33.333333%;
|
|
579
|
+
max-width: 33.333333%;
|
|
580
|
+
padding-inline: 4px;
|
|
581
|
+
}
|
|
582
|
+
.aplus-search-form-sorter-sorter-item > div {
|
|
583
|
+
border: 1px solid #E9EDF3;
|
|
584
|
+
border-radius: 4px;
|
|
585
|
+
padding: 8px;
|
|
586
|
+
display: flex;
|
|
587
|
+
align-items: center;
|
|
588
|
+
}
|
|
589
|
+
.aplus-search-form-sorter-sorter-item > div:hover {
|
|
590
|
+
border-color: var(--basic-color-primary, #0070ff);
|
|
591
|
+
cursor: pointer;
|
|
592
|
+
}
|
|
593
|
+
.aplus-search-form-sorter-sorter-item > div:hover .aplus-search-form-sorter-sorter-item-holder {
|
|
594
|
+
color: var(--basic-color-primary, #0070ff) !important;
|
|
595
|
+
}
|
|
596
|
+
.aplus-search-form-sorter-sorter-item--hidden {
|
|
597
|
+
display: none;
|
|
598
|
+
}
|
|
599
|
+
.aplus-search-form-sorter-sorter-item-text {
|
|
600
|
+
box-sizing: border-box;
|
|
601
|
+
margin: 0;
|
|
602
|
+
padding: 0;
|
|
603
|
+
color: rgba(0 0 0 / 85%);
|
|
604
|
+
font-size: 14px;
|
|
605
|
+
font-family: inherit;
|
|
606
|
+
line-height: 22px;
|
|
607
|
+
list-style: none;
|
|
608
|
+
padding-left: 4px;
|
|
609
|
+
max-width: 100%;
|
|
610
|
+
white-space: nowrap;
|
|
611
|
+
overflow: hidden;
|
|
612
|
+
text-overflow: ellipsis;
|
|
613
|
+
}
|
|
488
614
|
.aplus-ap-form-search-form .ant-form-item {
|
|
489
615
|
margin-bottom: 16px;
|
|
490
616
|
}
|
|
@@ -494,6 +620,55 @@
|
|
|
494
620
|
.aplus-ap-form-search-form .ant-form-item-control .ant-input-number {
|
|
495
621
|
width: 100%;
|
|
496
622
|
}
|
|
623
|
+
.aplus-ap-form-search-form__popover .ant-form-item {
|
|
624
|
+
margin-bottom: 16px;
|
|
625
|
+
}
|
|
626
|
+
.aplus-ap-form-search-form__popover .ant-popover-arrow {
|
|
627
|
+
display: none;
|
|
628
|
+
}
|
|
629
|
+
.aplus-ap-form-search-form__popover .ant-popover-inner {
|
|
630
|
+
padding: 0;
|
|
631
|
+
}
|
|
632
|
+
.aplus-ap-form-search-form__popover-content {
|
|
633
|
+
padding: 12px 16px 16px;
|
|
634
|
+
}
|
|
635
|
+
.aplus-ap-form-search-form__popover-content textarea {
|
|
636
|
+
padding: 0;
|
|
637
|
+
}
|
|
638
|
+
.aplus-ap-form-search-form__popover-footer {
|
|
639
|
+
padding: 12px 16px;
|
|
640
|
+
}
|
|
641
|
+
.aplus-ap-form-search-form__popover-footer-confirm-btn {
|
|
642
|
+
margin-left: 10px;
|
|
643
|
+
}
|
|
644
|
+
.aplus-ap-form-search-form-column-setting-trigger-wrapper {
|
|
645
|
+
flex-shrink: 0;
|
|
646
|
+
}
|
|
647
|
+
.aplus-ap-form-search-form-column-setting-trigger-wrapper .ant-btn:not(:only-child):first-child {
|
|
648
|
+
border-top-right-radius: 0px;
|
|
649
|
+
border-bottom-right-radius: 0px;
|
|
650
|
+
}
|
|
651
|
+
.aplus-ap-form-search-form-column-setting-trigger-wrapper .ant-btn:not(:only-child):first-child:hover {
|
|
652
|
+
z-index: 1;
|
|
653
|
+
}
|
|
654
|
+
.aplus-ap-form-search-form-column-setting-trigger-wrapper .ant-btn:not(:only-child):last-child {
|
|
655
|
+
border-top-left-radius: 0px;
|
|
656
|
+
border-bottom-left-radius: 0px;
|
|
657
|
+
margin-left: -1px;
|
|
658
|
+
}
|
|
659
|
+
.aplus-ap-form-search-form-column-setting-trigger-wrapper .ant-btn:not(:only-child):last-child:hover {
|
|
660
|
+
z-index: 1;
|
|
661
|
+
}
|
|
662
|
+
.aplus-ap-form-search-form-column-setting-trigger-wrapper span.aplus-frontend-icon {
|
|
663
|
+
line-height: 0px;
|
|
664
|
+
vertical-align: -0.125em;
|
|
665
|
+
}
|
|
666
|
+
.aplus-ap-form-search-form-action-btn {
|
|
667
|
+
padding-inline: 12px;
|
|
668
|
+
}
|
|
669
|
+
.aplus-ap-form-search-form-action-btn-reset {
|
|
670
|
+
background-color: #E9EDF3;
|
|
671
|
+
}
|
|
497
672
|
.aplus-ap-form-item-text-group-compact .ant-select-focused {
|
|
498
673
|
z-index: 1;
|
|
499
674
|
}
|
|
@@ -1075,18 +1250,6 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1075
1250
|
border-radius: 9px;
|
|
1076
1251
|
background-color: #979797;
|
|
1077
1252
|
}
|
|
1078
|
-
.aplus-ap-table-pagination {
|
|
1079
|
-
margin-top: 16px;
|
|
1080
|
-
}
|
|
1081
|
-
.aplus-ap-table-pagination__total {
|
|
1082
|
-
font-size: 14px;
|
|
1083
|
-
line-height: 22px;
|
|
1084
|
-
color: #333333;
|
|
1085
|
-
padding-block: 6px;
|
|
1086
|
-
}
|
|
1087
|
-
.aplus-ap-table-pagination__total-right {
|
|
1088
|
-
padding-inline-start: 10px;
|
|
1089
|
-
}
|
|
1090
1253
|
.aplus-ap-column-setting-wrapper {
|
|
1091
1254
|
display: flex;
|
|
1092
1255
|
flex-direction: row;
|
|
@@ -1094,6 +1257,14 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1094
1257
|
height: 100%;
|
|
1095
1258
|
}
|
|
1096
1259
|
.aplus-ap-column-setting-wrapper .aplus-ap-table-table-header__title {
|
|
1260
|
+
box-sizing: border-box;
|
|
1261
|
+
margin: 0;
|
|
1262
|
+
padding: 0;
|
|
1263
|
+
color: rgba(0 0 0 / 85%);
|
|
1264
|
+
font-size: 14px;
|
|
1265
|
+
font-family: inherit;
|
|
1266
|
+
line-height: 22px;
|
|
1267
|
+
list-style: none;
|
|
1097
1268
|
display: inline-block;
|
|
1098
1269
|
-webkit-line-clamp: unset;
|
|
1099
1270
|
-webkit-box-orient: unset;
|
|
@@ -1214,8 +1385,14 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1214
1385
|
padding: 16px 20px;
|
|
1215
1386
|
}
|
|
1216
1387
|
.aplus-column-setting-sorter-header-title {
|
|
1388
|
+
box-sizing: border-box;
|
|
1389
|
+
margin: 0;
|
|
1390
|
+
padding: 0;
|
|
1391
|
+
color: rgba(0 0 0 / 85%);
|
|
1217
1392
|
font-size: 14px;
|
|
1393
|
+
font-family: inherit;
|
|
1218
1394
|
line-height: 22px;
|
|
1395
|
+
list-style: none;
|
|
1219
1396
|
font-weight: bold;
|
|
1220
1397
|
color: #182948;
|
|
1221
1398
|
}
|
|
@@ -1787,6 +1964,14 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1787
1964
|
min-width: 0;
|
|
1788
1965
|
}
|
|
1789
1966
|
.aplus-check-card {
|
|
1967
|
+
box-sizing: border-box;
|
|
1968
|
+
margin: 0;
|
|
1969
|
+
padding: 0;
|
|
1970
|
+
color: rgba(0 0 0 / 85%);
|
|
1971
|
+
font-size: 14px;
|
|
1972
|
+
font-family: inherit;
|
|
1973
|
+
line-height: 22px;
|
|
1974
|
+
list-style: none;
|
|
1790
1975
|
border-radius: 4px;
|
|
1791
1976
|
position: relative;
|
|
1792
1977
|
}
|
|
@@ -1843,9 +2028,15 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1843
2028
|
padding: 12px 24px;
|
|
1844
2029
|
}
|
|
1845
2030
|
.aplus-check-card__title {
|
|
1846
|
-
|
|
2031
|
+
box-sizing: border-box;
|
|
2032
|
+
margin: 0;
|
|
2033
|
+
padding: 0;
|
|
2034
|
+
color: rgba(0 0 0 / 85%);
|
|
1847
2035
|
font-size: 14px;
|
|
2036
|
+
font-family: inherit;
|
|
1848
2037
|
line-height: 22px;
|
|
2038
|
+
list-style: none;
|
|
2039
|
+
margin-bottom: 8px;
|
|
1849
2040
|
color: #333;
|
|
1850
2041
|
font-weight: 500;
|
|
1851
2042
|
}
|
|
@@ -1853,8 +2044,14 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
1853
2044
|
color: #ABB7CC;
|
|
1854
2045
|
}
|
|
1855
2046
|
.aplus-check-card__content {
|
|
2047
|
+
box-sizing: border-box;
|
|
2048
|
+
margin: 0;
|
|
2049
|
+
padding: 0;
|
|
2050
|
+
color: rgba(0 0 0 / 85%);
|
|
1856
2051
|
font-size: 14px;
|
|
2052
|
+
font-family: inherit;
|
|
1857
2053
|
line-height: 22px;
|
|
2054
|
+
list-style: none;
|
|
1858
2055
|
color: #333;
|
|
1859
2056
|
}
|
|
1860
2057
|
.aplus-check-card__content--disabled {
|
|
@@ -2502,8 +2699,15 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2502
2699
|
padding-block: 20px 0px !important;
|
|
2503
2700
|
}
|
|
2504
2701
|
.aplus-ap-text {
|
|
2505
|
-
|
|
2702
|
+
box-sizing: border-box;
|
|
2703
|
+
margin: 0;
|
|
2704
|
+
padding: 0;
|
|
2705
|
+
color: rgba(0 0 0 / 85%);
|
|
2706
|
+
font-size: 14px;
|
|
2707
|
+
font-family: inherit;
|
|
2506
2708
|
line-height: 22px;
|
|
2709
|
+
list-style: none;
|
|
2710
|
+
display: flex;
|
|
2507
2711
|
align-items: baseline;
|
|
2508
2712
|
}
|
|
2509
2713
|
.aplus-ap-text--vertical {
|
|
@@ -2843,3 +3047,124 @@ div.aplus-ap-info-layout-admin__header-shadow.aplus-ap-info-layout-admin__sticky
|
|
|
2843
3047
|
.aplus-splitter-panel:has(.aplus-splitter:only-child) {
|
|
2844
3048
|
overflow: hidden;
|
|
2845
3049
|
}
|
|
3050
|
+
.aplus-ap-view > .ant-btn {
|
|
3051
|
+
padding: 0;
|
|
3052
|
+
}
|
|
3053
|
+
.aplus-ap-view > .ant-dropdown-trigger {
|
|
3054
|
+
color: var(--ap-view-icon-color, #8896b0);
|
|
3055
|
+
}
|
|
3056
|
+
.aplus-ap-view-main-content {
|
|
3057
|
+
padding: 4px 8px;
|
|
3058
|
+
display: flex;
|
|
3059
|
+
align-items: center;
|
|
3060
|
+
justify-content: center;
|
|
3061
|
+
}
|
|
3062
|
+
.aplus-ap-view-main-content-disabled {
|
|
3063
|
+
color: var(--ap-view-message-color, #abb7cc);
|
|
3064
|
+
cursor: not-allowed;
|
|
3065
|
+
}
|
|
3066
|
+
.ant-btn-default:has(.aplus-ap-view-main-content-disabled) {
|
|
3067
|
+
border-color: var(--ap-view-border-color, #DEE4ED) !important;
|
|
3068
|
+
}
|
|
3069
|
+
.aplus-ap-view-icon {
|
|
3070
|
+
width: 100%;
|
|
3071
|
+
height: 100%;
|
|
3072
|
+
font-size: 14px;
|
|
3073
|
+
display: flex;
|
|
3074
|
+
justify-content: center;
|
|
3075
|
+
align-items: center;
|
|
3076
|
+
}
|
|
3077
|
+
.aplus-ap-view-main-content-popover {
|
|
3078
|
+
width: 340px;
|
|
3079
|
+
}
|
|
3080
|
+
.aplus-ap-view-main-content-popover-title-content {
|
|
3081
|
+
display: flex;
|
|
3082
|
+
align-items: center;
|
|
3083
|
+
justify-content: space-between;
|
|
3084
|
+
margin-bottom: 8px;
|
|
3085
|
+
}
|
|
3086
|
+
.aplus-ap-view-main-content-popover-title-content-title {
|
|
3087
|
+
font-size: 14px;
|
|
3088
|
+
font-weight: 500;
|
|
3089
|
+
line-height: 22px;
|
|
3090
|
+
}
|
|
3091
|
+
.aplus-ap-view-main-content-popover-title-content .ant-form-item {
|
|
3092
|
+
margin-bottom: 0;
|
|
3093
|
+
}
|
|
3094
|
+
.aplus-ap-view-main-content-popover-btn {
|
|
3095
|
+
margin-bottom: 0;
|
|
3096
|
+
}
|
|
3097
|
+
.aplus-ap-view-main-content-popover-btn .ant-form-item-control-input-content {
|
|
3098
|
+
display: flex;
|
|
3099
|
+
justify-content: flex-end;
|
|
3100
|
+
}
|
|
3101
|
+
.aplus-ap-view-menu-list-content {
|
|
3102
|
+
width: 250px;
|
|
3103
|
+
display: flex;
|
|
3104
|
+
padding: 6px 8px;
|
|
3105
|
+
align-items: center;
|
|
3106
|
+
height: 32px;
|
|
3107
|
+
}
|
|
3108
|
+
.aplus-ap-view-menu-list-content .menu-list-content-name {
|
|
3109
|
+
overflow: hidden;
|
|
3110
|
+
display: block;
|
|
3111
|
+
text-overflow: ellipsis;
|
|
3112
|
+
white-space: nowrap;
|
|
3113
|
+
font-size: 12px;
|
|
3114
|
+
margin-right: 8px;
|
|
3115
|
+
}
|
|
3116
|
+
.aplus-ap-view-menu-list-content .menu-list-content-default {
|
|
3117
|
+
margin-right: 8px;
|
|
3118
|
+
flex-shrink: 0;
|
|
3119
|
+
}
|
|
3120
|
+
.aplus-ap-view-menu-list-content .menu-list-content-action {
|
|
3121
|
+
cursor: default;
|
|
3122
|
+
display: none;
|
|
3123
|
+
flex-shrink: 0;
|
|
3124
|
+
margin-left: auto;
|
|
3125
|
+
-webkit-user-select: none;
|
|
3126
|
+
-moz-user-select: none;
|
|
3127
|
+
user-select: none;
|
|
3128
|
+
}
|
|
3129
|
+
.aplus-ap-view-menu-list-content .menu-list-content-action-text {
|
|
3130
|
+
cursor: pointer;
|
|
3131
|
+
font-size: 12px;
|
|
3132
|
+
color: var(--basic-color-primary, #0070ff);
|
|
3133
|
+
}
|
|
3134
|
+
.aplus-ap-view-menu-list-content .menu-list-content-action-delete {
|
|
3135
|
+
cursor: pointer;
|
|
3136
|
+
color: var(--ap-view-icon-color, #8896b0);
|
|
3137
|
+
}
|
|
3138
|
+
.aplus-ap-view-menu-list-content .menu-list-content-edit {
|
|
3139
|
+
display: flex;
|
|
3140
|
+
align-items: center;
|
|
3141
|
+
}
|
|
3142
|
+
.aplus-ap-view-menu-list-content .menu-list-content-edit .ant-form-item {
|
|
3143
|
+
margin-bottom: 0;
|
|
3144
|
+
}
|
|
3145
|
+
.aplus-ap-view-menu-list-content .menu-list-content-edit .ant-space-item:has(.menu-list-content-action-text) {
|
|
3146
|
+
flex-shrink: 0;
|
|
3147
|
+
}
|
|
3148
|
+
.aplus-ap-view-menu-list-content:hover {
|
|
3149
|
+
background: var(--ap-view-bg-color, #F6F9FA);
|
|
3150
|
+
}
|
|
3151
|
+
.aplus-ap-view-menu-list-content:hover .menu-list-content-action {
|
|
3152
|
+
display: block;
|
|
3153
|
+
}
|
|
3154
|
+
.aplus-ap-view-menu-list-content-edit {
|
|
3155
|
+
background: transparent !important;
|
|
3156
|
+
padding: 0 8px;
|
|
3157
|
+
cursor: default;
|
|
3158
|
+
}
|
|
3159
|
+
.aplus-ap-view-menu-list-content-active .menu-list-content-name {
|
|
3160
|
+
color: var(--basic-color-primary, #0070ff);
|
|
3161
|
+
}
|
|
3162
|
+
.aplus-ap-view-overlay .ant-dropdown-menu {
|
|
3163
|
+
padding: 8px;
|
|
3164
|
+
}
|
|
3165
|
+
.aplus-ap-view-overlay .ant-dropdown-menu .ant-dropdown-menu-item {
|
|
3166
|
+
padding: 0;
|
|
3167
|
+
}
|
|
3168
|
+
.aplus-ap-view-overlay .ant-dropdown-menu .ant-dropdown-menu-item:hover {
|
|
3169
|
+
background: transparent;
|
|
3170
|
+
}
|
package/theme/index.less
CHANGED
package/theme/mask/index.css
CHANGED
|
@@ -27,6 +27,34 @@
|
|
|
27
27
|
animation-name: aplus-fade-leave;
|
|
28
28
|
animation-duration: 0.25s;
|
|
29
29
|
}
|
|
30
|
+
.reset-component {
|
|
31
|
+
box-sizing: border-box;
|
|
32
|
+
margin: 0;
|
|
33
|
+
padding: 0;
|
|
34
|
+
color: rgba(0 0 0 / 85%);
|
|
35
|
+
font-size: 14px;
|
|
36
|
+
font-family: inherit;
|
|
37
|
+
line-height: 22px;
|
|
38
|
+
list-style: none;
|
|
39
|
+
}
|
|
40
|
+
.clear-fix::before {
|
|
41
|
+
display: table;
|
|
42
|
+
content: '';
|
|
43
|
+
}
|
|
44
|
+
.clear-fix::after {
|
|
45
|
+
display: table;
|
|
46
|
+
clear: both;
|
|
47
|
+
content: '';
|
|
48
|
+
}
|
|
49
|
+
.common-style {
|
|
50
|
+
box-sizing: border-box;
|
|
51
|
+
font-size: 14px;
|
|
52
|
+
font-family: inherit;
|
|
53
|
+
}
|
|
54
|
+
.common-style::before,
|
|
55
|
+
.common-style::after {
|
|
56
|
+
box-sizing: border-box;
|
|
57
|
+
}
|
|
30
58
|
.aplus-mask {
|
|
31
59
|
position: fixed;
|
|
32
60
|
top: 0;
|
package/theme/mixins/config.less
CHANGED
package/theme/mixins/mixins.css
CHANGED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
.reset-component {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
color: rgba(0 0 0 / 85%);
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
font-family: inherit;
|
|
8
|
+
line-height: 22px;
|
|
9
|
+
list-style: none;
|
|
10
|
+
}
|
|
11
|
+
.clear-fix::before {
|
|
12
|
+
display: table;
|
|
13
|
+
content: '';
|
|
14
|
+
}
|
|
15
|
+
.clear-fix::after {
|
|
16
|
+
display: table;
|
|
17
|
+
clear: both;
|
|
18
|
+
content: '';
|
|
19
|
+
}
|
|
20
|
+
.common-style {
|
|
21
|
+
box-sizing: border-box;
|
|
22
|
+
font-size: 14px;
|
|
23
|
+
font-family: inherit;
|
|
24
|
+
}
|
|
25
|
+
.common-style::before,
|
|
26
|
+
.common-style::after {
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
}
|
package/theme/mixins/mixins.less
CHANGED
|
@@ -7,3 +7,38 @@
|
|
|
7
7
|
@content();
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
|
+
|
|
11
|
+
.reset-component {
|
|
12
|
+
box-sizing: border-box;
|
|
13
|
+
margin: 0;
|
|
14
|
+
padding: 0;
|
|
15
|
+
color: @text-color-base;
|
|
16
|
+
font-size: @font-size-base;
|
|
17
|
+
font-family: inherit;
|
|
18
|
+
line-height: @line-height-base;
|
|
19
|
+
list-style: none;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.clear-fix {
|
|
23
|
+
&::before {
|
|
24
|
+
display: table;
|
|
25
|
+
content: '';
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
&::after {
|
|
29
|
+
display: table;
|
|
30
|
+
clear: both;
|
|
31
|
+
content: '';
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.common-style {
|
|
36
|
+
box-sizing: border-box;
|
|
37
|
+
font-size: @font-size-base;
|
|
38
|
+
font-family: inherit;
|
|
39
|
+
|
|
40
|
+
&::before,
|
|
41
|
+
&::after {
|
|
42
|
+
box-sizing: border-box;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
.reset-component {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
color: rgba(0 0 0 / 85%);
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
font-family: inherit;
|
|
8
|
+
line-height: 22px;
|
|
9
|
+
list-style: none;
|
|
10
|
+
}
|
|
11
|
+
.clear-fix::before {
|
|
12
|
+
display: table;
|
|
13
|
+
content: '';
|
|
14
|
+
}
|
|
15
|
+
.clear-fix::after {
|
|
16
|
+
display: table;
|
|
17
|
+
clear: both;
|
|
18
|
+
content: '';
|
|
19
|
+
}
|
|
20
|
+
.common-style {
|
|
21
|
+
box-sizing: border-box;
|
|
22
|
+
font-size: 14px;
|
|
23
|
+
font-family: inherit;
|
|
24
|
+
}
|
|
25
|
+
.common-style::before,
|
|
26
|
+
.common-style::after {
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
}
|
|
1
29
|
.aplus-scroll-bar {
|
|
2
30
|
position: relative;
|
|
3
31
|
}
|
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
.reset-component {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
color: rgba(0 0 0 / 85%);
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
font-family: inherit;
|
|
8
|
+
line-height: 22px;
|
|
9
|
+
list-style: none;
|
|
10
|
+
}
|
|
11
|
+
.clear-fix::before {
|
|
12
|
+
display: table;
|
|
13
|
+
content: '';
|
|
14
|
+
}
|
|
15
|
+
.clear-fix::after {
|
|
16
|
+
display: table;
|
|
17
|
+
clear: both;
|
|
18
|
+
content: '';
|
|
19
|
+
}
|
|
20
|
+
.common-style {
|
|
21
|
+
box-sizing: border-box;
|
|
22
|
+
font-size: 14px;
|
|
23
|
+
font-family: inherit;
|
|
24
|
+
}
|
|
25
|
+
.common-style::before,
|
|
26
|
+
.common-style::after {
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
}
|
|
1
29
|
.aplus-scroll-view {
|
|
2
30
|
position: relative;
|
|
3
31
|
overflow: hidden;
|
package/theme/splitter/index.css
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
.reset-component {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
color: rgba(0 0 0 / 85%);
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
font-family: inherit;
|
|
8
|
+
line-height: 22px;
|
|
9
|
+
list-style: none;
|
|
10
|
+
}
|
|
11
|
+
.clear-fix::before {
|
|
12
|
+
display: table;
|
|
13
|
+
content: '';
|
|
14
|
+
}
|
|
15
|
+
.clear-fix::after {
|
|
16
|
+
display: table;
|
|
17
|
+
clear: both;
|
|
18
|
+
content: '';
|
|
19
|
+
}
|
|
20
|
+
.common-style {
|
|
21
|
+
box-sizing: border-box;
|
|
22
|
+
font-size: 14px;
|
|
23
|
+
font-family: inherit;
|
|
24
|
+
}
|
|
25
|
+
.common-style::before,
|
|
26
|
+
.common-style::after {
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
}
|
|
1
29
|
.split-center {
|
|
2
30
|
position: absolute;
|
|
3
31
|
top: 50%;
|
package/theme/text/group.css
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
.reset-component {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
color: rgba(0 0 0 / 85%);
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
font-family: inherit;
|
|
8
|
+
line-height: 22px;
|
|
9
|
+
list-style: none;
|
|
10
|
+
}
|
|
11
|
+
.clear-fix::before {
|
|
12
|
+
display: table;
|
|
13
|
+
content: '';
|
|
14
|
+
}
|
|
15
|
+
.clear-fix::after {
|
|
16
|
+
display: table;
|
|
17
|
+
clear: both;
|
|
18
|
+
content: '';
|
|
19
|
+
}
|
|
20
|
+
.common-style {
|
|
21
|
+
box-sizing: border-box;
|
|
22
|
+
font-size: 14px;
|
|
23
|
+
font-family: inherit;
|
|
24
|
+
}
|
|
25
|
+
.common-style::before,
|
|
26
|
+
.common-style::after {
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
}
|
|
1
29
|
.aplus-ap-text-group:has(.ant-typography-ellipsis) {
|
|
2
30
|
max-width: 100%;
|
|
3
31
|
}
|
package/theme/text/index.css
CHANGED
|
@@ -1,6 +1,41 @@
|
|
|
1
|
+
.reset-component {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
color: rgba(0 0 0 / 85%);
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
font-family: inherit;
|
|
8
|
+
line-height: 22px;
|
|
9
|
+
list-style: none;
|
|
10
|
+
}
|
|
11
|
+
.clear-fix::before {
|
|
12
|
+
display: table;
|
|
13
|
+
content: '';
|
|
14
|
+
}
|
|
15
|
+
.clear-fix::after {
|
|
16
|
+
display: table;
|
|
17
|
+
clear: both;
|
|
18
|
+
content: '';
|
|
19
|
+
}
|
|
20
|
+
.common-style {
|
|
21
|
+
box-sizing: border-box;
|
|
22
|
+
font-size: 14px;
|
|
23
|
+
font-family: inherit;
|
|
24
|
+
}
|
|
25
|
+
.common-style::before,
|
|
26
|
+
.common-style::after {
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
}
|
|
1
29
|
.aplus-ap-text {
|
|
2
|
-
|
|
30
|
+
box-sizing: border-box;
|
|
31
|
+
margin: 0;
|
|
32
|
+
padding: 0;
|
|
33
|
+
color: rgba(0 0 0 / 85%);
|
|
34
|
+
font-size: 14px;
|
|
35
|
+
font-family: inherit;
|
|
3
36
|
line-height: 22px;
|
|
37
|
+
list-style: none;
|
|
38
|
+
display: flex;
|
|
4
39
|
align-items: baseline;
|
|
5
40
|
}
|
|
6
41
|
.aplus-ap-text--vertical {
|