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,53 @@
|
|
|
1
|
+
declare const lightBase: {
|
|
2
|
+
'color-primary-1': string;
|
|
3
|
+
'color-primary-2': string;
|
|
4
|
+
'color-primary-3': string;
|
|
5
|
+
'color-primary-4': string;
|
|
6
|
+
'color-primary-5': string;
|
|
7
|
+
'color-primary-6': string;
|
|
8
|
+
'color-primary-7': string;
|
|
9
|
+
'color-primary-8': string;
|
|
10
|
+
'color-primary-9': string;
|
|
11
|
+
'color-primary-10': string;
|
|
12
|
+
'color-green-1': string;
|
|
13
|
+
'color-green-2': string;
|
|
14
|
+
'color-green-3': string;
|
|
15
|
+
'color-green-4': string;
|
|
16
|
+
'color-green-5': string;
|
|
17
|
+
'color-green-6': string;
|
|
18
|
+
'color-green-7': string;
|
|
19
|
+
'color-green-8': string;
|
|
20
|
+
'color-green-9': string;
|
|
21
|
+
'color-green-10': string;
|
|
22
|
+
'color-red-1': string;
|
|
23
|
+
'color-red-2': string;
|
|
24
|
+
'color-red-3': string;
|
|
25
|
+
'color-red-4': string;
|
|
26
|
+
'color-red-5': string;
|
|
27
|
+
'color-red-6': string;
|
|
28
|
+
'color-red-7': string;
|
|
29
|
+
'color-red-8': string;
|
|
30
|
+
'color-red-9': string;
|
|
31
|
+
'color-red-10': string;
|
|
32
|
+
'color-origin-1': string;
|
|
33
|
+
'color-origin-2': string;
|
|
34
|
+
'color-origin-3': string;
|
|
35
|
+
'color-origin-4': string;
|
|
36
|
+
'color-origin-5': string;
|
|
37
|
+
'color-origin-6': string;
|
|
38
|
+
'color-origin-7': string;
|
|
39
|
+
'color-origin-8': string;
|
|
40
|
+
'color-origin-9': string;
|
|
41
|
+
'color-origin-10': string;
|
|
42
|
+
'color-gray-1': string;
|
|
43
|
+
'color-gray-2': string;
|
|
44
|
+
'color-gray-3': string;
|
|
45
|
+
'color-gray-4': string;
|
|
46
|
+
'color-gray-5': string;
|
|
47
|
+
'color-gray-6': string;
|
|
48
|
+
'color-gray-7': string;
|
|
49
|
+
'color-gray-8': string;
|
|
50
|
+
'color-gray-9': string;
|
|
51
|
+
'color-gray-10': string;
|
|
52
|
+
};
|
|
53
|
+
export default lightBase;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";const o={"color-primary-1":"#ECF2FF","color-primary-2":"#DEEAFF","color-primary-3":"#BBD1FF","color-primary-4":"#A1BFFF","color-primary-5":"#4C8EFF","color-primary-6":"#0151FF","color-primary-7":"#0046DC","color-primary-8":"#003AB8","color-primary-9":"#003098","color-primary-10":"#002575","color-green-1":"#EBFCF4","color-green-2":"#D6F8E6","color-green-3":"#C0ECD6","color-green-4":"#91E9BC","color-green-5":"#6ED9A5","color-green-6":"#0DAB63","color-green-7":"#059D5E","color-green-8":"#006D45","color-green-9":"#0D492B","color-green-10":"#213F26","color-red-1":"#FFF0EF","color-red-2":"#F9DAD8","color-red-3":"#FFD2CF","color-red-4":"#FF989A","color-red-5":"#EF7173","color-red-6":"#EC352B","color-red-7":"#C82D25","color-red-8":"#96241B","color-red-9":"#5E201D","color-red-10":"#4B2C2C","color-origin-1":"#FFF5E8","color-origin-2":"#FFE5CD","color-origin-3":"#FFE3BF","color-origin-4":"#FFB677","color-origin-5":"#F7A55D","color-origin-6":"#F78821","color-origin-7":"#D25C02","color-origin-8":"#9A4C1B","color-origin-9":"#703510","color-origin-10":"#452009","color-gray-1":"#FAFAFA","color-gray-2":"#F3F6FC","color-gray-3":"#E0E6EF","color-gray-4":"#CAD3E2","color-gray-5":"#B0BACB","color-gray-6":"#8D9CAF","color-gray-7":"#657489","color-gray-8":"#56647A","color-gray-9":"#262D3E","color-gray-10":"#161C2A"};module.exports=o;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
export declare const commonBase: {
|
|
2
|
+
borderRadiusLarge: string;
|
|
3
|
+
borderRadiusMedium: string;
|
|
4
|
+
borderRadiusSmall: string;
|
|
5
|
+
heightSmall: string;
|
|
6
|
+
heightMedium: string;
|
|
7
|
+
heightLarge: string;
|
|
8
|
+
fontSizeLarge: string;
|
|
9
|
+
fontSizeMedium: string;
|
|
10
|
+
fontSizeSmall: string;
|
|
11
|
+
buttonHeightSmall: string;
|
|
12
|
+
buttonHeightMedium: string;
|
|
13
|
+
buttonHeightLarge: string;
|
|
14
|
+
buttonWidthSmall: string;
|
|
15
|
+
buttonWidthMedium: string;
|
|
16
|
+
buttonWidthLarge: string;
|
|
17
|
+
buttonWidthPressedSmall: string;
|
|
18
|
+
buttonWidthPressedMedium: string;
|
|
19
|
+
buttonWidthPressedLarge: string;
|
|
20
|
+
railHeightSmall: string;
|
|
21
|
+
railHeightMedium: string;
|
|
22
|
+
railHeightLarge: string;
|
|
23
|
+
railWidthSmall: string;
|
|
24
|
+
railWidthMedium: string;
|
|
25
|
+
railWidthLarge: string;
|
|
26
|
+
tagBorderRadius: string;
|
|
27
|
+
tagHeightMedium: string;
|
|
28
|
+
tagHeightLarge: string;
|
|
29
|
+
paddingBase: string;
|
|
30
|
+
iconSizeBase: string;
|
|
31
|
+
paddingMedium: string;
|
|
32
|
+
tabGapSmall: string;
|
|
33
|
+
tabGapMedium: string;
|
|
34
|
+
tabGapLarge: string;
|
|
35
|
+
tabPaddingSmall: string;
|
|
36
|
+
tabPaddingMedium: string;
|
|
37
|
+
tabPaddingLarge: string;
|
|
38
|
+
fontWeightNormal: string;
|
|
39
|
+
fontWeightActive: string;
|
|
40
|
+
tabBorderRadius: string;
|
|
41
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a={borderRadiusLarge:"10px",borderRadiusMedium:"10px",borderRadiusSmall:"10px",heightSmall:"28px",heightMedium:"32px",heightLarge:"40px",fontSizeLarge:"14px",fontSizeMedium:"14px",fontSizeSmall:"12px",buttonHeightSmall:"12px",buttonHeightMedium:"16px",buttonWidthSmall:"12px",buttonWidthMedium:"16px",railHeightSmall:"16px",railHeightMedium:"24px",railWidthSmall:"28px",tagBorderRadius:"6px",tagHeightMedium:"22px",tagHeightLarge:"26px",paddingBase:"8px 12px",iconSizeBase:"20px",paddingMedium:"0 10px",tabGapSmall:"24px",tabGapMedium:"24px",tabGapLarge:"24px",tabPaddingSmall:"0 0 4px 0",tabPaddingMedium:"0 0 4px 0",tabPaddingLarge:"0 0 4px 0",fontWeightNormal:"400",fontWeightActive:"500",tabBorderRadius:"19px"};exports.commonBase=a;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../../common.js"),o={borderRadius:e.commonBase.borderRadiusMedium,fontSize:e.commonBase.fontSizeMedium,iconSize:"16px",iconMargin:"15px 8px 0 12px"};exports.AlertThemeCommon=o;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../color/dark.js"),r=require("./common.js"),e={...r.AlertThemeCommon,colorInfo:o["color-primary-1"],colorSuccess:o["color-green-1"],colorError:o["color-red-1"],colorWarning:o["color-origin-1"],contentTextColorError:o["color-gray-10"],contentTextColorInfo:o["color-gray-10"],contentTextColorSuccess:o["color-gray-10"],contentTextColorWarning:o["color-gray-10"],iconColorInfo:o["color-primary-6"],iconColorError:o["color-red-6"],iconColorSuccess:o["color-green-6"],iconColorWarning:o["color-origin-6"],titleTextColor:o["color-gray-10"]};exports.AlertThemeDark=e;
|
|
@@ -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.AlertThemeCommon,colorInfo:o["color-primary-1"],colorSuccess:o["color-green-1"],colorError:o["color-red-1"],colorWarning:o["color-origin-1"],contentTextColorError:o["color-gray-10"],contentTextColorInfo:o["color-gray-10"],contentTextColorSuccess:o["color-gray-10"],contentTextColorWarning:o["color-gray-10"],titleTextColor:o["color-gray-10"]};exports.AlertThemeLight=e;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { TooltipProps, StepsProps, TabsProps, PopconfirmProps, TreeProps, PaginationProps, BreadcrumbProps } from 'naive-ui';
|
|
2
|
+
export declare const TooltipThemeDark: TooltipProps['themeOverrides'];
|
|
3
|
+
export declare const PopconfirmThemeDark: PopconfirmProps['themeOverrides'];
|
|
4
|
+
export declare const TreeThemeDark: TreeProps['themeOverrides'];
|
|
5
|
+
export declare const PaginationThemeDark: PaginationProps['themeOverrides'];
|
|
6
|
+
export declare const BreadcrumbThemeDark: BreadcrumbProps['themeOverrides'];
|
|
7
|
+
export declare const TabsThemeDark: TabsProps['themeOverrides'];
|
|
8
|
+
export declare const StepsThemeDark: StepsProps['themeOverrides'];
|
|
@@ -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"),t={borderRadius:e.commonBase.borderRadiusMedium,color:o["color-gray-3"],textColor:r["color-text-6"],padding:e.commonBase.paddingBase},a={fontSize:e.commonBase.fontSizeMedium,iconColor:o["color-primary-6"],iconSize:e.commonBase.iconSizeBase},i={nodeTextColor:r["color-text-6"],arrowColor:r["color-text-3"],lineColor:o["color-gray-11"]},l={buttonBorderHover:"0px solid transparent",buttonBorderPressed:"0px solid transparent",itemTextColorHover:r["color-text-6"],itemTextColorPressed:r["color-text-6"],itemColorActive:o["color-primary-6"],itemColorActiveHover:o["color-primary-6"],itemBorderDisabled:"0px solid transparent",buttonBorder:o["color-gray-3"],buttonIconColor:r["color-text-6"],buttonIconColorPressed:r["color-text-6"],buttonIconColorHover:r["color-text-6"],itemTextColorDisabled:r["color-text-6"],itemTextColor:r["color-text-6"],itemColorDisabled:"transparent",itemTextColorActive:r["color-text-5"],itemBorderRadius:e.commonBase.borderRadiusMedium,itemSizeMedium:e.commonBase.heightMedium,itemFontSizeMedium:e.commonBase.fontSizeMedium,itemPaddingMedium:e.commonBase.paddingMedium,jumperTextColor:r["color-text-6"]},n={itemTextColor:r["color-text-2"],itemTextColorHover:r["color-text-6"],itemTextColorPressed:r["color-text-6"],itemTextColorActive:r["color-text-6"],separatorColor:r["color-text-4"]},c={tabTextColorLine:r["color-text-3"],tabTextColorActiveLine:o["color-primary-6"],tabTextColorHoverLine:o["color-primary-5"],tabTextColorDisabledLine:r["color-text-6"],tabTextColorBar:r["color-text-3"],tabTextColorActiveBar:o["color-primary-6"],tabTextColorHoverBar:o["color-primary-5"],tabTextColorDisabledBar:r["color-text-6"],tabTextColorCard:r["color-text-3"],tabTextColorActiveCard:o["color-primary-6"],tabTextColorHoverCard:o["color-primary-5"],tabTextColorDisabledCard:r["color-text-6"],tabTextColorSegment:r["color-text-3"],tabTextColorActiveSegment:o["color-primary-6"],tabTextColorHoverSegment:o["color-primary-5"],tabTextColorDisabledSegment:r["color-text-6"],tabPaddingSmallSegment:"10px 12px",tabPaddingMediumSegment:"10px 0",tabPaddingLargeSegment:"10px 0",barColor:o["color-primary-6"],tabFontSizeSmall:e.commonBase.fontSizeSmall,tabFontSizeMedium:e.commonBase.fontSizeMedium,tabFontSizeLarge:e.commonBase.fontSizeLarge,tabFontWeight:e.commonBase.fontWeightNormal,tabFontWeightActive:e.commonBase.fontWeightActive,tabGapSmallLine:e.commonBase.tabGapSmall,tabGapMediumLine:e.commonBase.tabGapMedium,tabGapLargeLine:e.commonBase.tabGapLarge,tabPaddingSmallLine:e.commonBase.tabPaddingSmall,tabPaddingMediumLine:e.commonBase.tabPaddingMedium,tabPaddingLargeLine:e.commonBase.tabPaddingLarge,tabBorderRadius:e.commonBase.tabBorderRadius},m={indicatorColorWait:"transparent",indicatorColorProcess:o["color-primary-6"],indicatorColorFinish:"transparent",indicatorColorError:"transparent",indicatorTextColorWait:o["color-gray-6"],indicatorTextColorProcess:r["color-text-5"],indicatorTextColorFinish:o["color-primary-6"],indicatorTextColorError:o["color-red-6"],indicatorBorderColorWait:o["color-gray-6"],indicatorBorderColorProcess:o["color-primary-6"],indicatorBorderColorFinish:o["color-primary-6"],indicatorBorderColorError:o["color-red-6"],headerTextColorWait:r["color-text-6"],headerTextColorProcess:o["color-gray-10"],headerTextColorFinish:o["color-gray-10"],headerTextColorError:o["color-gray-10"],descriptionTextColorWait:r["color-text-3"],descriptionTextColorProcess:o["color-gray-6"],descriptionTextColorFinish:o["color-gray-6"],descriptionTextColorError:o["color-gray-6"],splitorColorProcess:o["color-primary-6"],splitorColorWait:o["color-gray-4"],splitorColorFinish:o["color-primary-6"],splitorColorError:o["color-primary-6"],stepHeaderFontSizeSmall:"16px",stepHeaderFontSizeMedium:"16px",indicatorIndexFontSizeSmall:"16px",indicatorIndexFontSizeMedium:"16px",indicatorSizeSmall:"24px",indicatorSizeMedium:"24px",indicatorIconSizeSmall:"16px",indicatorIconSizeMedium:"16px"};exports.BreadcrumbThemeDark=n;exports.PaginationThemeDark=l;exports.PopconfirmThemeDark=a;exports.StepsThemeDark=m;exports.TabsThemeDark=c;exports.TooltipThemeDark=t;exports.TreeThemeDark=i;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { TooltipProps, PopconfirmProps, TreeProps, PaginationProps, BreadcrumbProps, TabsProps, StepsProps } from 'naive-ui';
|
|
2
|
+
export declare const TooltipThemeLight: TooltipProps['themeOverrides'];
|
|
3
|
+
export declare const PopconfirmThemeLight: PopconfirmProps['themeOverrides'];
|
|
4
|
+
export declare const TreeThemeLight: TreeProps['themeOverrides'];
|
|
5
|
+
export declare const PaginationThemeLight: PaginationProps['themeOverrides'];
|
|
6
|
+
export declare const BreadcrumbThemeLight: BreadcrumbProps['themeOverrides'];
|
|
7
|
+
export declare const TabsThemeLight: TabsProps['themeOverrides'];
|
|
8
|
+
export declare const StepsThemeLight: StepsProps['themeOverrides'];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../color/light.js"),r=require("../../common.js"),e=require("../../token/light.js"),t={borderRadius:r.commonBase.borderRadiusMedium,color:o["color-gray-10"],textColor:e["color-text-1"],padding:r.commonBase.paddingBase},i={fontSize:r.commonBase.fontSizeMedium,iconColor:o["color-primary-6"],iconSize:r.commonBase.iconSizeBase},a={arrowColor:o["color-gray-6"],nodeTextColor:o["color-gray-10"],lineColor:o["color-gray-5"]},l={buttonIconColor:o["color-gray-10"],buttonIconColorPressed:o["color-gray-10"],buttonIconColorHover:o["color-gray-10"],itemTextColorDisabled:o["color-gray-10"],itemBorderActive:"1px solid #0000",itemTextColor:o["color-gray-10"],itemTextColorActive:e["color-text-1"],itemColorActive:o["color-primary-6"],itemColorPressed:o["color-primary-6"],itemColorActiveHover:o["color-primary-6"],itemBorderRadius:r.commonBase.borderRadiusMedium,itemFontSizeMedium:r.commonBase.fontSizeMedium,itemPaddingMedium:r.commonBase.paddingMedium,itemColorDisabled:"transparent",jumperTextColor:o["color-gray-10"]},c={itemTextColor:o["color-gray-8"],itemTextColorHover:o["color-gray-10"],itemTextColorPressed:o["color-gray-10"],itemTextColorActive:o["color-gray-10"],separatorColor:o["color-gray-4"]},m={tabTextColorLine:o["color-gray-8"],tabTextColorActiveLine:o["color-primary-6"],tabTextColorHoverLine:o["color-primary-5"],tabTextColorDisabledLine:o["color-gray-4"],tabTextColorBar:o["color-gray-8"],tabTextColorActiveBar:o["color-primary-6"],tabTextColorHoverBar:o["color-primary-5"],tabTextColorDisabledBar:o["color-gray-4"],tabTextColorCard:o["color-gray-8"],tabTextColorActiveCard:o["color-primary-6"],tabTextColorHoverCard:o["color-primary-5"],tabTextColorDisabledCard:o["color-gray-4"],tabTextColorSegment:o["color-gray-8"],tabTextColorActiveSegment:o["color-primary-6"],tabTextColorHoverSegment:o["color-primary-5"],tabTextColorDisabledSegment:o["color-gray-4"],tabPaddingSmallSegment:"10px 12px",tabPaddingMediumSegment:"10px 0",tabPaddingLargeSegment:"10px 0",colorSegment:e["color-text-1"],tabColorSegment:o["color-primary-2"],barColor:o["color-primary-6"],tabFontSizeSmall:r.commonBase.fontSizeSmall,tabFontSizeMedium:r.commonBase.fontSizeMedium,tabFontSizeLarge:r.commonBase.fontSizeLarge,tabFontWeight:r.commonBase.fontWeightNormal,tabFontWeightActive:r.commonBase.fontWeightActive,tabGapSmallLine:r.commonBase.tabGapSmall,tabGapMediumLine:r.commonBase.tabGapMedium,tabGapLargeLine:r.commonBase.tabGapLarge,tabPaddingSmallLine:r.commonBase.tabPaddingSmall,tabPaddingMediumLine:r.commonBase.tabPaddingMedium,tabPaddingLargeLine:r.commonBase.tabPaddingLarge,tabBorderRadius:r.commonBase.tabBorderRadius,closeBorderRadius:r.commonBase.tabBorderRadius},n={indicatorColorWait:e["color-text-1"],indicatorColorProcess:o["color-primary-6"],indicatorColorFinish:e["color-text-1"],indicatorColorError:e["color-text-1"],indicatorTextColorWait:o["color-gray-6"],indicatorTextColorProcess:e["color-text-1"],indicatorTextColorFinish:o["color-primary-6"],indicatorTextColorError:o["color-red-6"],indicatorBorderColorWait:o["color-gray-6"],indicatorBorderColorProcess:o["color-primary-6"],indicatorBorderColorFinish:o["color-primary-6"],indicatorBorderColorError:o["color-red-6"],headerTextColorWait:o["color-gray-10"],headerTextColorProcess:o["color-gray-10"],headerTextColorFinish:o["color-gray-10"],headerTextColorError:o["color-gray-10"],descriptionTextColorWait:o["color-gray-6"],descriptionTextColorProcess:o["color-gray-6"],descriptionTextColorFinish:o["color-gray-6"],descriptionTextColorError:o["color-gray-6"],splitorColorProcess:o["color-primary-6"],splitorColorWait:o["color-gray-4"],splitorColorFinish:o["color-primary-6"],splitorColorError:o["color-primary-6"],stepHeaderFontSizeSmall:"16px",stepHeaderFontSizeMedium:"16px",indicatorIndexFontSizeSmall:"16px",indicatorIndexFontSizeMedium:"16px",indicatorSizeSmall:"24px",indicatorSizeMedium:"24px",indicatorIconSizeSmall:"16px",indicatorIconSizeMedium:"16px"};exports.BreadcrumbThemeLight=c;exports.PaginationThemeLight=l;exports.PopconfirmThemeLight=i;exports.StepsThemeLight=n;exports.TabsThemeLight=m;exports.TooltipThemeLight=t;exports.TreeThemeLight=a;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../../common.js"),o={borderRadiusLarge:e.commonBase.borderRadiusLarge,borderRadiusMedium:e.commonBase.borderRadiusMedium,borderRadiusSmall:e.commonBase.borderRadiusSmall,heightMedium:e.commonBase.heightMedium,heightSmall:e.commonBase.heightSmall,fontSizeLarge:e.commonBase.fontSizeLarge,fontSizeSmall:e.commonBase.fontSizeSmall,opacityDisabled:"1",paddingLarge:"0 24px",paddingMedium:"0 16px",paddingSmall:"0 12px"};exports.ButtonThemeCommon=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.ButtonThemeCommon,border:`1px solid ${r["fill-color-2"]}`,borderError:`1px solid ${o["color-red-6"]}`,borderPrimary:`1px solid ${o["color-primary-6"]}`,borderSuccess:`1px solid ${o["color-green-6"]}`,borderWarning:`1px solid ${o["color-origin-6"]}`,borderDisabled:`1px solid ${r["color-default-disabled"]}`,borderDisabledError:`1px solid ${o["color-red-5"]}`,borderDisabledPrimary:`1px solid ${r["color-primary-disabled"]}`,borderDisabledSuccess:`1px solid ${r["color-success-disabled"]}`,borderDisabledWarning:`1px solid ${r["color-warning-disabled"]}`,borderHover:`1px solid ${r["fill-color-3"]}`,borderHoverError:`1px solid ${o["color-red-5"]}`,borderHoverPrimary:`1px solid ${o["color-primary-5"]}`,borderHoverSuccess:`1px solid ${o["color-green-5"]}`,borderHoverWarning:`1px solid ${o["color-origin-5"]}`,borderFocus:`1px solid ${r["fill-color-3"]}`,borderFocusError:`1px solid ${o["color-red-5"]}`,borderFocusPrimary:`1px solid ${o["color-primary-5"]}`,borderFocusSuccess:`1px solid ${o["color-green-5"]}`,borderFocusWarning:`1px solid ${o["color-origin-5"]}`,borderPressed:`1px solid ${r["fill-color-4"]}`,borderPressedError:`1px solid ${o["color-red-7"]}`,borderPressedPrimary:`1px solid ${o["color-primary-7"]}`,borderPressedSuccess:`1px solid ${o["color-green-7"]}`,borderPressedWarning:`1px solid ${o["color-origin-7"]}`,color:r["fill-color-2"],colorError:o["color-red-6"],colorPrimary:o["color-primary-6"],colorSuccess:o["color-green-6"],colorWarning:o["color-origin-6"],colorDisabled:r["color-default-disabled"],colorDisabledError:r["color-error-disabled"],colorDisabledPrimary:r["color-primary-disabled"],colorDisabledSuccess:r["color-success-disabled"],colorDisabledWarning:r["color-warning-disabled"],colorFocus:r["fill-color-3"],colorFocusError:o["color-red-5"],colorFocusPrimary:o["color-primary-5"],colorFocusSuccess:o["color-green-5"],colorFocusWarning:o["color-origin-5"],colorHover:r["fill-color-3"],colorHoverError:o["color-red-5"],colorHoverPrimary:o["color-primary-5"],colorHoverSuccess:o["color-green-5"],colorHoverWarning:o["color-origin-5"],colorPressed:r["fill-color-4"],colorPressedError:o["color-red-7"],colorPressedPrimary:o["color-primary-7"],colorPressedSuccess:o["color-green-7"],colorPressedWarning:o["color-origin-7"],textColor:o["color-gray-8"],textColorError:r["color-text-5"],textColorPrimary:r["color-text-5"],textColorSuccess:r["color-text-5"],textColorWarning:r["color-text-5"],textColorDisabled:"rgba(255, 255, 255, 0.75)",textColorDisabledError:"rgba(255, 255, 255, 0.75)",textColorDisabledPrimary:"rgba(255, 255, 255, 0.75)",textColorDisabledSuccess:"rgba(255, 255, 255, 0.75)",textColorDisabledWarning:"rgba(255, 255, 255, 0.75)",textColorFocus:o["color-gray-8"],textColorFocusError:r["color-text-5"],textColorFocusPrimary:r["color-text-5"],textColorFocusSuccess:r["color-text-5"],textColorFocusWarning:r["color-text-5"],textColorHover:o["color-gray-8"],textColorHoverError:r["color-text-5"],textColorHoverPrimary:r["color-text-5"],textColorHoverSuccess:r["color-text-5"],textColorHoverWarning:r["color-text-5"],textColorPressed:o["color-gray-8"],textColorPressedError:r["color-text-5"],textColorPressedPrimary:r["color-text-5"],textColorPressedSuccess:r["color-text-5"],textColorPressedWarning:r["color-text-5"],textColorGhost:o["color-gray-8"],textColorGhostError:o["color-red-6"],textColorGhostPrimary:o["color-primary-6"],textColorGhostSuccess:o["color-green-6"],textColorGhostWarning:o["color-origin-6"],textColorGhostDisabled:"rgba(255, 255, 255, 0.5)",textColorGhostDisabledError:r["color-error-disabled"],textColorGhostDisabledPrimary:r["color-primary-disabled"],textColorGhostDisabledSuccess:r["color-success-disabled"],textColorGhostDisabledWarning:r["color-warning-disabled"],textColorGhostFocus:o["color-gray-8"],textColorGhostFocusError:o["color-red-5"],textColorGhostFocusPrimary:o["color-primary-5"],textColorGhostFocusSuccess:o["color-green-5"],textColorGhostFocusWarning:o["color-origin-5"],textColorGhostHover:o["color-gray-8"],textColorGhostHoverError:o["color-red-5"],textColorGhostHoverPrimary:o["color-primary-5"],textColorGhostHoverSuccess:o["color-green-5"],textColorGhostHoverWarning:o["color-origin-5"],textColorGhostPressed:o["color-gray-8"],textColorGhostPressedError:o["color-red-7"],textColorGhostPressedPrimary:o["color-primary-7"],textColorGhostPressedSuccess:o["color-green-7"],textColorGhostPressedWarning:o["color-origin-7"]};exports.ButtonThemeDark=l;
|
|
@@ -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.ButtonThemeCommon,border:`1px solid ${o["color-gray-3"]}`,borderError:`1px solid ${o["color-red-6"]}`,borderPrimary:`1px solid ${o["color-primary-6"]}`,borderSuccess:`1px solid ${o["color-green-6"]}`,borderWarning:`1px solid ${o["color-origin-6"]}`,borderDisabled:`1px solid ${o["color-gray-2"]}`,borderDisabledError:`1px solid ${o["color-red-3"]}`,borderDisabledPrimary:`1px solid ${o["color-primary-3"]}`,borderDisabledSuccess:`1px solid ${o["color-green-3"]}`,borderDisabledWarning:`1px solid ${o["color-origin-3"]}`,borderHover:`1px solid ${o["color-gray-4"]}`,borderHoverError:`1px solid ${o["color-red-5"]}`,borderHoverPrimary:`1px solid ${o["color-primary-5"]}`,borderHoverSuccess:`1px solid ${o["color-green-5"]}`,borderHoverWarning:`1px solid ${o["color-origin-5"]}`,borderFocus:`1px solid ${o["color-gray-4"]}`,borderFocusError:`1px solid ${o["color-red-5"]}`,borderFocusPrimary:`1px solid ${o["color-primary-5"]}`,borderFocusSuccess:`1px solid ${o["color-green-5"]}`,borderFocusWarning:`1px solid ${o["color-origin-5"]}`,borderPressed:`1px solid ${o["color-gray-5"]}`,borderPressedError:`1px solid ${o["color-red-7"]}`,borderPressedPrimary:`1px solid ${o["color-primary-7"]}`,borderPressedSuccess:`1px solid ${o["color-green-7"]}`,borderPressedWarning:`1px solid ${o["color-origin-7"]}`,color:o["color-gray-3"],colorError:o["color-red-6"],colorPrimary:o["color-primary-6"],colorSuccess:o["color-green-6"],colorWarning:o["color-origin-6"],colorDisabled:o["color-gray-2"],colorDisabledError:o["color-red-3"],colorDisabledPrimary:o["color-primary-3"],colorDisabledSuccess:o["color-green-3"],colorDisabledWarning:o["color-origin-3"],colorFocus:o["color-gray-4"],colorFocusError:o["color-red-5"],colorFocusPrimary:o["color-primary-5"],colorFocusSuccess:o["color-green-5"],colorFocusWarning:o["color-origin-5"],colorHover:o["color-gray-4"],colorHoverError:o["color-red-5"],colorHoverPrimary:o["color-primary-5"],colorHoverSuccess:o["color-green-5"],colorHoverWarning:o["color-origin-5"],colorPressed:o["color-gray-5"],colorPressedError:o["color-red-7"],colorPressedPrimary:o["color-primary-7"],colorPressedSuccess:o["color-green-7"],colorPressedWarning:o["color-origin-7"],textColor:o["color-gray-8"],textColorDisabled:o["color-gray-4"],textColorFocus:o["color-gray-8"],textColorHover:o["color-gray-8"],textColorPressed:o["color-gray-8"],textColorGhost:o["color-gray-8"],textColorGhostError:o["color-red-6"],textColorGhostPrimary:o["color-primary-6"],textColorGhostSuccess:o["color-green-6"],textColorGhostWarning:o["color-origin-6"],textColorGhostDisabled:o["color-gray-4"],textColorGhostDisabledError:o["color-red-3"],textColorGhostDisabledPrimary:o["color-primary-3"],textColorGhostDisabledSuccess:o["color-green-3"],textColorGhostDisabledWarning:o["color-origin-3"],textColorGhostFocus:o["color-gray-8"],textColorGhostFocusError:o["color-red-5"],textColorGhostFocusPrimary:o["color-primary-5"],textColorGhostFocusSuccess:o["color-green-5"],textColorGhostFocusWarning:o["color-origin-5"],textColorGhostHover:o["color-gray-8"],textColorGhostHoverError:o["color-red-5"],textColorGhostHoverPrimary:o["color-primary-5"],textColorGhostHoverSuccess:o["color-green-5"],textColorGhostHoverWarning:o["color-origin-5"],textColorGhostPressed:o["color-gray-8"],textColorGhostPressedError:o["color-red-7"],textColorGhostPressedPrimary:o["color-primary-7"],textColorGhostPressedSuccess:o["color-green-7"],textColorGhostPressedWarning:o["color-origin-7"]};exports.ButtonThemeLight=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={color:o["bg-color-2"],paddingMedium:"16px 24px",borderColor:r["color-gray-3"],textColor:o["color-text-1"],closeIconColor:o["color-text-1"],titleFontSizeMedium:"20px",borderRadius:"10px"};exports.CardThemeDark=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={color:r["bg-color-2"],paddingMedium:"16px 24px",borderColor:o["color-gray-3"],textColor:o["color-gray-10"],closeIconColor:o["color-gray-10"],titleFontSizeMedium:"20px",borderRadius:"10px"};exports.CardThemeLight=e;
|
|
@@ -0,0 +1,398 @@
|
|
|
1
|
+
export declare const ChartsThemeDark: {
|
|
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: string;
|
|
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
|
+
backgroundColor: string;
|
|
322
|
+
padding: number;
|
|
323
|
+
textStyle: {
|
|
324
|
+
color: string;
|
|
325
|
+
fontSize: number;
|
|
326
|
+
fontWeight: number;
|
|
327
|
+
};
|
|
328
|
+
extraCssText: string;
|
|
329
|
+
axisPointer: {
|
|
330
|
+
lineStyle: {
|
|
331
|
+
color: string;
|
|
332
|
+
width: number;
|
|
333
|
+
};
|
|
334
|
+
crossStyle: {
|
|
335
|
+
color: string;
|
|
336
|
+
width: number;
|
|
337
|
+
};
|
|
338
|
+
};
|
|
339
|
+
};
|
|
340
|
+
timeline: {
|
|
341
|
+
lineStyle: {
|
|
342
|
+
color: string;
|
|
343
|
+
width: number;
|
|
344
|
+
};
|
|
345
|
+
itemStyle: {
|
|
346
|
+
color: string;
|
|
347
|
+
borderWidth: number;
|
|
348
|
+
};
|
|
349
|
+
controlStyle: {
|
|
350
|
+
color: string;
|
|
351
|
+
borderColor: string;
|
|
352
|
+
borderWidth: number;
|
|
353
|
+
};
|
|
354
|
+
checkpointStyle: {
|
|
355
|
+
color: string;
|
|
356
|
+
borderColor: string;
|
|
357
|
+
};
|
|
358
|
+
label: {
|
|
359
|
+
color: string;
|
|
360
|
+
};
|
|
361
|
+
emphasis: {
|
|
362
|
+
itemStyle: {
|
|
363
|
+
color: string;
|
|
364
|
+
};
|
|
365
|
+
controlStyle: {
|
|
366
|
+
color: string;
|
|
367
|
+
borderColor: string;
|
|
368
|
+
borderWidth: number;
|
|
369
|
+
};
|
|
370
|
+
label: {
|
|
371
|
+
color: string;
|
|
372
|
+
};
|
|
373
|
+
};
|
|
374
|
+
};
|
|
375
|
+
visualMap: {
|
|
376
|
+
color: string[];
|
|
377
|
+
};
|
|
378
|
+
dataZoom: {
|
|
379
|
+
backgroundColor: string;
|
|
380
|
+
dataBackgroundColor: string;
|
|
381
|
+
fillerColor: string;
|
|
382
|
+
handleColor: string;
|
|
383
|
+
handleSize: string;
|
|
384
|
+
textStyle: {
|
|
385
|
+
color: string;
|
|
386
|
+
};
|
|
387
|
+
};
|
|
388
|
+
markPoint: {
|
|
389
|
+
label: {
|
|
390
|
+
color: string;
|
|
391
|
+
};
|
|
392
|
+
emphasis: {
|
|
393
|
+
label: {
|
|
394
|
+
color: string;
|
|
395
|
+
};
|
|
396
|
+
};
|
|
397
|
+
};
|
|
398
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../../color/dark.js"),e=require("../../token/dark.js"),r={color:e["color-text-1"],fontWeight:400,fontSize:14,lineHeight:20},l={color:["#5895ff","#6dd68e","#f7a55d","#ef7173","#cc84ff","#70c1ff","#71dad6"],textStyle:{},title:{textStyle:{color:e["color-text-1"],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:r,axisLine:{show:!0,lineStyle:{color:o["color-gray-4"]}},axisTick:{show:!1,lineStyle:{color:"#333"}},axisLabel:{show:!0,color:e["color-text-2"]},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:r,axisLine:{show:!1,lineStyle:{color:o["color-gray-4"]}},axisTick:{show:!1,lineStyle:{color:"#333"}},axisLabel:{show:!0,color:e["color-text-2"]},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:r,axisLine:{show:!0,lineStyle:{color:o["color-gray-4"]}},axisTick:{show:!1,lineStyle:{color:"#333"}},axisLabel:{show:!0,color:e["color-text-2"]},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:r,axisLine:{show:!0,lineStyle:{color:o["color-gray-4"]}},axisTick:{show:!1,lineStyle:{color:"#333"}},axisLabel:{show:!0,color:e["color-text-2"]},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-text-2"],lineHeight:16,fontSize:12},itemGap:16,itemWidth:12,itemHeight:12,inactiveColor:e["color-text-4"]},tooltip:{borderColor:o["color-gray-3"],backgroundColor:o["color-gray-3"],padding:12,textStyle:{color:e["color-text-1"],fontSize:12,fontWeight:400},extraCssText:"box-shadow: 0px 3px 10px 0px #0151FF1A;",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.ChartsThemeDark=l;
|