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,350 @@
|
|
|
1
|
+
import o from "../../color/light.mjs";
|
|
2
|
+
import { commonBase as r } from "../../common.mjs";
|
|
3
|
+
import e from "../../token/light.mjs";
|
|
4
|
+
const l = {
|
|
5
|
+
borderRadius: r.borderRadiusMedium,
|
|
6
|
+
color: o["color-gray-10"],
|
|
7
|
+
textColor: e["color-text-1"],
|
|
8
|
+
padding: r.paddingBase
|
|
9
|
+
}, c = {
|
|
10
|
+
fontSize: r.fontSizeMedium,
|
|
11
|
+
iconColor: o["color-primary-6"],
|
|
12
|
+
iconSize: r.iconSizeBase
|
|
13
|
+
}, d = {
|
|
14
|
+
arrowColor: o["color-gray-6"],
|
|
15
|
+
nodeTextColor: o["color-gray-10"],
|
|
16
|
+
lineColor: o["color-gray-5"]
|
|
17
|
+
}, n = {
|
|
18
|
+
// itemBorderDisabled: '0px solid transparent',
|
|
19
|
+
// itemBorderRadius: commonBase.borderRadiusMedium,
|
|
20
|
+
// itemTextColor: lightToken['color-text-1'],
|
|
21
|
+
// itemTextColorHover: lightToken['color-text-6'],
|
|
22
|
+
// itemTextColorPressed: lightToken['color-text-6'],
|
|
23
|
+
// itemTextColorActive: lightToken['color-text-6'],
|
|
24
|
+
// buttonIconColor: lightToken['color-text-1'],
|
|
25
|
+
// buttonIconColorPressed: lightToken['color-text-1'],
|
|
26
|
+
// buttonIconColorHover: lightToken['color-text-1'],
|
|
27
|
+
// itemTextColorDisabled: lightToken['color-text-1'],
|
|
28
|
+
// jumperTextColor: lightToken['color-text-1'],
|
|
29
|
+
// itemTextColor: lightToken['color-text-1'],
|
|
30
|
+
// itemTextColorHover: lightToken['color-text-1'],
|
|
31
|
+
// itemTextColorPressed: lightToken['color-text-1'],
|
|
32
|
+
// itemTextColorActive: lightToken['color-text-1'],
|
|
33
|
+
// itemColorActive: lightBase['color-primary-6'],
|
|
34
|
+
// itemColorActiveHover: lightBase['color-primary-6'],
|
|
35
|
+
// 以上修改
|
|
36
|
+
// 按钮相关样式(上一页/下一页按钮)
|
|
37
|
+
buttonIconColor: o["color-gray-10"],
|
|
38
|
+
/* 按钮图标颜色 */
|
|
39
|
+
buttonIconColorPressed: o["color-gray-10"],
|
|
40
|
+
buttonIconColorHover: o["color-gray-10"],
|
|
41
|
+
itemTextColorDisabled: o["color-gray-10"],
|
|
42
|
+
/* 禁用页码文字颜色 */
|
|
43
|
+
itemBorderActive: "1px solid #0000",
|
|
44
|
+
/* 文字颜色 */
|
|
45
|
+
itemTextColor: o["color-gray-10"],
|
|
46
|
+
// itemTextColorPressed: 'red', /* 按下页码文字颜色 */
|
|
47
|
+
itemTextColorActive: e["color-text-1"],
|
|
48
|
+
/* 当前页码文字颜色 */
|
|
49
|
+
/* 背景颜色 */
|
|
50
|
+
itemColorActive: o["color-primary-6"],
|
|
51
|
+
/* 当前页码背景色 */
|
|
52
|
+
itemColorPressed: o["color-primary-6"],
|
|
53
|
+
/* 按下页码背景色 */
|
|
54
|
+
itemColorActiveHover: o["color-primary-6"],
|
|
55
|
+
/* 当前页码悬停背景色 */
|
|
56
|
+
itemBorderRadius: r.borderRadiusMedium,
|
|
57
|
+
// itemSizeMedium: commonBase.heightMedium, // 修改默认高度
|
|
58
|
+
itemFontSizeMedium: r.fontSizeMedium,
|
|
59
|
+
// 修改默认字体
|
|
60
|
+
itemPaddingMedium: r.paddingMedium,
|
|
61
|
+
// 修改默认内边距
|
|
62
|
+
itemColorDisabled: "transparent",
|
|
63
|
+
/* 禁用页码背景颜色 */
|
|
64
|
+
/** 跳转文字*/
|
|
65
|
+
jumperTextColor: o["color-gray-10"]
|
|
66
|
+
// 修改跳转文字颜色
|
|
67
|
+
// buttonColor: string; /* 按钮背景色 */
|
|
68
|
+
// buttonColorHover: string; /* 按钮悬停背景色 */
|
|
69
|
+
// buttonColorPressed: string; /* 按钮按下背景色 */
|
|
70
|
+
// buttonBorder: string; /* 按钮边框 */
|
|
71
|
+
// buttonBorderHover: string; /* 按钮悬停边框 */
|
|
72
|
+
// buttonBorderPressed: string; /* 按钮按下边框 */
|
|
73
|
+
// buttonIconColor: string; /* 按钮图标颜色 */
|
|
74
|
+
// buttonIconColorHover: string; /* 按钮图标悬停颜色 */
|
|
75
|
+
// buttonIconColorPressed: string;/* 按钮图标按下颜色 */
|
|
76
|
+
/* 文字颜色 */
|
|
77
|
+
// itemTextColor: string; /* 普通页码文字颜色 */
|
|
78
|
+
// itemTextColorHover: string; /* 悬停页码文字颜色 */
|
|
79
|
+
// itemTextColorPressed: string; /* 按下页码文字颜色 */
|
|
80
|
+
// itemTextColorActive: string; /* 当前页码文字颜色 */
|
|
81
|
+
// itemTextColorDisabled: string; /* 禁用页码文字颜色 */
|
|
82
|
+
// /* 背景颜色 */
|
|
83
|
+
// itemColor: string; /* 普通页码背景色 */
|
|
84
|
+
// itemColorHover: string; /* 悬停页码背景色 */
|
|
85
|
+
// itemColorPressed: string; /* 按下页码背景色 */
|
|
86
|
+
// itemColorActive: string; /* 当前页码背景色 */
|
|
87
|
+
// itemColorActiveHover: string; /* 当前页码悬停背景色 */
|
|
88
|
+
// itemColorDisabled: string; /* 禁用页码背景色 */
|
|
89
|
+
// /* 边框样式 */
|
|
90
|
+
// itemBorder: string; /* 页码边框 */
|
|
91
|
+
// itemBorderHover: string; /* 悬停页码边框 */
|
|
92
|
+
// itemBorderPressed: string; /* 按下页码边框 */
|
|
93
|
+
// itemBorderActive: string; /* 当前页码边框 */
|
|
94
|
+
// itemBorderDisabled: string; /* 禁用页码边框 */
|
|
95
|
+
// /* 尺寸和圆角 */
|
|
96
|
+
// itemBorderRadius: string; /* 页码圆角 */
|
|
97
|
+
/* 页码项尺寸 */
|
|
98
|
+
// itemSizeSmall: '26px' /* 小尺寸页码大小 */
|
|
99
|
+
// itemSizeMedium: '32px', /* 中尺寸页码大小 */
|
|
100
|
+
// itemSizeLarge: '34px' /* 大尺寸页码大小 */
|
|
101
|
+
// /* 字体大小 */
|
|
102
|
+
// itemFontSizeSmall: string; /* 小尺寸页码字体 */
|
|
103
|
+
// itemFontSizeMedium: string; /* 中尺寸页码字体 */
|
|
104
|
+
// itemFontSizeLarge: string; /* 大尺寸页码字体 */
|
|
105
|
+
// jumperFontSizeSmall: string; /* 小尺寸跳转框字体 */
|
|
106
|
+
// jumperFontSizeMedium: string; /* 中尺寸跳转框字体 */
|
|
107
|
+
// jumperFontSizeLarge: string; /* 大尺寸跳转框字体 */
|
|
108
|
+
// jumperTextColor: string; /* 跳转框文字颜色 */
|
|
109
|
+
// jumperTextColorDisabled: string; /* 禁用跳转框文字颜色 */
|
|
110
|
+
/* 各种间距和边距配置,用于控制组件内部元素的布局 */
|
|
111
|
+
// itemPaddingSmall: string; /* 小尺寸页码内边距 */
|
|
112
|
+
// itemMarginSmall: string; /* 小尺寸页码外边距 */
|
|
113
|
+
/* ... 其他间距变量 */
|
|
114
|
+
// itemColorDisabled: string;
|
|
115
|
+
// itemBorder: 'red',
|
|
116
|
+
// itemBorderHover: string;
|
|
117
|
+
// itemBorderPressed: string;
|
|
118
|
+
// itemBorderActive: string;
|
|
119
|
+
// itemBorderDisabled: string;
|
|
120
|
+
// itemBorderRadius: string;
|
|
121
|
+
// itemSizeSmall: '62px',
|
|
122
|
+
// itemSizeMedium: '32px',
|
|
123
|
+
// itemSizeLarge: '22px'
|
|
124
|
+
// itemFontSizeSmall: string;
|
|
125
|
+
// itemFontSizeMedium: '32px'
|
|
126
|
+
// itemFontSizeLarge: string;
|
|
127
|
+
// jumperFontSizeSmall: string;
|
|
128
|
+
// jumperFontSizeMedium: '14px',
|
|
129
|
+
// jumperFontSizeLarge: string;
|
|
130
|
+
// jumperTextColor: 'red',
|
|
131
|
+
// jumperTextColorDisabled: string;
|
|
132
|
+
// itemPaddingSmall: '20px',
|
|
133
|
+
// itemMarginSmall: '20px',
|
|
134
|
+
// itemMarginSmallRtl: string;
|
|
135
|
+
// itemPaddingMedium: '0 10px',
|
|
136
|
+
// itemMarginMedium: '0 8px'
|
|
137
|
+
// itemMarginMediumRtl: '36px'
|
|
138
|
+
// itemPaddingLarge: string;
|
|
139
|
+
// itemMarginLarge: string;
|
|
140
|
+
// itemMarginLargeRtl: string;
|
|
141
|
+
// buttonIconSizeSmall: '10px',
|
|
142
|
+
// buttonIconSizeMedium: '32px'
|
|
143
|
+
// buttonIconSizeLarge: '30px',
|
|
144
|
+
// inputWidthSmall: '150px'
|
|
145
|
+
// selectWidthSmall: '60px'
|
|
146
|
+
// inputMarginSmall: string;
|
|
147
|
+
// inputMarginSmallRtl: string;
|
|
148
|
+
// selectMarginSmall: string;
|
|
149
|
+
// prefixMarginSmall: string;
|
|
150
|
+
// suffixMarginSmall: string;
|
|
151
|
+
// inputWidthMedium: string;
|
|
152
|
+
// selectWidthMedium: string;
|
|
153
|
+
// inputMarginMedium: string;
|
|
154
|
+
// inputMarginMediumRtl: string;
|
|
155
|
+
// selectMarginMedium: string;
|
|
156
|
+
// prefixMarginMedium: string;
|
|
157
|
+
// suffixMarginMedium: string;
|
|
158
|
+
// inputWidthLarge: string;
|
|
159
|
+
// selectWidthLarge: string;
|
|
160
|
+
// inputMarginLarge: string;
|
|
161
|
+
// inputMarginLargeRtl: string;
|
|
162
|
+
// selectMarginLarge: string;
|
|
163
|
+
// prefixMarginLarge: string;
|
|
164
|
+
// suffixMarginLarge: string;
|
|
165
|
+
}, m = {
|
|
166
|
+
// fontSize: string; /* 面包屑整体字体大小 */
|
|
167
|
+
// itemLineHeight: string; /* 面包屑项的行高 */
|
|
168
|
+
// fontWeightActive: string; /* 当前项的字重(如:bold)*/
|
|
169
|
+
itemTextColor: o["color-gray-8"],
|
|
170
|
+
/* 普通面包屑项文字颜色 */
|
|
171
|
+
itemTextColorHover: o["color-gray-10"],
|
|
172
|
+
/* 鼠标悬停时文字颜色 */
|
|
173
|
+
itemTextColorPressed: o["color-gray-10"],
|
|
174
|
+
/* 鼠标按下时文字颜色 */
|
|
175
|
+
itemTextColorActive: o["color-gray-10"],
|
|
176
|
+
/* 当前页面项文字颜色(不可点击)*/
|
|
177
|
+
// itemColorHover: string; /* 鼠标悬停时背景颜色 */
|
|
178
|
+
// itemColorPressed: string; /* 鼠标按下时背景颜色 */
|
|
179
|
+
// itemBorderRadius: string; /* 面包屑项的圆角大小 */
|
|
180
|
+
separatorColor: o["color-gray-4"]
|
|
181
|
+
/* 分隔符颜色(如 > 或 / 的颜色)*/
|
|
182
|
+
}, g = {
|
|
183
|
+
/* Line 类型文字颜色 */
|
|
184
|
+
tabTextColorLine: o["color-gray-8"],
|
|
185
|
+
/* 普通文字颜色 */
|
|
186
|
+
tabTextColorActiveLine: o["color-primary-6"],
|
|
187
|
+
/* 激活状态文字颜色 */
|
|
188
|
+
tabTextColorHoverLine: o["color-primary-5"],
|
|
189
|
+
/* 悬停状态文字颜色 */
|
|
190
|
+
tabTextColorDisabledLine: o["color-gray-4"],
|
|
191
|
+
/* 禁用状态文字颜色 */
|
|
192
|
+
// /* Bar 类型文字颜色 */
|
|
193
|
+
tabTextColorBar: o["color-gray-8"],
|
|
194
|
+
/* 普通文字颜色 */
|
|
195
|
+
tabTextColorActiveBar: o["color-primary-6"],
|
|
196
|
+
/* 激活状态文字颜色 */
|
|
197
|
+
tabTextColorHoverBar: o["color-primary-5"],
|
|
198
|
+
/* 悬停状态文字颜色 */
|
|
199
|
+
tabTextColorDisabledBar: o["color-gray-4"],
|
|
200
|
+
/* 禁用状态文字颜色 */
|
|
201
|
+
// /* Card 类型文字颜色 */
|
|
202
|
+
tabTextColorCard: o["color-gray-8"],
|
|
203
|
+
/* 普通文字颜色 */
|
|
204
|
+
tabTextColorActiveCard: o["color-primary-6"],
|
|
205
|
+
/* 激活状态文字颜色 */
|
|
206
|
+
tabTextColorHoverCard: o["color-primary-5"],
|
|
207
|
+
/* 悬停状态文字颜色 */
|
|
208
|
+
tabTextColorDisabledCard: o["color-gray-4"],
|
|
209
|
+
/* 禁用状态文字颜色 */
|
|
210
|
+
// tabColor: lightBase['color-primary-2'], /* 标签页背景色 */
|
|
211
|
+
// /* Segment 类型文字颜色 */
|
|
212
|
+
tabTextColorSegment: o["color-gray-8"],
|
|
213
|
+
/* 普通文字颜色 */
|
|
214
|
+
tabTextColorActiveSegment: o["color-primary-6"],
|
|
215
|
+
/* 激活状态文字颜色 */
|
|
216
|
+
tabTextColorHoverSegment: o["color-primary-5"],
|
|
217
|
+
/* 悬停状态文字颜色 */
|
|
218
|
+
tabTextColorDisabledSegment: o["color-gray-4"],
|
|
219
|
+
/* 禁用状态文字颜色 */
|
|
220
|
+
tabPaddingSmallSegment: "10px 12px",
|
|
221
|
+
tabPaddingMediumSegment: "10px 0",
|
|
222
|
+
tabPaddingLargeSegment: "10px 0",
|
|
223
|
+
colorSegment: e["color-text-1"],
|
|
224
|
+
/* Segment 类型背景色 */
|
|
225
|
+
tabColorSegment: o["color-primary-2"],
|
|
226
|
+
/* Segment 类型标签背景色 */
|
|
227
|
+
// tabBorderColor: string; /* 标签页边框颜色 */
|
|
228
|
+
barColor: o["color-primary-6"],
|
|
229
|
+
/* Bar 类型指示条颜色 */
|
|
230
|
+
// closeIconColor: string; /* 关闭图标颜色 */
|
|
231
|
+
// closeIconColorHover: string; /* 关闭图标悬停颜色 */
|
|
232
|
+
// closeIconColorPressed: string;/* 关闭图标按下颜色 */
|
|
233
|
+
// closeColorHover: string; /* 关闭按钮悬停背景色 */
|
|
234
|
+
// closeColorPressed: string; /* 关闭按钮按下背景色 */
|
|
235
|
+
// closeBorderRadius: string; /* 关闭按钮圆角 */
|
|
236
|
+
// closeSize: string; /* 关闭按钮大小 */
|
|
237
|
+
// closeIconSize: string; /* 关闭图标大小 */
|
|
238
|
+
// tabFontSizeCard: string; /* Card 类型字体大小 */
|
|
239
|
+
tabFontSizeSmall: r.fontSizeSmall,
|
|
240
|
+
/* 小尺寸字体 */
|
|
241
|
+
tabFontSizeMedium: r.fontSizeMedium,
|
|
242
|
+
/* 中尺寸字体 */
|
|
243
|
+
tabFontSizeLarge: r.fontSizeLarge,
|
|
244
|
+
/* 大尺寸字体 */
|
|
245
|
+
tabFontWeight: r.fontWeightNormal,
|
|
246
|
+
/* 普通字重 */
|
|
247
|
+
tabFontWeightActive: r.fontWeightActive,
|
|
248
|
+
/* 激活状态字重 */
|
|
249
|
+
// fontWeightStrong: string; /* 强调字重 */
|
|
250
|
+
// paneTextColor: string; /* 标签内容区域文字颜色 */
|
|
251
|
+
// panePaddingSmall: string; /* 小尺寸内容区域内边距 */
|
|
252
|
+
// panePaddingMedium: string; /* 中尺寸内容区域内边距 */
|
|
253
|
+
// panePaddingLarge: string; /* 大尺寸内容区域内边距 *//* 各种间距变量命名规则:
|
|
254
|
+
// tab[属性][尺寸][类型][方向]
|
|
255
|
+
// 例如:tabGapSmallLineVertical = 小尺寸 + Line类型 + 垂直方向的间隙
|
|
256
|
+
// */
|
|
257
|
+
// /* 间隙(Gap)*/
|
|
258
|
+
tabGapSmallLine: r.tabGapSmall,
|
|
259
|
+
/* 小尺寸Line类型水平间隙 */
|
|
260
|
+
tabGapMediumLine: r.tabGapMedium,
|
|
261
|
+
/* 中尺寸Line类型水平间隙 */
|
|
262
|
+
tabGapLargeLine: r.tabGapLarge,
|
|
263
|
+
/* 大尺寸Line类型水平间隙 */
|
|
264
|
+
// /* 内边距(Padding)*/
|
|
265
|
+
tabPaddingSmallLine: r.tabPaddingSmall,
|
|
266
|
+
/* 小尺寸Line类型水平内边距 */
|
|
267
|
+
tabPaddingMediumLine: r.tabPaddingMedium,
|
|
268
|
+
/* 中尺寸Line类型水平内边距 */
|
|
269
|
+
tabPaddingLargeLine: r.tabPaddingLarge,
|
|
270
|
+
/* 大尺寸Line类型水平内边距 */
|
|
271
|
+
// /* 垂直方向变量(带Vertical后缀)*/
|
|
272
|
+
// tabGapSmallLineVertical: string; /* 垂直方向间隙 */
|
|
273
|
+
// tabPaddingVerticalSmallLine: string; /* 垂直方向内边距 */
|
|
274
|
+
tabBorderRadius: r.tabBorderRadius,
|
|
275
|
+
/* 标签页圆角 */
|
|
276
|
+
closeBorderRadius: r.tabBorderRadius
|
|
277
|
+
/* 关闭按钮圆角 */
|
|
278
|
+
// closeBorderRadius: string; /* 关闭按钮圆角 */
|
|
279
|
+
}, C = {
|
|
280
|
+
indicatorColorWait: e["color-text-1"],
|
|
281
|
+
/* 等待状态指示器背景色 */
|
|
282
|
+
indicatorColorProcess: o["color-primary-6"],
|
|
283
|
+
/* 进行状态指示器背景色 */
|
|
284
|
+
indicatorColorFinish: e["color-text-1"],
|
|
285
|
+
/* 完成状态指示器背景色 */
|
|
286
|
+
indicatorColorError: e["color-text-1"],
|
|
287
|
+
/* 错误状态指示器背景色 */
|
|
288
|
+
indicatorTextColorWait: o["color-gray-6"],
|
|
289
|
+
/* 等待状态指示器文字颜色 */
|
|
290
|
+
indicatorTextColorProcess: e["color-text-1"],
|
|
291
|
+
/* 进行状态指示器文字颜色 */
|
|
292
|
+
indicatorTextColorFinish: o["color-primary-6"],
|
|
293
|
+
/* 完成状态指示器文字颜色 */
|
|
294
|
+
indicatorTextColorError: o["color-red-6"],
|
|
295
|
+
/* 错误状态指示器文字颜色 */
|
|
296
|
+
indicatorBorderColorWait: o["color-gray-6"],
|
|
297
|
+
/* 等待状态指示器边框颜色 */
|
|
298
|
+
indicatorBorderColorProcess: o["color-primary-6"],
|
|
299
|
+
/* 进行状态指示器边框颜色 */
|
|
300
|
+
indicatorBorderColorFinish: o["color-primary-6"],
|
|
301
|
+
/* 完成状态指示器边框颜色 */
|
|
302
|
+
indicatorBorderColorError: o["color-red-6"],
|
|
303
|
+
/* 错误状态指示器边框颜色 */
|
|
304
|
+
headerTextColorWait: o["color-gray-10"],
|
|
305
|
+
/* 等待状态标题颜色 */
|
|
306
|
+
headerTextColorProcess: o["color-gray-10"],
|
|
307
|
+
/* 进行状态标题颜色 */
|
|
308
|
+
headerTextColorFinish: o["color-gray-10"],
|
|
309
|
+
/* 完成状态标题颜色 */
|
|
310
|
+
headerTextColorError: o["color-gray-10"],
|
|
311
|
+
/* 错误状态标题颜色 */
|
|
312
|
+
descriptionTextColorWait: o["color-gray-6"],
|
|
313
|
+
/* 等待状态描述颜色 */
|
|
314
|
+
descriptionTextColorProcess: o["color-gray-6"],
|
|
315
|
+
/* 进行状态描述颜色 */
|
|
316
|
+
descriptionTextColorFinish: o["color-gray-6"],
|
|
317
|
+
/* 完成状态描述颜色 */
|
|
318
|
+
descriptionTextColorError: o["color-gray-6"],
|
|
319
|
+
/* 错误状态描述颜色 */
|
|
320
|
+
splitorColorProcess: o["color-primary-6"],
|
|
321
|
+
splitorColorWait: o["color-gray-4"],
|
|
322
|
+
splitorColorFinish: o["color-primary-6"],
|
|
323
|
+
splitorColorError: o["color-primary-6"],
|
|
324
|
+
stepHeaderFontSizeSmall: "16px",
|
|
325
|
+
/* 小尺寸标题字体 */
|
|
326
|
+
stepHeaderFontSizeMedium: "16px",
|
|
327
|
+
/* 中尺寸标题字体 */
|
|
328
|
+
indicatorIndexFontSizeSmall: "16px",
|
|
329
|
+
/* 小尺寸指示器数字字体 */
|
|
330
|
+
indicatorIndexFontSizeMedium: "16px",
|
|
331
|
+
/* 中尺寸指示器数字字体 */
|
|
332
|
+
// stepHeaderFontWeight: string; /* 标题字体粗细 */
|
|
333
|
+
indicatorSizeSmall: "24px",
|
|
334
|
+
/* 小尺寸指示器大小 */
|
|
335
|
+
indicatorSizeMedium: "24px",
|
|
336
|
+
/* 中尺寸指示器大小 */
|
|
337
|
+
indicatorIconSizeSmall: "16px",
|
|
338
|
+
/* 小尺寸指示器图标大小 */
|
|
339
|
+
indicatorIconSizeMedium: "16px"
|
|
340
|
+
/* 中尺寸指示器图标大小 */
|
|
341
|
+
};
|
|
342
|
+
export {
|
|
343
|
+
m as BreadcrumbThemeLight,
|
|
344
|
+
n as PaginationThemeLight,
|
|
345
|
+
c as PopconfirmThemeLight,
|
|
346
|
+
C as StepsThemeLight,
|
|
347
|
+
g as TabsThemeLight,
|
|
348
|
+
l as TooltipThemeLight,
|
|
349
|
+
d as TreeThemeLight
|
|
350
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { commonBase as e } from "../../common.mjs";
|
|
2
|
+
const a = {
|
|
3
|
+
borderRadiusLarge: e.borderRadiusLarge,
|
|
4
|
+
borderRadiusMedium: e.borderRadiusMedium,
|
|
5
|
+
borderRadiusSmall: e.borderRadiusSmall,
|
|
6
|
+
heightMedium: e.heightMedium,
|
|
7
|
+
heightSmall: e.heightSmall,
|
|
8
|
+
fontSizeLarge: e.fontSizeLarge,
|
|
9
|
+
fontSizeSmall: e.fontSizeSmall,
|
|
10
|
+
opacityDisabled: "1",
|
|
11
|
+
paddingLarge: "0 24px",
|
|
12
|
+
paddingMedium: "0 16px",
|
|
13
|
+
paddingSmall: "0 12px"
|
|
14
|
+
};
|
|
15
|
+
export {
|
|
16
|
+
a as ButtonThemeCommon
|
|
17
|
+
};
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import o from "../../color/dark.mjs";
|
|
2
|
+
import r from "../../token/dark.mjs";
|
|
3
|
+
import { ButtonThemeCommon as e } from "./common.mjs";
|
|
4
|
+
const t = {
|
|
5
|
+
...e,
|
|
6
|
+
border: `1px solid ${r["fill-color-2"]}`,
|
|
7
|
+
borderError: `1px solid ${o["color-red-6"]}`,
|
|
8
|
+
borderPrimary: `1px solid ${o["color-primary-6"]}`,
|
|
9
|
+
borderSuccess: `1px solid ${o["color-green-6"]}`,
|
|
10
|
+
borderWarning: `1px solid ${o["color-origin-6"]}`,
|
|
11
|
+
borderDisabled: `1px solid ${r["color-default-disabled"]}`,
|
|
12
|
+
borderDisabledError: `1px solid ${o["color-red-5"]}`,
|
|
13
|
+
borderDisabledPrimary: `1px solid ${r["color-primary-disabled"]}`,
|
|
14
|
+
borderDisabledSuccess: `1px solid ${r["color-success-disabled"]}`,
|
|
15
|
+
borderDisabledWarning: `1px solid ${r["color-warning-disabled"]}`,
|
|
16
|
+
borderHover: `1px solid ${r["fill-color-3"]}`,
|
|
17
|
+
borderHoverError: `1px solid ${o["color-red-5"]}`,
|
|
18
|
+
borderHoverPrimary: `1px solid ${o["color-primary-5"]}`,
|
|
19
|
+
borderHoverSuccess: `1px solid ${o["color-green-5"]}`,
|
|
20
|
+
borderHoverWarning: `1px solid ${o["color-origin-5"]}`,
|
|
21
|
+
borderFocus: `1px solid ${r["fill-color-3"]}`,
|
|
22
|
+
borderFocusError: `1px solid ${o["color-red-5"]}`,
|
|
23
|
+
borderFocusPrimary: `1px solid ${o["color-primary-5"]}`,
|
|
24
|
+
borderFocusSuccess: `1px solid ${o["color-green-5"]}`,
|
|
25
|
+
borderFocusWarning: `1px solid ${o["color-origin-5"]}`,
|
|
26
|
+
borderPressed: `1px solid ${r["fill-color-4"]}`,
|
|
27
|
+
borderPressedError: `1px solid ${o["color-red-7"]}`,
|
|
28
|
+
borderPressedPrimary: `1px solid ${o["color-primary-7"]}`,
|
|
29
|
+
borderPressedSuccess: `1px solid ${o["color-green-7"]}`,
|
|
30
|
+
borderPressedWarning: `1px solid ${o["color-origin-7"]}`,
|
|
31
|
+
color: r["fill-color-2"],
|
|
32
|
+
colorError: o["color-red-6"],
|
|
33
|
+
colorPrimary: o["color-primary-6"],
|
|
34
|
+
colorSuccess: o["color-green-6"],
|
|
35
|
+
colorWarning: o["color-origin-6"],
|
|
36
|
+
colorDisabled: r["color-default-disabled"],
|
|
37
|
+
colorDisabledError: r["color-error-disabled"],
|
|
38
|
+
colorDisabledPrimary: r["color-primary-disabled"],
|
|
39
|
+
colorDisabledSuccess: r["color-success-disabled"],
|
|
40
|
+
colorDisabledWarning: r["color-warning-disabled"],
|
|
41
|
+
colorFocus: r["fill-color-3"],
|
|
42
|
+
colorFocusError: o["color-red-5"],
|
|
43
|
+
colorFocusPrimary: o["color-primary-5"],
|
|
44
|
+
colorFocusSuccess: o["color-green-5"],
|
|
45
|
+
colorFocusWarning: o["color-origin-5"],
|
|
46
|
+
colorHover: r["fill-color-3"],
|
|
47
|
+
colorHoverError: o["color-red-5"],
|
|
48
|
+
colorHoverPrimary: o["color-primary-5"],
|
|
49
|
+
colorHoverSuccess: o["color-green-5"],
|
|
50
|
+
colorHoverWarning: o["color-origin-5"],
|
|
51
|
+
colorPressed: r["fill-color-4"],
|
|
52
|
+
colorPressedError: o["color-red-7"],
|
|
53
|
+
colorPressedPrimary: o["color-primary-7"],
|
|
54
|
+
colorPressedSuccess: o["color-green-7"],
|
|
55
|
+
colorPressedWarning: o["color-origin-7"],
|
|
56
|
+
textColor: o["color-gray-8"],
|
|
57
|
+
textColorError: r["color-text-5"],
|
|
58
|
+
textColorPrimary: r["color-text-5"],
|
|
59
|
+
textColorSuccess: r["color-text-5"],
|
|
60
|
+
textColorWarning: r["color-text-5"],
|
|
61
|
+
textColorDisabled: "rgba(255, 255, 255, 0.75)",
|
|
62
|
+
textColorDisabledError: "rgba(255, 255, 255, 0.75)",
|
|
63
|
+
textColorDisabledPrimary: "rgba(255, 255, 255, 0.75)",
|
|
64
|
+
textColorDisabledSuccess: "rgba(255, 255, 255, 0.75)",
|
|
65
|
+
textColorDisabledWarning: "rgba(255, 255, 255, 0.75)",
|
|
66
|
+
textColorFocus: o["color-gray-8"],
|
|
67
|
+
textColorFocusError: r["color-text-5"],
|
|
68
|
+
textColorFocusPrimary: r["color-text-5"],
|
|
69
|
+
textColorFocusSuccess: r["color-text-5"],
|
|
70
|
+
textColorFocusWarning: r["color-text-5"],
|
|
71
|
+
textColorHover: o["color-gray-8"],
|
|
72
|
+
textColorHoverError: r["color-text-5"],
|
|
73
|
+
textColorHoverPrimary: r["color-text-5"],
|
|
74
|
+
textColorHoverSuccess: r["color-text-5"],
|
|
75
|
+
textColorHoverWarning: r["color-text-5"],
|
|
76
|
+
textColorPressed: o["color-gray-8"],
|
|
77
|
+
textColorPressedError: r["color-text-5"],
|
|
78
|
+
textColorPressedPrimary: r["color-text-5"],
|
|
79
|
+
textColorPressedSuccess: r["color-text-5"],
|
|
80
|
+
textColorPressedWarning: r["color-text-5"],
|
|
81
|
+
textColorGhost: o["color-gray-8"],
|
|
82
|
+
textColorGhostError: o["color-red-6"],
|
|
83
|
+
textColorGhostPrimary: o["color-primary-6"],
|
|
84
|
+
textColorGhostSuccess: o["color-green-6"],
|
|
85
|
+
textColorGhostWarning: o["color-origin-6"],
|
|
86
|
+
textColorGhostDisabled: "rgba(255, 255, 255, 0.5)",
|
|
87
|
+
textColorGhostDisabledError: r["color-error-disabled"],
|
|
88
|
+
textColorGhostDisabledPrimary: r["color-primary-disabled"],
|
|
89
|
+
textColorGhostDisabledSuccess: r["color-success-disabled"],
|
|
90
|
+
textColorGhostDisabledWarning: r["color-warning-disabled"],
|
|
91
|
+
textColorGhostFocus: o["color-gray-8"],
|
|
92
|
+
textColorGhostFocusError: o["color-red-5"],
|
|
93
|
+
textColorGhostFocusPrimary: o["color-primary-5"],
|
|
94
|
+
textColorGhostFocusSuccess: o["color-green-5"],
|
|
95
|
+
textColorGhostFocusWarning: o["color-origin-5"],
|
|
96
|
+
textColorGhostHover: o["color-gray-8"],
|
|
97
|
+
textColorGhostHoverError: o["color-red-5"],
|
|
98
|
+
textColorGhostHoverPrimary: o["color-primary-5"],
|
|
99
|
+
textColorGhostHoverSuccess: o["color-green-5"],
|
|
100
|
+
textColorGhostHoverWarning: o["color-origin-5"],
|
|
101
|
+
textColorGhostPressed: o["color-gray-8"],
|
|
102
|
+
textColorGhostPressedError: o["color-red-7"],
|
|
103
|
+
textColorGhostPressedPrimary: o["color-primary-7"],
|
|
104
|
+
textColorGhostPressedSuccess: o["color-green-7"],
|
|
105
|
+
textColorGhostPressedWarning: o["color-origin-7"]
|
|
106
|
+
};
|
|
107
|
+
export {
|
|
108
|
+
t as ButtonThemeDark
|
|
109
|
+
};
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import o from "../../color/light.mjs";
|
|
2
|
+
import { ButtonThemeCommon as r } from "./common.mjs";
|
|
3
|
+
const c = {
|
|
4
|
+
...r,
|
|
5
|
+
border: `1px solid ${o["color-gray-3"]}`,
|
|
6
|
+
borderError: `1px solid ${o["color-red-6"]}`,
|
|
7
|
+
borderPrimary: `1px solid ${o["color-primary-6"]}`,
|
|
8
|
+
borderSuccess: `1px solid ${o["color-green-6"]}`,
|
|
9
|
+
borderWarning: `1px solid ${o["color-origin-6"]}`,
|
|
10
|
+
borderDisabled: `1px solid ${o["color-gray-2"]}`,
|
|
11
|
+
borderDisabledError: `1px solid ${o["color-red-3"]}`,
|
|
12
|
+
borderDisabledPrimary: `1px solid ${o["color-primary-3"]}`,
|
|
13
|
+
borderDisabledSuccess: `1px solid ${o["color-green-3"]}`,
|
|
14
|
+
borderDisabledWarning: `1px solid ${o["color-origin-3"]}`,
|
|
15
|
+
borderHover: `1px solid ${o["color-gray-4"]}`,
|
|
16
|
+
borderHoverError: `1px solid ${o["color-red-5"]}`,
|
|
17
|
+
borderHoverPrimary: `1px solid ${o["color-primary-5"]}`,
|
|
18
|
+
borderHoverSuccess: `1px solid ${o["color-green-5"]}`,
|
|
19
|
+
borderHoverWarning: `1px solid ${o["color-origin-5"]}`,
|
|
20
|
+
borderFocus: `1px solid ${o["color-gray-4"]}`,
|
|
21
|
+
borderFocusError: `1px solid ${o["color-red-5"]}`,
|
|
22
|
+
borderFocusPrimary: `1px solid ${o["color-primary-5"]}`,
|
|
23
|
+
borderFocusSuccess: `1px solid ${o["color-green-5"]}`,
|
|
24
|
+
borderFocusWarning: `1px solid ${o["color-origin-5"]}`,
|
|
25
|
+
borderPressed: `1px solid ${o["color-gray-5"]}`,
|
|
26
|
+
borderPressedError: `1px solid ${o["color-red-7"]}`,
|
|
27
|
+
borderPressedPrimary: `1px solid ${o["color-primary-7"]}`,
|
|
28
|
+
borderPressedSuccess: `1px solid ${o["color-green-7"]}`,
|
|
29
|
+
borderPressedWarning: `1px solid ${o["color-origin-7"]}`,
|
|
30
|
+
color: o["color-gray-3"],
|
|
31
|
+
colorError: o["color-red-6"],
|
|
32
|
+
colorPrimary: o["color-primary-6"],
|
|
33
|
+
colorSuccess: o["color-green-6"],
|
|
34
|
+
colorWarning: o["color-origin-6"],
|
|
35
|
+
colorDisabled: o["color-gray-2"],
|
|
36
|
+
colorDisabledError: o["color-red-3"],
|
|
37
|
+
colorDisabledPrimary: o["color-primary-3"],
|
|
38
|
+
colorDisabledSuccess: o["color-green-3"],
|
|
39
|
+
colorDisabledWarning: o["color-origin-3"],
|
|
40
|
+
colorFocus: o["color-gray-4"],
|
|
41
|
+
colorFocusError: o["color-red-5"],
|
|
42
|
+
colorFocusPrimary: o["color-primary-5"],
|
|
43
|
+
colorFocusSuccess: o["color-green-5"],
|
|
44
|
+
colorFocusWarning: o["color-origin-5"],
|
|
45
|
+
colorHover: o["color-gray-4"],
|
|
46
|
+
colorHoverError: o["color-red-5"],
|
|
47
|
+
colorHoverPrimary: o["color-primary-5"],
|
|
48
|
+
colorHoverSuccess: o["color-green-5"],
|
|
49
|
+
colorHoverWarning: o["color-origin-5"],
|
|
50
|
+
colorPressed: o["color-gray-5"],
|
|
51
|
+
colorPressedError: o["color-red-7"],
|
|
52
|
+
colorPressedPrimary: o["color-primary-7"],
|
|
53
|
+
colorPressedSuccess: o["color-green-7"],
|
|
54
|
+
colorPressedWarning: o["color-origin-7"],
|
|
55
|
+
textColor: o["color-gray-8"],
|
|
56
|
+
textColorDisabled: o["color-gray-4"],
|
|
57
|
+
textColorFocus: o["color-gray-8"],
|
|
58
|
+
textColorHover: o["color-gray-8"],
|
|
59
|
+
textColorPressed: o["color-gray-8"],
|
|
60
|
+
textColorGhost: o["color-gray-8"],
|
|
61
|
+
textColorGhostError: o["color-red-6"],
|
|
62
|
+
textColorGhostPrimary: o["color-primary-6"],
|
|
63
|
+
textColorGhostSuccess: o["color-green-6"],
|
|
64
|
+
textColorGhostWarning: o["color-origin-6"],
|
|
65
|
+
textColorGhostDisabled: o["color-gray-4"],
|
|
66
|
+
textColorGhostDisabledError: o["color-red-3"],
|
|
67
|
+
textColorGhostDisabledPrimary: o["color-primary-3"],
|
|
68
|
+
textColorGhostDisabledSuccess: o["color-green-3"],
|
|
69
|
+
textColorGhostDisabledWarning: o["color-origin-3"],
|
|
70
|
+
textColorGhostFocus: o["color-gray-8"],
|
|
71
|
+
textColorGhostFocusError: o["color-red-5"],
|
|
72
|
+
textColorGhostFocusPrimary: o["color-primary-5"],
|
|
73
|
+
textColorGhostFocusSuccess: o["color-green-5"],
|
|
74
|
+
textColorGhostFocusWarning: o["color-origin-5"],
|
|
75
|
+
textColorGhostHover: o["color-gray-8"],
|
|
76
|
+
textColorGhostHoverError: o["color-red-5"],
|
|
77
|
+
textColorGhostHoverPrimary: o["color-primary-5"],
|
|
78
|
+
textColorGhostHoverSuccess: o["color-green-5"],
|
|
79
|
+
textColorGhostHoverWarning: o["color-origin-5"],
|
|
80
|
+
textColorGhostPressed: o["color-gray-8"],
|
|
81
|
+
textColorGhostPressedError: o["color-red-7"],
|
|
82
|
+
textColorGhostPressedPrimary: o["color-primary-7"],
|
|
83
|
+
textColorGhostPressedSuccess: o["color-green-7"],
|
|
84
|
+
textColorGhostPressedWarning: o["color-origin-7"]
|
|
85
|
+
};
|
|
86
|
+
export {
|
|
87
|
+
c as ButtonThemeLight
|
|
88
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import r from "../../color/dark.mjs";
|
|
2
|
+
import o from "../../token/dark.mjs";
|
|
3
|
+
const d = {
|
|
4
|
+
color: o["bg-color-2"],
|
|
5
|
+
paddingMedium: "16px 24px",
|
|
6
|
+
borderColor: r["color-gray-3"],
|
|
7
|
+
textColor: o["color-text-1"],
|
|
8
|
+
closeIconColor: o["color-text-1"],
|
|
9
|
+
titleFontSizeMedium: "20px",
|
|
10
|
+
borderRadius: "10px"
|
|
11
|
+
};
|
|
12
|
+
export {
|
|
13
|
+
d as CardThemeDark
|
|
14
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import o from "../../color/light.mjs";
|
|
2
|
+
import r from "../../token/light.mjs";
|
|
3
|
+
const t = {
|
|
4
|
+
color: r["bg-color-2"],
|
|
5
|
+
paddingMedium: "16px 24px",
|
|
6
|
+
borderColor: o["color-gray-3"],
|
|
7
|
+
textColor: o["color-gray-10"],
|
|
8
|
+
closeIconColor: o["color-gray-10"],
|
|
9
|
+
titleFontSizeMedium: "20px",
|
|
10
|
+
borderRadius: "10px"
|
|
11
|
+
};
|
|
12
|
+
export {
|
|
13
|
+
t as CardThemeLight
|
|
14
|
+
};
|