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,39 @@
|
|
|
1
|
+
const a = {
|
|
2
|
+
borderRadiusLarge: "10px",
|
|
3
|
+
borderRadiusMedium: "10px",
|
|
4
|
+
borderRadiusSmall: "10px",
|
|
5
|
+
heightSmall: "28px",
|
|
6
|
+
heightMedium: "32px",
|
|
7
|
+
heightLarge: "40px",
|
|
8
|
+
fontSizeLarge: "14px",
|
|
9
|
+
fontSizeMedium: "14px",
|
|
10
|
+
fontSizeSmall: "12px",
|
|
11
|
+
// switch
|
|
12
|
+
buttonHeightSmall: "12px",
|
|
13
|
+
buttonHeightMedium: "16px",
|
|
14
|
+
buttonWidthSmall: "12px",
|
|
15
|
+
buttonWidthMedium: "16px",
|
|
16
|
+
railHeightSmall: "16px",
|
|
17
|
+
railHeightMedium: "24px",
|
|
18
|
+
railWidthSmall: "28px",
|
|
19
|
+
// tag
|
|
20
|
+
tagBorderRadius: "6px",
|
|
21
|
+
tagHeightMedium: "22px",
|
|
22
|
+
tagHeightLarge: "26px",
|
|
23
|
+
paddingBase: "8px 12px",
|
|
24
|
+
iconSizeBase: "20px",
|
|
25
|
+
paddingMedium: "0 10px",
|
|
26
|
+
tabGapSmall: "24px",
|
|
27
|
+
tabGapMedium: "24px",
|
|
28
|
+
tabGapLarge: "24px",
|
|
29
|
+
/* 小尺寸Line类型水平内边距 */
|
|
30
|
+
tabPaddingSmall: "0 0 4px 0",
|
|
31
|
+
tabPaddingMedium: "0 0 4px 0",
|
|
32
|
+
tabPaddingLarge: "0 0 4px 0",
|
|
33
|
+
fontWeightNormal: "400",
|
|
34
|
+
fontWeightActive: "500",
|
|
35
|
+
tabBorderRadius: "19px"
|
|
36
|
+
};
|
|
37
|
+
export {
|
|
38
|
+
a as commonBase
|
|
39
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import o from "../../color/dark.mjs";
|
|
2
|
+
import { AlertThemeCommon as r } from "./common.mjs";
|
|
3
|
+
const e = {
|
|
4
|
+
...r,
|
|
5
|
+
colorInfo: o["color-primary-1"],
|
|
6
|
+
colorSuccess: o["color-green-1"],
|
|
7
|
+
colorError: o["color-red-1"],
|
|
8
|
+
colorWarning: o["color-origin-1"],
|
|
9
|
+
contentTextColorError: o["color-gray-10"],
|
|
10
|
+
contentTextColorInfo: o["color-gray-10"],
|
|
11
|
+
contentTextColorSuccess: o["color-gray-10"],
|
|
12
|
+
contentTextColorWarning: o["color-gray-10"],
|
|
13
|
+
iconColorInfo: o["color-primary-6"],
|
|
14
|
+
iconColorError: o["color-red-6"],
|
|
15
|
+
iconColorSuccess: o["color-green-6"],
|
|
16
|
+
iconColorWarning: o["color-origin-6"],
|
|
17
|
+
titleTextColor: o["color-gray-10"]
|
|
18
|
+
};
|
|
19
|
+
export {
|
|
20
|
+
e as AlertThemeDark
|
|
21
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import o from "../../color/light.mjs";
|
|
2
|
+
import { AlertThemeCommon as r } from "./common.mjs";
|
|
3
|
+
const c = {
|
|
4
|
+
...r,
|
|
5
|
+
colorInfo: o["color-primary-1"],
|
|
6
|
+
colorSuccess: o["color-green-1"],
|
|
7
|
+
colorError: o["color-red-1"],
|
|
8
|
+
colorWarning: o["color-origin-1"],
|
|
9
|
+
contentTextColorError: o["color-gray-10"],
|
|
10
|
+
contentTextColorInfo: o["color-gray-10"],
|
|
11
|
+
contentTextColorSuccess: o["color-gray-10"],
|
|
12
|
+
contentTextColorWarning: o["color-gray-10"],
|
|
13
|
+
titleTextColor: o["color-gray-10"]
|
|
14
|
+
};
|
|
15
|
+
export {
|
|
16
|
+
c as AlertThemeLight
|
|
17
|
+
};
|
|
@@ -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,249 @@
|
|
|
1
|
+
import o from "../../color/dark.mjs";
|
|
2
|
+
import r from "../../token/dark.mjs";
|
|
3
|
+
import { commonBase as e } from "../../common.mjs";
|
|
4
|
+
const l = {
|
|
5
|
+
borderRadius: e.borderRadiusMedium,
|
|
6
|
+
color: o["color-gray-3"],
|
|
7
|
+
textColor: r["color-text-6"],
|
|
8
|
+
padding: e.paddingBase
|
|
9
|
+
}, d = {
|
|
10
|
+
fontSize: e.fontSizeMedium,
|
|
11
|
+
iconColor: o["color-primary-6"],
|
|
12
|
+
iconSize: e.iconSizeBase
|
|
13
|
+
}, n = {
|
|
14
|
+
nodeTextColor: r["color-text-6"],
|
|
15
|
+
arrowColor: r["color-text-3"],
|
|
16
|
+
lineColor: o["color-gray-11"]
|
|
17
|
+
// nodeColorHover: 'red'
|
|
18
|
+
// nodeColorActive: 'transparent',
|
|
19
|
+
// nodeColorHover: 'transparent',
|
|
20
|
+
// nodeColorPressed: 'transparent'
|
|
21
|
+
// fontSize: string;
|
|
22
|
+
// lineHeight: string; // 行高(每个节点的高度)
|
|
23
|
+
// nodeHeight: string; // 节点高度(可能已废弃,用lineHeight)
|
|
24
|
+
// nodeWrapperPadding: string; // 节点内边距(文字与边框的间距)
|
|
25
|
+
// nodeBorderRadius: string; // 节点圆角
|
|
26
|
+
// // nodeColorHover: string; // 节点悬停时的背景色
|
|
27
|
+
// nodeColorPressed: string; // 节点按下时的背景色
|
|
28
|
+
// nodeColorActive: string; // 节点激活/选中时的背景色
|
|
29
|
+
// // nodeTextColor: string; // 节点文字颜色
|
|
30
|
+
// nodeTextColorDisabled: string; // 禁用节点文字颜色
|
|
31
|
+
// arrowColor: string; // 展开/收起箭头的颜色
|
|
32
|
+
// loadingColor: string; // 加载中图标的颜色
|
|
33
|
+
// // dropMarkColor: string; // 拖拽放置指示线的颜色
|
|
34
|
+
// lineColor: string; // 节点连接线的颜色(您刚才问的!)
|
|
35
|
+
}, c = {
|
|
36
|
+
buttonBorderHover: "0px solid transparent",
|
|
37
|
+
buttonBorderPressed: "0px solid transparent",
|
|
38
|
+
itemTextColorHover: r["color-text-6"],
|
|
39
|
+
itemTextColorPressed: r["color-text-6"],
|
|
40
|
+
itemColorActive: o["color-primary-6"],
|
|
41
|
+
itemColorActiveHover: o["color-primary-6"],
|
|
42
|
+
itemBorderDisabled: "0px solid transparent",
|
|
43
|
+
buttonBorder: o["color-gray-3"],
|
|
44
|
+
// // 按钮相关样式(上一页/下一页按钮)
|
|
45
|
+
buttonIconColor: r["color-text-6"],
|
|
46
|
+
/* 按钮图标颜色 */
|
|
47
|
+
buttonIconColorPressed: r["color-text-6"],
|
|
48
|
+
buttonIconColorHover: r["color-text-6"],
|
|
49
|
+
itemTextColorDisabled: r["color-text-6"],
|
|
50
|
+
/* 禁用页码文字颜色 */
|
|
51
|
+
/* 文字颜色 */
|
|
52
|
+
itemTextColor: r["color-text-6"],
|
|
53
|
+
// itemTextColorPressed: 'red', /* 按下页码文字颜色 */
|
|
54
|
+
itemColorDisabled: "transparent",
|
|
55
|
+
/* 禁用页码背景颜色 */
|
|
56
|
+
itemTextColorActive: r["color-text-5"],
|
|
57
|
+
/* 当前页码文字颜色 */
|
|
58
|
+
/* 背景颜色 */
|
|
59
|
+
itemBorderRadius: e.borderRadiusMedium,
|
|
60
|
+
itemSizeMedium: e.heightMedium,
|
|
61
|
+
// 修改默认高度
|
|
62
|
+
itemFontSizeMedium: e.fontSizeMedium,
|
|
63
|
+
// 修改默认字体
|
|
64
|
+
itemPaddingMedium: e.paddingMedium,
|
|
65
|
+
// 修改默认内边距
|
|
66
|
+
/** 跳转文字*/
|
|
67
|
+
jumperTextColor: r["color-text-6"]
|
|
68
|
+
// 修改跳转文字颜色
|
|
69
|
+
}, m = {
|
|
70
|
+
// fontSize: string; /* 面包屑整体字体大小 */
|
|
71
|
+
// itemLineHeight: string; /* 面包屑项的行高 */
|
|
72
|
+
// fontWeightActive: string; /* 当前项的字重(如:bold)*/
|
|
73
|
+
itemTextColor: r["color-text-2"],
|
|
74
|
+
/* 普通面包屑项文字颜色 */
|
|
75
|
+
itemTextColorHover: r["color-text-6"],
|
|
76
|
+
/* 鼠标悬停时文字颜色 */
|
|
77
|
+
itemTextColorPressed: r["color-text-6"],
|
|
78
|
+
/* 鼠标按下时文字颜色 */
|
|
79
|
+
itemTextColorActive: r["color-text-6"],
|
|
80
|
+
/* 当前页面项文字颜色(不可点击)*/
|
|
81
|
+
// itemColorHover: string; /* 鼠标悬停时背景颜色 */
|
|
82
|
+
// itemColorPressed: string; /* 鼠标按下时背景颜色 */
|
|
83
|
+
// itemBorderRadius: string; /* 面包屑项的圆角大小 */
|
|
84
|
+
separatorColor: r["color-text-4"]
|
|
85
|
+
/* 分隔符颜色(如 > 或 / 的颜色)*/
|
|
86
|
+
}, x = {
|
|
87
|
+
/* Line 类型文字颜色 */
|
|
88
|
+
tabTextColorLine: r["color-text-3"],
|
|
89
|
+
/* 普通文字颜色 */
|
|
90
|
+
tabTextColorActiveLine: o["color-primary-6"],
|
|
91
|
+
/* 激活状态文字颜色 */
|
|
92
|
+
tabTextColorHoverLine: o["color-primary-5"],
|
|
93
|
+
/* 悬停状态文字颜色 */
|
|
94
|
+
tabTextColorDisabledLine: r["color-text-6"],
|
|
95
|
+
/* 禁用状态文字颜色 */
|
|
96
|
+
// /* Bar 类型文字颜色 */
|
|
97
|
+
tabTextColorBar: r["color-text-3"],
|
|
98
|
+
/* 普通文字颜色 */
|
|
99
|
+
tabTextColorActiveBar: o["color-primary-6"],
|
|
100
|
+
/* 激活状态文字颜色 */
|
|
101
|
+
tabTextColorHoverBar: o["color-primary-5"],
|
|
102
|
+
/* 悬停状态文字颜色 */
|
|
103
|
+
tabTextColorDisabledBar: r["color-text-6"],
|
|
104
|
+
/* 禁用状态文字颜色 */
|
|
105
|
+
// /* Card 类型文字颜色 */
|
|
106
|
+
tabTextColorCard: r["color-text-3"],
|
|
107
|
+
/* 普通文字颜色 */
|
|
108
|
+
tabTextColorActiveCard: o["color-primary-6"],
|
|
109
|
+
/* 激活状态文字颜色 */
|
|
110
|
+
tabTextColorHoverCard: o["color-primary-5"],
|
|
111
|
+
/* 悬停状态文字颜色 */
|
|
112
|
+
tabTextColorDisabledCard: r["color-text-6"],
|
|
113
|
+
/* 禁用状态文字颜色 */
|
|
114
|
+
// /* Segment 类型文字颜色 */
|
|
115
|
+
tabTextColorSegment: r["color-text-3"],
|
|
116
|
+
/* 普通文字颜色 */
|
|
117
|
+
tabTextColorActiveSegment: o["color-primary-6"],
|
|
118
|
+
/* 激活状态文字颜色 */
|
|
119
|
+
tabTextColorHoverSegment: o["color-primary-5"],
|
|
120
|
+
/* 悬停状态文字颜色 */
|
|
121
|
+
tabTextColorDisabledSegment: r["color-text-6"],
|
|
122
|
+
/* 禁用状态文字颜色 */
|
|
123
|
+
tabPaddingSmallSegment: "10px 12px",
|
|
124
|
+
tabPaddingMediumSegment: "10px 0",
|
|
125
|
+
tabPaddingLargeSegment: "10px 0",
|
|
126
|
+
// tabColor: 'green', /* 标签页背景色 */
|
|
127
|
+
// tabColorSegment: darkBase['color-primary-6'], /* Segment 类型标签背景色 */
|
|
128
|
+
// tabBorderColor: string; /* 标签页边框颜色 */
|
|
129
|
+
barColor: o["color-primary-6"],
|
|
130
|
+
/* Bar 类型指示条颜色 */
|
|
131
|
+
// closeIconColor: string; /* 关闭图标颜色 */
|
|
132
|
+
// closeIconColorHover: string; /* 关闭图标悬停颜色 */
|
|
133
|
+
// closeIconColorPressed: string;/* 关闭图标按下颜色 */
|
|
134
|
+
// closeColorHover: string; /* 关闭按钮悬停背景色 */
|
|
135
|
+
// closeColorPressed: string; /* 关闭按钮按下背景色 */
|
|
136
|
+
// closeBorderRadius: string; /* 关闭按钮圆角 */
|
|
137
|
+
// closeSize: string; /* 关闭按钮大小 */
|
|
138
|
+
// closeIconSize: string; /* 关闭图标大小 */
|
|
139
|
+
// tabFontSizeCard: string; /* Card 类型字体大小 */
|
|
140
|
+
tabFontSizeSmall: e.fontSizeSmall,
|
|
141
|
+
/* 小尺寸字体 */
|
|
142
|
+
tabFontSizeMedium: e.fontSizeMedium,
|
|
143
|
+
/* 中尺寸字体 */
|
|
144
|
+
tabFontSizeLarge: e.fontSizeLarge,
|
|
145
|
+
/* 大尺寸字体 */
|
|
146
|
+
tabFontWeight: e.fontWeightNormal,
|
|
147
|
+
/* 普通字重 */
|
|
148
|
+
tabFontWeightActive: e.fontWeightActive,
|
|
149
|
+
/* 激活状态字重 */
|
|
150
|
+
// fontWeightStrong: string; /* 强调字重 */
|
|
151
|
+
// paneTextColor: string; /* 标签内容区域文字颜色 */
|
|
152
|
+
// panePaddingSmall: string; /* 小尺寸内容区域内边距 */
|
|
153
|
+
// panePaddingMedium: string; /* 中尺寸内容区域内边距 */
|
|
154
|
+
// panePaddingLarge: string; /* 大尺寸内容区域内边距 *//* 各种间距变量命名规则:
|
|
155
|
+
// tab[属性][尺寸][类型][方向]
|
|
156
|
+
// 例如:tabGapSmallLineVertical = 小尺寸 + Line类型 + 垂直方向的间隙
|
|
157
|
+
// */
|
|
158
|
+
// /* 间隙(Gap)*/
|
|
159
|
+
tabGapSmallLine: e.tabGapSmall,
|
|
160
|
+
/* 小尺寸Line类型水平间隙 */
|
|
161
|
+
tabGapMediumLine: e.tabGapMedium,
|
|
162
|
+
/* 中尺寸Line类型水平间隙 */
|
|
163
|
+
tabGapLargeLine: e.tabGapLarge,
|
|
164
|
+
/* 大尺寸Line类型水平间隙 */
|
|
165
|
+
// /* 内边距(Padding)*/
|
|
166
|
+
tabPaddingSmallLine: e.tabPaddingSmall,
|
|
167
|
+
/* 小尺寸Line类型水平内边距 */
|
|
168
|
+
tabPaddingMediumLine: e.tabPaddingMedium,
|
|
169
|
+
/* 中尺寸Line类型水平内边距 */
|
|
170
|
+
tabPaddingLargeLine: e.tabPaddingLarge,
|
|
171
|
+
/* 大尺寸Line类型水平内边距 */
|
|
172
|
+
// /* 垂直方向变量(带Vertical后缀)*/
|
|
173
|
+
// tabGapSmallLineVertical: string; /* 垂直方向间隙 */
|
|
174
|
+
// tabPaddingVerticalSmallLine: string; /* 垂直方向内边距 */
|
|
175
|
+
tabBorderRadius: e.tabBorderRadius
|
|
176
|
+
/* 标签页圆角 */
|
|
177
|
+
// closeBorderRadius: string; /* 关闭按钮圆角 */
|
|
178
|
+
}, s = {
|
|
179
|
+
indicatorColorWait: "transparent",
|
|
180
|
+
/* 等待状态指示器背景色 */
|
|
181
|
+
indicatorColorProcess: o["color-primary-6"],
|
|
182
|
+
/* 进行状态指示器背景色 */
|
|
183
|
+
indicatorColorFinish: "transparent",
|
|
184
|
+
/* 完成状态指示器背景色 */
|
|
185
|
+
indicatorColorError: "transparent",
|
|
186
|
+
/* 错误状态指示器背景色 */
|
|
187
|
+
indicatorTextColorWait: o["color-gray-6"],
|
|
188
|
+
/* 等待状态指示器文字颜色 */
|
|
189
|
+
indicatorTextColorProcess: r["color-text-5"],
|
|
190
|
+
/* 进行状态指示器文字颜色 */
|
|
191
|
+
indicatorTextColorFinish: o["color-primary-6"],
|
|
192
|
+
/* 完成状态指示器文字颜色 */
|
|
193
|
+
indicatorTextColorError: o["color-red-6"],
|
|
194
|
+
/* 错误状态指示器文字颜色 */
|
|
195
|
+
indicatorBorderColorWait: o["color-gray-6"],
|
|
196
|
+
/* 等待状态指示器边框颜色 */
|
|
197
|
+
indicatorBorderColorProcess: o["color-primary-6"],
|
|
198
|
+
/* 进行状态指示器边框颜色 */
|
|
199
|
+
indicatorBorderColorFinish: o["color-primary-6"],
|
|
200
|
+
/* 完成状态指示器边框颜色 */
|
|
201
|
+
indicatorBorderColorError: o["color-red-6"],
|
|
202
|
+
/* 错误状态指示器边框颜色 */
|
|
203
|
+
headerTextColorWait: r["color-text-6"],
|
|
204
|
+
/* 等待状态标题颜色 */
|
|
205
|
+
headerTextColorProcess: o["color-gray-10"],
|
|
206
|
+
/* 进行状态标题颜色 */
|
|
207
|
+
headerTextColorFinish: o["color-gray-10"],
|
|
208
|
+
/* 完成状态标题颜色 */
|
|
209
|
+
headerTextColorError: o["color-gray-10"],
|
|
210
|
+
/* 错误状态标题颜色 */
|
|
211
|
+
descriptionTextColorWait: r["color-text-3"],
|
|
212
|
+
/* 等待状态描述颜色 */
|
|
213
|
+
descriptionTextColorProcess: o["color-gray-6"],
|
|
214
|
+
/* 进行状态描述颜色 */
|
|
215
|
+
descriptionTextColorFinish: o["color-gray-6"],
|
|
216
|
+
/* 完成状态描述颜色 */
|
|
217
|
+
descriptionTextColorError: o["color-gray-6"],
|
|
218
|
+
/* 错误状态描述颜色 */
|
|
219
|
+
splitorColorProcess: o["color-primary-6"],
|
|
220
|
+
splitorColorWait: o["color-gray-4"],
|
|
221
|
+
splitorColorFinish: o["color-primary-6"],
|
|
222
|
+
splitorColorError: o["color-primary-6"],
|
|
223
|
+
stepHeaderFontSizeSmall: "16px",
|
|
224
|
+
/* 小尺寸标题字体 */
|
|
225
|
+
stepHeaderFontSizeMedium: "16px",
|
|
226
|
+
/* 中尺寸标题字体 */
|
|
227
|
+
indicatorIndexFontSizeSmall: "16px",
|
|
228
|
+
/* 小尺寸指示器数字字体 */
|
|
229
|
+
indicatorIndexFontSizeMedium: "16px",
|
|
230
|
+
/* 中尺寸指示器数字字体 */
|
|
231
|
+
// stepHeaderFontWeight: string; /* 标题字体粗细 */
|
|
232
|
+
indicatorSizeSmall: "24px",
|
|
233
|
+
/* 小尺寸指示器大小 */
|
|
234
|
+
indicatorSizeMedium: "24px",
|
|
235
|
+
/* 中尺寸指示器大小 */
|
|
236
|
+
indicatorIconSizeSmall: "16px",
|
|
237
|
+
/* 小尺寸指示器图标大小 */
|
|
238
|
+
indicatorIconSizeMedium: "16px"
|
|
239
|
+
/* 中尺寸指示器图标大小 */
|
|
240
|
+
};
|
|
241
|
+
export {
|
|
242
|
+
m as BreadcrumbThemeDark,
|
|
243
|
+
c as PaginationThemeDark,
|
|
244
|
+
d as PopconfirmThemeDark,
|
|
245
|
+
s as StepsThemeDark,
|
|
246
|
+
x as TabsThemeDark,
|
|
247
|
+
l as TooltipThemeDark,
|
|
248
|
+
n as TreeThemeDark
|
|
249
|
+
};
|
|
@@ -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'];
|