base6-ui 1.1.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/CHANGELOG.md +13 -0
- package/build/plugins.ts +31 -0
- package/build/unPlugin.ts +37 -0
- package/dist/components/AppProvider/index.d.ts +1 -0
- package/dist/components/AppProvider/index.vue.d.ts +17 -0
- package/dist/components/BaseButton/index.d.ts +1 -0
- package/dist/components/BaseButton/index.vue.d.ts +24 -0
- package/dist/components/BaseDataTable/index.d.ts +1 -0
- package/dist/components/BaseDataTable/index.vue.d.ts +22 -0
- package/dist/components/BaseDialog/index.d.ts +2 -0
- package/dist/components/BaseDialog/index.vue.d.ts +56 -0
- package/dist/components/BaseDialog/options.d.ts +2 -0
- package/dist/components/BaseDialog/type.d.ts +29 -0
- package/dist/components/BaseInputNumber/index.d.ts +1 -0
- package/dist/components/BaseInputNumber/index.vue.d.ts +5368 -0
- package/dist/components/BaseLayout/ASide/index.vue.d.ts +20 -0
- package/dist/components/BaseLayout/ASide/type.d.ts +7 -0
- package/dist/components/BaseLayout/index.d.ts +1 -0
- package/dist/components/BaseProgress/index.d.ts +264 -0
- package/dist/components/BaseRadio/index.d.ts +1 -0
- package/dist/components/BaseRadio/index.vue.d.ts +23 -0
- package/dist/components/BaseSelect/index.d.ts +1 -0
- package/dist/components/BaseSelect/index.vue.d.ts +20 -0
- package/dist/components/BaseSlider/index.d.ts +1 -0
- package/dist/components/BaseSlider/index.vue.d.ts +27 -0
- package/dist/components/BaseSwitch/index.d.ts +1 -0
- package/dist/components/BaseSwitch/index.vue.d.ts +23 -0
- package/dist/components/index.d.ts +11 -0
- package/dist/components/types/themes/extendThemes.d.ts +44 -0
- package/dist/config/index.d.ts +1 -0
- package/dist/config/themes/color/dark.d.ts +54 -0
- package/dist/config/themes/color/index.d.ts +2 -0
- package/dist/config/themes/color/light.d.ts +53 -0
- package/dist/config/themes/common.d.ts +41 -0
- package/dist/config/themes/components/alert/common.d.ts +2 -0
- package/dist/config/themes/components/alert/dark.d.ts +2 -0
- package/dist/config/themes/components/alert/light.d.ts +2 -0
- package/dist/config/themes/components/baseComponent/dark.d.ts +8 -0
- package/dist/config/themes/components/baseComponent/light.d.ts +8 -0
- package/dist/config/themes/components/button/common.d.ts +2 -0
- package/dist/config/themes/components/button/dark.d.ts +2 -0
- package/dist/config/themes/components/button/light.d.ts +2 -0
- package/dist/config/themes/components/card/dark.d.ts +2 -0
- package/dist/config/themes/components/card/light.d.ts +2 -0
- package/dist/config/themes/components/charts/dark.d.ts +398 -0
- package/dist/config/themes/components/charts/light.d.ts +396 -0
- package/dist/config/themes/components/checkbox/common.d.ts +2 -0
- package/dist/config/themes/components/checkbox/dark.d.ts +2 -0
- package/dist/config/themes/components/checkbox/light.d.ts +2 -0
- package/dist/config/themes/components/dataTable/dark.d.ts +2 -0
- package/dist/config/themes/components/dataTable/light.d.ts +2 -0
- package/dist/config/themes/components/datePicker/dark.d.ts +2 -0
- package/dist/config/themes/components/datePicker/light.d.ts +2 -0
- package/dist/config/themes/components/dialog/common.d.ts +8 -0
- package/dist/config/themes/components/dialog/dark.d.ts +15 -0
- package/dist/config/themes/components/dialog/light.d.ts +15 -0
- package/dist/config/themes/components/dropdown/dark.d.ts +2 -0
- package/dist/config/themes/components/dropdown/light.d.ts +2 -0
- package/dist/config/themes/components/form/dark.d.ts +2 -0
- package/dist/config/themes/components/form/light.d.ts +2 -0
- package/dist/config/themes/components/input/common.d.ts +2 -0
- package/dist/config/themes/components/input/dark.d.ts +2 -0
- package/dist/config/themes/components/input/light.d.ts +2 -0
- package/dist/config/themes/components/inputNumber/common.d.ts +3 -0
- package/dist/config/themes/components/inputNumber/dark.d.ts +3 -0
- package/dist/config/themes/components/inputNumber/light.d.ts +3 -0
- package/dist/config/themes/components/layout/dark.d.ts +5 -0
- package/dist/config/themes/components/layout/light.d.ts +5 -0
- package/dist/config/themes/components/menu/dark.d.ts +2 -0
- package/dist/config/themes/components/menu/light.d.ts +2 -0
- package/dist/config/themes/components/progress/dark.d.ts +3 -0
- package/dist/config/themes/components/progress/light.d.ts +3 -0
- package/dist/config/themes/components/radio/dark.d.ts +3 -0
- package/dist/config/themes/components/radio/light.d.ts +3 -0
- package/dist/config/themes/components/select/dark.d.ts +2 -0
- package/dist/config/themes/components/select/light.d.ts +2 -0
- package/dist/config/themes/components/slider/dark.d.ts +3 -0
- package/dist/config/themes/components/slider/light.d.ts +3 -0
- package/dist/config/themes/components/switch/common.d.ts +3 -0
- package/dist/config/themes/components/switch/dark.d.ts +3 -0
- package/dist/config/themes/components/switch/light.d.ts +3 -0
- package/dist/config/themes/components/tag/dark.d.ts +2 -0
- package/dist/config/themes/components/tag/light.d.ts +2 -0
- package/dist/config/themes/components/transfer/dark.d.ts +2 -0
- package/dist/config/themes/components/transfer/light.d.ts +2 -0
- package/dist/config/themes/dark.d.ts +2 -0
- package/dist/config/themes/index.d.ts +7 -0
- package/dist/config/themes/light.d.ts +2 -0
- package/dist/config/themes/token/dark.d.ts +28 -0
- package/dist/config/themes/token/index.d.ts +2 -0
- package/dist/config/themes/token/light.d.ts +9 -0
- package/dist/globalMethods/index.d.ts +2 -0
- package/dist/globalMethods/modules/confirmTip.d.ts +2 -0
- package/dist/globalMethods/modules/message.d.ts +4 -0
- package/dist/hooks/useNaiveConfigProvideContext.d.ts +2 -0
- package/dist/index.d.ts +3 -0
- package/dist/types/themes/extendThemes.d.ts +44 -0
- package/es/_virtual/_plugin-vue_export-helper.mjs +9 -0
- package/es/_virtual/virtual_svg-icons-register.mjs +7 -0
- package/es/components/AppProvider/index.d.ts +1 -0
- package/es/components/AppProvider/index.vue.d.ts +17 -0
- package/es/components/AppProvider/index.vue.mjs +45 -0
- package/es/components/AppProvider/index.vue2.mjs +4 -0
- package/es/components/BaseButton/index.d.ts +1 -0
- package/es/components/BaseButton/index.vue.d.ts +24 -0
- package/es/components/BaseButton/index.vue.mjs +36 -0
- package/es/components/BaseButton/index.vue2.mjs +4 -0
- package/es/components/BaseDataTable/index.d.ts +1 -0
- package/es/components/BaseDataTable/index.vue.d.ts +22 -0
- package/es/components/BaseDataTable/index.vue.mjs +7 -0
- package/es/components/BaseDataTable/index.vue2.mjs +70 -0
- package/es/components/BaseDialog/index.d.ts +2 -0
- package/es/components/BaseDialog/index.vue.d.ts +56 -0
- package/es/components/BaseDialog/index.vue.mjs +141 -0
- package/es/components/BaseDialog/index.vue2.mjs +4 -0
- package/es/components/BaseDialog/options.d.ts +2 -0
- package/es/components/BaseDialog/options.mjs +27 -0
- package/es/components/BaseDialog/type.d.ts +29 -0
- package/es/components/BaseInputNumber/index.d.ts +1 -0
- package/es/components/BaseInputNumber/index.vue.d.ts +5368 -0
- package/es/components/BaseInputNumber/index.vue.mjs +7 -0
- package/es/components/BaseInputNumber/index.vue2.mjs +155 -0
- package/es/components/BaseLayout/ASide/index.vue.d.ts +20 -0
- package/es/components/BaseLayout/ASide/index.vue.mjs +7 -0
- package/es/components/BaseLayout/ASide/index.vue2.mjs +56 -0
- package/es/components/BaseLayout/ASide/type.d.ts +7 -0
- package/es/components/BaseLayout/index.d.ts +1 -0
- package/es/components/BaseProgress/index.d.ts +264 -0
- package/es/components/BaseProgress/index.mjs +81 -0
- package/es/components/BaseRadio/index.d.ts +1 -0
- package/es/components/BaseRadio/index.vue.d.ts +23 -0
- package/es/components/BaseRadio/index.vue.mjs +7 -0
- package/es/components/BaseRadio/index.vue2.mjs +42 -0
- package/es/components/BaseSelect/index.d.ts +1 -0
- package/es/components/BaseSelect/index.vue.d.ts +20 -0
- package/es/components/BaseSelect/index.vue.mjs +56 -0
- package/es/components/BaseSelect/index.vue2.mjs +4 -0
- package/es/components/BaseSlider/index.d.ts +1 -0
- package/es/components/BaseSlider/index.vue.d.ts +27 -0
- package/es/components/BaseSlider/index.vue.mjs +7 -0
- package/es/components/BaseSlider/index.vue2.mjs +107 -0
- package/es/components/BaseSwitch/index.d.ts +1 -0
- package/es/components/BaseSwitch/index.vue.d.ts +23 -0
- package/es/components/BaseSwitch/index.vue.mjs +7 -0
- package/es/components/BaseSwitch/index.vue2.mjs +44 -0
- package/es/components/index.d.ts +11 -0
- package/es/components/types/themes/extendThemes.d.ts +44 -0
- package/es/config/index.d.ts +1 -0
- package/es/config/themes/color/dark.d.ts +54 -0
- package/es/config/themes/color/dark.mjs +61 -0
- package/es/config/themes/color/index.d.ts +2 -0
- package/es/config/themes/color/light.d.ts +53 -0
- package/es/config/themes/color/light.mjs +60 -0
- package/es/config/themes/common.d.ts +41 -0
- package/es/config/themes/common.mjs +39 -0
- package/es/config/themes/components/alert/common.d.ts +2 -0
- package/es/config/themes/components/alert/common.mjs +10 -0
- package/es/config/themes/components/alert/dark.d.ts +2 -0
- package/es/config/themes/components/alert/dark.mjs +21 -0
- package/es/config/themes/components/alert/light.d.ts +2 -0
- package/es/config/themes/components/alert/light.mjs +17 -0
- package/es/config/themes/components/baseComponent/dark.d.ts +8 -0
- package/es/config/themes/components/baseComponent/dark.mjs +249 -0
- package/es/config/themes/components/baseComponent/light.d.ts +8 -0
- package/es/config/themes/components/baseComponent/light.mjs +350 -0
- package/es/config/themes/components/button/common.d.ts +2 -0
- package/es/config/themes/components/button/common.mjs +17 -0
- package/es/config/themes/components/button/dark.d.ts +2 -0
- package/es/config/themes/components/button/dark.mjs +109 -0
- package/es/config/themes/components/button/light.d.ts +2 -0
- package/es/config/themes/components/button/light.mjs +88 -0
- package/es/config/themes/components/card/dark.d.ts +2 -0
- package/es/config/themes/components/card/dark.mjs +14 -0
- package/es/config/themes/components/card/light.d.ts +2 -0
- package/es/config/themes/components/card/light.mjs +14 -0
- package/es/config/themes/components/charts/dark.d.ts +398 -0
- package/es/config/themes/components/charts/dark.mjs +428 -0
- package/es/config/themes/components/charts/light.d.ts +396 -0
- package/es/config/themes/components/charts/light.mjs +426 -0
- package/es/config/themes/components/checkbox/common.d.ts +2 -0
- package/es/config/themes/components/checkbox/common.mjs +7 -0
- package/es/config/themes/components/checkbox/dark.d.ts +2 -0
- package/es/config/themes/components/checkbox/dark.mjs +21 -0
- package/es/config/themes/components/checkbox/light.d.ts +2 -0
- package/es/config/themes/components/checkbox/light.mjs +20 -0
- package/es/config/themes/components/dataTable/dark.d.ts +2 -0
- package/es/config/themes/components/dataTable/dark.mjs +14 -0
- package/es/config/themes/components/dataTable/light.d.ts +2 -0
- package/es/config/themes/components/dataTable/light.mjs +14 -0
- package/es/config/themes/components/datePicker/dark.d.ts +2 -0
- package/es/config/themes/components/datePicker/dark.mjs +11 -0
- package/es/config/themes/components/datePicker/light.d.ts +2 -0
- package/es/config/themes/components/datePicker/light.mjs +11 -0
- package/es/config/themes/components/dialog/common.d.ts +8 -0
- package/es/config/themes/components/dialog/common.mjs +11 -0
- package/es/config/themes/components/dialog/dark.d.ts +15 -0
- package/es/config/themes/components/dialog/dark.mjs +16 -0
- package/es/config/themes/components/dialog/light.d.ts +15 -0
- package/es/config/themes/components/dialog/light.mjs +15 -0
- package/es/config/themes/components/dropdown/dark.d.ts +2 -0
- package/es/config/themes/components/dropdown/dark.mjs +8 -0
- package/es/config/themes/components/dropdown/light.d.ts +2 -0
- package/es/config/themes/components/dropdown/light.mjs +8 -0
- package/es/config/themes/components/form/dark.d.ts +2 -0
- package/es/config/themes/components/form/dark.mjs +8 -0
- package/es/config/themes/components/form/light.d.ts +2 -0
- package/es/config/themes/components/form/light.mjs +8 -0
- package/es/config/themes/components/input/common.d.ts +2 -0
- package/es/config/themes/components/input/common.mjs +11 -0
- package/es/config/themes/components/input/dark.d.ts +2 -0
- package/es/config/themes/components/input/dark.mjs +22 -0
- package/es/config/themes/components/input/light.d.ts +2 -0
- package/es/config/themes/components/input/light.mjs +21 -0
- package/es/config/themes/components/inputNumber/common.d.ts +3 -0
- package/es/config/themes/components/inputNumber/common.mjs +14 -0
- package/es/config/themes/components/inputNumber/dark.d.ts +3 -0
- package/es/config/themes/components/inputNumber/dark.mjs +21 -0
- package/es/config/themes/components/inputNumber/light.d.ts +3 -0
- package/es/config/themes/components/inputNumber/light.mjs +17 -0
- package/es/config/themes/components/layout/dark.d.ts +5 -0
- package/es/config/themes/components/layout/dark.mjs +10 -0
- package/es/config/themes/components/layout/light.d.ts +5 -0
- package/es/config/themes/components/layout/light.mjs +11 -0
- package/es/config/themes/components/menu/dark.d.ts +2 -0
- package/es/config/themes/components/menu/dark.mjs +17 -0
- package/es/config/themes/components/menu/light.d.ts +2 -0
- package/es/config/themes/components/menu/light.mjs +16 -0
- package/es/config/themes/components/progress/dark.d.ts +3 -0
- package/es/config/themes/components/progress/dark.mjs +21 -0
- package/es/config/themes/components/progress/light.d.ts +3 -0
- package/es/config/themes/components/progress/light.mjs +20 -0
- package/es/config/themes/components/radio/dark.d.ts +3 -0
- package/es/config/themes/components/radio/dark.mjs +20 -0
- package/es/config/themes/components/radio/light.d.ts +3 -0
- package/es/config/themes/components/radio/light.mjs +18 -0
- package/es/config/themes/components/select/dark.d.ts +2 -0
- package/es/config/themes/components/select/dark.mjs +40 -0
- package/es/config/themes/components/select/light.d.ts +2 -0
- package/es/config/themes/components/select/light.mjs +36 -0
- package/es/config/themes/components/slider/dark.d.ts +3 -0
- package/es/config/themes/components/slider/dark.mjs +15 -0
- package/es/config/themes/components/slider/light.d.ts +3 -0
- package/es/config/themes/components/slider/light.mjs +15 -0
- package/es/config/themes/components/switch/common.d.ts +3 -0
- package/es/config/themes/components/switch/common.mjs +14 -0
- package/es/config/themes/components/switch/dark.d.ts +3 -0
- package/es/config/themes/components/switch/dark.mjs +15 -0
- package/es/config/themes/components/switch/light.d.ts +3 -0
- package/es/config/themes/components/switch/light.mjs +15 -0
- package/es/config/themes/components/tag/dark.d.ts +2 -0
- package/es/config/themes/components/tag/dark.mjs +34 -0
- package/es/config/themes/components/tag/light.d.ts +2 -0
- package/es/config/themes/components/tag/light.mjs +33 -0
- package/es/config/themes/components/transfer/dark.d.ts +2 -0
- package/es/config/themes/components/transfer/dark.mjs +9 -0
- package/es/config/themes/components/transfer/light.d.ts +2 -0
- package/es/config/themes/components/transfer/light.mjs +9 -0
- package/es/config/themes/dark.d.ts +2 -0
- package/es/config/themes/dark.mjs +53 -0
- package/es/config/themes/index.d.ts +7 -0
- package/es/config/themes/index.mjs +50 -0
- package/es/config/themes/light.d.ts +2 -0
- package/es/config/themes/light.mjs +53 -0
- package/es/config/themes/token/dark.d.ts +28 -0
- package/es/config/themes/token/dark.mjs +31 -0
- package/es/config/themes/token/index.d.ts +2 -0
- package/es/config/themes/token/light.d.ts +9 -0
- package/es/config/themes/token/light.mjs +11 -0
- package/es/globalMethods/index.d.ts +2 -0
- package/es/globalMethods/index.mjs +8 -0
- package/es/globalMethods/modules/confirmTip.d.ts +2 -0
- package/es/globalMethods/modules/confirmTip.mjs +45 -0
- package/es/globalMethods/modules/message.d.ts +4 -0
- package/es/globalMethods/modules/message.mjs +15 -0
- package/es/hooks/useNaiveConfigProvideContext.d.ts +2 -0
- package/es/hooks/useNaiveConfigProvideContext.mjs +8 -0
- package/es/index.css +1 -0
- package/es/index.d.ts +3 -0
- package/es/index.mjs +47 -0
- package/es/node_modules/.pnpm/lib-materials@0.0.8_typescript@5.7.2/node_modules/lib-materials/dist/lib-materials.mjs +750 -0
- package/es/types/themes/extendThemes.d.ts +44 -0
- package/eslint.config.js +114 -0
- package/lib/_virtual/_plugin-vue_export-helper.js +1 -0
- package/lib/_virtual/virtual_svg-icons-register.js +1 -0
- package/lib/components/AppProvider/index.d.ts +1 -0
- package/lib/components/AppProvider/index.vue.d.ts +17 -0
- package/lib/components/AppProvider/index.vue.js +1 -0
- package/lib/components/AppProvider/index.vue2.js +1 -0
- package/lib/components/BaseButton/index.d.ts +1 -0
- package/lib/components/BaseButton/index.vue.d.ts +24 -0
- package/lib/components/BaseButton/index.vue.js +1 -0
- package/lib/components/BaseButton/index.vue2.js +1 -0
- package/lib/components/BaseDataTable/index.d.ts +1 -0
- package/lib/components/BaseDataTable/index.vue.d.ts +22 -0
- package/lib/components/BaseDataTable/index.vue.js +1 -0
- package/lib/components/BaseDataTable/index.vue2.js +1 -0
- package/lib/components/BaseDialog/index.d.ts +2 -0
- package/lib/components/BaseDialog/index.vue.d.ts +56 -0
- package/lib/components/BaseDialog/index.vue.js +1 -0
- package/lib/components/BaseDialog/index.vue2.js +1 -0
- package/lib/components/BaseDialog/options.d.ts +2 -0
- package/lib/components/BaseDialog/options.js +1 -0
- package/lib/components/BaseDialog/type.d.ts +29 -0
- package/lib/components/BaseInputNumber/index.d.ts +1 -0
- package/lib/components/BaseInputNumber/index.vue.d.ts +5368 -0
- package/lib/components/BaseInputNumber/index.vue.js +1 -0
- package/lib/components/BaseInputNumber/index.vue2.js +1 -0
- package/lib/components/BaseLayout/ASide/index.vue.d.ts +20 -0
- package/lib/components/BaseLayout/ASide/index.vue.js +1 -0
- package/lib/components/BaseLayout/ASide/index.vue2.js +1 -0
- package/lib/components/BaseLayout/ASide/type.d.ts +7 -0
- package/lib/components/BaseLayout/index.d.ts +1 -0
- package/lib/components/BaseProgress/index.d.ts +264 -0
- package/lib/components/BaseProgress/index.js +1 -0
- package/lib/components/BaseRadio/index.d.ts +1 -0
- package/lib/components/BaseRadio/index.vue.d.ts +23 -0
- package/lib/components/BaseRadio/index.vue.js +1 -0
- package/lib/components/BaseRadio/index.vue2.js +1 -0
- package/lib/components/BaseSelect/index.d.ts +1 -0
- package/lib/components/BaseSelect/index.vue.d.ts +20 -0
- package/lib/components/BaseSelect/index.vue.js +1 -0
- package/lib/components/BaseSelect/index.vue2.js +1 -0
- package/lib/components/BaseSlider/index.d.ts +1 -0
- package/lib/components/BaseSlider/index.vue.d.ts +27 -0
- package/lib/components/BaseSlider/index.vue.js +1 -0
- package/lib/components/BaseSlider/index.vue2.js +1 -0
- package/lib/components/BaseSwitch/index.d.ts +1 -0
- package/lib/components/BaseSwitch/index.vue.d.ts +23 -0
- package/lib/components/BaseSwitch/index.vue.js +1 -0
- package/lib/components/BaseSwitch/index.vue2.js +1 -0
- package/lib/components/index.d.ts +11 -0
- package/lib/components/types/themes/extendThemes.d.ts +44 -0
- package/lib/config/index.d.ts +1 -0
- package/lib/config/themes/color/dark.d.ts +54 -0
- package/lib/config/themes/color/dark.js +1 -0
- package/lib/config/themes/color/index.d.ts +2 -0
- package/lib/config/themes/color/light.d.ts +53 -0
- package/lib/config/themes/color/light.js +1 -0
- package/lib/config/themes/common.d.ts +41 -0
- package/lib/config/themes/common.js +1 -0
- package/lib/config/themes/components/alert/common.d.ts +2 -0
- package/lib/config/themes/components/alert/common.js +1 -0
- package/lib/config/themes/components/alert/dark.d.ts +2 -0
- package/lib/config/themes/components/alert/dark.js +1 -0
- package/lib/config/themes/components/alert/light.d.ts +2 -0
- package/lib/config/themes/components/alert/light.js +1 -0
- package/lib/config/themes/components/baseComponent/dark.d.ts +8 -0
- package/lib/config/themes/components/baseComponent/dark.js +1 -0
- package/lib/config/themes/components/baseComponent/light.d.ts +8 -0
- package/lib/config/themes/components/baseComponent/light.js +1 -0
- package/lib/config/themes/components/button/common.d.ts +2 -0
- package/lib/config/themes/components/button/common.js +1 -0
- package/lib/config/themes/components/button/dark.d.ts +2 -0
- package/lib/config/themes/components/button/dark.js +1 -0
- package/lib/config/themes/components/button/light.d.ts +2 -0
- package/lib/config/themes/components/button/light.js +1 -0
- package/lib/config/themes/components/card/dark.d.ts +2 -0
- package/lib/config/themes/components/card/dark.js +1 -0
- package/lib/config/themes/components/card/light.d.ts +2 -0
- package/lib/config/themes/components/card/light.js +1 -0
- package/lib/config/themes/components/charts/dark.d.ts +398 -0
- package/lib/config/themes/components/charts/dark.js +1 -0
- package/lib/config/themes/components/charts/light.d.ts +396 -0
- package/lib/config/themes/components/charts/light.js +1 -0
- package/lib/config/themes/components/checkbox/common.d.ts +2 -0
- package/lib/config/themes/components/checkbox/common.js +1 -0
- package/lib/config/themes/components/checkbox/dark.d.ts +2 -0
- package/lib/config/themes/components/checkbox/dark.js +1 -0
- package/lib/config/themes/components/checkbox/light.d.ts +2 -0
- package/lib/config/themes/components/checkbox/light.js +1 -0
- package/lib/config/themes/components/dataTable/dark.d.ts +2 -0
- package/lib/config/themes/components/dataTable/dark.js +1 -0
- package/lib/config/themes/components/dataTable/light.d.ts +2 -0
- package/lib/config/themes/components/dataTable/light.js +1 -0
- package/lib/config/themes/components/datePicker/dark.d.ts +2 -0
- package/lib/config/themes/components/datePicker/dark.js +1 -0
- package/lib/config/themes/components/datePicker/light.d.ts +2 -0
- package/lib/config/themes/components/datePicker/light.js +1 -0
- package/lib/config/themes/components/dialog/common.d.ts +8 -0
- package/lib/config/themes/components/dialog/common.js +1 -0
- package/lib/config/themes/components/dialog/dark.d.ts +15 -0
- package/lib/config/themes/components/dialog/dark.js +1 -0
- package/lib/config/themes/components/dialog/light.d.ts +15 -0
- package/lib/config/themes/components/dialog/light.js +1 -0
- package/lib/config/themes/components/dropdown/dark.d.ts +2 -0
- package/lib/config/themes/components/dropdown/dark.js +1 -0
- package/lib/config/themes/components/dropdown/light.d.ts +2 -0
- package/lib/config/themes/components/dropdown/light.js +1 -0
- package/lib/config/themes/components/form/dark.d.ts +2 -0
- package/lib/config/themes/components/form/dark.js +1 -0
- package/lib/config/themes/components/form/light.d.ts +2 -0
- package/lib/config/themes/components/form/light.js +1 -0
- package/lib/config/themes/components/input/common.d.ts +2 -0
- package/lib/config/themes/components/input/common.js +1 -0
- package/lib/config/themes/components/input/dark.d.ts +2 -0
- package/lib/config/themes/components/input/dark.js +1 -0
- package/lib/config/themes/components/input/light.d.ts +2 -0
- package/lib/config/themes/components/input/light.js +1 -0
- package/lib/config/themes/components/inputNumber/common.d.ts +3 -0
- package/lib/config/themes/components/inputNumber/common.js +1 -0
- package/lib/config/themes/components/inputNumber/dark.d.ts +3 -0
- package/lib/config/themes/components/inputNumber/dark.js +1 -0
- package/lib/config/themes/components/inputNumber/light.d.ts +3 -0
- package/lib/config/themes/components/inputNumber/light.js +1 -0
- package/lib/config/themes/components/layout/dark.d.ts +5 -0
- package/lib/config/themes/components/layout/dark.js +1 -0
- package/lib/config/themes/components/layout/light.d.ts +5 -0
- package/lib/config/themes/components/layout/light.js +1 -0
- package/lib/config/themes/components/menu/dark.d.ts +2 -0
- package/lib/config/themes/components/menu/dark.js +1 -0
- package/lib/config/themes/components/menu/light.d.ts +2 -0
- package/lib/config/themes/components/menu/light.js +1 -0
- package/lib/config/themes/components/progress/dark.d.ts +3 -0
- package/lib/config/themes/components/progress/dark.js +1 -0
- package/lib/config/themes/components/progress/light.d.ts +3 -0
- package/lib/config/themes/components/progress/light.js +1 -0
- package/lib/config/themes/components/radio/dark.d.ts +3 -0
- package/lib/config/themes/components/radio/dark.js +1 -0
- package/lib/config/themes/components/radio/light.d.ts +3 -0
- package/lib/config/themes/components/radio/light.js +1 -0
- package/lib/config/themes/components/select/dark.d.ts +2 -0
- package/lib/config/themes/components/select/dark.js +1 -0
- package/lib/config/themes/components/select/light.d.ts +2 -0
- package/lib/config/themes/components/select/light.js +1 -0
- package/lib/config/themes/components/slider/dark.d.ts +3 -0
- package/lib/config/themes/components/slider/dark.js +1 -0
- package/lib/config/themes/components/slider/light.d.ts +3 -0
- package/lib/config/themes/components/slider/light.js +1 -0
- package/lib/config/themes/components/switch/common.d.ts +3 -0
- package/lib/config/themes/components/switch/common.js +1 -0
- package/lib/config/themes/components/switch/dark.d.ts +3 -0
- package/lib/config/themes/components/switch/dark.js +1 -0
- package/lib/config/themes/components/switch/light.d.ts +3 -0
- package/lib/config/themes/components/switch/light.js +1 -0
- package/lib/config/themes/components/tag/dark.d.ts +2 -0
- package/lib/config/themes/components/tag/dark.js +1 -0
- package/lib/config/themes/components/tag/light.d.ts +2 -0
- package/lib/config/themes/components/tag/light.js +1 -0
- package/lib/config/themes/components/transfer/dark.d.ts +2 -0
- package/lib/config/themes/components/transfer/dark.js +1 -0
- package/lib/config/themes/components/transfer/light.d.ts +2 -0
- package/lib/config/themes/components/transfer/light.js +1 -0
- package/lib/config/themes/dark.d.ts +2 -0
- package/lib/config/themes/dark.js +1 -0
- package/lib/config/themes/index.d.ts +7 -0
- package/lib/config/themes/index.js +1 -0
- package/lib/config/themes/light.d.ts +2 -0
- package/lib/config/themes/light.js +1 -0
- package/lib/config/themes/token/dark.d.ts +28 -0
- package/lib/config/themes/token/dark.js +1 -0
- package/lib/config/themes/token/index.d.ts +2 -0
- package/lib/config/themes/token/light.d.ts +9 -0
- package/lib/config/themes/token/light.js +1 -0
- package/lib/globalMethods/index.d.ts +2 -0
- package/lib/globalMethods/index.js +1 -0
- package/lib/globalMethods/modules/confirmTip.d.ts +2 -0
- package/lib/globalMethods/modules/confirmTip.js +1 -0
- package/lib/globalMethods/modules/message.d.ts +4 -0
- package/lib/globalMethods/modules/message.js +1 -0
- package/lib/hooks/useNaiveConfigProvideContext.d.ts +2 -0
- package/lib/hooks/useNaiveConfigProvideContext.js +1 -0
- package/lib/index.css +1 -0
- package/lib/index.d.ts +3 -0
- package/lib/index.js +1 -0
- package/lib/node_modules/.pnpm/lib-materials@0.0.8_typescript@5.7.2/node_modules/lib-materials/dist/lib-materials.js +1 -0
- package/lib/types/themes/extendThemes.d.ts +44 -0
- package/package.json +43 -0
- package/readme.md +83 -0
- package/src/components/AppProvider/index.ts +1 -0
- package/src/components/AppProvider/index.vue +38 -0
- package/src/components/BaseButton/index.ts +1 -0
- package/src/components/BaseButton/index.vue +21 -0
- package/src/components/BaseDataTable/index.ts +1 -0
- package/src/components/BaseDataTable/index.vue +120 -0
- package/src/components/BaseDialog/index.ts +2 -0
- package/src/components/BaseDialog/index.vue +104 -0
- package/src/components/BaseDialog/options.ts +25 -0
- package/src/components/BaseDialog/type.ts +30 -0
- package/src/components/BaseInputNumber/index.ts +1 -0
- package/src/components/BaseInputNumber/index.vue +188 -0
- package/src/components/BaseLayout/ASide/index.vue +104 -0
- package/src/components/BaseLayout/ASide/type.ts +11 -0
- package/src/components/BaseLayout/index.ts +1 -0
- package/src/components/BaseProgress/index.ts +99 -0
- package/src/components/BaseRadio/index.ts +1 -0
- package/src/components/BaseRadio/index.vue +45 -0
- package/src/components/BaseSelect/index.ts +1 -0
- package/src/components/BaseSelect/index.vue +59 -0
- package/src/components/BaseSlider/index.ts +1 -0
- package/src/components/BaseSlider/index.vue +114 -0
- package/src/components/BaseSwitch/index.ts +1 -0
- package/src/components/BaseSwitch/index.vue +69 -0
- package/src/components/index.ts +11 -0
- package/src/components/types/themes/extendThemes.ts +50 -0
- package/src/config/index.ts +1 -0
- package/src/config/themes/color/dark.ts +60 -0
- package/src/config/themes/color/index.ts +2 -0
- package/src/config/themes/color/light.ts +59 -0
- package/src/config/themes/common.ts +50 -0
- package/src/config/themes/components/alert/common.ts +13 -0
- package/src/config/themes/components/alert/dark.ts +23 -0
- package/src/config/themes/components/alert/light.ts +18 -0
- package/src/config/themes/components/baseComponent/dark.ts +189 -0
- package/src/config/themes/components/baseComponent/light.ts +297 -0
- package/src/config/themes/components/button/common.ts +20 -0
- package/src/config/themes/components/button/dark.ts +127 -0
- package/src/config/themes/components/button/light.ts +102 -0
- package/src/config/themes/components/card/dark.ts +13 -0
- package/src/config/themes/components/card/light.ts +13 -0
- package/src/config/themes/components/charts/dark.ts +425 -0
- package/src/config/themes/components/charts/light.ts +424 -0
- package/src/config/themes/components/checkbox/common.ts +7 -0
- package/src/config/themes/components/checkbox/dark.ts +23 -0
- package/src/config/themes/components/checkbox/light.ts +22 -0
- package/src/config/themes/components/dataTable/dark.ts +14 -0
- package/src/config/themes/components/dataTable/light.ts +14 -0
- package/src/config/themes/components/datePicker/dark.ts +10 -0
- package/src/config/themes/components/datePicker/light.ts +10 -0
- package/src/config/themes/components/dialog/common.ts +8 -0
- package/src/config/themes/components/dialog/dark.ts +14 -0
- package/src/config/themes/components/dialog/light.ts +13 -0
- package/src/config/themes/components/dropdown/dark.ts +7 -0
- package/src/config/themes/components/dropdown/light.ts +7 -0
- package/src/config/themes/components/form/dark.ts +7 -0
- package/src/config/themes/components/form/light.ts +7 -0
- package/src/config/themes/components/input/common.ts +13 -0
- package/src/config/themes/components/input/dark.ts +25 -0
- package/src/config/themes/components/input/light.ts +24 -0
- package/src/config/themes/components/inputNumber/common.ts +14 -0
- package/src/config/themes/components/inputNumber/dark.ts +24 -0
- package/src/config/themes/components/inputNumber/light.ts +20 -0
- package/src/config/themes/components/layout/dark.ts +8 -0
- package/src/config/themes/components/layout/light.ts +9 -0
- package/src/config/themes/components/menu/dark.ts +18 -0
- package/src/config/themes/components/menu/light.ts +17 -0
- package/src/config/themes/components/progress/dark.ts +25 -0
- package/src/config/themes/components/progress/light.ts +25 -0
- package/src/config/themes/components/radio/dark.ts +20 -0
- package/src/config/themes/components/radio/light.ts +21 -0
- package/src/config/themes/components/select/dark.ts +42 -0
- package/src/config/themes/components/select/light.ts +38 -0
- package/src/config/themes/components/slider/dark.ts +16 -0
- package/src/config/themes/components/slider/light.ts +16 -0
- package/src/config/themes/components/switch/common.ts +17 -0
- package/src/config/themes/components/switch/dark.ts +17 -0
- package/src/config/themes/components/switch/light.ts +17 -0
- package/src/config/themes/components/tag/dark.ts +40 -0
- package/src/config/themes/components/tag/light.ts +39 -0
- package/src/config/themes/components/transfer/dark.ts +8 -0
- package/src/config/themes/components/transfer/light.ts +8 -0
- package/src/config/themes/dark.ts +61 -0
- package/src/config/themes/index.ts +12 -0
- package/src/config/themes/light.ts +61 -0
- package/src/config/themes/token/dark.ts +32 -0
- package/src/config/themes/token/index.ts +2 -0
- package/src/config/themes/token/light.ts +11 -0
- package/src/globalMethods/index.ts +8 -0
- package/src/globalMethods/modules/confirmTip.ts +49 -0
- package/src/globalMethods/modules/message.ts +20 -0
- package/src/hooks/useNaiveConfigProvideContext.ts +10 -0
- package/src/index.ts +8 -0
- package/src/style/index.scss +63 -0
- package/src/svg-icons/add.svg +1 -0
- package/src/svg-icons/arrow/down.svg +1 -0
- package/src/svg-icons/arrow/top.svg +1 -0
- package/src/svg-icons/logo.svg +4 -0
- package/src/svg-icons/operate/add.svg +1 -0
- package/src/svg-icons/operate/close.svg +1 -0
- package/src/svg-icons/operate/minus.svg +1 -0
- package/src/svg-icons/progress-default.svg +3 -0
- package/src/types/themes/extendThemes.ts +50 -0
- package/tsconfig.json +38 -0
- package/typing/components.d.ts +38 -0
- package/typing/global.d.ts +19 -0
- package/vite.config.ts +61 -0
|
@@ -0,0 +1,396 @@
|
|
|
1
|
+
export declare const ChartsThemeLight: {
|
|
2
|
+
color: string[];
|
|
3
|
+
textStyle: {};
|
|
4
|
+
title: {
|
|
5
|
+
textStyle: {
|
|
6
|
+
color: string;
|
|
7
|
+
fontWeight: number;
|
|
8
|
+
fontSize: number;
|
|
9
|
+
lineHeight: number;
|
|
10
|
+
};
|
|
11
|
+
subtextStyle: {
|
|
12
|
+
color: string;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
line: {
|
|
16
|
+
itemStyle: {
|
|
17
|
+
borderWidth: string;
|
|
18
|
+
};
|
|
19
|
+
lineStyle: {
|
|
20
|
+
width: string;
|
|
21
|
+
};
|
|
22
|
+
symbolSize: number;
|
|
23
|
+
symbol: string;
|
|
24
|
+
smooth: boolean;
|
|
25
|
+
};
|
|
26
|
+
radar: {
|
|
27
|
+
itemStyle: {
|
|
28
|
+
borderWidth: string;
|
|
29
|
+
};
|
|
30
|
+
lineStyle: {
|
|
31
|
+
width: string;
|
|
32
|
+
};
|
|
33
|
+
symbolSize: string;
|
|
34
|
+
symbol: string;
|
|
35
|
+
smooth: boolean;
|
|
36
|
+
};
|
|
37
|
+
bar: {
|
|
38
|
+
itemStyle: {
|
|
39
|
+
barBorderWidth: number;
|
|
40
|
+
barBorderColor: string;
|
|
41
|
+
borderRadius: number[];
|
|
42
|
+
};
|
|
43
|
+
barMaxWidth: number;
|
|
44
|
+
};
|
|
45
|
+
pie: {
|
|
46
|
+
padAngle: number;
|
|
47
|
+
itemStyle: {
|
|
48
|
+
borderWidth: number;
|
|
49
|
+
borderColor: string;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
scatter: {
|
|
53
|
+
itemStyle: {
|
|
54
|
+
borderWidth: number;
|
|
55
|
+
borderColor: string;
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
boxplot: {
|
|
59
|
+
itemStyle: {
|
|
60
|
+
borderWidth: number;
|
|
61
|
+
borderColor: string;
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
parallel: {
|
|
65
|
+
itemStyle: {
|
|
66
|
+
borderWidth: number;
|
|
67
|
+
borderColor: string;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
sankey: {
|
|
71
|
+
itemStyle: {
|
|
72
|
+
borderWidth: number;
|
|
73
|
+
borderColor: string;
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
funnel: {
|
|
77
|
+
itemStyle: {
|
|
78
|
+
borderWidth: number;
|
|
79
|
+
borderColor: string;
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
gauge: {
|
|
83
|
+
itemStyle: {
|
|
84
|
+
borderWidth: number;
|
|
85
|
+
borderColor: string;
|
|
86
|
+
};
|
|
87
|
+
};
|
|
88
|
+
candlestick: {
|
|
89
|
+
itemStyle: {
|
|
90
|
+
color: string;
|
|
91
|
+
color0: string;
|
|
92
|
+
borderColor: string;
|
|
93
|
+
borderColor0: string;
|
|
94
|
+
borderWidth: string;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
graph: {
|
|
98
|
+
itemStyle: {
|
|
99
|
+
borderWidth: number;
|
|
100
|
+
borderColor: string;
|
|
101
|
+
};
|
|
102
|
+
lineStyle: {
|
|
103
|
+
width: number;
|
|
104
|
+
color: string;
|
|
105
|
+
};
|
|
106
|
+
symbolSize: string;
|
|
107
|
+
symbol: string;
|
|
108
|
+
smooth: boolean;
|
|
109
|
+
color: string[];
|
|
110
|
+
label: {
|
|
111
|
+
color: string;
|
|
112
|
+
};
|
|
113
|
+
};
|
|
114
|
+
map: {
|
|
115
|
+
itemStyle: {
|
|
116
|
+
areaColor: string;
|
|
117
|
+
borderColor: string;
|
|
118
|
+
borderWidth: number;
|
|
119
|
+
};
|
|
120
|
+
label: {
|
|
121
|
+
color: string;
|
|
122
|
+
};
|
|
123
|
+
emphasis: {
|
|
124
|
+
itemStyle: {
|
|
125
|
+
areaColor: string;
|
|
126
|
+
borderColor: string;
|
|
127
|
+
borderWidth: number;
|
|
128
|
+
};
|
|
129
|
+
label: {
|
|
130
|
+
color: string;
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
geo: {
|
|
135
|
+
itemStyle: {
|
|
136
|
+
areaColor: string;
|
|
137
|
+
borderColor: string;
|
|
138
|
+
borderWidth: number;
|
|
139
|
+
};
|
|
140
|
+
label: {
|
|
141
|
+
color: string;
|
|
142
|
+
};
|
|
143
|
+
emphasis: {
|
|
144
|
+
itemStyle: {
|
|
145
|
+
areaColor: string;
|
|
146
|
+
borderColor: string;
|
|
147
|
+
borderWidth: number;
|
|
148
|
+
};
|
|
149
|
+
label: {
|
|
150
|
+
color: string;
|
|
151
|
+
};
|
|
152
|
+
};
|
|
153
|
+
};
|
|
154
|
+
categoryAxis: {
|
|
155
|
+
nameTextStyle: {
|
|
156
|
+
color: string;
|
|
157
|
+
fontWeight: number;
|
|
158
|
+
fontSize: number;
|
|
159
|
+
lineHeight: number;
|
|
160
|
+
};
|
|
161
|
+
axisLine: {
|
|
162
|
+
show: boolean;
|
|
163
|
+
lineStyle: {
|
|
164
|
+
color: string;
|
|
165
|
+
};
|
|
166
|
+
};
|
|
167
|
+
axisTick: {
|
|
168
|
+
show: boolean;
|
|
169
|
+
lineStyle: {
|
|
170
|
+
color: string;
|
|
171
|
+
};
|
|
172
|
+
};
|
|
173
|
+
axisLabel: {
|
|
174
|
+
show: boolean;
|
|
175
|
+
color: string;
|
|
176
|
+
};
|
|
177
|
+
splitLine: {
|
|
178
|
+
show: boolean;
|
|
179
|
+
lineStyle: {
|
|
180
|
+
color: string[];
|
|
181
|
+
};
|
|
182
|
+
};
|
|
183
|
+
splitArea: {
|
|
184
|
+
show: boolean;
|
|
185
|
+
areaStyle: {
|
|
186
|
+
color: string[];
|
|
187
|
+
};
|
|
188
|
+
};
|
|
189
|
+
};
|
|
190
|
+
valueAxis: {
|
|
191
|
+
nameTextStyle: {
|
|
192
|
+
color: string;
|
|
193
|
+
fontWeight: number;
|
|
194
|
+
fontSize: number;
|
|
195
|
+
lineHeight: number;
|
|
196
|
+
};
|
|
197
|
+
axisLine: {
|
|
198
|
+
show: boolean;
|
|
199
|
+
lineStyle: {
|
|
200
|
+
color: string;
|
|
201
|
+
};
|
|
202
|
+
};
|
|
203
|
+
axisTick: {
|
|
204
|
+
show: boolean;
|
|
205
|
+
lineStyle: {
|
|
206
|
+
color: string;
|
|
207
|
+
};
|
|
208
|
+
};
|
|
209
|
+
axisLabel: {
|
|
210
|
+
show: boolean;
|
|
211
|
+
color: string;
|
|
212
|
+
};
|
|
213
|
+
splitLine: {
|
|
214
|
+
show: boolean;
|
|
215
|
+
lineStyle: {
|
|
216
|
+
color: string[];
|
|
217
|
+
};
|
|
218
|
+
};
|
|
219
|
+
splitArea: {
|
|
220
|
+
show: boolean;
|
|
221
|
+
areaStyle: {
|
|
222
|
+
color: string[];
|
|
223
|
+
};
|
|
224
|
+
};
|
|
225
|
+
};
|
|
226
|
+
logAxis: {
|
|
227
|
+
nameTextStyle: {
|
|
228
|
+
color: string;
|
|
229
|
+
fontWeight: number;
|
|
230
|
+
fontSize: number;
|
|
231
|
+
lineHeight: number;
|
|
232
|
+
};
|
|
233
|
+
axisLine: {
|
|
234
|
+
show: boolean;
|
|
235
|
+
lineStyle: {
|
|
236
|
+
color: string;
|
|
237
|
+
};
|
|
238
|
+
};
|
|
239
|
+
axisTick: {
|
|
240
|
+
show: boolean;
|
|
241
|
+
lineStyle: {
|
|
242
|
+
color: string;
|
|
243
|
+
};
|
|
244
|
+
};
|
|
245
|
+
axisLabel: {
|
|
246
|
+
show: boolean;
|
|
247
|
+
color: string;
|
|
248
|
+
};
|
|
249
|
+
splitLine: {
|
|
250
|
+
show: boolean;
|
|
251
|
+
lineStyle: {
|
|
252
|
+
color: string[];
|
|
253
|
+
};
|
|
254
|
+
};
|
|
255
|
+
splitArea: {
|
|
256
|
+
show: boolean;
|
|
257
|
+
areaStyle: {
|
|
258
|
+
color: string[];
|
|
259
|
+
};
|
|
260
|
+
};
|
|
261
|
+
};
|
|
262
|
+
timeAxis: {
|
|
263
|
+
nameTextStyle: {
|
|
264
|
+
color: string;
|
|
265
|
+
fontWeight: number;
|
|
266
|
+
fontSize: number;
|
|
267
|
+
lineHeight: number;
|
|
268
|
+
};
|
|
269
|
+
axisLine: {
|
|
270
|
+
show: boolean;
|
|
271
|
+
lineStyle: {
|
|
272
|
+
color: string;
|
|
273
|
+
};
|
|
274
|
+
};
|
|
275
|
+
axisTick: {
|
|
276
|
+
show: boolean;
|
|
277
|
+
lineStyle: {
|
|
278
|
+
color: string;
|
|
279
|
+
};
|
|
280
|
+
};
|
|
281
|
+
axisLabel: {
|
|
282
|
+
show: boolean;
|
|
283
|
+
color: string;
|
|
284
|
+
};
|
|
285
|
+
splitLine: {
|
|
286
|
+
show: boolean;
|
|
287
|
+
lineStyle: {
|
|
288
|
+
color: string[];
|
|
289
|
+
};
|
|
290
|
+
};
|
|
291
|
+
splitArea: {
|
|
292
|
+
show: boolean;
|
|
293
|
+
areaStyle: {
|
|
294
|
+
color: string[];
|
|
295
|
+
};
|
|
296
|
+
};
|
|
297
|
+
};
|
|
298
|
+
toolbox: {
|
|
299
|
+
iconStyle: {
|
|
300
|
+
borderColor: string;
|
|
301
|
+
};
|
|
302
|
+
emphasis: {
|
|
303
|
+
iconStyle: {
|
|
304
|
+
borderColor: string;
|
|
305
|
+
};
|
|
306
|
+
};
|
|
307
|
+
};
|
|
308
|
+
legend: {
|
|
309
|
+
textStyle: {
|
|
310
|
+
color: string;
|
|
311
|
+
lineHeight: number;
|
|
312
|
+
fontSize: number;
|
|
313
|
+
};
|
|
314
|
+
itemGap: number;
|
|
315
|
+
itemWidth: number;
|
|
316
|
+
itemHeight: number;
|
|
317
|
+
inactiveColor: string;
|
|
318
|
+
};
|
|
319
|
+
tooltip: {
|
|
320
|
+
borderColor: string;
|
|
321
|
+
padding: number;
|
|
322
|
+
textStyle: {
|
|
323
|
+
color: string;
|
|
324
|
+
fontSize: number;
|
|
325
|
+
fontWeight: number;
|
|
326
|
+
};
|
|
327
|
+
axisPointer: {
|
|
328
|
+
lineStyle: {
|
|
329
|
+
color: string;
|
|
330
|
+
width: number;
|
|
331
|
+
};
|
|
332
|
+
crossStyle: {
|
|
333
|
+
color: string;
|
|
334
|
+
width: number;
|
|
335
|
+
};
|
|
336
|
+
};
|
|
337
|
+
};
|
|
338
|
+
timeline: {
|
|
339
|
+
lineStyle: {
|
|
340
|
+
color: string;
|
|
341
|
+
width: number;
|
|
342
|
+
};
|
|
343
|
+
itemStyle: {
|
|
344
|
+
color: string;
|
|
345
|
+
borderWidth: number;
|
|
346
|
+
};
|
|
347
|
+
controlStyle: {
|
|
348
|
+
color: string;
|
|
349
|
+
borderColor: string;
|
|
350
|
+
borderWidth: number;
|
|
351
|
+
};
|
|
352
|
+
checkpointStyle: {
|
|
353
|
+
color: string;
|
|
354
|
+
borderColor: string;
|
|
355
|
+
};
|
|
356
|
+
label: {
|
|
357
|
+
color: string;
|
|
358
|
+
};
|
|
359
|
+
emphasis: {
|
|
360
|
+
itemStyle: {
|
|
361
|
+
color: string;
|
|
362
|
+
};
|
|
363
|
+
controlStyle: {
|
|
364
|
+
color: string;
|
|
365
|
+
borderColor: string;
|
|
366
|
+
borderWidth: number;
|
|
367
|
+
};
|
|
368
|
+
label: {
|
|
369
|
+
color: string;
|
|
370
|
+
};
|
|
371
|
+
};
|
|
372
|
+
};
|
|
373
|
+
visualMap: {
|
|
374
|
+
color: string[];
|
|
375
|
+
};
|
|
376
|
+
dataZoom: {
|
|
377
|
+
backgroundColor: string;
|
|
378
|
+
dataBackgroundColor: string;
|
|
379
|
+
fillerColor: string;
|
|
380
|
+
handleColor: string;
|
|
381
|
+
handleSize: string;
|
|
382
|
+
textStyle: {
|
|
383
|
+
color: string;
|
|
384
|
+
};
|
|
385
|
+
};
|
|
386
|
+
markPoint: {
|
|
387
|
+
label: {
|
|
388
|
+
color: string;
|
|
389
|
+
};
|
|
390
|
+
emphasis: {
|
|
391
|
+
label: {
|
|
392
|
+
color: string;
|
|
393
|
+
};
|
|
394
|
+
};
|
|
395
|
+
};
|
|
396
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../../color/light.js"),o={color:e["color-gray-10"],fontWeight:400,fontSize:14,lineHeight:20},l={color:["#5895ff","#6dd68e","#f7a55d","#ef7173","#cc84ff","#70c1ff","#71dad6"],textStyle:{},title:{textStyle:{color:e["color-gray-10"],fontWeight:400,fontSize:14,lineHeight:20},subtextStyle:{color:"#93b7e3"}},line:{itemStyle:{borderWidth:"0"},lineStyle:{width:"2"},symbolSize:0,symbol:"circle",smooth:!1},radar:{itemStyle:{borderWidth:"0"},lineStyle:{width:"2"},symbolSize:"0",symbol:"circle",smooth:!1},bar:{itemStyle:{barBorderWidth:0,barBorderColor:"#ccc",borderRadius:[4,4,0,0]},barMaxWidth:28},pie:{padAngle:1,itemStyle:{borderWidth:0,borderColor:"#ccc"}},scatter:{itemStyle:{borderWidth:0,borderColor:"#ccc"}},boxplot:{itemStyle:{borderWidth:0,borderColor:"#ccc"}},parallel:{itemStyle:{borderWidth:0,borderColor:"#ccc"}},sankey:{itemStyle:{borderWidth:0,borderColor:"#ccc"}},funnel:{itemStyle:{borderWidth:0,borderColor:"#ccc"}},gauge:{itemStyle:{borderWidth:0,borderColor:"#ccc"}},candlestick:{itemStyle:{color:"#edafda",color0:"transparent",borderColor:"#d680bc",borderColor0:"#8fd3e8",borderWidth:"2"}},graph:{itemStyle:{borderWidth:0,borderColor:"#ccc"},lineStyle:{width:1,color:"#aaa"},symbolSize:"0",symbol:"circle",smooth:!1,color:["#5895ff","#6dd68e","#f7a55d","#ef7173","#cc84ff","#70c1ff","#71dad6"],label:{color:"#ffffff"}},map:{itemStyle:{areaColor:"#f3f3f3",borderColor:"#516b91",borderWidth:.5},label:{color:"#000"},emphasis:{itemStyle:{areaColor:"#a5e7f0",borderColor:"#516b91",borderWidth:1},label:{color:"#516b91"}}},geo:{itemStyle:{areaColor:"#f3f3f3",borderColor:"#516b91",borderWidth:.5},label:{color:"#000"},emphasis:{itemStyle:{areaColor:"#a5e7f0",borderColor:"#516b91",borderWidth:1},label:{color:"#516b91"}}},categoryAxis:{nameTextStyle:o,axisLine:{show:!0,lineStyle:{color:e["color-gray-4"]}},axisTick:{show:!1,lineStyle:{color:"#333"}},axisLabel:{show:!0,color:e["color-gray-8"]},splitLine:{show:!1,lineStyle:{color:["#eeeeee"]}},splitArea:{show:!1,areaStyle:{color:["rgba(250,250,250,0.05)","rgba(200,200,200,0.02)"]}}},valueAxis:{nameTextStyle:o,axisLine:{show:!1,lineStyle:{color:e["color-gray-4"]}},axisTick:{show:!1,lineStyle:{color:"#333"}},axisLabel:{show:!0,color:e["color-gray-8"]},splitLine:{show:!1,lineStyle:{color:["#eeeeee"]}},splitArea:{show:!1,areaStyle:{color:["rgba(250,250,250,0.05)","rgba(200,200,200,0.02)"]}}},logAxis:{nameTextStyle:o,axisLine:{show:!0,lineStyle:{color:e["color-gray-4"]}},axisTick:{show:!1,lineStyle:{color:"#333"}},axisLabel:{show:!0,color:e["color-gray-8"]},splitLine:{show:!1,lineStyle:{color:["#eeeeee"]}},splitArea:{show:!1,areaStyle:{color:["rgba(250,250,250,0.05)","rgba(200,200,200,0.02)"]}}},timeAxis:{nameTextStyle:o,axisLine:{show:!0,lineStyle:{color:e["color-gray-4"]}},axisTick:{show:!1,lineStyle:{color:"#333"}},axisLabel:{show:!0,color:e["color-gray-8"]},splitLine:{show:!1,lineStyle:{color:["#eeeeee"]}},splitArea:{show:!1,areaStyle:{color:["rgba(250,250,250,0.05)","rgba(200,200,200,0.02)"]}}},toolbox:{iconStyle:{borderColor:"#999"},emphasis:{iconStyle:{borderColor:"#666"}}},legend:{textStyle:{color:e["color-gray-8"],lineHeight:16,fontSize:12},itemGap:16,itemWidth:12,itemHeight:12,inactiveColor:e["color-gray-4"]},tooltip:{borderColor:"#fff",padding:12,textStyle:{color:e["color-gray-10"],fontSize:12,fontWeight:400},axisPointer:{lineStyle:{color:"#ccc",width:1},crossStyle:{color:"#ccc",width:1}}},timeline:{lineStyle:{color:"#4c8eff",width:1},itemStyle:{color:"#4c8eff",borderWidth:1},controlStyle:{color:"#4c8eff",borderColor:"#4c8eff",borderWidth:.5},checkpointStyle:{color:"#4c8eff",borderColor:"#8a7ca8"},label:{color:"#4c8eff"},emphasis:{itemStyle:{color:"#4c8eff"},controlStyle:{color:"#4c8eff",borderColor:"#4c8eff",borderWidth:.5},label:{color:"#4c8eff"}}},visualMap:{color:["#516b91","#59c4e6","#a5e7f0"]},dataZoom:{backgroundColor:"rgba(0,0,0,0)",dataBackgroundColor:"rgba(255,255,255,0.3)",fillerColor:"rgba(167,183,204,0.4)",handleColor:"#a7b7cc",handleSize:"100%",textStyle:{color:"#333"}},markPoint:{label:{color:"#ffffff"},emphasis:{label:{color:"#ffffff"}}}};exports.ChartsThemeLight=l;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o={borderRadius:"4px",boxShadowFocus:"none"};exports.CheckboxThemeCommon=o;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../color/dark.js"),r=require("../../token/dark.js"),e=require("./common.js"),c={...e.CheckboxThemeCommon,border:`1.5px solid ${o["color-gray-4"]}`,borderChecked:`1.5px solid ${o["color-primary-6"]}`,borderDisabled:`1.5px solid ${o["color-gray-4"]}`,borderDisabledChecked:`1.5px solid ${o["color-primary-3"]}`,borderFocus:`1.5px solid ${o["color-primary-5"]}`,colorChecked:o["color-primary-6"],colorDisabled:r["fill-color-2"],colorDisabledChecked:o["color-primary-3"],checkMarkColor:r["color-text-1"],checkMarkColorDisabledChecked:r["color-white-disabled-opacity"],textColor:r["color-text-1"],textColorDisabled:r["color-text-4"]};exports.CheckboxThemeDark=c;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../color/light.js"),r=require("../../token/light.js"),e=require("./common.js"),l={...e.CheckboxThemeCommon,border:`1.5px solid ${o["color-gray-4"]}`,borderChecked:`1.5px solid ${o["color-primary-6"]}`,borderDisabled:`1.5px solid ${o["color-gray-4"]}`,borderDisabledChecked:`1.5px solid ${o["color-primary-3"]}`,borderFocus:`1.5px solid ${o["color-primary-5"]}`,colorChecked:o["color-primary-6"],colorDisabled:o["color-gray-3"],colorDisabledChecked:o["color-primary-3"],checkMarkColorDisabledChecked:r["color-text-1"],textColor:o["color-gray-10"],textColorDisabled:o["color-gray-4"]};exports.CheckboxThemeLight=l;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("../../color/dark.js"),o=require("../../token/dark.js"),e={tdColor:o["bg-color-2"],tdColorStriped:o["fill-color-5"],tdTextColor:r["color-gray-10"],thColor:o["bg-color-2"],thTextColor:o["color-text-2"]};exports.DataTableThemeDark=e;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../color/light.js"),t=require("../../token/light.js"),r={tdColor:t["bg-color-2"],tdColorStriped:o["color-gray-1"],tdTextColor:o["color-gray-10"],thColor:t["bg-color-2"],thTextColor:o["color-gray-8"]};exports.DataTableThemeLight=r;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("../../color/dark.js"),e={itemColorActive:r["color-primary-6"],itemColorIncluded:r["color-primary-1"],itemColorHover:r["color-primary-1"],itemTextColorCurrent:r["color-primary-6"],itemBorderRadius:"4px"};exports.DatePickerThemeDark=e;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("../../color/light.js"),e={itemColorActive:r["color-primary-6"],itemColorIncluded:r["color-primary-1"],itemColorHover:r["color-primary-1"],itemTextColorCurrent:r["color-primary-6"],itemBorderRadius:"4px"};exports.DatePickerThemeLight=e;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={closeMargin:"29px 24px 0 0",contentMargin:"24px 0",padding:"24px 24px 16px",titleFontSize:"24px",iconMargin:"0 6px 0 0",iconSize:"24px"};exports.DialogThemeCommon=e;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare const DialogThemeDark: {
|
|
2
|
+
closeIconColor: string;
|
|
3
|
+
titleTextColor: string;
|
|
4
|
+
textColor: string;
|
|
5
|
+
iconColorError: string;
|
|
6
|
+
iconColorInfo: string;
|
|
7
|
+
iconColorSuccess: string;
|
|
8
|
+
iconColorWarning: string;
|
|
9
|
+
closeMargin: string;
|
|
10
|
+
contentMargin: string;
|
|
11
|
+
padding: string;
|
|
12
|
+
titleFontSize: string;
|
|
13
|
+
iconMargin: string;
|
|
14
|
+
iconSize: string;
|
|
15
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../color/dark.js"),r=require("../../token/dark.js"),e=require("./common.js"),c={...e.DialogThemeCommon,closeIconColor:r["color-text-1"],titleTextColor:r["color-text-1"],textColor:r["color-text-1"],iconColorError:o["color-red-6"],iconColorInfo:o["color-primary-6"],iconColorSuccess:o["color-green-6"],iconColorWarning:o["color-origin-6"]};exports.DialogThemeDark=c;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare const DialogThemeLight: {
|
|
2
|
+
closeIconColor: string;
|
|
3
|
+
titleTextColor: string;
|
|
4
|
+
textColor: string;
|
|
5
|
+
iconColorError: string;
|
|
6
|
+
iconColorInfo: string;
|
|
7
|
+
iconColorSuccess: string;
|
|
8
|
+
iconColorWarning: string;
|
|
9
|
+
closeMargin: string;
|
|
10
|
+
contentMargin: string;
|
|
11
|
+
padding: string;
|
|
12
|
+
titleFontSize: string;
|
|
13
|
+
iconMargin: string;
|
|
14
|
+
iconSize: string;
|
|
15
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../color/light.js"),r=require("./common.js"),e={...r.DialogThemeCommon,closeIconColor:o["color-gray-10"],titleTextColor:o["color-gray-10"],textColor:o["color-gray-10"],iconColorError:o["color-red-6"],iconColorInfo:o["color-primary-6"],iconColorSuccess:o["color-green-6"],iconColorWarning:o["color-origin-6"]};exports.DialogThemeLight=e;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../token/dark.js"),e={optionColorHover:o["fill-color-5"],optionTextColor:o["color-text-1"]};exports.DropdownThemeDark=e;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../color/light.js"),r={optionColorHover:o["color-primary-2"],optionTextColor:o["color-gray-10"]};exports.DropdownThemeLight=r;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("../../color/dark.js"),e={asteriskColor:r["color-red-6"],feedbackTextColorError:r["color-red-6"]};exports.FormThemeDark=e;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../../color/light.js"),r={asteriskColor:e["color-red-6"],feedbackTextColorError:e["color-red-6"]};exports.FormThemeLight=r;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../../common.js"),o={borderRadius:e.commonBase.borderRadiusMedium,fontSizeLarge:e.commonBase.fontSizeLarge,heightLarge:e.commonBase.heightLarge,heightMedium:e.commonBase.heightMedium,heightSmall:e.commonBase.heightSmall};exports.InputThemeCommon=o;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../color/dark.js"),r=require("../../token/dark.js"),e=require("./common.js"),l={...e.InputThemeCommon,border:`1px solid ${o["color-gray-4"]}`,borderDisabled:"1px solid #0000",borderError:`1px solid ${o["color-red-6"]}`,borderFocus:`1.5px solid ${o["color-primary-6"]}`,borderHover:`1px solid ${o["color-primary-5"]}`,colorDisabled:r["fill-color-1"],groupLabelBorder:`1px solid ${o["color-gray-4"]}`,groupLabelColor:o["color-gray-2"],groupLabelTextColor:o["color-gray-10"],placeholderColor:o["color-gray-6"],placeholderColorDisabled:r["color-text-4"],textColor:o["color-gray-10"],textColorDisabled:r["color-text-4"]};exports.InputThemeDark=l;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../color/light.js"),r=require("./common.js"),l={...r.InputThemeCommon,border:`1px solid ${o["color-gray-4"]}`,borderDisabled:"1px solid #0000",borderError:`1px solid ${o["color-red-6"]}`,borderFocus:`1.5px solid ${o["color-primary-6"]}`,borderHover:`1px solid ${o["color-primary-5"]}`,colorDisabled:o["color-gray-2"],groupLabelBorder:`1px solid ${o["color-gray-4"]}`,groupLabelColor:o["color-gray-2"],groupLabelTextColor:o["color-gray-10"],placeholderColor:o["color-gray-6"],placeholderColorDisabled:o["color-gray-4"],textColor:o["color-gray-10"],textColorDisabled:o["color-gray-4"]};exports.InputThemeLight=l;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={innerControlsLargeWidth:"24px",innerControlsMediumWidth:"24px",innerControlsSmallWidth:"16px",innerControlsLargeHeight:"12px",innerControlsMediumHeight:"12px",innerControlsSmallHeight:"8px",innerControlsLargeBorderRadius:"4px",innerControlsMediumBorderRadius:"4px",innerControlsSmallBorderRadius:"2.67px"};exports.InputNumberThemeCommon=e;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../token/dark.js"),r=require("../../color/dark.js"),e=require("./common.js"),n={...e.InputNumberThemeCommon,innerControlsBackground:o["fill-color-2"],innerControlsDisabledBackground:o["fill-color-2"],innerControlsLargeBorderRadius:"4px",innerControlsMediumBorderRadius:"4px",innerControlsSmallBorderRadius:"2.67px",controlsFontColor:o["color-text-1"],controlFontColorDisabled:o["color-text-4"],outerControlsBorderStyle:`1px solid ${r["color-gray-4"]}`,outerControlsBackground:o["bg-color-3"],outerControlsBorderStyleDisabled:"none",outerControlsBackgroundDisabled:o["fill-color-1"],outerControlsOpacityDisabled:1};exports.InputNumberThemeDark=n;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../color/light.js"),r=require("./common.js"),e={...r.InputNumberThemeCommon,innerControlsBackground:o["color-gray-3"],innerControlsDisabledBackground:o["color-gray-3"],outerControlsBorderStyle:`1px solid ${o["color-gray-4"]}`,outerControlsBackground:"",outerControlsBorderStyleDisabled:`1px solid ${o["color-gray-2"]}`,outerControlsBackgroundDisabled:o["color-gray-2"],controlFontColorDisabled:o["color-gray-4"],controlsFontColor:o["color-gray-10"],outerControlsOpacityDisabled:1};exports.InputNumberThemeLight=e;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("../../color/dark.js"),o=require("../../token/dark.js"),e={siderColor:o["bg-color-4"],siderIconColor:r["color-primary-6"],siderFooterIconBgColor:o["fill-color-3"]};exports.LayoutThemeDark=e;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../color/light.js"),r=require("../../token/light.js"),e={siderColor:r["bg-color-4"],siderIconColor:o["color-primary-6"],siderFooterIconBgColor:o["color-gray-4"]};exports.LayoutThemeLight=e;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../token/dark.js"),e={itemColorActiveCollapsed:o["fill-color-5"],itemIconColorCollapsed:o["color-text-2"],itemIconColorActive:o["color-text-1"],itemIconColorHover:o["color-text-1"],itemIconColorActiveHover:o["color-text-1"],itemTextColor:o["color-text-2"],itemTextColorChildActive:o["color-text-1"],itemTextColorChildActiveHover:o["color-text-1"],itemTextColorActive:o["color-text-1"],itemTextColorHover:o["color-text-1"],itemTextColorActiveHover:o["color-text-1"]};exports.MenuThemeDark=e;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../color/light.js"),e={itemColorActiveCollapsed:o["color-gray-1"],itemIconColorCollapsed:o["color-gray-8"],itemIconColorActive:o["color-gray-10"],itemIconColorHover:o["color-gray-10"],itemIconColorActiveHover:o["color-gray-10"],itemTextColor:o["color-gray-8"],itemTextColorActive:o["color-gray-10"],itemTextColorHover:o["color-gray-10"],itemTextColorActiveHover:o["color-gray-10"]};exports.MenuThemeLight=e;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("../../color/dark.js"),o=require("../../token/dark.js"),l={fillColor:r["color-primary-6"],fillColorInfo:r["color-primary-6"],fillColorError:r["color-red-6"],fillColorSuccess:r["color-green-6"],fillColorWarning:r["color-origin-6"],railColor:o["fill-color-2"],iconColor:r["color-primary-3"],textColorCircle:o["color-text-1"],fontSizeCircleMedium:"24px",fontSizeCircleLarge:"32px",circleWidthMedium:"136px",circleWidthLarge:"170px",tipColorCircle:o["color-text-2"],tipFontSizeCircle:"14px"};exports.ProgressThemeDark=l;
|