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,11 @@
|
|
|
1
|
+
import { commonBase as e } from "../../common.mjs";
|
|
2
|
+
const h = {
|
|
3
|
+
borderRadius: e.borderRadiusMedium,
|
|
4
|
+
fontSizeLarge: e.fontSizeLarge,
|
|
5
|
+
heightLarge: e.heightLarge,
|
|
6
|
+
heightMedium: e.heightMedium,
|
|
7
|
+
heightSmall: e.heightSmall
|
|
8
|
+
};
|
|
9
|
+
export {
|
|
10
|
+
h as InputThemeCommon
|
|
11
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import o from "../../color/dark.mjs";
|
|
2
|
+
import r from "../../token/dark.mjs";
|
|
3
|
+
import { InputThemeCommon as l } from "./common.mjs";
|
|
4
|
+
const p = {
|
|
5
|
+
...l,
|
|
6
|
+
border: `1px solid ${o["color-gray-4"]}`,
|
|
7
|
+
borderDisabled: "1px solid #0000",
|
|
8
|
+
borderError: `1px solid ${o["color-red-6"]}`,
|
|
9
|
+
borderFocus: `1.5px solid ${o["color-primary-6"]}`,
|
|
10
|
+
borderHover: `1px solid ${o["color-primary-5"]}`,
|
|
11
|
+
colorDisabled: r["fill-color-1"],
|
|
12
|
+
groupLabelBorder: `1px solid ${o["color-gray-4"]}`,
|
|
13
|
+
groupLabelColor: o["color-gray-2"],
|
|
14
|
+
groupLabelTextColor: o["color-gray-10"],
|
|
15
|
+
placeholderColor: o["color-gray-6"],
|
|
16
|
+
placeholderColorDisabled: r["color-text-4"],
|
|
17
|
+
textColor: o["color-gray-10"],
|
|
18
|
+
textColorDisabled: r["color-text-4"]
|
|
19
|
+
};
|
|
20
|
+
export {
|
|
21
|
+
p as InputThemeDark
|
|
22
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import o from "../../color/light.mjs";
|
|
2
|
+
import { InputThemeCommon as r } from "./common.mjs";
|
|
3
|
+
const a = {
|
|
4
|
+
...r,
|
|
5
|
+
border: `1px solid ${o["color-gray-4"]}`,
|
|
6
|
+
borderDisabled: "1px solid #0000",
|
|
7
|
+
borderError: `1px solid ${o["color-red-6"]}`,
|
|
8
|
+
borderFocus: `1.5px solid ${o["color-primary-6"]}`,
|
|
9
|
+
borderHover: `1px solid ${o["color-primary-5"]}`,
|
|
10
|
+
colorDisabled: o["color-gray-2"],
|
|
11
|
+
groupLabelBorder: `1px solid ${o["color-gray-4"]}`,
|
|
12
|
+
groupLabelColor: o["color-gray-2"],
|
|
13
|
+
groupLabelTextColor: o["color-gray-10"],
|
|
14
|
+
placeholderColor: o["color-gray-6"],
|
|
15
|
+
placeholderColorDisabled: o["color-gray-4"],
|
|
16
|
+
textColor: o["color-gray-10"],
|
|
17
|
+
textColorDisabled: o["color-gray-4"]
|
|
18
|
+
};
|
|
19
|
+
export {
|
|
20
|
+
a as InputThemeLight
|
|
21
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
const n = {
|
|
2
|
+
innerControlsLargeWidth: "24px",
|
|
3
|
+
innerControlsMediumWidth: "24px",
|
|
4
|
+
innerControlsSmallWidth: "16px",
|
|
5
|
+
innerControlsLargeHeight: "12px",
|
|
6
|
+
innerControlsMediumHeight: "12px",
|
|
7
|
+
innerControlsSmallHeight: "8px",
|
|
8
|
+
innerControlsLargeBorderRadius: "4px",
|
|
9
|
+
innerControlsMediumBorderRadius: "4px",
|
|
10
|
+
innerControlsSmallBorderRadius: "2.67px"
|
|
11
|
+
};
|
|
12
|
+
export {
|
|
13
|
+
n as InputNumberThemeCommon
|
|
14
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import o from "../../token/dark.mjs";
|
|
2
|
+
import r from "../../color/dark.mjs";
|
|
3
|
+
import { InputNumberThemeCommon as l } from "./common.mjs";
|
|
4
|
+
const i = {
|
|
5
|
+
...l,
|
|
6
|
+
innerControlsBackground: o["fill-color-2"],
|
|
7
|
+
innerControlsDisabledBackground: o["fill-color-2"],
|
|
8
|
+
innerControlsLargeBorderRadius: "4px",
|
|
9
|
+
innerControlsMediumBorderRadius: "4px",
|
|
10
|
+
innerControlsSmallBorderRadius: "2.67px",
|
|
11
|
+
controlsFontColor: o["color-text-1"],
|
|
12
|
+
controlFontColorDisabled: o["color-text-4"],
|
|
13
|
+
outerControlsBorderStyle: `1px solid ${r["color-gray-4"]}`,
|
|
14
|
+
outerControlsBackground: o["bg-color-3"],
|
|
15
|
+
outerControlsBorderStyleDisabled: "none",
|
|
16
|
+
outerControlsBackgroundDisabled: o["fill-color-1"],
|
|
17
|
+
outerControlsOpacityDisabled: 1
|
|
18
|
+
};
|
|
19
|
+
export {
|
|
20
|
+
i as InputNumberThemeDark
|
|
21
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import o from "../../color/light.mjs";
|
|
2
|
+
import { InputNumberThemeCommon as r } from "./common.mjs";
|
|
3
|
+
const e = {
|
|
4
|
+
...r,
|
|
5
|
+
innerControlsBackground: o["color-gray-3"],
|
|
6
|
+
innerControlsDisabledBackground: o["color-gray-3"],
|
|
7
|
+
outerControlsBorderStyle: `1px solid ${o["color-gray-4"]}`,
|
|
8
|
+
outerControlsBackground: "",
|
|
9
|
+
outerControlsBorderStyleDisabled: `1px solid ${o["color-gray-2"]}`,
|
|
10
|
+
outerControlsBackgroundDisabled: o["color-gray-2"],
|
|
11
|
+
controlFontColorDisabled: o["color-gray-4"],
|
|
12
|
+
controlsFontColor: o["color-gray-10"],
|
|
13
|
+
outerControlsOpacityDisabled: 1
|
|
14
|
+
};
|
|
15
|
+
export {
|
|
16
|
+
e as InputNumberThemeLight
|
|
17
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import o from "../../color/light.mjs";
|
|
2
|
+
import r from "../../token/light.mjs";
|
|
3
|
+
const t = {
|
|
4
|
+
siderColor: r["bg-color-4"],
|
|
5
|
+
// 自定义
|
|
6
|
+
siderIconColor: o["color-primary-6"],
|
|
7
|
+
siderFooterIconBgColor: o["color-gray-4"]
|
|
8
|
+
};
|
|
9
|
+
export {
|
|
10
|
+
t as LayoutThemeLight
|
|
11
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import o from "../../token/dark.mjs";
|
|
2
|
+
const e = {
|
|
3
|
+
itemColorActiveCollapsed: o["fill-color-5"],
|
|
4
|
+
itemIconColorCollapsed: o["color-text-2"],
|
|
5
|
+
itemIconColorActive: o["color-text-1"],
|
|
6
|
+
itemIconColorHover: o["color-text-1"],
|
|
7
|
+
itemIconColorActiveHover: o["color-text-1"],
|
|
8
|
+
itemTextColor: o["color-text-2"],
|
|
9
|
+
itemTextColorChildActive: o["color-text-1"],
|
|
10
|
+
itemTextColorChildActiveHover: o["color-text-1"],
|
|
11
|
+
itemTextColorActive: o["color-text-1"],
|
|
12
|
+
itemTextColorHover: o["color-text-1"],
|
|
13
|
+
itemTextColorActiveHover: o["color-text-1"]
|
|
14
|
+
};
|
|
15
|
+
export {
|
|
16
|
+
e as MenuThemeDark
|
|
17
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import o from "../../color/light.mjs";
|
|
2
|
+
const e = {
|
|
3
|
+
// itemColorActive: lightBase['color-gray-1'],
|
|
4
|
+
itemColorActiveCollapsed: o["color-gray-1"],
|
|
5
|
+
itemIconColorCollapsed: o["color-gray-8"],
|
|
6
|
+
itemIconColorActive: o["color-gray-10"],
|
|
7
|
+
itemIconColorHover: o["color-gray-10"],
|
|
8
|
+
itemIconColorActiveHover: o["color-gray-10"],
|
|
9
|
+
itemTextColor: o["color-gray-8"],
|
|
10
|
+
itemTextColorActive: o["color-gray-10"],
|
|
11
|
+
itemTextColorHover: o["color-gray-10"],
|
|
12
|
+
itemTextColorActiveHover: o["color-gray-10"]
|
|
13
|
+
};
|
|
14
|
+
export {
|
|
15
|
+
e as MenuThemeLight
|
|
16
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import o from "../../color/dark.mjs";
|
|
2
|
+
import r from "../../token/dark.mjs";
|
|
3
|
+
const e = {
|
|
4
|
+
fillColor: o["color-primary-6"],
|
|
5
|
+
fillColorInfo: o["color-primary-6"],
|
|
6
|
+
fillColorError: o["color-red-6"],
|
|
7
|
+
fillColorSuccess: o["color-green-6"],
|
|
8
|
+
fillColorWarning: o["color-origin-6"],
|
|
9
|
+
railColor: r["fill-color-2"],
|
|
10
|
+
iconColor: o["color-primary-3"],
|
|
11
|
+
textColorCircle: r["color-text-1"],
|
|
12
|
+
fontSizeCircleMedium: "24px",
|
|
13
|
+
fontSizeCircleLarge: "32px",
|
|
14
|
+
circleWidthMedium: "136px",
|
|
15
|
+
circleWidthLarge: "170px",
|
|
16
|
+
tipColorCircle: r["color-text-2"],
|
|
17
|
+
tipFontSizeCircle: "14px"
|
|
18
|
+
};
|
|
19
|
+
export {
|
|
20
|
+
e as ProgressThemeDark
|
|
21
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import r from "../../color/light.mjs";
|
|
2
|
+
const l = {
|
|
3
|
+
fillColor: r["color-primary-6"],
|
|
4
|
+
fillColorInfo: r["color-primary-6"],
|
|
5
|
+
fillColorError: r["color-red-6"],
|
|
6
|
+
fillColorSuccess: r["color-green-6"],
|
|
7
|
+
fillColorWarning: r["color-origin-6"],
|
|
8
|
+
railColor: r["color-gray-3"],
|
|
9
|
+
iconColor: r["color-primary-3"],
|
|
10
|
+
textColorCircle: r["color-gray-10"],
|
|
11
|
+
fontSizeCircleMedium: "24px",
|
|
12
|
+
fontSizeCircleLarge: "32px",
|
|
13
|
+
circleWidthMedium: "136px",
|
|
14
|
+
circleWidthLarge: "170px",
|
|
15
|
+
tipColorCircle: r["color-gray-8"],
|
|
16
|
+
tipFontSizeCircle: "14px"
|
|
17
|
+
};
|
|
18
|
+
export {
|
|
19
|
+
l as ProgressThemeLight
|
|
20
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import o from "../../color/dark.mjs";
|
|
2
|
+
import r from "../../token/dark.mjs";
|
|
3
|
+
const e = {
|
|
4
|
+
boxShadow: `inset 0 0 0 1.5px ${o["color-gray-4"]}`,
|
|
5
|
+
boxShadowActive: `inset 0 0 0 1.5px ${o["color-primary-6"]}`,
|
|
6
|
+
boxShadowActiveDisabled: `inset 0 0 0 4px ${r["color-primary-disabled-opacity"]}`,
|
|
7
|
+
//
|
|
8
|
+
boxShadowDisabled: `inset 0 0 0 1.5px ${o["color-gray-4"]}`,
|
|
9
|
+
boxShadowFocus: `inset 0 0 0 1.5px ${o["color-primary-6"]}`,
|
|
10
|
+
boxShadowHover: `inset 0 0 0 1.5px ${o["color-primary-6"]}`,
|
|
11
|
+
colorActive: o["color-primary-6"],
|
|
12
|
+
colorDisabled: r["fill-color-2"],
|
|
13
|
+
colorActiveDisabled: "#0000",
|
|
14
|
+
// darkToken['color-primary-disabled-opacity'],
|
|
15
|
+
dotColorActive: r["bg-color-white"],
|
|
16
|
+
dotColorDisabled: r["color-white-disabled-opacity"]
|
|
17
|
+
};
|
|
18
|
+
export {
|
|
19
|
+
e as RadioThemeDark
|
|
20
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import o from "../../color/light.mjs";
|
|
2
|
+
import r from "../../token/light.mjs";
|
|
3
|
+
const a = {
|
|
4
|
+
boxShadow: `inset 0 0 0 1.5px ${o["color-gray-4"]}`,
|
|
5
|
+
boxShadowActive: `inset 0 0 0 1.5px ${o["color-primary-6"]}`,
|
|
6
|
+
boxShadowActiveDisabled: `inset 0 0 0 1.5px ${o["color-primary-3"]}`,
|
|
7
|
+
boxShadowDisabled: `inset 0 0 0 1.5px ${o["color-gray-4"]}`,
|
|
8
|
+
boxShadowFocus: `inset 0 0 0 1.5px ${o["color-primary-6"]}`,
|
|
9
|
+
boxShadowHover: `inset 0 0 0 1.5px ${o["color-primary-6"]}`,
|
|
10
|
+
colorActive: o["color-primary-6"],
|
|
11
|
+
colorDisabled: o["color-gray-3"],
|
|
12
|
+
colorActiveDisabled: o["color-primary-3"],
|
|
13
|
+
dotColorActive: r["bg-color-2"],
|
|
14
|
+
dotColorDisabled: r["bg-color-2"]
|
|
15
|
+
};
|
|
16
|
+
export {
|
|
17
|
+
a as RadioThemeLight
|
|
18
|
+
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import r from "../../color/dark.mjs";
|
|
2
|
+
import o from "../../token/dark.mjs";
|
|
3
|
+
import { commonBase as e } from "../../common.mjs";
|
|
4
|
+
const i = {
|
|
5
|
+
peers: {
|
|
6
|
+
InternalSelection: {
|
|
7
|
+
arrowColor: o["color-text-1"],
|
|
8
|
+
arrowColorDisabled: o["color-text-4"],
|
|
9
|
+
border: `1px solid ${o["bg-color-3"]}`,
|
|
10
|
+
borderActive: `1.5px solid ${r["color-primary-6"]}`,
|
|
11
|
+
borderHover: `1px solid ${r["color-primary-5"]}`,
|
|
12
|
+
borderFocus: `1px solid ${r["color-primary-5"]}`,
|
|
13
|
+
borderRadius: e.borderRadiusMedium,
|
|
14
|
+
boxShadowActive: "none",
|
|
15
|
+
boxShadowFocus: "none",
|
|
16
|
+
boxShadowHover: "none",
|
|
17
|
+
color: o["bg-color-3"],
|
|
18
|
+
colorActive: o["bg-color-2"],
|
|
19
|
+
colorDisabled: o["fill-color-1"],
|
|
20
|
+
placeholderColor: o["color-text-3"],
|
|
21
|
+
placeholderColorDisabled: o["color-text-4"],
|
|
22
|
+
textColor: o["color-text-1"],
|
|
23
|
+
textColorDisabled: o["color-text-4"]
|
|
24
|
+
},
|
|
25
|
+
InternalSelectMenu: {
|
|
26
|
+
color: o["bg-color-9"],
|
|
27
|
+
optionColorPending: "#0000",
|
|
28
|
+
optionColorActive: o["fill-color-5"],
|
|
29
|
+
optionColorActivePending: o["fill-color-5"],
|
|
30
|
+
optionTextColor: o["color-text-1"],
|
|
31
|
+
optionTextColorActive: r["color-primary-10"],
|
|
32
|
+
optionTextColorPressed: r["color-primary-5"],
|
|
33
|
+
optionTextColorDisabled: o["color-text-4"],
|
|
34
|
+
optionCheckColor: "#0000"
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
};
|
|
38
|
+
export {
|
|
39
|
+
i as SelectThemeDark
|
|
40
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import o from "../../color/light.mjs";
|
|
2
|
+
import { commonBase as r } from "../../common.mjs";
|
|
3
|
+
const i = {
|
|
4
|
+
peers: {
|
|
5
|
+
InternalSelection: {
|
|
6
|
+
arrowColor: o["color-gray-10"],
|
|
7
|
+
arrowColorDisabled: o["color-gray-4"],
|
|
8
|
+
border: `1px solid ${o["color-gray-4"]}`,
|
|
9
|
+
borderActive: `1.5px solid ${o["color-primary-6"]}`,
|
|
10
|
+
borderHover: `1px solid ${o["color-primary-5"]}`,
|
|
11
|
+
borderFocus: `1px solid ${o["color-primary-5"]}`,
|
|
12
|
+
borderRadius: r.borderRadiusMedium,
|
|
13
|
+
boxShadowActive: "none",
|
|
14
|
+
boxShadowFocus: "none",
|
|
15
|
+
boxShadowHover: "none",
|
|
16
|
+
colorDisabled: o["color-gray-2"],
|
|
17
|
+
placeholderColor: o["color-gray-6"],
|
|
18
|
+
placeholderColorDisabled: o["color-gray-4"],
|
|
19
|
+
textColor: o["color-gray-10"],
|
|
20
|
+
textColorDisabled: o["color-gray-4"]
|
|
21
|
+
},
|
|
22
|
+
InternalSelectMenu: {
|
|
23
|
+
optionColorPending: "#0000",
|
|
24
|
+
optionColorActive: o["color-primary-2"],
|
|
25
|
+
optionColorActivePending: o["color-primary-2"],
|
|
26
|
+
optionTextColor: o["color-gray-10"],
|
|
27
|
+
optionTextColorActive: o["color-gray-10"],
|
|
28
|
+
optionTextColorPressed: o["color-primary-5"],
|
|
29
|
+
optionTextColorDisabled: o["color-gray-4"],
|
|
30
|
+
optionCheckColor: "#0000"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
};
|
|
34
|
+
export {
|
|
35
|
+
i as SelectThemeLight
|
|
36
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import r from "../../color/dark.mjs";
|
|
2
|
+
const l = {
|
|
3
|
+
railColor: r["color-gray-3"],
|
|
4
|
+
railColorHover: r["color-gray-3"],
|
|
5
|
+
fillColor: r["color-primary-6"],
|
|
6
|
+
fillColorHover: r["color-primary-6"],
|
|
7
|
+
handleSize: "16px",
|
|
8
|
+
handleBorderStyle: `2px solid ${r["color-primary-6"]}`,
|
|
9
|
+
inputWidth: "60px",
|
|
10
|
+
rangeInputLineColor: r["color-gray-10"],
|
|
11
|
+
extremeValueTextColor: r["color-gray-10"]
|
|
12
|
+
};
|
|
13
|
+
export {
|
|
14
|
+
l as SliderThemeDark
|
|
15
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import r from "../../color/light.mjs";
|
|
2
|
+
const l = {
|
|
3
|
+
railColor: r["color-gray-3"],
|
|
4
|
+
railColorHover: r["color-gray-3"],
|
|
5
|
+
fillColor: r["color-primary-6"],
|
|
6
|
+
fillColorHover: r["color-primary-6"],
|
|
7
|
+
handleSize: "16px",
|
|
8
|
+
handleBorderStyle: `2px solid ${r["color-primary-6"]}`,
|
|
9
|
+
inputWidth: "60px",
|
|
10
|
+
rangeInputLineColor: r["color-gray-10"],
|
|
11
|
+
extremeValueTextColor: r["color-gray-10"]
|
|
12
|
+
};
|
|
13
|
+
export {
|
|
14
|
+
l as SliderThemeLight
|
|
15
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { commonBase as t } from "../../common.mjs";
|
|
2
|
+
const l = {
|
|
3
|
+
boxShadowFocus: "none",
|
|
4
|
+
buttonHeightMedium: t.buttonHeightMedium,
|
|
5
|
+
buttonHeightSmall: t.buttonHeightSmall,
|
|
6
|
+
buttonWidthMedium: t.buttonWidthMedium,
|
|
7
|
+
buttonWidthSmall: t.buttonWidthSmall,
|
|
8
|
+
railHeightSmall: t.railHeightSmall,
|
|
9
|
+
railHeightMedium: t.railHeightMedium,
|
|
10
|
+
railWidthSmall: t.railWidthSmall
|
|
11
|
+
};
|
|
12
|
+
export {
|
|
13
|
+
l as SwitchThemeCommon
|
|
14
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import r from "../../color/dark.mjs";
|
|
2
|
+
import o from "../../token/dark.mjs";
|
|
3
|
+
import { SwitchThemeCommon as l } from "./common.mjs";
|
|
4
|
+
const a = {
|
|
5
|
+
...l,
|
|
6
|
+
buttonColorActiveDisabled: o["color-text-5"],
|
|
7
|
+
buttonColorDisabled: o["color-text-5"],
|
|
8
|
+
railColor: o["fill-color-4"],
|
|
9
|
+
railColorActive: r["color-primary-6"],
|
|
10
|
+
railColorActiveDisabled: o["color-primary-disabled-opacity"],
|
|
11
|
+
railColorDisabled: o["fill-color-2"]
|
|
12
|
+
};
|
|
13
|
+
export {
|
|
14
|
+
a as SwitchThemeDark
|
|
15
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import o from "../../color/light.mjs";
|
|
2
|
+
import r from "../../token/light.mjs";
|
|
3
|
+
import { SwitchThemeCommon as l } from "./common.mjs";
|
|
4
|
+
const a = {
|
|
5
|
+
...l,
|
|
6
|
+
buttonColorActiveDisabled: r["bg-color-2"],
|
|
7
|
+
buttonColorDisabled: r["bg-color-2"],
|
|
8
|
+
railColor: o["color-gray-4"],
|
|
9
|
+
railColorActive: o["color-primary-6"],
|
|
10
|
+
railColorActiveDisabled: o["color-primary-3"],
|
|
11
|
+
railColorDisabled: o["color-gray-3"]
|
|
12
|
+
};
|
|
13
|
+
export {
|
|
14
|
+
a as SwitchThemeLight
|
|
15
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import r from "../../color/dark.mjs";
|
|
2
|
+
import e from "../../token/dark.mjs";
|
|
3
|
+
import { commonBase as o } from "../../common.mjs";
|
|
4
|
+
const d = {
|
|
5
|
+
border: `1px solid ${e["color-text-2"]}`,
|
|
6
|
+
borderError: `1px solid ${r["color-red-6"]}`,
|
|
7
|
+
borderPrimary: `1px solid ${r["color-primary-6"]}`,
|
|
8
|
+
borderSuccess: `1px solid ${r["color-green-6"]}`,
|
|
9
|
+
borderWarning: `1px solid ${r["color-origin-6"]}`,
|
|
10
|
+
borderRadius: o.tagBorderRadius,
|
|
11
|
+
color: e["fill-color-2"],
|
|
12
|
+
colorError: r["color-red-1"],
|
|
13
|
+
colorPrimary: r["color-primary-1"],
|
|
14
|
+
colorSuccess: r["color-green-1"],
|
|
15
|
+
colorWarning: r["color-origin-1"],
|
|
16
|
+
colorBordered: "#0000",
|
|
17
|
+
colorBorderedError: "#0000",
|
|
18
|
+
colorBorderedPrimary: "#0000",
|
|
19
|
+
colorBorderedSuccess: "#0000",
|
|
20
|
+
colorBorderedWarning: "#0000",
|
|
21
|
+
heightMedium: o.tagHeightMedium,
|
|
22
|
+
heightLarge: o.tagHeightLarge,
|
|
23
|
+
fontSizeMedium: o.fontSizeSmall,
|
|
24
|
+
fontSizeLarge: o.fontSizeSmall,
|
|
25
|
+
padding: "0 8px",
|
|
26
|
+
textColor: e["color-text-2"],
|
|
27
|
+
textColorError: r["color-red-6"],
|
|
28
|
+
textColorPrimary: r["color-primary-6"],
|
|
29
|
+
textColorSuccess: r["color-green-6"],
|
|
30
|
+
textColorWarning: r["color-origin-6"]
|
|
31
|
+
};
|
|
32
|
+
export {
|
|
33
|
+
d as TagThemeDark
|
|
34
|
+
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import r from "../../color/light.mjs";
|
|
2
|
+
import { commonBase as o } from "../../common.mjs";
|
|
3
|
+
const l = {
|
|
4
|
+
border: `1px solid ${r["color-gray-8"]}`,
|
|
5
|
+
borderError: `1px solid ${r["color-red-6"]}`,
|
|
6
|
+
borderPrimary: `1px solid ${r["color-primary-6"]}`,
|
|
7
|
+
borderSuccess: `1px solid ${r["color-green-6"]}`,
|
|
8
|
+
borderWarning: `1px solid ${r["color-origin-6"]}`,
|
|
9
|
+
borderRadius: o.tagBorderRadius,
|
|
10
|
+
color: r["color-gray-3"],
|
|
11
|
+
colorError: r["color-red-1"],
|
|
12
|
+
colorPrimary: r["color-primary-1"],
|
|
13
|
+
colorSuccess: r["color-green-1"],
|
|
14
|
+
colorWarning: r["color-origin-1"],
|
|
15
|
+
colorBordered: "#0000",
|
|
16
|
+
colorBorderedError: "#0000",
|
|
17
|
+
colorBorderedPrimary: "#0000",
|
|
18
|
+
colorBorderedSuccess: "#0000",
|
|
19
|
+
colorBorderedWarning: "#0000",
|
|
20
|
+
heightMedium: o.tagHeightMedium,
|
|
21
|
+
heightLarge: o.tagHeightLarge,
|
|
22
|
+
fontSizeMedium: o.fontSizeSmall,
|
|
23
|
+
fontSizeLarge: o.fontSizeSmall,
|
|
24
|
+
padding: "0 8px",
|
|
25
|
+
textColor: r["color-gray-8"],
|
|
26
|
+
textColorError: r["color-red-6"],
|
|
27
|
+
textColorPrimary: r["color-primary-6"],
|
|
28
|
+
textColorSuccess: r["color-green-6"],
|
|
29
|
+
textColorWarning: r["color-origin-6"]
|
|
30
|
+
};
|
|
31
|
+
export {
|
|
32
|
+
l as TagThemeLight
|
|
33
|
+
};
|