@aplus-frontend/ui 0.0.1-beta.9 → 0.0.1
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 +196 -138
- package/es/src/ap-action/group/index.vue.mjs +35 -27
- package/es/src/ap-action/interface.d.ts +2 -1
- package/es/src/ap-action/item/index.vue2.mjs +19 -19
- package/es/src/ap-action/item-dropdown/index.vue.mjs +34 -34
- package/es/src/ap-action/style/item.css +6 -1
- package/es/src/ap-custom-column/column-select.vue.d.ts +18 -0
- package/es/src/ap-custom-column/column-select.vue.mjs +102 -0
- package/es/src/ap-custom-column/column-select.vue2.mjs +4 -0
- package/es/src/ap-custom-column/custom-column.vue.d.ts +18 -0
- package/es/src/ap-custom-column/custom-column.vue.mjs +86 -0
- package/es/src/ap-custom-column/custom-column.vue2.mjs +4 -0
- package/es/src/ap-custom-column/index.d.ts +7 -0
- package/es/src/ap-custom-column/index.mjs +9 -0
- package/es/src/ap-custom-column/interfaces.d.ts +41 -0
- package/es/src/ap-custom-column/interfaces.mjs +1 -0
- package/es/src/ap-custom-column/storage.d.ts +8 -0
- package/es/src/ap-custom-column/storage.mjs +29 -0
- package/es/src/ap-custom-column/styles/column-select.css +44 -0
- package/es/src/ap-custom-column/styles/custom-column.css +46 -0
- package/es/src/ap-custom-column/useCacheColumnSetting.d.ts +10 -0
- package/es/src/ap-custom-column/useCacheColumnSetting.mjs +9 -0
- package/es/src/ap-custom-column/utils.d.ts +3 -0
- package/es/src/ap-custom-column/utils.mjs +17 -0
- package/es/src/ap-download/ap-download.vue.d.ts +41 -0
- package/es/src/ap-download/ap-download.vue.mjs +56 -0
- package/es/src/ap-download/ap-download.vue2.mjs +4 -0
- package/es/src/ap-download/hooks/index.d.ts +9 -0
- package/es/src/ap-download/hooks/index.mjs +20 -0
- package/es/src/ap-download/index.d.ts +4 -0
- package/es/src/ap-download/index.mjs +2 -0
- package/es/src/ap-download/interface.d.ts +33 -0
- package/es/src/ap-download/interface.mjs +1 -0
- package/es/src/ap-download/style/ap-download.css +51 -0
- package/es/src/ap-field/checkbox/index.vue.mjs +16 -16
- package/es/src/ap-field/date/index.vue.d.ts +1 -1
- package/es/src/ap-field/date-range/index.vue.d.ts +1 -1
- package/es/src/ap-field/date-range/index.vue.mjs +54 -48
- package/es/src/ap-field/interface.d.ts +3 -3
- package/es/src/ap-field/number/index.vue.mjs +8 -8
- package/es/src/ap-field/radio/index.vue.mjs +6 -6
- package/es/src/ap-field/switch/index.vue.d.ts +2 -2
- package/es/src/ap-field/switch/index.vue.mjs +31 -31
- package/es/src/ap-field/text/index.vue.d.ts +4 -1
- package/es/src/ap-field/text/index.vue.mjs +11 -10
- package/es/src/ap-field/text-area/index.vue.d.ts +1 -1
- package/es/src/ap-field/text-area/index.vue.mjs +8 -8
- package/es/src/ap-form/ap-form-item-group/helper.d.ts +10 -0
- package/es/src/ap-form/ap-form-item-group/helper.mjs +30 -11
- package/es/src/ap-form/ap-form-item-group/index.vue.mjs +60 -2
- package/es/src/ap-form/ap-form-item-group/index.vue2.mjs +2 -56
- package/es/src/ap-form/ap-form-item.vue.d.ts +23 -5
- package/es/src/ap-form/ap-form-item.vue.mjs +149 -2
- package/es/src/ap-form/ap-form-item.vue2.mjs +2 -80
- package/es/src/ap-form/ap-form-list.vue.d.ts +35 -0
- package/es/src/ap-form/ap-form-list.vue.mjs +41 -0
- package/es/src/ap-form/ap-form-list.vue2.mjs +4 -0
- package/es/src/ap-form/ap-form.vue.d.ts +66 -0
- package/es/src/ap-form/ap-form.vue.mjs +4 -0
- package/es/src/ap-form/ap-form.vue2.mjs +89 -0
- package/es/src/ap-form/context.d.ts +11 -0
- package/es/src/ap-form/context.mjs +17 -0
- package/es/src/ap-form/index.d.ts +15 -939
- package/es/src/ap-form/index.mjs +24 -11
- package/es/src/ap-form/interface.d.ts +62 -1
- package/es/src/ap-form/interface.mjs +1 -0
- package/es/src/ap-form/items/checkbox/index.vue.d.ts +47 -0
- package/es/src/ap-form/items/checkbox/index.vue.mjs +61 -0
- package/es/src/ap-form/items/checkbox/index.vue2.mjs +4 -0
- package/es/src/ap-form/items/date/index.vue.d.ts +65 -0
- package/es/src/ap-form/items/date/index.vue.mjs +80 -0
- package/es/src/ap-form/items/date/index.vue2.mjs +4 -0
- package/es/src/ap-form/items/date-range/index.vue.d.ts +64 -0
- package/es/src/ap-form/items/date-range/index.vue.mjs +80 -0
- package/es/src/ap-form/items/date-range/index.vue2.mjs +4 -0
- package/es/src/ap-form/items/index.d.ts +9 -1
- package/es/src/ap-form/items/index.mjs +8 -0
- package/es/src/ap-form/items/interface.d.ts +39 -6
- package/es/src/ap-form/items/number/index.vue.d.ts +63 -0
- package/es/src/ap-form/items/number/index.vue.mjs +84 -0
- package/es/src/ap-form/items/number/index.vue2.mjs +4 -0
- package/es/src/ap-form/items/radio/index.vue.d.ts +50 -0
- package/es/src/ap-form/items/radio/index.vue.mjs +74 -0
- package/es/src/ap-form/items/radio/index.vue2.mjs +4 -0
- package/es/src/ap-form/items/select/index.vue.d.ts +69 -0
- package/es/src/ap-form/items/select/index.vue.mjs +89 -0
- package/es/src/ap-form/items/select/index.vue2.mjs +4 -0
- package/es/src/ap-form/items/switch/index.vue.d.ts +60 -0
- package/es/src/ap-form/items/switch/index.vue.mjs +68 -0
- package/es/src/ap-form/items/switch/index.vue2.mjs +4 -0
- package/es/src/ap-form/items/text/index.vue.d.ts +0 -3
- package/es/src/ap-form/items/text/index.vue.mjs +24 -31
- package/es/src/ap-form/items/text-area/index.vue.d.ts +52 -0
- package/es/src/ap-form/items/text-area/index.vue.mjs +79 -0
- package/es/src/ap-form/items/text-area/index.vue2.mjs +4 -0
- package/es/src/ap-form/modal-form/index.vue.d.ts +378 -0
- package/es/src/ap-form/modal-form/index.vue.mjs +239 -0
- package/es/src/ap-form/modal-form/index.vue2.mjs +4 -0
- package/es/src/ap-form/search-form/index.vue.d.ts +79 -0
- package/es/src/ap-form/search-form/index.vue.mjs +209 -0
- package/es/src/ap-form/search-form/index.vue2.mjs +4 -0
- package/es/src/ap-form/style/ap-form-item.css +46 -0
- package/es/src/ap-form/style/modal-form.css +17 -0
- package/es/src/ap-form/style/search-form.css +3 -0
- package/es/src/ap-layout/ap-info-layout/ap-info-layout.vue.d.ts +42 -0
- package/es/src/ap-layout/ap-info-layout/ap-info-layout.vue.mjs +62 -0
- package/es/src/ap-layout/ap-info-layout/ap-info-layout.vue2.mjs +4 -0
- package/es/src/ap-layout/index.d.ts +3 -0
- package/es/src/ap-layout/index.mjs +1 -0
- package/es/src/ap-layout/interface.d.ts +4 -0
- package/es/src/ap-layout/style/ap-info-layout.css +19 -0
- package/es/src/ap-table/ap-table.vue.d.ts +189 -0
- package/es/src/ap-table/ap-table.vue.mjs +267 -0
- package/es/src/ap-table/ap-table.vue2.mjs +4 -0
- package/es/src/ap-table/components/index/index.vue.d.ts +28 -0
- package/es/src/ap-table/components/index/index.vue.mjs +4 -0
- package/es/src/ap-table/components/index/index.vue2.mjs +21 -0
- package/es/src/ap-table/components/interface.d.ts +20 -0
- package/es/src/ap-table/components/style/index.css +12 -0
- package/es/src/ap-table/components/style/pagination.css +12 -0
- package/es/src/ap-table/constants.d.ts +11075 -0
- package/es/src/ap-table/constants.mjs +55 -0
- package/es/src/ap-table/hooks/use-table-paging.d.ts +82 -0
- package/es/src/ap-table/hooks/use-table-paging.mjs +142 -0
- package/es/src/ap-table/index.d.ts +5 -0
- package/es/src/ap-table/index.mjs +6 -0
- package/es/src/ap-table/interface.d.ts +184 -0
- package/es/src/ap-table/interface.mjs +1 -0
- package/es/src/ap-table/style/ap-table.css +46 -0
- package/es/src/ap-table/utils.d.ts +14 -0
- package/es/src/ap-table/utils.mjs +35 -0
- package/es/src/ap-tag/ap-tag-group.vue.d.ts +34 -0
- package/es/src/ap-tag/ap-tag-group.vue.mjs +137 -0
- package/es/src/ap-tag/ap-tag-group.vue2.mjs +4 -0
- package/es/src/ap-tag/ap-tag.vue.d.ts +34 -0
- package/es/src/ap-tag/ap-tag.vue.mjs +41 -0
- package/es/src/ap-tag/ap-tag.vue2.mjs +4 -0
- package/es/src/ap-tag/index.d.ts +5 -0
- package/es/src/ap-tag/index.mjs +3 -0
- package/es/src/ap-tag/interface.d.ts +35 -0
- package/es/src/ap-tag/interface.mjs +1 -0
- package/es/src/ap-tag/style/ap-tag-group.css +6 -0
- package/es/src/ap-tag/style/ap-tag.css +40 -0
- package/es/src/ap-upload/apUpload.vue.d.ts +111 -0
- package/es/src/ap-upload/apUpload.vue.mjs +95 -0
- package/es/src/ap-upload/apUpload.vue2.mjs +4 -0
- package/es/src/ap-upload/apUploadTypes.d.ts +90 -0
- package/es/src/ap-upload/apUploadTypes.mjs +4 -0
- package/es/src/ap-upload/assets/single-file-icon.png.mjs +4 -0
- package/es/src/ap-upload/components/MultipleFile.vue.d.ts +4 -0
- package/es/src/ap-upload/components/MultipleFile.vue.mjs +4 -0
- package/es/src/ap-upload/components/MultipleFile.vue2.mjs +197 -0
- package/es/src/ap-upload/components/Picture.vue.d.ts +4 -0
- package/es/src/ap-upload/components/Picture.vue.mjs +4 -0
- package/es/src/ap-upload/components/Picture.vue2.mjs +219 -0
- package/es/src/ap-upload/components/SingleFile.vue.d.ts +4 -0
- package/es/src/ap-upload/components/SingleFile.vue.mjs +4 -0
- package/es/src/ap-upload/components/SingleFile.vue2.mjs +213 -0
- package/es/src/ap-upload/hooks/useOss.d.ts +19 -0
- package/es/src/ap-upload/hooks/useOss.mjs +62 -0
- package/es/src/ap-upload/index.d.ts +5 -0
- package/es/src/ap-upload/index.mjs +11 -0
- package/es/src/ap-upload/styles/multiple-file.css +58 -0
- package/es/src/ap-upload/styles/picture.css +112 -0
- package/es/src/ap-upload/styles/single-file.css +98 -0
- package/es/src/ap-upload/styles/upload.css +6 -0
- package/es/src/ap-upload/utils/accept.d.ts +13 -0
- package/es/src/ap-upload/utils/accept.mjs +51 -0
- package/es/src/ap-upload/utils/returnData.d.ts +19 -0
- package/es/src/ap-upload/utils/returnData.mjs +21 -0
- package/es/src/basic/help.vue.d.ts +4 -4
- package/es/src/basic/index.d.ts +8 -8
- package/es/src/components.d.ts +2 -0
- package/es/src/config-provider/config-provider-props.d.ts +1 -1
- package/es/src/config-provider/config-provider.d.ts +11 -11
- package/es/src/config-provider/config-provider.mjs +26 -33
- package/es/src/config-provider/hooks/use-global-config.d.ts +1 -1
- package/es/src/config-provider/index.d.ts +31 -31
- package/es/src/design-token/index.mjs +8 -2
- package/es/src/hooks/useControllableValue.mjs +11 -14
- package/es/src/icon-picker/icon-picker.vue.d.ts +1 -1
- package/es/src/icon-picker/index.d.ts +15 -15
- package/es/src/index.d.ts +7 -0
- package/es/src/index.mjs +226 -161
- package/es/src/locale/lang/en.mjs +14 -1
- package/es/src/locale/lang/zh-cn.mjs +14 -1
- package/es/src/modal/basic.vue.d.ts +1 -2
- package/es/src/modal/basic.vue2.mjs +10 -11
- package/es/src/modal/components/modal-footer.vue.d.ts +1 -1
- package/es/src/modal/index.d.ts +2 -2
- package/es/src/modal/style/index.css +0 -103
- package/es/src/pro-form/components/api-cascader.vue.d.ts +1 -1
- package/es/src/pro-form/components/api-radio-group.vue.d.ts +1 -1
- package/es/src/pro-form/components/api-select.vue.d.ts +2 -2
- package/es/src/pro-form/components/api-transfer.vue.d.ts +1 -1
- package/es/src/pro-form/components/api-tree-select.vue.d.ts +1 -1
- package/es/src/pro-form/components/api-tree.vue.d.ts +1 -1
- package/es/src/pro-form/hooks/use-label-width.d.ts +3 -3
- package/es/src/pro-form/index.d.ts +4 -1
- package/es/src/pro-form/index.mjs +12 -9
- package/es/src/pro-form/pro-form.vue.d.ts +1 -1
- package/es/src/pro-form/style/index.css +0 -3
- package/es/src/pro-form/style/table-form.css +104 -0
- package/es/src/pro-form/table-form-inner.vue.d.ts +44 -0
- package/es/src/pro-form/table-form-inner.vue.mjs +176 -0
- package/es/src/pro-form/table-form-inner.vue2.mjs +4 -0
- package/es/src/pro-form/table-form.vue.d.ts +42 -0
- package/es/src/pro-form/table-form.vue.mjs +41 -0
- package/es/src/pro-form/table-form.vue2.mjs +4 -0
- package/es/src/pro-form/types/form.d.ts +1 -1
- package/es/src/pro-form/types/table-form.d.ts +37 -0
- package/es/src/pro-form/types/table-form.mjs +1 -0
- package/es/src/pro-table/hooks/use-data-source.mjs +45 -46
- package/es/src/prompt/utils.d.ts +1 -1
- package/es/src/scroll-bar/index.d.ts +12 -12
- package/es/src/theme/antd-global-overwrite/admin/alert.css +47 -0
- package/es/src/theme/antd-global-overwrite/admin/button.css +38 -0
- package/es/src/theme/antd-global-overwrite/admin/form.css +65 -0
- package/es/src/theme/antd-global-overwrite/admin/index.css +536 -0
- package/es/src/theme/antd-global-overwrite/admin/message.css +17 -0
- package/es/src/theme/antd-global-overwrite/admin/modal.css +117 -0
- package/es/src/theme/antd-global-overwrite/admin/pagination.css +68 -0
- package/es/src/theme/antd-global-overwrite/admin/steps.css +103 -0
- package/es/src/theme/antd-global-overwrite/admin/table.css +81 -0
- package/es/src/theme/antd-global-overwrite/aplus/alert.css +47 -0
- package/es/src/theme/antd-global-overwrite/aplus/button.css +38 -0
- package/es/src/theme/antd-global-overwrite/aplus/form.css +90 -0
- package/es/src/theme/antd-global-overwrite/aplus/index.css +565 -0
- package/es/src/theme/antd-global-overwrite/aplus/message.css +17 -0
- package/es/src/theme/antd-global-overwrite/aplus/modal.css +111 -0
- package/es/src/theme/antd-global-overwrite/aplus/pagination.css +81 -0
- package/es/src/theme/antd-global-overwrite/aplus/steps.css +103 -0
- package/es/src/theme/antd-global-overwrite/aplus/table.css +78 -0
- package/es/src/theme/ap-action/item.css +6 -1
- package/es/src/theme/ap-download/ap-download.css +51 -0
- package/es/src/theme/ap-form/ap-form-item.css +46 -0
- package/es/src/theme/ap-form/modal-form.css +17 -0
- package/es/src/theme/ap-form/search-form.css +3 -0
- package/es/src/theme/ap-layout/ap-info-layout.css +19 -0
- package/es/src/theme/ap-table/ap-table-index.css +12 -0
- package/es/src/theme/ap-table/ap-table-pagination.css +12 -0
- package/es/src/theme/ap-table/ap-table.css +46 -0
- package/es/src/theme/ap-tag/ap-tag-group.css +6 -0
- package/es/src/theme/ap-tag/ap-tag.css +40 -0
- package/es/src/theme/ap-upload/multiple-file.css +58 -0
- package/es/src/theme/ap-upload/picture.css +112 -0
- package/es/src/theme/ap-upload/single-file.css +98 -0
- package/es/src/theme/ap-upload/upload.css +6 -0
- package/es/src/theme/custom-column/column-select.css +44 -0
- package/es/src/theme/custom-column/custom-column.css +46 -0
- package/es/src/theme/modal/index.css +0 -103
- package/es/src/theme/pro-form/form.css +0 -3
- package/es/src/theme/pro-form/table-form-inner.css +104 -0
- package/es/src/theme/work-order-modal/index.css +3 -0
- package/es/src/utils/config-provider-preset.d.ts +79 -0
- package/es/src/utils/config-provider-preset.mjs +30 -0
- package/es/src/utils/index.d.ts +8 -0
- package/es/src/utils/index.mjs +29 -17
- package/es/src/utils/slot.d.ts +7 -1
- package/es/src/utils/slot.mjs +25 -15
- package/es/src/work-order-modal/createWorkOrder.d.ts +1 -0
- package/es/src/work-order-modal/createWorkOrder.mjs +19 -0
- package/es/src/work-order-modal/help-message.vue.d.ts +3 -0
- package/es/src/work-order-modal/help-message.vue.mjs +4 -0
- package/es/src/work-order-modal/help-message.vue2.mjs +33 -0
- package/es/src/work-order-modal/index.d.ts +5 -0
- package/es/src/work-order-modal/index.mjs +7 -0
- package/es/src/work-order-modal/interfaces.d.ts +23 -0
- package/es/src/work-order-modal/interfaces.mjs +4 -0
- package/es/src/work-order-modal/style/index.css +3 -0
- package/es/src/work-order-modal/work-order-modal.vue.d.ts +18 -0
- package/es/src/work-order-modal/work-order-modal.vue.mjs +182 -0
- package/es/src/work-order-modal/work-order-modal.vue2.mjs +4 -0
- package/lib/index.js +1 -1
- package/lib/src/ap-action/group/index.vue.js +1 -1
- package/lib/src/ap-action/interface.d.ts +2 -1
- package/lib/src/ap-action/item/index.vue2.js +1 -1
- package/lib/src/ap-action/item-dropdown/index.vue.js +1 -1
- package/lib/src/ap-action/style/item.css +6 -1
- package/lib/src/ap-custom-column/column-select.vue.d.ts +18 -0
- package/lib/src/ap-custom-column/column-select.vue.js +1 -0
- package/lib/src/ap-custom-column/column-select.vue2.js +1 -0
- package/lib/src/ap-custom-column/custom-column.vue.d.ts +18 -0
- package/lib/src/ap-custom-column/custom-column.vue.js +1 -0
- package/lib/src/ap-custom-column/custom-column.vue2.js +1 -0
- package/lib/src/ap-custom-column/index.d.ts +7 -0
- package/lib/src/ap-custom-column/index.js +1 -0
- package/lib/src/ap-custom-column/interfaces.d.ts +41 -0
- package/lib/src/ap-custom-column/interfaces.js +1 -0
- package/lib/src/ap-custom-column/storage.d.ts +8 -0
- package/lib/src/ap-custom-column/storage.js +1 -0
- package/lib/src/ap-custom-column/styles/column-select.css +44 -0
- package/lib/src/ap-custom-column/styles/custom-column.css +46 -0
- package/lib/src/ap-custom-column/useCacheColumnSetting.d.ts +10 -0
- package/lib/src/ap-custom-column/useCacheColumnSetting.js +1 -0
- package/lib/src/ap-custom-column/utils.d.ts +3 -0
- package/lib/src/ap-custom-column/utils.js +1 -0
- package/lib/src/ap-download/ap-download.vue.d.ts +41 -0
- package/lib/src/ap-download/ap-download.vue.js +1 -0
- package/lib/src/ap-download/ap-download.vue2.js +1 -0
- package/lib/src/ap-download/hooks/index.d.ts +9 -0
- package/lib/src/ap-download/hooks/index.js +1 -0
- package/lib/src/ap-download/index.d.ts +4 -0
- package/lib/src/ap-download/index.js +1 -0
- package/lib/src/ap-download/interface.d.ts +33 -0
- package/lib/src/ap-download/interface.js +1 -0
- package/lib/src/ap-download/style/ap-download.css +51 -0
- package/lib/src/ap-field/checkbox/index.vue.js +1 -1
- package/lib/src/ap-field/date/index.vue.d.ts +1 -1
- package/lib/src/ap-field/date-range/index.vue.d.ts +1 -1
- package/lib/src/ap-field/date-range/index.vue.js +1 -1
- package/lib/src/ap-field/interface.d.ts +3 -3
- package/lib/src/ap-field/number/index.vue.js +1 -1
- package/lib/src/ap-field/radio/index.vue.js +1 -1
- package/lib/src/ap-field/switch/index.vue.d.ts +2 -2
- package/lib/src/ap-field/switch/index.vue.js +1 -1
- package/lib/src/ap-field/text/index.vue.d.ts +4 -1
- package/lib/src/ap-field/text/index.vue.js +1 -1
- package/lib/src/ap-field/text-area/index.vue.d.ts +1 -1
- package/lib/src/ap-field/text-area/index.vue.js +1 -1
- package/lib/src/ap-form/ap-form-item-group/helper.d.ts +10 -0
- package/lib/src/ap-form/ap-form-item-group/helper.js +1 -1
- package/lib/src/ap-form/ap-form-item-group/index.vue.js +1 -1
- package/lib/src/ap-form/ap-form-item-group/index.vue2.js +1 -1
- package/lib/src/ap-form/ap-form-item.vue.d.ts +23 -5
- package/lib/src/ap-form/ap-form-item.vue.js +1 -1
- package/lib/src/ap-form/ap-form-item.vue2.js +1 -1
- package/lib/src/ap-form/ap-form-list.vue.d.ts +35 -0
- package/lib/src/ap-form/ap-form-list.vue.js +1 -0
- package/lib/src/ap-form/ap-form-list.vue2.js +1 -0
- package/lib/src/ap-form/ap-form.vue.d.ts +66 -0
- package/lib/src/ap-form/ap-form.vue.js +1 -0
- package/lib/src/ap-form/ap-form.vue2.js +1 -0
- package/lib/src/ap-form/context.d.ts +11 -0
- package/lib/src/ap-form/context.js +1 -0
- package/lib/src/ap-form/index.d.ts +15 -939
- package/lib/src/ap-form/index.js +1 -1
- package/lib/src/ap-form/interface.d.ts +62 -1
- package/lib/src/ap-form/interface.js +1 -0
- package/lib/src/ap-form/items/checkbox/index.vue.d.ts +47 -0
- package/lib/src/ap-form/items/checkbox/index.vue.js +1 -0
- package/lib/src/ap-form/items/checkbox/index.vue2.js +1 -0
- package/lib/src/ap-form/items/date/index.vue.d.ts +65 -0
- package/lib/src/ap-form/items/date/index.vue.js +1 -0
- package/lib/src/ap-form/items/date/index.vue2.js +1 -0
- package/lib/src/ap-form/items/date-range/index.vue.d.ts +64 -0
- package/lib/src/ap-form/items/date-range/index.vue.js +1 -0
- package/lib/src/ap-form/items/date-range/index.vue2.js +1 -0
- package/lib/src/ap-form/items/index.d.ts +9 -1
- package/lib/src/ap-form/items/index.js +1 -1
- package/lib/src/ap-form/items/interface.d.ts +39 -6
- package/lib/src/ap-form/items/number/index.vue.d.ts +63 -0
- package/lib/src/ap-form/items/number/index.vue.js +1 -0
- package/lib/src/ap-form/items/number/index.vue2.js +1 -0
- package/lib/src/ap-form/items/radio/index.vue.d.ts +50 -0
- package/lib/src/ap-form/items/radio/index.vue.js +1 -0
- package/lib/src/ap-form/items/radio/index.vue2.js +1 -0
- package/lib/src/ap-form/items/select/index.vue.d.ts +69 -0
- package/lib/src/ap-form/items/select/index.vue.js +1 -0
- package/lib/src/ap-form/items/select/index.vue2.js +1 -0
- package/lib/src/ap-form/items/switch/index.vue.d.ts +60 -0
- package/lib/src/ap-form/items/switch/index.vue.js +1 -0
- package/lib/src/ap-form/items/switch/index.vue2.js +1 -0
- package/lib/src/ap-form/items/text/index.vue.d.ts +0 -3
- package/lib/src/ap-form/items/text/index.vue.js +1 -1
- package/lib/src/ap-form/items/text-area/index.vue.d.ts +52 -0
- package/lib/src/ap-form/items/text-area/index.vue.js +1 -0
- package/lib/src/ap-form/items/text-area/index.vue2.js +1 -0
- package/lib/src/ap-form/modal-form/index.vue.d.ts +378 -0
- package/lib/src/ap-form/modal-form/index.vue.js +1 -0
- package/lib/src/ap-form/modal-form/index.vue2.js +1 -0
- package/lib/src/ap-form/search-form/index.vue.d.ts +79 -0
- package/lib/src/ap-form/search-form/index.vue.js +1 -0
- package/lib/src/ap-form/search-form/index.vue2.js +1 -0
- package/lib/src/ap-form/style/ap-form-item.css +46 -0
- package/lib/src/ap-form/style/modal-form.css +17 -0
- package/lib/src/ap-form/style/search-form.css +3 -0
- package/lib/src/ap-layout/ap-info-layout/ap-info-layout.vue.d.ts +42 -0
- package/lib/src/ap-layout/ap-info-layout/ap-info-layout.vue.js +1 -0
- package/lib/src/ap-layout/ap-info-layout/ap-info-layout.vue2.js +1 -0
- package/lib/src/ap-layout/index.d.ts +3 -0
- package/lib/src/ap-layout/index.js +1 -0
- package/lib/src/ap-layout/interface.d.ts +4 -0
- package/lib/src/ap-layout/style/ap-info-layout.css +19 -0
- package/lib/src/ap-table/ap-table.vue.d.ts +189 -0
- package/lib/src/ap-table/ap-table.vue.js +1 -0
- package/lib/src/ap-table/ap-table.vue2.js +1 -0
- package/lib/src/ap-table/components/index/index.vue.d.ts +28 -0
- package/lib/src/ap-table/components/index/index.vue.js +1 -0
- package/lib/src/ap-table/components/index/index.vue2.js +1 -0
- package/lib/src/ap-table/components/interface.d.ts +20 -0
- package/lib/src/ap-table/components/style/index.css +12 -0
- package/lib/src/ap-table/components/style/pagination.css +12 -0
- package/lib/src/ap-table/constants.d.ts +11075 -0
- package/lib/src/ap-table/constants.js +1 -0
- package/lib/src/ap-table/hooks/use-table-paging.d.ts +82 -0
- package/lib/src/ap-table/hooks/use-table-paging.js +1 -0
- package/lib/src/ap-table/index.d.ts +5 -0
- package/lib/src/ap-table/index.js +1 -0
- package/lib/src/ap-table/interface.d.ts +184 -0
- package/lib/src/ap-table/interface.js +1 -0
- package/lib/src/ap-table/style/ap-table.css +46 -0
- package/lib/src/ap-table/utils.d.ts +14 -0
- package/lib/src/ap-table/utils.js +1 -0
- package/lib/src/ap-tag/ap-tag-group.vue.d.ts +34 -0
- package/lib/src/ap-tag/ap-tag-group.vue.js +1 -0
- package/lib/src/ap-tag/ap-tag-group.vue2.js +1 -0
- package/lib/src/ap-tag/ap-tag.vue.d.ts +34 -0
- package/lib/src/ap-tag/ap-tag.vue.js +1 -0
- package/lib/src/ap-tag/ap-tag.vue2.js +1 -0
- package/lib/src/ap-tag/index.d.ts +5 -0
- package/lib/src/ap-tag/index.js +1 -0
- package/lib/src/ap-tag/interface.d.ts +35 -0
- package/lib/src/ap-tag/interface.js +1 -0
- package/lib/src/ap-tag/style/ap-tag-group.css +6 -0
- package/lib/src/ap-tag/style/ap-tag.css +40 -0
- package/lib/src/ap-upload/apUpload.vue.d.ts +111 -0
- package/lib/src/ap-upload/apUpload.vue.js +1 -0
- package/lib/src/ap-upload/apUpload.vue2.js +1 -0
- package/lib/src/ap-upload/apUploadTypes.d.ts +90 -0
- package/lib/src/ap-upload/apUploadTypes.js +1 -0
- package/lib/src/ap-upload/assets/single-file-icon.png.js +1 -0
- package/lib/src/ap-upload/components/MultipleFile.vue.d.ts +4 -0
- package/lib/src/ap-upload/components/MultipleFile.vue.js +1 -0
- package/lib/src/ap-upload/components/MultipleFile.vue2.js +1 -0
- package/lib/src/ap-upload/components/Picture.vue.d.ts +4 -0
- package/lib/src/ap-upload/components/Picture.vue.js +1 -0
- package/lib/src/ap-upload/components/Picture.vue2.js +1 -0
- package/lib/src/ap-upload/components/SingleFile.vue.d.ts +4 -0
- package/lib/src/ap-upload/components/SingleFile.vue.js +1 -0
- package/lib/src/ap-upload/components/SingleFile.vue2.js +1 -0
- package/lib/src/ap-upload/hooks/useOss.d.ts +19 -0
- package/lib/src/ap-upload/hooks/useOss.js +1 -0
- package/lib/src/ap-upload/index.d.ts +5 -0
- package/lib/src/ap-upload/index.js +1 -0
- package/lib/src/ap-upload/styles/multiple-file.css +58 -0
- package/lib/src/ap-upload/styles/picture.css +112 -0
- package/lib/src/ap-upload/styles/single-file.css +98 -0
- package/lib/src/ap-upload/styles/upload.css +6 -0
- package/lib/src/ap-upload/utils/accept.d.ts +13 -0
- package/lib/src/ap-upload/utils/accept.js +1 -0
- package/lib/src/ap-upload/utils/returnData.d.ts +19 -0
- package/lib/src/ap-upload/utils/returnData.js +1 -0
- package/lib/src/basic/help.vue.d.ts +4 -4
- package/lib/src/basic/help.vue2.js +1 -1
- package/lib/src/basic/index.d.ts +8 -8
- package/lib/src/components.d.ts +2 -0
- package/lib/src/config-provider/config-provider-props.d.ts +1 -1
- package/lib/src/config-provider/config-provider.d.ts +11 -11
- package/lib/src/config-provider/config-provider.js +1 -1
- package/lib/src/config-provider/hooks/use-global-config.d.ts +1 -1
- package/lib/src/config-provider/index.d.ts +31 -31
- package/lib/src/design-token/index.js +1 -1
- package/lib/src/hooks/useControllableValue.js +1 -1
- package/lib/src/hooks/useMessage.js +1 -1
- package/lib/src/icon-picker/icon-picker.vue.d.ts +1 -1
- package/lib/src/icon-picker/index.d.ts +15 -15
- package/lib/src/index.d.ts +7 -0
- 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/modal/basic.vue.d.ts +1 -2
- package/lib/src/modal/basic.vue2.js +1 -1
- package/lib/src/modal/components/modal-footer.vue.d.ts +1 -1
- package/lib/src/modal/index.d.ts +2 -2
- package/lib/src/modal/style/index.css +0 -103
- package/lib/src/pro-form/components/api-cascader.vue.d.ts +1 -1
- package/lib/src/pro-form/components/api-cascader.vue.js +1 -1
- package/lib/src/pro-form/components/api-radio-group.vue.d.ts +1 -1
- package/lib/src/pro-form/components/api-select.vue.d.ts +2 -2
- package/lib/src/pro-form/components/api-select.vue.js +1 -1
- package/lib/src/pro-form/components/api-transfer.vue.d.ts +1 -1
- package/lib/src/pro-form/components/api-tree-select.vue.d.ts +1 -1
- package/lib/src/pro-form/components/api-tree-select.vue.js +1 -1
- package/lib/src/pro-form/components/api-tree.vue.d.ts +1 -1
- package/lib/src/pro-form/hooks/use-label-width.d.ts +3 -3
- package/lib/src/pro-form/index.d.ts +4 -1
- package/lib/src/pro-form/index.js +1 -1
- package/lib/src/pro-form/pro-form.vue.d.ts +1 -1
- package/lib/src/pro-form/style/index.css +0 -3
- package/lib/src/pro-form/style/table-form.css +104 -0
- package/lib/src/pro-form/table-form-inner.vue.d.ts +44 -0
- package/lib/src/pro-form/table-form-inner.vue.js +1 -0
- package/lib/src/pro-form/table-form-inner.vue2.js +1 -0
- package/lib/src/pro-form/table-form.vue.d.ts +42 -0
- package/lib/src/pro-form/table-form.vue.js +1 -0
- package/lib/src/pro-form/table-form.vue2.js +1 -0
- package/lib/src/pro-form/types/form.d.ts +1 -1
- package/lib/src/pro-form/types/table-form.d.ts +37 -0
- package/lib/src/pro-form/types/table-form.js +1 -0
- package/lib/src/pro-table/components/editable/editable-cell.vue2.js +1 -1
- package/lib/src/pro-table/components/settings/column-setting.vue2.js +1 -1
- package/lib/src/pro-table/components/settings/redo-setting.vue2.js +1 -1
- package/lib/src/pro-table/components/settings/size-setting.vue2.js +1 -1
- package/lib/src/pro-table/components/table-action.vue.js +1 -1
- package/lib/src/pro-table/hooks/use-data-source.js +1 -1
- package/lib/src/prompt/utils.d.ts +1 -1
- package/lib/src/scroll-bar/index.d.ts +12 -12
- package/lib/src/theme/antd-global-overwrite/admin/alert.css +47 -0
- package/lib/src/theme/antd-global-overwrite/admin/button.css +38 -0
- package/lib/src/theme/antd-global-overwrite/admin/form.css +65 -0
- package/lib/src/theme/antd-global-overwrite/admin/index.css +536 -0
- package/lib/src/theme/antd-global-overwrite/admin/message.css +17 -0
- package/lib/src/theme/antd-global-overwrite/admin/modal.css +117 -0
- package/lib/src/theme/antd-global-overwrite/admin/pagination.css +68 -0
- package/lib/src/theme/antd-global-overwrite/admin/steps.css +103 -0
- package/lib/src/theme/antd-global-overwrite/admin/table.css +81 -0
- package/lib/src/theme/antd-global-overwrite/aplus/alert.css +47 -0
- package/lib/src/theme/antd-global-overwrite/aplus/button.css +38 -0
- package/lib/src/theme/antd-global-overwrite/aplus/form.css +90 -0
- package/lib/src/theme/antd-global-overwrite/aplus/index.css +565 -0
- package/lib/src/theme/antd-global-overwrite/aplus/message.css +17 -0
- package/lib/src/theme/antd-global-overwrite/aplus/modal.css +111 -0
- package/lib/src/theme/antd-global-overwrite/aplus/pagination.css +81 -0
- package/lib/src/theme/antd-global-overwrite/aplus/steps.css +103 -0
- package/lib/src/theme/antd-global-overwrite/aplus/table.css +78 -0
- package/lib/src/theme/ap-action/item.css +6 -1
- package/lib/src/theme/ap-download/ap-download.css +51 -0
- package/lib/src/theme/ap-form/ap-form-item.css +46 -0
- package/lib/src/theme/ap-form/modal-form.css +17 -0
- package/lib/src/theme/ap-form/search-form.css +3 -0
- package/lib/src/theme/ap-layout/ap-info-layout.css +19 -0
- package/lib/src/theme/ap-table/ap-table-index.css +12 -0
- package/lib/src/theme/ap-table/ap-table-pagination.css +12 -0
- package/lib/src/theme/ap-table/ap-table.css +46 -0
- package/lib/src/theme/ap-tag/ap-tag-group.css +6 -0
- package/lib/src/theme/ap-tag/ap-tag.css +40 -0
- package/lib/src/theme/ap-upload/multiple-file.css +58 -0
- package/lib/src/theme/ap-upload/picture.css +112 -0
- package/lib/src/theme/ap-upload/single-file.css +98 -0
- package/lib/src/theme/ap-upload/upload.css +6 -0
- package/lib/src/theme/custom-column/column-select.css +44 -0
- package/lib/src/theme/custom-column/custom-column.css +46 -0
- package/lib/src/theme/modal/index.css +0 -103
- package/lib/src/theme/pro-form/form.css +0 -3
- package/lib/src/theme/pro-form/table-form-inner.css +104 -0
- package/lib/src/theme/work-order-modal/index.css +3 -0
- package/lib/src/utils/config-provider-preset.d.ts +79 -0
- package/lib/src/utils/config-provider-preset.js +1 -0
- package/lib/src/utils/index.d.ts +8 -0
- package/lib/src/utils/index.js +1 -1
- package/lib/src/utils/slot.d.ts +7 -1
- package/lib/src/utils/slot.js +1 -1
- package/lib/src/work-order-modal/createWorkOrder.d.ts +1 -0
- package/lib/src/work-order-modal/createWorkOrder.js +1 -0
- package/lib/src/work-order-modal/help-message.vue.d.ts +3 -0
- package/lib/src/work-order-modal/help-message.vue.js +1 -0
- package/lib/src/work-order-modal/help-message.vue2.js +1 -0
- package/lib/src/work-order-modal/index.d.ts +5 -0
- package/lib/src/work-order-modal/index.js +1 -0
- package/lib/src/work-order-modal/interfaces.d.ts +23 -0
- package/lib/src/work-order-modal/interfaces.js +1 -0
- package/lib/src/work-order-modal/style/index.css +3 -0
- package/lib/src/work-order-modal/work-order-modal.vue.d.ts +18 -0
- package/lib/src/work-order-modal/work-order-modal.vue.js +1 -0
- package/lib/src/work-order-modal/work-order-modal.vue2.js +1 -0
- package/package.json +17 -7
- package/es/src/ap-form/ap-form.d.ts +0 -1681
- package/es/src/ap-form/ap-form.mjs +0 -5
- package/lib/src/ap-form/ap-form.d.ts +0 -1681
- package/lib/src/ap-form/ap-form.js +0 -1
|
@@ -0,0 +1,536 @@
|
|
|
1
|
+
.ant-alert {
|
|
2
|
+
align-items: flex-start;
|
|
3
|
+
width: 100%;
|
|
4
|
+
padding: 6px 12px;
|
|
5
|
+
border-radius: 4px;
|
|
6
|
+
}
|
|
7
|
+
.ant-alert .ant-alert-icon {
|
|
8
|
+
font-size: 16px;
|
|
9
|
+
transform: translateY(1px);
|
|
10
|
+
margin-inline-end: 8px;
|
|
11
|
+
}
|
|
12
|
+
.ant-alert .ant-alert-message {
|
|
13
|
+
color: #333333;
|
|
14
|
+
font-weight: normal !important;
|
|
15
|
+
font-size: 12px;
|
|
16
|
+
line-height: 18px;
|
|
17
|
+
}
|
|
18
|
+
.ant-alert .ant-alert-message .href {
|
|
19
|
+
color: #1890ff;
|
|
20
|
+
cursor: pointer;
|
|
21
|
+
}
|
|
22
|
+
.ant-alert .ant-alert-description {
|
|
23
|
+
color: #333333;
|
|
24
|
+
font-weight: normal;
|
|
25
|
+
font-size: 12px;
|
|
26
|
+
line-height: 18px;
|
|
27
|
+
}
|
|
28
|
+
.ant-alert-with-description .ant-alert-message {
|
|
29
|
+
margin-bottom: 4px;
|
|
30
|
+
font-weight: bold !important;
|
|
31
|
+
}
|
|
32
|
+
.ant-alert-warning {
|
|
33
|
+
background: rgba(250, 173, 20, 0.1);
|
|
34
|
+
border: 1px solid rgba(250, 173, 20, 0.4);
|
|
35
|
+
}
|
|
36
|
+
.ant-alert-info {
|
|
37
|
+
background: rgba(24, 144, 255, 0.1);
|
|
38
|
+
border: 1px solid rgba(24, 144, 255, 0.4);
|
|
39
|
+
}
|
|
40
|
+
.ant-alert-success {
|
|
41
|
+
background: rgba(52, 183, 124, 0.1);
|
|
42
|
+
border: 1px solid rgba(52, 183, 124, 0.4);
|
|
43
|
+
}
|
|
44
|
+
.ant-alert-error {
|
|
45
|
+
background: rgba(255, 77, 79, 0.1);
|
|
46
|
+
border: 1px solid rgba(255, 77, 79, 0.4);
|
|
47
|
+
}
|
|
48
|
+
.ant-btn {
|
|
49
|
+
min-width: 88px;
|
|
50
|
+
box-shadow: none;
|
|
51
|
+
}
|
|
52
|
+
.ant-btn-primary[disabled],
|
|
53
|
+
.ant-btn-primary[disabled]:hover {
|
|
54
|
+
color: #ffffff !important;
|
|
55
|
+
background: #d6f1e5 !important;
|
|
56
|
+
border-color: #d6f1e5 !important;
|
|
57
|
+
}
|
|
58
|
+
.ant-btn-dangerous[disabled],
|
|
59
|
+
.ant-btn-dangerous[disabled]:hover {
|
|
60
|
+
color: #ffffff !important;
|
|
61
|
+
background: #ffdbdc !important;
|
|
62
|
+
border-color: #ffdbdc !important;
|
|
63
|
+
}
|
|
64
|
+
.ant-btn-default[disabled],
|
|
65
|
+
.ant-btn-default[disabled]:hover {
|
|
66
|
+
color: #bfbfbf !important;
|
|
67
|
+
background: #fafafa !important;
|
|
68
|
+
border-color: #d9d9d9 !important;
|
|
69
|
+
}
|
|
70
|
+
.ant-btn-link[disabled],
|
|
71
|
+
.ant-btn-link[disabled]:hover,
|
|
72
|
+
.ant-btn-text[disabled],
|
|
73
|
+
.ant-btn-text[disabled]:hover {
|
|
74
|
+
color: rgba(24, 144, 255, 0.2) !important;
|
|
75
|
+
}
|
|
76
|
+
.ant-form-item-control-input-content [text='重置'],
|
|
77
|
+
.ant-form-item-control-input-content [text='查询'],
|
|
78
|
+
.ant-form-item-control-input-content [text='Reset'],
|
|
79
|
+
.ant-form-item-control-input-content [text='Search'] {
|
|
80
|
+
min-width: 0;
|
|
81
|
+
}
|
|
82
|
+
.ant-btn-link,
|
|
83
|
+
.ant-btn-text {
|
|
84
|
+
min-width: 0;
|
|
85
|
+
}
|
|
86
|
+
.ant-form .ant-form-item label {
|
|
87
|
+
font-weight: normal;
|
|
88
|
+
}
|
|
89
|
+
.ant-form .ant-form-item label svg {
|
|
90
|
+
color: #34b77c;
|
|
91
|
+
}
|
|
92
|
+
.ant-form .ant-form-item-control {
|
|
93
|
+
padding-left: 0;
|
|
94
|
+
}
|
|
95
|
+
.ant-form .ant-form-item-control .ant-form-item-explain-error {
|
|
96
|
+
font-size: 12px;
|
|
97
|
+
}
|
|
98
|
+
.ant-form .ant-form-item-control .ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
|
|
99
|
+
background-color: #ffffff;
|
|
100
|
+
border-color: #34b77c;
|
|
101
|
+
}
|
|
102
|
+
.ant-form .ant-form-item-control .ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner::after {
|
|
103
|
+
background-color: #34b77c;
|
|
104
|
+
}
|
|
105
|
+
.ant-form .ant-form-item-control .ant-select.ant-select-open .ant-select-selection-item {
|
|
106
|
+
color: #bfbfbf;
|
|
107
|
+
}
|
|
108
|
+
.ant-input::-moz-placeholder {
|
|
109
|
+
color: #bfbfbf;
|
|
110
|
+
}
|
|
111
|
+
.ant-input::placeholder {
|
|
112
|
+
color: #bfbfbf;
|
|
113
|
+
}
|
|
114
|
+
.ant-select .ant-select-selection-placeholder {
|
|
115
|
+
color: #bfbfbf;
|
|
116
|
+
}
|
|
117
|
+
.ant-picker .ant-picker-input > input::-moz-placeholder {
|
|
118
|
+
color: #bfbfbf;
|
|
119
|
+
}
|
|
120
|
+
.ant-picker .ant-picker-input > input::placeholder {
|
|
121
|
+
color: #bfbfbf;
|
|
122
|
+
}
|
|
123
|
+
.ant-input-number .ant-input-number-input-wrap > input::-moz-placeholder {
|
|
124
|
+
color: #bfbfbf;
|
|
125
|
+
}
|
|
126
|
+
.ant-input-number .ant-input-number-input-wrap > input::placeholder {
|
|
127
|
+
color: #bfbfbf;
|
|
128
|
+
}
|
|
129
|
+
input.ant-input[disabled] {
|
|
130
|
+
color: #666666;
|
|
131
|
+
}
|
|
132
|
+
div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] {
|
|
133
|
+
padding: 16px;
|
|
134
|
+
}
|
|
135
|
+
div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content {
|
|
136
|
+
display: flex;
|
|
137
|
+
align-items: center;
|
|
138
|
+
justify-content: flex-end;
|
|
139
|
+
}
|
|
140
|
+
div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-primary {
|
|
141
|
+
order: 1;
|
|
142
|
+
}
|
|
143
|
+
div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-default {
|
|
144
|
+
order: 2;
|
|
145
|
+
margin-right: 0;
|
|
146
|
+
}
|
|
147
|
+
div[class$='-basic-table-form-container'] form[class$='-basic-form--compact'] div.ant-col[tableaction] .ant-form-item-control-input-content button.ant-btn-link {
|
|
148
|
+
order: 3;
|
|
149
|
+
margin-left: 0.5rem;
|
|
150
|
+
}
|
|
151
|
+
.ant-message .ant-message-notice-content {
|
|
152
|
+
padding: 10px 16px;
|
|
153
|
+
/* 文字颜色/一级-333333 */
|
|
154
|
+
color: #333333;
|
|
155
|
+
font-weight: normal;
|
|
156
|
+
font-size: 14px;
|
|
157
|
+
line-height: 22px;
|
|
158
|
+
letter-spacing: 0;
|
|
159
|
+
border-radius: 4px;
|
|
160
|
+
box-shadow: 0 3px 6px 0 rgba(44, 54, 69, 0.102);
|
|
161
|
+
}
|
|
162
|
+
.ant-message .ant-message-notice .anticon {
|
|
163
|
+
font-size: 14px;
|
|
164
|
+
line-height: 22px;
|
|
165
|
+
vertical-align: -0.18em;
|
|
166
|
+
margin-inline-end: 9px;
|
|
167
|
+
}
|
|
168
|
+
.ant-modal-root .ant-modal-close {
|
|
169
|
+
top: 0;
|
|
170
|
+
right: 0;
|
|
171
|
+
width: auto;
|
|
172
|
+
color: #666666;
|
|
173
|
+
font-weight: normal;
|
|
174
|
+
background: transparent;
|
|
175
|
+
outline: none;
|
|
176
|
+
cursor: default;
|
|
177
|
+
}
|
|
178
|
+
.ant-modal-root .ant-modal-close:hover {
|
|
179
|
+
color: #666666;
|
|
180
|
+
background-color: transparent;
|
|
181
|
+
}
|
|
182
|
+
.ant-modal-root .ant-modal-close-x {
|
|
183
|
+
display: inline-block;
|
|
184
|
+
width: 96px;
|
|
185
|
+
height: 54px;
|
|
186
|
+
line-height: 54px;
|
|
187
|
+
text-align: start;
|
|
188
|
+
}
|
|
189
|
+
.ant-modal-root .ant-modal-close-x > div {
|
|
190
|
+
height: 100%;
|
|
191
|
+
}
|
|
192
|
+
.ant-modal-root .ant-modal-close-x > span {
|
|
193
|
+
display: inline-block;
|
|
194
|
+
margin-left: 48px;
|
|
195
|
+
padding: 10px;
|
|
196
|
+
cursor: pointer;
|
|
197
|
+
transition: all 0.2s;
|
|
198
|
+
}
|
|
199
|
+
.ant-modal-root .ant-modal-close-x > span:hover {
|
|
200
|
+
color: #ed6f6f;
|
|
201
|
+
}
|
|
202
|
+
.ant-modal-root .ant-modal .ant-modal-content {
|
|
203
|
+
padding: 0;
|
|
204
|
+
}
|
|
205
|
+
.ant-modal-root .ant-modal .ant-modal-content .ant-modal-header {
|
|
206
|
+
margin-bottom: 0;
|
|
207
|
+
padding: 15px 20px;
|
|
208
|
+
border-bottom: 1px solid #E9E9E9;
|
|
209
|
+
}
|
|
210
|
+
.ant-modal-root .ant-modal .ant-modal-content .ant-modal-header .ant-modal-title {
|
|
211
|
+
color: #333333;
|
|
212
|
+
font-weight: normal;
|
|
213
|
+
font-size: 16px;
|
|
214
|
+
line-height: 24px;
|
|
215
|
+
}
|
|
216
|
+
.ant-modal-root .ant-modal .ant-modal-content .ant-modal-header .ant-modal-title > span {
|
|
217
|
+
padding-left: 0;
|
|
218
|
+
color: #333333;
|
|
219
|
+
font-weight: normal;
|
|
220
|
+
font-size: 16px;
|
|
221
|
+
line-height: 24px;
|
|
222
|
+
}
|
|
223
|
+
.ant-modal-root .ant-modal .ant-modal-content .ant-modal-body {
|
|
224
|
+
padding: 20px !important;
|
|
225
|
+
}
|
|
226
|
+
.ant-modal-root .ant-modal .ant-modal-content .ant-modal-body > .scrollbar {
|
|
227
|
+
padding: 0;
|
|
228
|
+
}
|
|
229
|
+
.ant-modal-root .ant-modal .ant-modal-content .ant-modal-body .scrollbar__wrap {
|
|
230
|
+
margin-bottom: 0 !important;
|
|
231
|
+
}
|
|
232
|
+
.ant-modal-root .ant-modal .ant-modal-content .ant-modal-footer {
|
|
233
|
+
margin-top: 0;
|
|
234
|
+
padding: 11px 20px;
|
|
235
|
+
border-top: 1px solid #E9E9E9;
|
|
236
|
+
}
|
|
237
|
+
.ant-modal-root .ant-modal .ant-modal-content .ant-modal-footer button {
|
|
238
|
+
min-width: 88px;
|
|
239
|
+
}
|
|
240
|
+
.ant-modal-root .ant-modal-confirm .ant-modal-content .ant-modal-body {
|
|
241
|
+
padding: 32px 32px 28px !important;
|
|
242
|
+
}
|
|
243
|
+
.ant-modal-root .ant-modal-confirm .ant-modal-content .ant-modal-body .ant-modal-confirm-body > .anticon {
|
|
244
|
+
margin-inline-end: 16px;
|
|
245
|
+
font-size: 24px;
|
|
246
|
+
}
|
|
247
|
+
.ant-modal-root .ant-modal-confirm .ant-modal-content .ant-modal-body .ant-modal-confirm-body .ant-modal-confirm-title {
|
|
248
|
+
color: #333333;
|
|
249
|
+
font-weight: normal;
|
|
250
|
+
font-size: 16px;
|
|
251
|
+
line-height: 24px;
|
|
252
|
+
}
|
|
253
|
+
.ant-modal-root .ant-modal-confirm .ant-modal-content .ant-modal-body .ant-modal-confirm-body .ant-modal-confirm-content {
|
|
254
|
+
max-width: calc(100% - 40px);
|
|
255
|
+
color: #999999;
|
|
256
|
+
font-weight: normal;
|
|
257
|
+
font-size: 14px;
|
|
258
|
+
line-height: 200%;
|
|
259
|
+
margin-block-start: 8px;
|
|
260
|
+
margin-inline-start: 40px;
|
|
261
|
+
}
|
|
262
|
+
.ant-modal-root .ant-modal-confirm .ant-modal-content .ant-modal-body .ant-modal-confirm-body .ant-modal-confirm-content > * {
|
|
263
|
+
color: #999999;
|
|
264
|
+
}
|
|
265
|
+
.ant-modal-root .ant-modal-confirm .ant-modal-content .ant-modal-body .ant-modal-confirm-btns {
|
|
266
|
+
margin-top: 0;
|
|
267
|
+
padding-top: 24px;
|
|
268
|
+
}
|
|
269
|
+
.ant-modal-root .ant-modal-confirm .ant-modal-content .ant-modal-body .ant-modal-confirm-btns button {
|
|
270
|
+
min-width: 88px;
|
|
271
|
+
}
|
|
272
|
+
.ant-modal-confirm-success .ant-modal-confirm-body > .anticon {
|
|
273
|
+
color: #06c687;
|
|
274
|
+
}
|
|
275
|
+
.ant-modal-confirm-info .ant-modal-confirm-body > .anticon {
|
|
276
|
+
color: #1890ff;
|
|
277
|
+
}
|
|
278
|
+
.ant-modal-confirm-warning .ant-modal-confirm-body > .anticon,
|
|
279
|
+
.ant-modal-confirm-confirm .ant-modal-confirm-body > .anticon {
|
|
280
|
+
color: #faad14;
|
|
281
|
+
}
|
|
282
|
+
.ant-modal-confirm-error .ant-modal-confirm-body > .anticon {
|
|
283
|
+
color: #ff4d4f;
|
|
284
|
+
}
|
|
285
|
+
.ant-table-wrapper .ant-spin-container .ant-pagination.ant-table-pagination.ant-table-pagination-right {
|
|
286
|
+
margin: 16px 0 0;
|
|
287
|
+
}
|
|
288
|
+
.ant-table-wrapper .ant-pagination {
|
|
289
|
+
position: relative;
|
|
290
|
+
}
|
|
291
|
+
.ant-table-wrapper .ant-pagination .ant-pagination-total-text {
|
|
292
|
+
position: absolute;
|
|
293
|
+
left: 0;
|
|
294
|
+
height: 30px;
|
|
295
|
+
line-height: 30px;
|
|
296
|
+
}
|
|
297
|
+
.ant-table-wrapper .ant-pagination .ant-pagination-item {
|
|
298
|
+
box-sizing: border-box;
|
|
299
|
+
min-width: 30px;
|
|
300
|
+
height: 30px;
|
|
301
|
+
margin: 0 4px;
|
|
302
|
+
font-weight: 400;
|
|
303
|
+
font-size: 14px;
|
|
304
|
+
line-height: 28px;
|
|
305
|
+
text-align: center;
|
|
306
|
+
border-radius: 4px;
|
|
307
|
+
}
|
|
308
|
+
.ant-table-wrapper .ant-pagination .ant-pagination-item:not(.ant-table-wrapper .ant-pagination .ant-pagination-item-active) {
|
|
309
|
+
border: 1px solid #d9d9d9;
|
|
310
|
+
}
|
|
311
|
+
.ant-table-wrapper .ant-pagination .ant-pagination-prev {
|
|
312
|
+
width: 30px;
|
|
313
|
+
height: 30px;
|
|
314
|
+
margin: 0 4px;
|
|
315
|
+
line-height: 28px;
|
|
316
|
+
border: 1px solid #d9d9d9;
|
|
317
|
+
}
|
|
318
|
+
.ant-table-wrapper .ant-pagination .ant-pagination-next {
|
|
319
|
+
width: 30px;
|
|
320
|
+
height: 30px;
|
|
321
|
+
margin: 0 4px;
|
|
322
|
+
line-height: 28px;
|
|
323
|
+
border: 1px solid #d9d9d9;
|
|
324
|
+
}
|
|
325
|
+
.ant-table-wrapper .ant-pagination .ant-pagination-next .ant-pagination-disabled {
|
|
326
|
+
border: 1px solid #d9d9d9;
|
|
327
|
+
}
|
|
328
|
+
.ant-table-wrapper .ant-pagination .ant-pagination-options {
|
|
329
|
+
margin-left: 4px;
|
|
330
|
+
}
|
|
331
|
+
.ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select-selector {
|
|
332
|
+
min-width: 90px;
|
|
333
|
+
height: 30px;
|
|
334
|
+
}
|
|
335
|
+
.ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select-selection-item {
|
|
336
|
+
line-height: 28px;
|
|
337
|
+
}
|
|
338
|
+
.ant-table-wrapper .ant-pagination .ant-pagination-options .ant-select .ant-select-arrow {
|
|
339
|
+
color: #333333;
|
|
340
|
+
}
|
|
341
|
+
.ant-table-wrapper .ant-pagination .ant-pagination-options .ant-pagination-options-quick-jumper {
|
|
342
|
+
margin-left: 20px;
|
|
343
|
+
color: #333333;
|
|
344
|
+
font-size: 14px;
|
|
345
|
+
}
|
|
346
|
+
.ant-table-wrapper .ant-pagination .ant-pagination-options .ant-pagination-options-quick-jumper input {
|
|
347
|
+
min-width: 60px;
|
|
348
|
+
height: 30px;
|
|
349
|
+
margin: 0 8px;
|
|
350
|
+
padding: 0;
|
|
351
|
+
border-radius: 4px;
|
|
352
|
+
}
|
|
353
|
+
.ant-steps > * {
|
|
354
|
+
margin-right: 8px;
|
|
355
|
+
}
|
|
356
|
+
.ant-steps .ant-steps-item-container {
|
|
357
|
+
display: flex;
|
|
358
|
+
}
|
|
359
|
+
.ant-steps .ant-steps-item-icon {
|
|
360
|
+
width: 28px;
|
|
361
|
+
height: 28px;
|
|
362
|
+
margin-top: 3px;
|
|
363
|
+
display: flex;
|
|
364
|
+
justify-content: center;
|
|
365
|
+
align-items: center;
|
|
366
|
+
flex-shrink: 0;
|
|
367
|
+
}
|
|
368
|
+
.ant-steps .ant-steps-item-finish .ant-steps-item-container .ant-steps-item-icon {
|
|
369
|
+
background-color: #ffffff;
|
|
370
|
+
border-color: #34b77c;
|
|
371
|
+
border-radius: 0;
|
|
372
|
+
}
|
|
373
|
+
.ant-steps .ant-steps-item-finish .ant-steps-item-container .ant-steps-finish-icon {
|
|
374
|
+
width: 12px;
|
|
375
|
+
height: 12px;
|
|
376
|
+
}
|
|
377
|
+
.ant-steps .ant-steps-item-finish .ant-steps-item-container .ant-steps-finish-icon svg {
|
|
378
|
+
display: none;
|
|
379
|
+
width: 12px;
|
|
380
|
+
height: 12px;
|
|
381
|
+
}
|
|
382
|
+
.ant-steps .ant-steps-item-finish .ant-steps-item-container .ant-steps-item-content .ant-steps-item-description {
|
|
383
|
+
min-height: 16px;
|
|
384
|
+
margin-top: 6px;
|
|
385
|
+
color: #999999;
|
|
386
|
+
font-weight: 400;
|
|
387
|
+
font-size: 12px;
|
|
388
|
+
line-height: 1rem;
|
|
389
|
+
}
|
|
390
|
+
.ant-steps .ant-steps-item-title {
|
|
391
|
+
height: 24px;
|
|
392
|
+
font-weight: 400;
|
|
393
|
+
font-size: 16px;
|
|
394
|
+
padding-inline-end: 24px;
|
|
395
|
+
}
|
|
396
|
+
.ant-steps .ant-steps-item-content {
|
|
397
|
+
margin-left: 4px;
|
|
398
|
+
}
|
|
399
|
+
.ant-steps .ant-steps-item-error.ant-steps-item-active .ant-steps-item-container .ant-steps-item-icon {
|
|
400
|
+
background-color: #ff4d4f;
|
|
401
|
+
}
|
|
402
|
+
.ant-steps .ant-steps-item-active .ant-steps-item-container .ant-steps-item-icon {
|
|
403
|
+
background-color: #34b77c;
|
|
404
|
+
}
|
|
405
|
+
.ant-steps .ant-steps-item-active .ant-steps-item-container .ant-steps-item-icon .ant-steps-icon {
|
|
406
|
+
color: #ffffff;
|
|
407
|
+
font-weight: 500;
|
|
408
|
+
font-size: 16px;
|
|
409
|
+
}
|
|
410
|
+
.ant-steps .ant-steps-item-active .ant-steps-item-container .ant-steps-item-content .ant-steps-item-description {
|
|
411
|
+
min-height: 16px;
|
|
412
|
+
margin-top: 6px;
|
|
413
|
+
color: #999999;
|
|
414
|
+
font-weight: 400;
|
|
415
|
+
font-size: 12px;
|
|
416
|
+
line-height: 1rem;
|
|
417
|
+
}
|
|
418
|
+
.ant-steps .ant-steps-item-wait .ant-steps-item-container .ant-steps-item-icon {
|
|
419
|
+
background-color: #ffffff;
|
|
420
|
+
border-color: #dee4ed;
|
|
421
|
+
}
|
|
422
|
+
.ant-steps .ant-steps-item-wait .ant-steps-item-container .ant-steps-item-icon .ant-steps-icon {
|
|
423
|
+
color: #dee4ed;
|
|
424
|
+
font-weight: 500;
|
|
425
|
+
font-size: 16px;
|
|
426
|
+
}
|
|
427
|
+
.ant-steps .ant-steps-item-wait .ant-steps-item-container .ant-steps-item-description {
|
|
428
|
+
min-height: 16px;
|
|
429
|
+
margin-top: 6px;
|
|
430
|
+
color: #999999;
|
|
431
|
+
font-weight: 400;
|
|
432
|
+
font-size: 12px;
|
|
433
|
+
line-height: 1rem;
|
|
434
|
+
}
|
|
435
|
+
.ant-steps-item.ant-steps-item-finish.ant-steps-item-active .ant-steps-item-container .ant-steps-item-icon {
|
|
436
|
+
background-color: #ffffff;
|
|
437
|
+
}
|
|
438
|
+
.ant-steps.ant-steps-vertical .ant-steps-item .ant-steps-item-icon {
|
|
439
|
+
margin-inline-end: 8px;
|
|
440
|
+
}
|
|
441
|
+
.ant-steps.ant-steps-vertical .ant-steps-item .ant-steps-item-container .ant-steps-item-tail {
|
|
442
|
+
inset-inline-start: 13px;
|
|
443
|
+
}
|
|
444
|
+
.ant-steps.ant-steps-vertical .ant-steps-item-icon {
|
|
445
|
+
width: 28px;
|
|
446
|
+
height: 28px;
|
|
447
|
+
margin-top: 3px;
|
|
448
|
+
display: flex;
|
|
449
|
+
justify-content: center;
|
|
450
|
+
align-items: center;
|
|
451
|
+
}
|
|
452
|
+
.ant-steps.ant-steps-vertical.ant-steps-small .ant-steps-item .ant-steps-item-tail {
|
|
453
|
+
inset-inline-start: 13px;
|
|
454
|
+
margin: 6px 0;
|
|
455
|
+
}
|
|
456
|
+
.ant-table-wrapper {
|
|
457
|
+
padding: 12px 16px 16px;
|
|
458
|
+
background-color: #ffffff;
|
|
459
|
+
border-radius: 0;
|
|
460
|
+
}
|
|
461
|
+
.ant-table-wrapper .ant-table.ant-table-middle > .ant-table-title,
|
|
462
|
+
.ant-table-wrapper .ant-table.ant-table-small > .ant-table-title {
|
|
463
|
+
display: flex;
|
|
464
|
+
align-items: center;
|
|
465
|
+
justify-content: space-between;
|
|
466
|
+
min-height: 40px;
|
|
467
|
+
padding: 0 0 12px;
|
|
468
|
+
border: none;
|
|
469
|
+
}
|
|
470
|
+
.ant-table-wrapper .ant-table {
|
|
471
|
+
width: 100%;
|
|
472
|
+
overflow-x: hidden;
|
|
473
|
+
border-radius: 0;
|
|
474
|
+
}
|
|
475
|
+
.ant-table-wrapper .ant-table .ant-table-container {
|
|
476
|
+
border-radius: 0;
|
|
477
|
+
}
|
|
478
|
+
.ant-table-wrapper .ant-table .ant-table-container table {
|
|
479
|
+
border-radius: 0;
|
|
480
|
+
}
|
|
481
|
+
.ant-table-wrapper .ant-table .ant-table-container table > thead > tr:first-child > *:first-child {
|
|
482
|
+
border-radius: 0;
|
|
483
|
+
}
|
|
484
|
+
.ant-table-wrapper .ant-table .ant-table-container .ant-table-header {
|
|
485
|
+
border-radius: 0;
|
|
486
|
+
}
|
|
487
|
+
.ant-table-wrapper .ant-table .ant-table-container .ant-table-tbody > tr > td {
|
|
488
|
+
padding: 13.5px 16px;
|
|
489
|
+
line-height: 20px;
|
|
490
|
+
}
|
|
491
|
+
.ant-table-wrapper .ant-table .ant-table-container .ant-table-thead > tr > th {
|
|
492
|
+
padding: 13.5px 16px;
|
|
493
|
+
line-height: 20px;
|
|
494
|
+
}
|
|
495
|
+
.ant-table-wrapper .ant-table-footer {
|
|
496
|
+
padding: 0;
|
|
497
|
+
}
|
|
498
|
+
.ant-table-wrapper .ant-table-footer .ant-table-wrapper {
|
|
499
|
+
padding: 0;
|
|
500
|
+
}
|
|
501
|
+
.ant-table-wrapper .ant-table-footer table {
|
|
502
|
+
border: none;
|
|
503
|
+
}
|
|
504
|
+
.ant-table-wrapper .ant-table-footer .ant-table-body {
|
|
505
|
+
overflow-x: hidden;
|
|
506
|
+
}
|
|
507
|
+
.ant-table-wrapper .ant-table-footer td {
|
|
508
|
+
padding: 12px 8px;
|
|
509
|
+
}
|
|
510
|
+
[class$='-basic-table'],
|
|
511
|
+
[class$='-basic-table-form-container'] {
|
|
512
|
+
width: 100%;
|
|
513
|
+
height: 100%;
|
|
514
|
+
}
|
|
515
|
+
[class$='-basic-table-form-container'] {
|
|
516
|
+
padding: 16px;
|
|
517
|
+
}
|
|
518
|
+
[class$='-basic-table-form-container'] .ant-form {
|
|
519
|
+
width: 100%;
|
|
520
|
+
margin-bottom: 16px;
|
|
521
|
+
padding: 16px;
|
|
522
|
+
background-color: #ffffff;
|
|
523
|
+
border-radius: 0;
|
|
524
|
+
}
|
|
525
|
+
[class$='-basic-table-form-container'] .ant-form .ant-row {
|
|
526
|
+
row-gap: 16px;
|
|
527
|
+
}
|
|
528
|
+
[class$='-basic-table-form-container'] .ant-form .ant-form-item {
|
|
529
|
+
margin-bottom: 0;
|
|
530
|
+
}
|
|
531
|
+
[class$='-basic-table--inset'] .ant-table-wrapper {
|
|
532
|
+
padding: 0;
|
|
533
|
+
}
|
|
534
|
+
[class$='-basic-table-row__striped'] td {
|
|
535
|
+
background-color: #fafafa;
|
|
536
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
.ant-message .ant-message-notice-content {
|
|
2
|
+
padding: 10px 16px;
|
|
3
|
+
/* 文字颜色/一级-333333 */
|
|
4
|
+
color: #333333;
|
|
5
|
+
font-weight: normal;
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
line-height: 22px;
|
|
8
|
+
letter-spacing: 0;
|
|
9
|
+
border-radius: 4px;
|
|
10
|
+
box-shadow: 0 3px 6px 0 rgba(44, 54, 69, 0.102);
|
|
11
|
+
}
|
|
12
|
+
.ant-message .ant-message-notice .anticon {
|
|
13
|
+
font-size: 14px;
|
|
14
|
+
line-height: 22px;
|
|
15
|
+
vertical-align: -0.18em;
|
|
16
|
+
margin-inline-end: 9px;
|
|
17
|
+
}
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
.ant-modal-root .ant-modal-close {
|
|
2
|
+
top: 0;
|
|
3
|
+
right: 0;
|
|
4
|
+
width: auto;
|
|
5
|
+
color: #666666;
|
|
6
|
+
font-weight: normal;
|
|
7
|
+
background: transparent;
|
|
8
|
+
outline: none;
|
|
9
|
+
cursor: default;
|
|
10
|
+
}
|
|
11
|
+
.ant-modal-root .ant-modal-close:hover {
|
|
12
|
+
color: #666666;
|
|
13
|
+
background-color: transparent;
|
|
14
|
+
}
|
|
15
|
+
.ant-modal-root .ant-modal-close-x {
|
|
16
|
+
display: inline-block;
|
|
17
|
+
width: 96px;
|
|
18
|
+
height: 54px;
|
|
19
|
+
line-height: 54px;
|
|
20
|
+
text-align: start;
|
|
21
|
+
}
|
|
22
|
+
.ant-modal-root .ant-modal-close-x > div {
|
|
23
|
+
height: 100%;
|
|
24
|
+
}
|
|
25
|
+
.ant-modal-root .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-close-x > span:hover {
|
|
33
|
+
color: #ed6f6f;
|
|
34
|
+
}
|
|
35
|
+
.ant-modal-root .ant-modal .ant-modal-content {
|
|
36
|
+
padding: 0;
|
|
37
|
+
}
|
|
38
|
+
.ant-modal-root .ant-modal .ant-modal-content .ant-modal-header {
|
|
39
|
+
margin-bottom: 0;
|
|
40
|
+
padding: 15px 20px;
|
|
41
|
+
border-bottom: 1px solid #E9E9E9;
|
|
42
|
+
}
|
|
43
|
+
.ant-modal-root .ant-modal .ant-modal-content .ant-modal-header .ant-modal-title {
|
|
44
|
+
color: #333333;
|
|
45
|
+
font-weight: normal;
|
|
46
|
+
font-size: 16px;
|
|
47
|
+
line-height: 24px;
|
|
48
|
+
}
|
|
49
|
+
.ant-modal-root .ant-modal .ant-modal-content .ant-modal-header .ant-modal-title > span {
|
|
50
|
+
padding-left: 0;
|
|
51
|
+
color: #333333;
|
|
52
|
+
font-weight: normal;
|
|
53
|
+
font-size: 16px;
|
|
54
|
+
line-height: 24px;
|
|
55
|
+
}
|
|
56
|
+
.ant-modal-root .ant-modal .ant-modal-content .ant-modal-body {
|
|
57
|
+
padding: 20px !important;
|
|
58
|
+
}
|
|
59
|
+
.ant-modal-root .ant-modal .ant-modal-content .ant-modal-body > .scrollbar {
|
|
60
|
+
padding: 0;
|
|
61
|
+
}
|
|
62
|
+
.ant-modal-root .ant-modal .ant-modal-content .ant-modal-body .scrollbar__wrap {
|
|
63
|
+
margin-bottom: 0 !important;
|
|
64
|
+
}
|
|
65
|
+
.ant-modal-root .ant-modal .ant-modal-content .ant-modal-footer {
|
|
66
|
+
margin-top: 0;
|
|
67
|
+
padding: 11px 20px;
|
|
68
|
+
border-top: 1px solid #E9E9E9;
|
|
69
|
+
}
|
|
70
|
+
.ant-modal-root .ant-modal .ant-modal-content .ant-modal-footer button {
|
|
71
|
+
min-width: 88px;
|
|
72
|
+
}
|
|
73
|
+
.ant-modal-root .ant-modal-confirm .ant-modal-content .ant-modal-body {
|
|
74
|
+
padding: 32px 32px 28px !important;
|
|
75
|
+
}
|
|
76
|
+
.ant-modal-root .ant-modal-confirm .ant-modal-content .ant-modal-body .ant-modal-confirm-body > .anticon {
|
|
77
|
+
margin-inline-end: 16px;
|
|
78
|
+
font-size: 24px;
|
|
79
|
+
}
|
|
80
|
+
.ant-modal-root .ant-modal-confirm .ant-modal-content .ant-modal-body .ant-modal-confirm-body .ant-modal-confirm-title {
|
|
81
|
+
color: #333333;
|
|
82
|
+
font-weight: normal;
|
|
83
|
+
font-size: 16px;
|
|
84
|
+
line-height: 24px;
|
|
85
|
+
}
|
|
86
|
+
.ant-modal-root .ant-modal-confirm .ant-modal-content .ant-modal-body .ant-modal-confirm-body .ant-modal-confirm-content {
|
|
87
|
+
max-width: calc(100% - 40px);
|
|
88
|
+
color: #999999;
|
|
89
|
+
font-weight: normal;
|
|
90
|
+
font-size: 14px;
|
|
91
|
+
line-height: 200%;
|
|
92
|
+
margin-block-start: 8px;
|
|
93
|
+
margin-inline-start: 40px;
|
|
94
|
+
}
|
|
95
|
+
.ant-modal-root .ant-modal-confirm .ant-modal-content .ant-modal-body .ant-modal-confirm-body .ant-modal-confirm-content > * {
|
|
96
|
+
color: #999999;
|
|
97
|
+
}
|
|
98
|
+
.ant-modal-root .ant-modal-confirm .ant-modal-content .ant-modal-body .ant-modal-confirm-btns {
|
|
99
|
+
margin-top: 0;
|
|
100
|
+
padding-top: 24px;
|
|
101
|
+
}
|
|
102
|
+
.ant-modal-root .ant-modal-confirm .ant-modal-content .ant-modal-body .ant-modal-confirm-btns button {
|
|
103
|
+
min-width: 88px;
|
|
104
|
+
}
|
|
105
|
+
.ant-modal-confirm-success .ant-modal-confirm-body > .anticon {
|
|
106
|
+
color: #06c687;
|
|
107
|
+
}
|
|
108
|
+
.ant-modal-confirm-info .ant-modal-confirm-body > .anticon {
|
|
109
|
+
color: #1890ff;
|
|
110
|
+
}
|
|
111
|
+
.ant-modal-confirm-warning .ant-modal-confirm-body > .anticon,
|
|
112
|
+
.ant-modal-confirm-confirm .ant-modal-confirm-body > .anticon {
|
|
113
|
+
color: #faad14;
|
|
114
|
+
}
|
|
115
|
+
.ant-modal-confirm-error .ant-modal-confirm-body > .anticon {
|
|
116
|
+
color: #ff4d4f;
|
|
117
|
+
}
|