base6-ui 1.1.5 → 1.1.6
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/dist/components/BaseLayout/AsideMenu/index.vue.d.ts +4 -0
- package/dist/components/BaseLayout/Default/constants.d.ts +5 -0
- package/dist/components/BaseLayout/Default/hooks/useBaseLayoutContext.d.ts +3 -0
- package/dist/components/BaseLayout/Default/hooks/useLogo.d.ts +5 -0
- package/dist/components/BaseLayout/Default/index.vue.d.ts +65 -0
- package/dist/components/BaseLayout/Default/layoutFooter/index.vue.d.ts +2 -0
- package/dist/components/BaseLayout/Default/layoutHeader/action.vue.d.ts +2 -0
- package/dist/components/BaseLayout/Default/layoutHeader/index.vue.d.ts +2 -0
- package/dist/components/BaseLayout/Default/layoutHeader/title.vue.d.ts +2 -0
- package/dist/components/BaseLayout/Default/layoutMenu/components/first-level-menu.vue.d.ts +32 -0
- package/dist/components/BaseLayout/Default/layoutMenu/index.vue.d.ts +2 -0
- package/dist/components/BaseLayout/Default/layoutMenu/modules/horizontalMenu.vue.d.ts +2 -0
- package/dist/components/BaseLayout/Default/layoutMenu/modules/horizontalMixMenu.vue.d.ts +2 -0
- package/dist/components/BaseLayout/Default/layoutMenu/modules/horizontalMixReversedMenu.vue.d.ts +2 -0
- package/dist/components/BaseLayout/Default/layoutMenu/modules/verticalMenu.vue.d.ts +2 -0
- package/dist/components/BaseLayout/Default/layoutMenu/modules/verticalMixMenu.vue.d.ts +2 -0
- package/dist/components/BaseLayout/Default/layoutSlider/index.vue.d.ts +2 -0
- package/dist/components/BaseLayout/Default/layoutTab/index.vue.d.ts +2 -0
- package/dist/components/BaseLayout/Default/options.d.ts +3 -0
- package/dist/components/BaseLayout/Default/type.d.ts +41 -0
- package/dist/components/BaseLayout/Header/index.vue.d.ts +19 -0
- package/dist/components/BaseLayout/components/WrapContent.vue.d.ts +22 -0
- package/dist/components/BaseLayout/components/WrapFooter.vue.d.ts +24 -0
- package/dist/components/BaseLayout/components/WrapHeader.vue.d.ts +24 -0
- package/dist/components/BaseLayout/components/WrapSlider.vue.d.ts +24 -0
- package/dist/components/BaseLayout/components/WrapTab.vue.d.ts +24 -0
- package/dist/components/BaseLayout/constants.d.ts +1 -0
- package/dist/components/BaseLayout/index.d.ts +6 -0
- package/dist/components/BaseLayout/index.vue.d.ts +49 -0
- package/dist/components/BaseLayout/layoutCssVar.d.ts +4 -0
- package/dist/components/BaseLayout/options.d.ts +2 -0
- package/dist/components/BaseLayout/type.d.ts +52 -0
- package/dist/components/BaseProductIntroduction/constants.d.ts +2 -0
- package/dist/components/BaseProductIntroduction/cssVar.d.ts +15 -0
- package/dist/components/BaseProductIntroduction/index.d.ts +1 -0
- package/dist/components/BaseProductIntroduction/index.vue.d.ts +6 -0
- package/dist/components/BaseProductIntroduction/type.d.ts +5 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/config/themes/common/light.d.ts +2 -0
- package/dist/config/themes/components/divider/light.d.ts +2 -0
- package/dist/config/themes/components/layout/dark.d.ts +1 -0
- package/dist/config/themes/components/layout/light.d.ts +1 -0
- package/dist/config/themes/token/light.d.ts +2 -0
- package/dist/globalMethods/index.d.ts +2 -0
- package/dist/hooks/useBoolean.d.ts +7 -0
- package/dist/hooks/useContext.d.ts +6 -0
- package/dist/hooks/useMenu.d.ts +34 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.umd.js +1 -1
- package/dist/types/utils.d.ts +3 -0
- package/es/_virtual/virtual_svg-icons-register.mjs +4 -4
- package/es/assets/cover/base-ads.png.mjs +4 -0
- package/es/assets/cover/base-multimodal.png.mjs +4 -0
- package/es/assets/cover/base-studio.png.mjs +4 -0
- package/es/assets/logo/logo-dark-full.svg.mjs +32 -0
- package/es/assets/logo/logo-light-full.svg.mjs +31 -0
- package/es/components/BaseDataTable/index.vue.mjs +2 -2
- package/es/components/BaseDataTable/index.vue2.mjs +1 -1
- package/es/components/BaseDialog/options.mjs +1 -1
- package/es/components/BaseLayout/ASide/index.vue.mjs +3 -3
- package/es/components/BaseLayout/AsideMenu/index.vue.d.ts +4 -0
- package/es/components/BaseLayout/AsideMenu/index.vue.mjs +7 -0
- package/es/components/BaseLayout/AsideMenu/index.vue2.mjs +66 -0
- package/es/components/BaseLayout/Default/constants.d.ts +5 -0
- package/es/components/BaseLayout/Default/constants.mjs +5 -0
- package/es/components/BaseLayout/Default/hooks/useBaseLayoutContext.d.ts +3 -0
- package/es/components/BaseLayout/Default/hooks/useBaseLayoutContext.mjs +11 -0
- package/es/components/BaseLayout/Default/hooks/useLogo.d.ts +5 -0
- package/es/components/BaseLayout/Default/hooks/useLogo.mjs +19 -0
- package/es/components/BaseLayout/Default/index.vue.d.ts +65 -0
- package/es/components/BaseLayout/Default/index.vue.mjs +144 -0
- package/es/components/BaseLayout/Default/layoutFooter/index.vue.d.ts +2 -0
- package/es/components/BaseLayout/Default/layoutFooter/index.vue.mjs +16 -0
- package/es/components/BaseLayout/Default/layoutHeader/action.vue.d.ts +2 -0
- package/es/components/BaseLayout/Default/layoutHeader/action.vue.mjs +7 -0
- package/es/components/BaseLayout/Default/layoutHeader/action.vue2.mjs +82 -0
- package/es/components/BaseLayout/Default/layoutHeader/index.vue.d.ts +2 -0
- package/es/components/BaseLayout/Default/layoutHeader/index.vue.mjs +31 -0
- package/es/components/BaseLayout/Default/layoutHeader/index.vue2.mjs +4 -0
- package/es/components/BaseLayout/Default/layoutHeader/title.vue.d.ts +2 -0
- package/es/components/BaseLayout/Default/layoutHeader/title.vue.mjs +7 -0
- package/es/components/BaseLayout/Default/layoutHeader/title.vue2.mjs +28 -0
- package/es/components/BaseLayout/Default/layoutMenu/components/first-level-menu.vue.d.ts +32 -0
- package/es/components/BaseLayout/Default/layoutMenu/components/first-level-menu.vue.mjs +7 -0
- package/es/components/BaseLayout/Default/layoutMenu/components/first-level-menu.vue2.mjs +65 -0
- package/es/components/BaseLayout/Default/layoutMenu/index.vue.d.ts +2 -0
- package/es/components/BaseLayout/Default/layoutMenu/index.vue.mjs +4 -0
- package/es/components/BaseLayout/Default/layoutMenu/index.vue2.mjs +23 -0
- package/es/components/BaseLayout/Default/layoutMenu/modules/horizontalMenu.vue.d.ts +2 -0
- package/es/components/BaseLayout/Default/layoutMenu/modules/horizontalMenu.vue.mjs +30 -0
- package/es/components/BaseLayout/Default/layoutMenu/modules/horizontalMenu.vue2.mjs +4 -0
- package/es/components/BaseLayout/Default/layoutMenu/modules/horizontalMixMenu.vue.d.ts +2 -0
- package/es/components/BaseLayout/Default/layoutMenu/modules/horizontalMixMenu.vue.mjs +53 -0
- package/es/components/BaseLayout/Default/layoutMenu/modules/horizontalMixMenu.vue2.mjs +4 -0
- package/es/components/BaseLayout/Default/layoutMenu/modules/horizontalMixReversedMenu.vue.d.ts +2 -0
- package/es/components/BaseLayout/Default/layoutMenu/modules/horizontalMixReversedMenu.vue.mjs +73 -0
- package/es/components/BaseLayout/Default/layoutMenu/modules/horizontalMixReversedMenu.vue2.mjs +4 -0
- package/es/components/BaseLayout/Default/layoutMenu/modules/verticalMenu.vue.d.ts +2 -0
- package/es/components/BaseLayout/Default/layoutMenu/modules/verticalMenu.vue.mjs +39 -0
- package/es/components/BaseLayout/Default/layoutMenu/modules/verticalMenu.vue2.mjs +4 -0
- package/es/components/BaseLayout/Default/layoutMenu/modules/verticalMixMenu.vue.d.ts +2 -0
- package/es/components/BaseLayout/Default/layoutMenu/modules/verticalMixMenu.vue.mjs +100 -0
- package/es/components/BaseLayout/Default/layoutMenu/modules/verticalMixMenu.vue2.mjs +4 -0
- package/es/components/BaseLayout/Default/layoutSlider/index.vue.d.ts +2 -0
- package/es/components/BaseLayout/Default/layoutSlider/index.vue.mjs +27 -0
- package/es/components/BaseLayout/Default/layoutSlider/index.vue2.mjs +4 -0
- package/es/components/BaseLayout/Default/layoutTab/index.vue.d.ts +2 -0
- package/es/components/BaseLayout/Default/layoutTab/index.vue.mjs +16 -0
- package/es/components/BaseLayout/Default/options.d.ts +3 -0
- package/es/components/BaseLayout/Default/options.mjs +35 -0
- package/es/components/BaseLayout/Default/type.d.ts +41 -0
- package/es/components/BaseLayout/Header/index.vue.d.ts +19 -0
- package/es/components/BaseLayout/Header/index.vue.mjs +20 -0
- package/es/components/BaseLayout/components/WrapContent.vue.d.ts +22 -0
- package/es/components/BaseLayout/components/WrapContent.vue.mjs +23 -0
- package/es/components/BaseLayout/components/WrapContent.vue2.mjs +4 -0
- package/es/components/BaseLayout/components/WrapFooter.vue.d.ts +24 -0
- package/es/components/BaseLayout/components/WrapFooter.vue.mjs +33 -0
- package/es/components/BaseLayout/components/WrapFooter.vue2.mjs +4 -0
- package/es/components/BaseLayout/components/WrapHeader.vue.d.ts +24 -0
- package/es/components/BaseLayout/components/WrapHeader.vue.mjs +7 -0
- package/es/components/BaseLayout/components/WrapHeader.vue2.mjs +30 -0
- package/es/components/BaseLayout/components/WrapSlider.vue.d.ts +24 -0
- package/es/components/BaseLayout/components/WrapSlider.vue.mjs +24 -0
- package/es/components/BaseLayout/components/WrapSlider.vue2.mjs +4 -0
- package/es/components/BaseLayout/components/WrapTab.vue.d.ts +24 -0
- package/es/components/BaseLayout/components/WrapTab.vue.mjs +34 -0
- package/es/components/BaseLayout/components/WrapTab.vue2.mjs +4 -0
- package/es/components/BaseLayout/constants.d.ts +1 -0
- package/es/components/BaseLayout/constants.mjs +4 -0
- package/es/components/BaseLayout/index.d.ts +6 -0
- package/es/components/BaseLayout/index.module.css.mjs +24 -0
- package/es/components/BaseLayout/index.vue.d.ts +49 -0
- package/es/components/BaseLayout/index.vue.mjs +7 -0
- package/es/components/BaseLayout/index.vue2.mjs +124 -0
- package/es/components/BaseLayout/layoutCssVar.d.ts +4 -0
- package/es/components/BaseLayout/layoutCssVar.mjs +27 -0
- package/es/components/BaseLayout/options.d.ts +2 -0
- package/es/components/BaseLayout/options.mjs +25 -0
- package/es/components/BaseLayout/type.d.ts +52 -0
- package/es/components/BaseProductIntroduction/constants.d.ts +2 -0
- package/es/components/BaseProductIntroduction/constants.mjs +7 -0
- package/es/components/BaseProductIntroduction/cssVar.d.ts +15 -0
- package/es/components/BaseProductIntroduction/cssVar.mjs +80 -0
- package/es/components/BaseProductIntroduction/index.d.ts +1 -0
- package/es/components/BaseProductIntroduction/index.vue.d.ts +6 -0
- package/es/components/BaseProductIntroduction/index.vue.mjs +8 -0
- package/es/components/BaseProductIntroduction/index.vue2.mjs +170 -0
- package/es/components/BaseProductIntroduction/type.d.ts +5 -0
- package/es/components/BaseSelect/index.vue.mjs +8 -5
- package/es/components/BaseSelect/index.vue3.mjs +5 -0
- package/es/components/index.d.ts +1 -0
- package/es/config/themes/common/light.d.ts +2 -0
- package/es/config/themes/common/light.mjs +30 -0
- package/es/config/themes/components/alert/light.mjs +3 -2
- package/es/config/themes/components/button/common.mjs +4 -4
- package/es/config/themes/components/button/dark.mjs +7 -4
- package/es/config/themes/components/button/light.mjs +1 -0
- package/es/config/themes/components/dataTable/dark.mjs +2 -1
- package/es/config/themes/components/dataTable/light.mjs +2 -1
- package/es/config/themes/components/divider/light.d.ts +2 -0
- package/es/config/themes/components/divider/light.mjs +7 -0
- package/es/config/themes/components/input/common.mjs +1 -0
- package/es/config/themes/components/input/dark.mjs +3 -2
- package/es/config/themes/components/layout/dark.d.ts +1 -0
- package/es/config/themes/components/layout/dark.mjs +3 -2
- package/es/config/themes/components/layout/light.d.ts +1 -0
- package/es/config/themes/components/layout/light.mjs +3 -2
- package/es/config/themes/components/menu/dark.mjs +14 -5
- package/es/config/themes/components/menu/light.mjs +11 -2
- package/es/config/themes/index.mjs +8 -6
- package/es/config/themes/light.mjs +40 -36
- package/es/config/themes/token/light.d.ts +2 -0
- package/es/config/themes/token/light.mjs +3 -1
- package/es/globalMethods/index.d.ts +2 -0
- package/es/globalMethods/index.mjs +7 -5
- package/es/hooks/useBoolean.d.ts +7 -0
- package/es/hooks/useBoolean.mjs +26 -0
- package/es/hooks/useContext.d.ts +6 -0
- package/es/hooks/useContext.mjs +30 -0
- package/es/hooks/useMenu.d.ts +34 -0
- package/es/hooks/useMenu.mjs +78 -0
- package/es/index.css +1 -1
- package/es/index.d.ts +1 -0
- package/es/index.mjs +53 -38
- package/es/node_modules/.pnpm/@vueuse_core@13.0.0_vue@3.5.13_typescript@5.7.2_/node_modules/@vueuse/core/index.mjs +43 -0
- package/es/node_modules/.pnpm/@vueuse_shared@13.0.0_vue@3.5.13_typescript@5.7.2_/node_modules/@vueuse/shared/index.mjs +29 -0
- package/es/types/utils.d.ts +3 -0
- package/lib/_virtual/_plugin-vue_export-helper.js +1 -1
- package/lib/_virtual/virtual_svg-icons-register.js +1 -1
- package/lib/assets/cover/base-ads.png.js +1 -0
- package/lib/assets/cover/base-multimodal.png.js +1 -0
- package/lib/assets/cover/base-studio.png.js +1 -0
- package/lib/assets/logo/logo-dark-full.svg.js +1 -0
- package/lib/assets/logo/logo-light-full.svg.js +1 -0
- package/lib/components/AppProvider/index.vue.js +1 -1
- package/lib/components/AppProvider/index.vue2.js +1 -1
- package/lib/components/BaseButton/index.vue.js +1 -1
- package/lib/components/BaseButton/index.vue2.js +1 -1
- package/lib/components/BaseDataTable/index.vue.js +1 -1
- package/lib/components/BaseDataTable/index.vue2.js +1 -1
- package/lib/components/BaseDialog/index.vue.js +1 -1
- package/lib/components/BaseDialog/index.vue2.js +1 -1
- package/lib/components/BaseDialog/options.js +1 -1
- package/lib/components/BaseInputNumber/index.vue.js +1 -1
- package/lib/components/BaseInputNumber/index.vue2.js +1 -1
- package/lib/components/BaseLayout/ASide/index.vue.js +1 -1
- package/lib/components/BaseLayout/ASide/index.vue2.js +1 -1
- package/lib/components/BaseLayout/AsideMenu/index.vue.d.ts +4 -0
- package/lib/components/BaseLayout/AsideMenu/index.vue.js +1 -0
- package/lib/components/BaseLayout/AsideMenu/index.vue2.js +1 -0
- package/lib/components/BaseLayout/Default/constants.d.ts +5 -0
- package/lib/components/BaseLayout/Default/constants.js +1 -0
- package/lib/components/BaseLayout/Default/hooks/useBaseLayoutContext.d.ts +3 -0
- package/lib/components/BaseLayout/Default/hooks/useBaseLayoutContext.js +1 -0
- package/lib/components/BaseLayout/Default/hooks/useLogo.d.ts +5 -0
- package/lib/components/BaseLayout/Default/hooks/useLogo.js +1 -0
- package/lib/components/BaseLayout/Default/index.vue.d.ts +65 -0
- package/lib/components/BaseLayout/Default/index.vue.js +1 -0
- package/lib/components/BaseLayout/Default/index.vue2.js +1 -0
- package/lib/components/BaseLayout/Default/layoutFooter/index.vue.d.ts +2 -0
- package/lib/components/BaseLayout/Default/layoutFooter/index.vue.js +1 -0
- package/lib/components/BaseLayout/Default/layoutHeader/action.vue.d.ts +2 -0
- package/lib/components/BaseLayout/Default/layoutHeader/action.vue.js +1 -0
- package/lib/components/BaseLayout/Default/layoutHeader/action.vue2.js +1 -0
- package/lib/components/BaseLayout/Default/layoutHeader/index.vue.d.ts +2 -0
- package/lib/components/BaseLayout/Default/layoutHeader/index.vue.js +1 -0
- package/lib/components/BaseLayout/Default/layoutHeader/index.vue2.js +1 -0
- package/lib/components/BaseLayout/Default/layoutHeader/title.vue.d.ts +2 -0
- package/lib/components/BaseLayout/Default/layoutHeader/title.vue.js +1 -0
- package/lib/components/BaseLayout/Default/layoutHeader/title.vue2.js +1 -0
- package/lib/components/BaseLayout/Default/layoutMenu/components/first-level-menu.vue.d.ts +32 -0
- package/lib/components/BaseLayout/Default/layoutMenu/components/first-level-menu.vue.js +1 -0
- package/lib/components/BaseLayout/Default/layoutMenu/components/first-level-menu.vue2.js +1 -0
- package/lib/components/BaseLayout/Default/layoutMenu/index.vue.d.ts +2 -0
- package/lib/components/BaseLayout/Default/layoutMenu/index.vue.js +1 -0
- package/lib/components/BaseLayout/Default/layoutMenu/index.vue2.js +1 -0
- package/lib/components/BaseLayout/Default/layoutMenu/modules/horizontalMenu.vue.d.ts +2 -0
- package/lib/components/BaseLayout/Default/layoutMenu/modules/horizontalMenu.vue.js +1 -0
- package/lib/components/BaseLayout/Default/layoutMenu/modules/horizontalMenu.vue2.js +1 -0
- package/lib/components/BaseLayout/Default/layoutMenu/modules/horizontalMixMenu.vue.d.ts +2 -0
- package/lib/components/BaseLayout/Default/layoutMenu/modules/horizontalMixMenu.vue.js +1 -0
- package/lib/components/BaseLayout/Default/layoutMenu/modules/horizontalMixMenu.vue2.js +1 -0
- package/lib/components/BaseLayout/Default/layoutMenu/modules/horizontalMixReversedMenu.vue.d.ts +2 -0
- package/lib/components/BaseLayout/Default/layoutMenu/modules/horizontalMixReversedMenu.vue.js +1 -0
- package/lib/components/BaseLayout/Default/layoutMenu/modules/horizontalMixReversedMenu.vue2.js +1 -0
- package/lib/components/BaseLayout/Default/layoutMenu/modules/verticalMenu.vue.d.ts +2 -0
- package/lib/components/BaseLayout/Default/layoutMenu/modules/verticalMenu.vue.js +1 -0
- package/lib/components/BaseLayout/Default/layoutMenu/modules/verticalMenu.vue2.js +1 -0
- package/lib/components/BaseLayout/Default/layoutMenu/modules/verticalMixMenu.vue.d.ts +2 -0
- package/lib/components/BaseLayout/Default/layoutMenu/modules/verticalMixMenu.vue.js +1 -0
- package/lib/components/BaseLayout/Default/layoutMenu/modules/verticalMixMenu.vue2.js +1 -0
- package/lib/components/BaseLayout/Default/layoutSlider/index.vue.d.ts +2 -0
- package/lib/components/BaseLayout/Default/layoutSlider/index.vue.js +1 -0
- package/lib/components/BaseLayout/Default/layoutSlider/index.vue2.js +1 -0
- package/lib/components/BaseLayout/Default/layoutTab/index.vue.d.ts +2 -0
- package/lib/components/BaseLayout/Default/layoutTab/index.vue.js +1 -0
- package/lib/components/BaseLayout/Default/options.d.ts +3 -0
- package/lib/components/BaseLayout/Default/options.js +1 -0
- package/lib/components/BaseLayout/Default/type.d.ts +41 -0
- package/lib/components/BaseLayout/Header/index.vue.d.ts +19 -0
- package/lib/components/BaseLayout/Header/index.vue.js +1 -0
- package/lib/components/BaseLayout/components/WrapContent.vue.d.ts +22 -0
- package/lib/components/BaseLayout/components/WrapContent.vue.js +1 -0
- package/lib/components/BaseLayout/components/WrapContent.vue2.js +1 -0
- package/lib/components/BaseLayout/components/WrapFooter.vue.d.ts +24 -0
- package/lib/components/BaseLayout/components/WrapFooter.vue.js +1 -0
- package/lib/components/BaseLayout/components/WrapFooter.vue2.js +1 -0
- package/lib/components/BaseLayout/components/WrapHeader.vue.d.ts +24 -0
- package/lib/components/BaseLayout/components/WrapHeader.vue.js +1 -0
- package/lib/components/BaseLayout/components/WrapHeader.vue2.js +1 -0
- package/lib/components/BaseLayout/components/WrapSlider.vue.d.ts +24 -0
- package/lib/components/BaseLayout/components/WrapSlider.vue.js +1 -0
- package/lib/components/BaseLayout/components/WrapSlider.vue2.js +1 -0
- package/lib/components/BaseLayout/components/WrapTab.vue.d.ts +24 -0
- package/lib/components/BaseLayout/components/WrapTab.vue.js +1 -0
- package/lib/components/BaseLayout/components/WrapTab.vue2.js +1 -0
- package/lib/components/BaseLayout/constants.d.ts +1 -0
- package/lib/components/BaseLayout/constants.js +1 -0
- package/lib/components/BaseLayout/index.d.ts +6 -0
- package/lib/components/BaseLayout/index.module.css.js +1 -0
- package/lib/components/BaseLayout/index.vue.d.ts +49 -0
- package/lib/components/BaseLayout/index.vue.js +1 -0
- package/lib/components/BaseLayout/index.vue2.js +1 -0
- package/lib/components/BaseLayout/layoutCssVar.d.ts +4 -0
- package/lib/components/BaseLayout/layoutCssVar.js +1 -0
- package/lib/components/BaseLayout/options.d.ts +2 -0
- package/lib/components/BaseLayout/options.js +1 -0
- package/lib/components/BaseLayout/type.d.ts +52 -0
- package/lib/components/BaseProductIntroduction/constants.d.ts +2 -0
- package/lib/components/BaseProductIntroduction/constants.js +1 -0
- package/lib/components/BaseProductIntroduction/cssVar.d.ts +15 -0
- package/lib/components/BaseProductIntroduction/cssVar.js +1 -0
- package/lib/components/BaseProductIntroduction/index.d.ts +1 -0
- package/lib/components/BaseProductIntroduction/index.vue.d.ts +6 -0
- package/lib/components/BaseProductIntroduction/index.vue.js +1 -0
- package/lib/components/BaseProductIntroduction/index.vue2.js +1 -0
- package/lib/components/BaseProductIntroduction/type.d.ts +5 -0
- package/lib/components/BaseProgress/index.js +1 -1
- package/lib/components/BaseRadio/index.vue.js +1 -1
- package/lib/components/BaseRadio/index.vue2.js +1 -1
- package/lib/components/BaseSelect/index.vue.js +1 -1
- package/lib/components/BaseSelect/index.vue3.js +1 -0
- package/lib/components/BaseSlider/index.vue.js +1 -1
- package/lib/components/BaseSlider/index.vue2.js +1 -1
- package/lib/components/BaseSwitch/index.vue.js +1 -1
- package/lib/components/BaseSwitch/index.vue2.js +1 -1
- package/lib/components/index.d.ts +1 -0
- package/lib/config/themes/color/dark.js +1 -1
- package/lib/config/themes/color/light.js +1 -1
- package/lib/config/themes/common/light.d.ts +2 -0
- package/lib/config/themes/common/light.js +1 -0
- package/lib/config/themes/components/alert/dark.js +1 -1
- package/lib/config/themes/components/alert/light.js +1 -1
- package/lib/config/themes/components/baseComponent/dark.js +1 -1
- package/lib/config/themes/components/baseComponent/light.js +1 -1
- package/lib/config/themes/components/button/common.js +1 -1
- package/lib/config/themes/components/button/dark.js +1 -1
- package/lib/config/themes/components/button/light.js +1 -1
- package/lib/config/themes/components/card/dark.js +1 -1
- package/lib/config/themes/components/card/light.js +1 -1
- package/lib/config/themes/components/charts/dark.js +1 -1
- package/lib/config/themes/components/charts/light.js +1 -1
- package/lib/config/themes/components/checkbox/dark.js +1 -1
- package/lib/config/themes/components/checkbox/light.js +1 -1
- package/lib/config/themes/components/dataTable/dark.js +1 -1
- package/lib/config/themes/components/dataTable/light.js +1 -1
- package/lib/config/themes/components/datePicker/dark.js +1 -1
- package/lib/config/themes/components/datePicker/light.js +1 -1
- package/lib/config/themes/components/dialog/dark.js +1 -1
- package/lib/config/themes/components/dialog/light.js +1 -1
- package/lib/config/themes/components/divider/light.d.ts +2 -0
- package/lib/config/themes/components/divider/light.js +1 -0
- package/lib/config/themes/components/dropdown/dark.js +1 -1
- package/lib/config/themes/components/dropdown/light.js +1 -1
- package/lib/config/themes/components/form/dark.js +1 -1
- package/lib/config/themes/components/form/light.js +1 -1
- package/lib/config/themes/components/input/common.js +1 -1
- package/lib/config/themes/components/input/dark.js +1 -1
- package/lib/config/themes/components/input/light.js +1 -1
- package/lib/config/themes/components/inputNumber/dark.js +1 -1
- package/lib/config/themes/components/inputNumber/light.js +1 -1
- package/lib/config/themes/components/layout/dark.d.ts +1 -0
- package/lib/config/themes/components/layout/dark.js +1 -1
- package/lib/config/themes/components/layout/light.d.ts +1 -0
- package/lib/config/themes/components/layout/light.js +1 -1
- package/lib/config/themes/components/menu/dark.js +1 -1
- package/lib/config/themes/components/menu/light.js +1 -1
- package/lib/config/themes/components/progress/dark.js +1 -1
- package/lib/config/themes/components/progress/light.js +1 -1
- package/lib/config/themes/components/radio/dark.js +1 -1
- package/lib/config/themes/components/radio/light.js +1 -1
- package/lib/config/themes/components/select/dark.js +1 -1
- package/lib/config/themes/components/select/light.js +1 -1
- package/lib/config/themes/components/slider/dark.js +1 -1
- package/lib/config/themes/components/slider/light.js +1 -1
- package/lib/config/themes/components/switch/dark.js +1 -1
- package/lib/config/themes/components/switch/light.js +1 -1
- package/lib/config/themes/components/tag/dark.js +1 -1
- package/lib/config/themes/components/tag/light.js +1 -1
- package/lib/config/themes/components/transfer/dark.js +1 -1
- package/lib/config/themes/components/transfer/light.js +1 -1
- package/lib/config/themes/index.js +1 -1
- package/lib/config/themes/light.js +1 -1
- package/lib/config/themes/token/dark.js +1 -1
- package/lib/config/themes/token/light.d.ts +2 -0
- package/lib/config/themes/token/light.js +1 -1
- package/lib/globalMethods/index.d.ts +2 -0
- package/lib/globalMethods/index.js +1 -1
- package/lib/globalMethods/modules/confirmTip.js +1 -1
- package/lib/globalMethods/modules/message.js +1 -1
- package/lib/hooks/useBoolean.d.ts +7 -0
- package/lib/hooks/useBoolean.js +1 -0
- package/lib/hooks/useContext.d.ts +6 -0
- package/lib/hooks/useContext.js +1 -0
- package/lib/hooks/useMenu.d.ts +34 -0
- package/lib/hooks/useMenu.js +1 -0
- package/lib/hooks/useNaiveConfigProvideContext.js +1 -1
- package/lib/index.css +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -1
- package/lib/node_modules/.pnpm/@vueuse_core@13.0.0_vue@3.5.13_typescript@5.7.2_/node_modules/@vueuse/core/index.js +1 -0
- package/lib/node_modules/.pnpm/@vueuse_shared@13.0.0_vue@3.5.13_typescript@5.7.2_/node_modules/@vueuse/shared/index.js +1 -0
- package/lib/types/utils.d.ts +3 -0
- package/package.json +1 -1
- package/readme.md +18 -19
- package/lib/components/BaseSelect/index.vue2.js +0 -1
- /package/es/components/{BaseSelect → BaseLayout/Default}/index.vue2.mjs +0 -0
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
function
|
|
4
|
-
|
|
1
|
+
import o from "./modules/message.mjs";
|
|
2
|
+
import s from "./modules/confirmTip.mjs";
|
|
3
|
+
function a(e) {
|
|
4
|
+
e.config.globalProperties.$message = o, e.config.globalProperties.$confirmTip = s;
|
|
5
5
|
}
|
|
6
6
|
export {
|
|
7
|
-
|
|
7
|
+
a as default,
|
|
8
|
+
s as useConfirmTip,
|
|
9
|
+
o as useMessage
|
|
8
10
|
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { ref as s } from "vue";
|
|
2
|
+
function r(t = !1) {
|
|
3
|
+
const o = s(t);
|
|
4
|
+
function e(l) {
|
|
5
|
+
o.value = l;
|
|
6
|
+
}
|
|
7
|
+
function n() {
|
|
8
|
+
e(!0);
|
|
9
|
+
}
|
|
10
|
+
function u() {
|
|
11
|
+
e(!1);
|
|
12
|
+
}
|
|
13
|
+
function f() {
|
|
14
|
+
e(!o.value);
|
|
15
|
+
}
|
|
16
|
+
return {
|
|
17
|
+
bool: o,
|
|
18
|
+
setBool: e,
|
|
19
|
+
setTrue: n,
|
|
20
|
+
setFalse: u,
|
|
21
|
+
toggle: f
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
export {
|
|
25
|
+
r as default
|
|
26
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { inject as i, provide as s } from "vue";
|
|
2
|
+
function j(n, e) {
|
|
3
|
+
const { useProvide: o, useInject: r } = f(n);
|
|
4
|
+
function t(...u) {
|
|
5
|
+
const c = e(...u);
|
|
6
|
+
return o(c);
|
|
7
|
+
}
|
|
8
|
+
return {
|
|
9
|
+
// 在父组件注册provide
|
|
10
|
+
setupStore: t,
|
|
11
|
+
// 在子组件使用
|
|
12
|
+
useStore: r
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
function f(n) {
|
|
16
|
+
const e = Symbol(n);
|
|
17
|
+
function o(t) {
|
|
18
|
+
return s(e, t), t;
|
|
19
|
+
}
|
|
20
|
+
function r() {
|
|
21
|
+
return i(e);
|
|
22
|
+
}
|
|
23
|
+
return {
|
|
24
|
+
useProvide: o,
|
|
25
|
+
useInject: r
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
export {
|
|
29
|
+
j as default
|
|
30
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { MenuOption } from 'naive-ui';
|
|
2
|
+
import { BaseDefaultLayoutProps, BaseMenuOptionType } from '../components/BaseLayout/Default/type';
|
|
3
|
+
export declare function useMenu(layoutConfig: BaseDefaultLayoutProps): {
|
|
4
|
+
selectedKey: import('vue').ComputedRef<string>;
|
|
5
|
+
renderIcon: (optionsOption: MenuOption) => string | number | boolean | void | import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
6
|
+
[key: string]: any;
|
|
7
|
+
}> | import('vue').VNodeArrayChildren | null;
|
|
8
|
+
};
|
|
9
|
+
export declare function useMixMenu(layoutConfig: BaseDefaultLayoutProps): {
|
|
10
|
+
allMenus: import('vue').ShallowRef<BaseMenuOptionType[], BaseMenuOptionType[]>;
|
|
11
|
+
firstLevelMenus: import('vue').ComputedRef<BaseMenuOptionType[]>;
|
|
12
|
+
childLevelMenus: import('vue').ComputedRef<BaseMenuOptionType[]>;
|
|
13
|
+
isActiveFirstLevelMenuHasChildren: import('vue').ComputedRef<boolean>;
|
|
14
|
+
activeFirstLevelMenuKey: import('vue').Ref<string, string>;
|
|
15
|
+
setActiveFirstLevelMenuKey: (key: string) => void;
|
|
16
|
+
getActiveFirstLevelMenuKey: () => void;
|
|
17
|
+
};
|
|
18
|
+
export declare const setupMixMenuContext: (layoutConfig: BaseDefaultLayoutProps) => {
|
|
19
|
+
allMenus: import('vue').ShallowRef<BaseMenuOptionType[], BaseMenuOptionType[]>;
|
|
20
|
+
firstLevelMenus: import('vue').ComputedRef<BaseMenuOptionType[]>;
|
|
21
|
+
childLevelMenus: import('vue').ComputedRef<BaseMenuOptionType[]>;
|
|
22
|
+
isActiveFirstLevelMenuHasChildren: import('vue').ComputedRef<boolean>;
|
|
23
|
+
activeFirstLevelMenuKey: import('vue').Ref<string, string>;
|
|
24
|
+
setActiveFirstLevelMenuKey: (key: string) => void;
|
|
25
|
+
getActiveFirstLevelMenuKey: () => void;
|
|
26
|
+
}, useMixMenuContext: () => {
|
|
27
|
+
allMenus: import('vue').ShallowRef<BaseMenuOptionType[], BaseMenuOptionType[]>;
|
|
28
|
+
firstLevelMenus: import('vue').ComputedRef<BaseMenuOptionType[]>;
|
|
29
|
+
childLevelMenus: import('vue').ComputedRef<BaseMenuOptionType[]>;
|
|
30
|
+
isActiveFirstLevelMenuHasChildren: import('vue').ComputedRef<boolean>;
|
|
31
|
+
activeFirstLevelMenuKey: import('vue').Ref<string, string>;
|
|
32
|
+
setActiveFirstLevelMenuKey: (key: string) => void;
|
|
33
|
+
getActiveFirstLevelMenuKey: () => void;
|
|
34
|
+
};
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import { computed as a, ref as d, shallowRef as M, watch as f } from "vue";
|
|
2
|
+
import h from "./useContext.mjs";
|
|
3
|
+
function L(s) {
|
|
4
|
+
const o = a(() => {
|
|
5
|
+
const { hideInMenu: t, activeMenu: u } = s.curRoute?.meta, n = s.curRoute?.name;
|
|
6
|
+
return (t ? u : n) || n;
|
|
7
|
+
}), c = a(() => {
|
|
8
|
+
const t = new Set(o.value.split("_"));
|
|
9
|
+
t.add(o.value);
|
|
10
|
+
const u = Array.from(t), n = [];
|
|
11
|
+
for (let r = 0; r < u.length; r++) {
|
|
12
|
+
const e = u[r], i = l(s.menuList, e);
|
|
13
|
+
i && n.push(i);
|
|
14
|
+
}
|
|
15
|
+
return n;
|
|
16
|
+
}), l = (t, u) => {
|
|
17
|
+
for (let n = 0; n < t.length; n++) {
|
|
18
|
+
const r = t[n];
|
|
19
|
+
if (r.key === u) return r;
|
|
20
|
+
const { children: e } = r;
|
|
21
|
+
if (!Array.isArray(e)) continue;
|
|
22
|
+
const i = l(e, u);
|
|
23
|
+
if (i) return i;
|
|
24
|
+
}
|
|
25
|
+
};
|
|
26
|
+
return {
|
|
27
|
+
selectedKey: o,
|
|
28
|
+
renderIcon: (t) => {
|
|
29
|
+
const u = c.value.map((e) => e.key).indexOf(t.key);
|
|
30
|
+
if (u < 0) {
|
|
31
|
+
const { icon: e } = t;
|
|
32
|
+
return e ? e() : void 0;
|
|
33
|
+
}
|
|
34
|
+
const { activeIcon: n, icon: r } = c.value[u];
|
|
35
|
+
return n ? n() : r ? r() : void 0;
|
|
36
|
+
}
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
function p(s) {
|
|
40
|
+
const { selectedKey: o } = L(s), c = d("");
|
|
41
|
+
function l(e) {
|
|
42
|
+
c.value = e;
|
|
43
|
+
}
|
|
44
|
+
function m() {
|
|
45
|
+
const [e] = o.value.split("_");
|
|
46
|
+
l(e);
|
|
47
|
+
}
|
|
48
|
+
const t = M(s.menuList), u = a(
|
|
49
|
+
() => s.menuList.map((e) => {
|
|
50
|
+
const { children: i, ...v } = e;
|
|
51
|
+
return v;
|
|
52
|
+
})
|
|
53
|
+
), n = a(
|
|
54
|
+
() => s.menuList.find((e) => e.key === c.value)?.children || []
|
|
55
|
+
), r = a(() => c.value ? !!t.value.find((i) => i.key === c.value)?.children?.length : !1);
|
|
56
|
+
return console.log(s.curRoute, "route.name"), f(
|
|
57
|
+
() => s.curRoute?.name,
|
|
58
|
+
() => {
|
|
59
|
+
m();
|
|
60
|
+
},
|
|
61
|
+
{ immediate: !0 }
|
|
62
|
+
), {
|
|
63
|
+
allMenus: t,
|
|
64
|
+
firstLevelMenus: u,
|
|
65
|
+
childLevelMenus: n,
|
|
66
|
+
isActiveFirstLevelMenuHasChildren: r,
|
|
67
|
+
activeFirstLevelMenuKey: c,
|
|
68
|
+
setActiveFirstLevelMenuKey: l,
|
|
69
|
+
getActiveFirstLevelMenuKey: m
|
|
70
|
+
};
|
|
71
|
+
}
|
|
72
|
+
const { setupStore: A, useStore: R } = h("mix-menu", p);
|
|
73
|
+
export {
|
|
74
|
+
A as setupMixMenuContext,
|
|
75
|
+
L as useMenu,
|
|
76
|
+
p as useMixMenu,
|
|
77
|
+
R as useMixMenuContext
|
|
78
|
+
};
|
package/es/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@charset "UTF-8";.n-steps.n-steps--vertical>.n-step>.n-step-indicator>.n-step-splitor{width:2px}.n-steps .n-step-splitor{height:2px}.n-popconfirm .n-popconfirm__action{display:flex;justify-content:center}.base-progress.n-progress.n-progress--dashboard{width:var(--n-circle-width)}.base-progress.n-progress.n-progress--dashboard .base-progress-dashboard-content{display:flex;flex-direction:column;align-items:center}.base-progress.n-progress.n-progress--dashboard .base-progress-dashboard-content-logo{display:flex;justify-content:center;align-items:center;border-radius:100%;background-color:var(--n-icon-color)}.base-progress.n-progress.n-progress--dashboard .base-progress-dashboard-content-title{font-size:var(--n-content-font-size);color:var(--n-text-color-circle)}.base-progress.n-progress.n-progress--dashboard .base-progress-dashboard-content-tip{text-align:center;font-size:var(--n-tip-font-size-circle);color:var(--n-tip-color-circle)}.n-base-select-menu .n-base-select-option--pending{color:var(--n-option-text-color-pressed)}.n-base-select-menu.n-base-select-menu--multiple .n-base-select-option.n-base-select-option--selected:before{background-color:#0000}.n-base-select-menu.n-base-select-menu--multiple .n-base-select-option.n-base-select-option--pending:before{background-color:var(--n-option-color-active)}/*! tailwindcss v4.0.17 | MIT License | https://tailwindcss.com */@layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:color-mix(in oklab,currentColor 50%,transparent)}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer components;@layer utilities{.visible{visibility:visible}.fixed{position:fixed}.flex{display:flex}.h-full{height:100%}.w-full{width:100%}.flex-1{flex:1}.transform{transform:var(--tw-rotate-x)var(--tw-rotate-y)var(--tw-rotate-z)var(--tw-skew-x)var(--tw-skew-y)}.cursor-pointer{cursor:pointer}.resize{resize:both}.justify-end{justify-content:flex-end}.gap-\[30px\]{gap:30px}.overflow-hidden{overflow:hidden}.border{border-style:var(--tw-border-style);border-width:1px}.text-\[18px\]{font-size:18px}.active\:scale-\[0\.95\]:active{scale:.95}}@property --tw-rotate-x{syntax:"*";inherits:false;initial-value:rotateX(0)}@property --tw-rotate-y{syntax:"*";inherits:false;initial-value:rotateY(0)}@property --tw-rotate-z{syntax:"*";inherits:false;initial-value:rotateZ(0)}@property --tw-skew-x{syntax:"*";inherits:false;initial-value:skewX(0)}@property --tw-skew-y{syntax:"*";inherits:false;initial-value:skewY(0)}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}.base-data-table[data-v-53c0929e]{display:flex;flex:1;overflow:hidden}.base-data-table-content.n-data-table[data-v-53c0929e] .n-data-table-th .n-data-table-th__title-wrapper .n-data-table-th__title{flex:none}.base-data-table-content.n-data-table[data-v-53c0929e] .n-data-table-th.n-data-table-th--filterable{display:flex}.base-data-table-content.n-data-table[data-v-53c0929e] .n-data-table-th .n-data-table-filter{position:relative;width:auto;margin-left:4px;background-color:transparent}.base-input-number[data-v-f500335a]{display:flex;align-items:center}.base-input-number.base-input-number--large .inner-controls>div[data-v-f500335a]{width:var(--n-input-number-inner-controls-width-large);height:var(--n-input-number-inner-controls-height-large);border-radius:var(--n-input-number-inner-controls-border-radius-large)}.base-input-number.base-input-number--medium .inner-controls>div[data-v-f500335a]{width:var(--n-input-number-inner-controls-width-medium);height:var(--n-input-number-inner-controls-height-medium);border-radius:var(--n-input-number-inner-controls-border-radius-medium)}.base-input-number.base-input-number--small .inner-controls>div[data-v-f500335a]{width:var(--n-input-number-inner-controls-width-small);height:var(--n-input-number-inner-controls-height-small);border-radius:var(--n-input-number-inner-controls-border-radius-small)}.base-input-number .inner-controls[data-v-f500335a]{display:flex;flex-direction:column}.base-input-number .inner-controls .add[data-v-f500335a]{margin-bottom:2px}.base-input-number .inner-controls .add[data-v-f500335a],.base-input-number .inner-controls .minus[data-v-f500335a]{background-color:var(--n-input-number-inner-controls-background);cursor:pointer;color:var(--n-input-number-controls-color);display:flex;justify-content:center;align-items:center}.base-input-number .inner-controls .add.is-disabled[data-v-f500335a],.base-input-number .inner-controls .minus.is-disabled[data-v-f500335a]{cursor:not-allowed;background-color:var(--n-input-number-inner-controls-background-disabled);color:var(--n-input-number-controls-color-disabled)}.base-input-number .inner-controls .add[data-v-f500335a]:hover,.base-input-number .inner-controls .minus[data-v-f500335a]:hover{scale:1.1}.base-input-number .minus-btn[data-v-f500335a],.base-input-number .add-btn[data-v-f500335a]{border-radius:10px;padding:0;width:var(--n-height)}.base-input-number .minus-btn[data-v-f500335a]{margin-right:4px}.base-input-number .add-btn[data-v-f500335a]{margin-left:4px}.base-layout-aside[data-v-f3d4084e]{background-color:var(--n-color);padding:24px 0}.base-layout-aside-logo-wrap[data-v-f3d4084e]{display:flex;justify-content:center;color:var(--n-icon-color);padding-bottom:32px}.base-layout-aside[data-v-f3d4084e] .n-menu.n-menu--vertical.n-menu--collapsed .n-menu-item{height:56px}.base-layout-aside[data-v-f3d4084e] .n-menu.n-menu--vertical.n-menu--collapsed .n-menu-item-content{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;padding:0 20px!important;overflow:hidden}.base-layout-aside[data-v-f3d4084e] .n-menu.n-menu--vertical.n-menu--collapsed .n-menu-item-content:before{left:16px;right:16px}.base-layout-aside[data-v-f3d4084e] .n-menu.n-menu--vertical.n-menu--collapsed .n-menu-item-content__icon{margin:0!important}.base-layout-aside[data-v-f3d4084e] .n-menu.n-menu--vertical.n-menu--collapsed .n-menu-item-content-header{opacity:1;width:100%;overflow:hidden;text-align:center}.base-layout-aside[data-v-f3d4084e] .n-menu.n-menu--vertical.n-menu--collapsed .n-menu-item-content__arrow{display:none}.base-radio.n-radio--disabled.n-radio--checked[data-v-2b3eac12] .n-radio__dot--checked{box-shadow:var(--n-box-shadow-active-disabled);background-color:var(--n-color-active-disabled)}.base-slider[data-v-9881a15b]{display:flex;align-items:center}.base-slider[data-v-9881a15b] .n-slider-handle{border:var(--n-slider-handler-border)}.base-slider .slider-content[data-v-9881a15b]{flex:1;position:relative}.base-slider .slider-content .extreme-value-text[data-v-9881a15b]{position:absolute;display:flex;justify-content:space-between;align-items:center;width:100%;font-size:12px;color:var(--n-slider-extreme-value-text-color)}.base-slider .slider-input[data-v-9881a15b]{margin-left:16px;display:flex;align-items:center}.base-slider .slider-input .line[data-v-9881a15b]{margin:0 8px;width:10px;height:1px;background:var(--n-slider-range-input-line-color)}.base-slider .slider-input[data-v-9881a15b] .n-input-number{width:var(--n-slider-input-width)}.base-switch[data-v-b0c0e5fe] .n-switch__button{box-shadow:0 5px 5px -3px #0000001a,0 8px 10px 1px #0000000f,0 3px 14px 2px #0000000d}.base-switch[data-v-b0c0e5fe] .n-switch__rail{opacity:1}.base-switch.n-switch--disabled[data-v-b0c0e5fe] .n-switch__rail{background-color:var(--n-rail-color-disabled)}.base-switch.n-switch--disabled[data-v-b0c0e5fe] .n-switch__rail .n-switch__button{background-color:var(--n-button-color-disabled)}.base-switch.n-switch--disabled.n-switch--active[data-v-b0c0e5fe] .n-switch__rail{background-color:var(--n-rail-color-active-disabled)}.base-switch.n-switch--disabled.n-switch--active[data-v-b0c0e5fe] .n-switch__rail .n-switch__button{background-color:var(--n-button-color-active-disabled)}
|
|
1
|
+
@charset "UTF-8";.n-steps.n-steps--vertical>.n-step>.n-step-indicator>.n-step-splitor{width:2px}.n-steps .n-step-splitor{height:2px}.n-popconfirm .n-popconfirm__action{display:flex;justify-content:center}.base-progress.n-progress.n-progress--dashboard{width:var(--n-circle-width)}.base-progress.n-progress.n-progress--dashboard .base-progress-dashboard-content{display:flex;flex-direction:column;align-items:center}.base-progress.n-progress.n-progress--dashboard .base-progress-dashboard-content-logo{display:flex;justify-content:center;align-items:center;border-radius:100%;background-color:var(--n-icon-color)}.base-progress.n-progress.n-progress--dashboard .base-progress-dashboard-content-title{font-size:var(--n-content-font-size);color:var(--n-text-color-circle)}.base-progress.n-progress.n-progress--dashboard .base-progress-dashboard-content-tip{text-align:center;font-size:var(--n-tip-font-size-circle);color:var(--n-tip-color-circle)}/*! tailwindcss v4.0.17 | MIT License | https://tailwindcss.com */@layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--spacing:.25rem;--font-weight-bold:700;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:color-mix(in oklab,currentColor 50%,transparent)}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer components;@layer utilities{.visible{visibility:visible}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.top-0{top:calc(var(--spacing)*0)}.left-0{left:calc(var(--spacing)*0)}.mx-\[4px\]{margin-inline:4px}.mb-\[6px\]{margin-bottom:6px}.flex{display:flex}.h-full{height:100%}.w-full{width:100%}.flex-1{flex:1}.flex-shrink{flex-shrink:1}.flex-shrink-0{flex-shrink:0}.transform{transform:var(--tw-rotate-x)var(--tw-rotate-y)var(--tw-rotate-z)var(--tw-skew-x)var(--tw-skew-y)}.cursor-pointer{cursor:pointer}.resize{resize:both}.justify-between{justify-content:space-between}.justify-end{justify-content:flex-end}.gap-\[30px\]{gap:30px}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.rounded-\[8px\]{border-radius:8px}.border{border-style:var(--tw-border-style);border-width:1px}.bg-transparent{background-color:#0000}.px-\[4px\]{padding-inline:4px}.px-\[12px\]{padding-inline:12px}.px-\[16px\]{padding-inline:16px}.py-\[8px\]{padding-block:8px}.pl-\[16px\]{padding-left:16px}.text-center{text-align:center}.\!text-\[16px\]{font-size:16px!important}.text-\[12px\]{font-size:12px}.text-\[18px\]{font-size:18px}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.whitespace-nowrap{white-space:nowrap}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-300{--tw-duration:.3s;transition-duration:.3s}@media (hover:hover){.hover\:bg-\[rgba\(0\,0\,0\,0\.08\)\]:hover{background-color:#00000014}}.active\:scale-\[0\.95\]:active{scale:.95}}@property --tw-rotate-x{syntax:"*";inherits:false;initial-value:rotateX(0)}@property --tw-rotate-y{syntax:"*";inherits:false;initial-value:rotateY(0)}@property --tw-rotate-z{syntax:"*";inherits:false;initial-value:rotateZ(0)}@property --tw-skew-x{syntax:"*";inherits:false;initial-value:skewX(0)}@property --tw-skew-y{syntax:"*";inherits:false;initial-value:skewY(0)}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}.base-data-table[data-v-69c70a1c]{display:flex;flex:1;overflow:hidden}.base-data-table-content.n-data-table[data-v-69c70a1c] .n-data-table-th .n-data-table-th__title-wrapper .n-data-table-th__title{flex:none}.base-data-table-content.n-data-table[data-v-69c70a1c] .n-data-table-th.n-data-table-th--filterable{display:flex}.base-data-table-content.n-data-table[data-v-69c70a1c] .n-data-table-th .n-data-table-filter{position:relative;width:auto;margin-left:4px;background-color:transparent}.base-data-table-content.n-data-table[data-v-69c70a1c] .n-data-table-tr td:first-of-type{border-top-left-radius:10px;border-bottom-left-radius:10px}.base-data-table-content.n-data-table[data-v-69c70a1c] .n-data-table-tr td:last-of-type{border-top-right-radius:10px;border-bottom-right-radius:10px}.base-data-table-content.n-data-table[data-v-69c70a1c] .n-data-table-tr.n-data-table-tr--striped{background-color:#0000}.base-input-number[data-v-f500335a]{display:flex;align-items:center}.base-input-number.base-input-number--large .inner-controls>div[data-v-f500335a]{width:var(--n-input-number-inner-controls-width-large);height:var(--n-input-number-inner-controls-height-large);border-radius:var(--n-input-number-inner-controls-border-radius-large)}.base-input-number.base-input-number--medium .inner-controls>div[data-v-f500335a]{width:var(--n-input-number-inner-controls-width-medium);height:var(--n-input-number-inner-controls-height-medium);border-radius:var(--n-input-number-inner-controls-border-radius-medium)}.base-input-number.base-input-number--small .inner-controls>div[data-v-f500335a]{width:var(--n-input-number-inner-controls-width-small);height:var(--n-input-number-inner-controls-height-small);border-radius:var(--n-input-number-inner-controls-border-radius-small)}.base-input-number .inner-controls[data-v-f500335a]{display:flex;flex-direction:column}.base-input-number .inner-controls .add[data-v-f500335a]{margin-bottom:2px}.base-input-number .inner-controls .add[data-v-f500335a],.base-input-number .inner-controls .minus[data-v-f500335a]{background-color:var(--n-input-number-inner-controls-background);cursor:pointer;color:var(--n-input-number-controls-color);display:flex;justify-content:center;align-items:center}.base-input-number .inner-controls .add.is-disabled[data-v-f500335a],.base-input-number .inner-controls .minus.is-disabled[data-v-f500335a]{cursor:not-allowed;background-color:var(--n-input-number-inner-controls-background-disabled);color:var(--n-input-number-controls-color-disabled)}.base-input-number .inner-controls .add[data-v-f500335a]:hover,.base-input-number .inner-controls .minus[data-v-f500335a]:hover{scale:1.1}.base-input-number .minus-btn[data-v-f500335a],.base-input-number .add-btn[data-v-f500335a]{border-radius:10px;padding:0;width:var(--n-height)}.base-input-number .minus-btn[data-v-f500335a]{margin-right:4px}.base-input-number .add-btn[data-v-f500335a]{margin-left:4px}._layout-header_11xy9_1,._layout-header-placement_11xy9_2{height:var(--layout-header-height)}._layout-header_11xy9_1{z-index:var(--layout-header-z-index)}._layout-header_11xy9_1._layout-header-is-fixed_11xy9_10{top:0}._layout-header_11xy9_1._layout-header-is-fixed_11xy9_10,._layout-tab_11xy9_14._layout-tab-is-fixed_11xy9_14{position:absolute;left:0;width:100%}._layout-header-placement_11xy9_2,._layout-tab-placement_11xy9_20{display:flex;flex-shrink:0;overflow:hidden}._layout-tab_11xy9_14{top:var(--layout-header-height);z-index:var(--layout-tab-z-index)}._layout-tab_11xy9_14,._layout-tab-placement_11xy9_20{height:var(--layout-tab-height)}._layout-content_11xy9_35{display:flex;flex-direction:column;flex-grow:1}._layout-slider_11xy9_41{position:absolute;top:0;left:0;height:100%}._layout-slider-full_11xy9_48,._layout-slider-collapse_11xy9_48{z-index:var(--layout-slider-z-index)}._layout-slider-full_11xy9_48{width:var(--layout-slider-width);min-width:var(--layout-slider-width);max-width:var(--layout-slider-width)}._layout-slider-collapse_11xy9_48{width:var(--layout-slider-collapse-width);min-width:var(--layout-slider-collapse-width);max-width:var(--layout-slider-collapse-width)}._slider-padding-top_11xy9_64{padding-top:var(--layout-header-height)}._slider-padding-bottom_11xy9_68{padding-bottom:var(--layout-footer-height)}._layout-footer_11xy9_72,._layout-footer-placement_11xy9_72{height:var(--layout-footer-height);min-height:var(--layout-footer-height)}._layout-footer_11xy9_72{z-index:var(--layout-footer-z-index)}._layout-footer-placement_11xy9_72{flex-shrink:0;overflow:hidden}._layout-footer-fixed_11xy9_86{position:absolute;bottom:0;left:0;width:100%;flex-shrink:0}._left-gap-full_11xy9_94{padding-left:var(--layout-slider-width)}._left-gap-collapsed_11xy9_98{padding-left:var(--layout-slider-collapse-width)}._overflow-y-auto_11xy9_102{overflow-y:auto}._layout-transition-all_11xy9_106{transition:all ease-in .3s}.layout-header[data-v-536ed35a]{display:flex;flex-shrink:0}.layout-material[data-v-6b618cca]{position:relative;height:100%;width:100%}.layout-material .layout-content[data-v-6b618cca]{height:100%;width:100%;display:flex;flex-direction:column}.base-layout-aside[data-v-5c4a877a]{background-color:var(--n-color)}.base-layout-aside-logo-wrap[data-v-5c4a877a]{display:flex;justify-content:center;color:var(--n-icon-color)}.base-aside-menu[data-v-0c6c1552] .n-menu-item-content.n-menu-item-content--child-active:before{background-color:var(--n-item-color-active)}.base-aside-menu[data-v-0c6c1552] .n-menu-item-content.n-menu-item-content--child-active .n-menu-item-content-header{color:var(--n-item-text-color-active)}.base-aside-menu[data-v-0c6c1552] .n-menu-item-content.n-menu-item-content--child-active:hover .n-menu-item-content-header{color:var(--n-item-text-color-active-hover)}.base-aside-menu[data-v-0c6c1552] .n-submenu-children .n-menu-item-content:after{height:100%;width:1.5px;content:"";background-color:var(--n-item-text-color-child);margin-left:var(--n-side-menu-bar);margin-right:var(--n-side-menu-indent)}.base-aside-menu[data-v-0c6c1552] .n-submenu-children .n-menu-item-content.n-menu-item-content--selected:before{background-color:#0000}.base-aside-menu[data-v-0c6c1552] .n-submenu-children .n-menu-item-content.n-menu-item-content--selected .n-menu-item-content-header{color:var(--n-item-text-color-child-active)}.base-aside-menu[data-v-0c6c1552] .n-submenu-children .n-menu-item-content.n-menu-item-content--selected:after{width:2px;background-color:var(--n-item-text-color-child-active)}.base-aside-menu[data-v-0c6c1552] .n-submenu-children .n-menu-item-content:not(.n-menu-item-content--disabled):hover .n-menu-item-content-header{color:var(--n-item-text-color-child-active-hover)}.base-layout-header[data-v-1e399468]{display:flex;align-items:center}.product-introduction-trigger[data-v-e7dab024]{padding:0 4px}.base-product-introduction-panel-popover{height:620px;background-color:var(--base-color)}.base-product-introduction-panel{padding:32px}.base-product-introduction-panel>.header{display:flex;justify-content:space-between;line-height:16px;color:var(--base-text-color)}.base-product-introduction-panel>.header svg:hover{cursor:pointer}.base-product-introduction-panel>.content-wrap{margin-top:24px}.base-product-introduction-panel .content-item{margin-bottom:48px}.base-product-introduction-panel .content-item:last-of-type{margin-bottom:0}.base-product-introduction-panel .content-item-header{display:grid;grid-template-columns:auto 1fr;grid-template-rows:1fr 1fr;width:100%;overflow:hidden;height:40px;column-gap:8px}.base-product-introduction-panel .content-item-header .icon{display:flex;align-items:center;grid-column:1;grid-row:1/3}.base-product-introduction-panel .content-item-header .title{grid-column:2;grid-row:1;font-size:16px;font-weight:500;line-height:22px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--base-title-color)}.base-product-introduction-panel .content-item-header .description{grid-column:2;grid-row:2;font-size:12px;line-height:16px;height:16px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--base-text-color)}.base-product-introduction-panel .content-child-wrap{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;overflow:hidden;margin-top:12px}.base-product-introduction-panel .content-child-wrap .n-card{padding:12px;background-color:var(--n-color)}.base-product-introduction-panel .content-child-wrap .n-card:hover{border-color:var(--base-card-border-hover-color)}.base-product-introduction-panel .content-child-wrap .n-card-cover{border-radius:5px}.base-product-introduction-panel .content-child-wrap .n-card-header{padding:12px 0 0;line-height:20px}.base-product-introduction-panel .content-child-wrap .n-card__content{padding:8px 0 0;line-height:16px;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:5;overflow:hidden}.base-product-introduction-panel .content-child-wrap .n-card__content:hover .to-use{height:48px}.base-product-introduction-panel .content-child-wrap .n-card .to-use{display:flex;justify-content:center;align-items:center;position:absolute;bottom:0;left:0;right:0;height:0;background-color:var(--base-color);border-radius:0 0 10px 10px;overflow:hidden;transition:height .3s}.base-layout-header-title-container[data-v-4b7a540f]{display:flex;align-items:center;padding-left:20px}.base-layout-header-title-container[data-v-4b7a540f] .n-divider{font-size:24px;margin:0 16px}.base-layout-header-action-container[data-v-cd49cd7d]{display:flex;margin-right:24px}.base-layout-header-action-container[data-v-cd49cd7d]>.n-button{padding:0 8px;margin-right:12px}.base-layout-header-action-container .user-trigger .name[data-v-cd49cd7d]{margin-left:6px}.base-radio.n-radio--disabled.n-radio--checked[data-v-2b3eac12] .n-radio__dot--checked{box-shadow:var(--n-box-shadow-active-disabled);background-color:var(--n-color-active-disabled)}.base-select-menu .n-base-select-option--pending{color:var(--n-option-text-color-pressed)}.base-select-menu.n-base-select-menu.n-base-select-menu--multiple .n-base-select-option.n-base-select-option--selected:before{background-color:#0000}.base-select-menu.n-base-select-menu.n-base-select-menu--multiple .n-base-select-option.n-base-select-option--pending:before{background-color:var(--n-option-color-active)}.base-slider[data-v-9881a15b]{display:flex;align-items:center}.base-slider[data-v-9881a15b] .n-slider-handle{border:var(--n-slider-handler-border)}.base-slider .slider-content[data-v-9881a15b]{flex:1;position:relative}.base-slider .slider-content .extreme-value-text[data-v-9881a15b]{position:absolute;display:flex;justify-content:space-between;align-items:center;width:100%;font-size:12px;color:var(--n-slider-extreme-value-text-color)}.base-slider .slider-input[data-v-9881a15b]{margin-left:16px;display:flex;align-items:center}.base-slider .slider-input .line[data-v-9881a15b]{margin:0 8px;width:10px;height:1px;background:var(--n-slider-range-input-line-color)}.base-slider .slider-input[data-v-9881a15b] .n-input-number{width:var(--n-slider-input-width)}.base-switch[data-v-b0c0e5fe] .n-switch__button{box-shadow:0 5px 5px -3px #0000001a,0 8px 10px 1px #0000000f,0 3px 14px 2px #0000000d}.base-switch[data-v-b0c0e5fe] .n-switch__rail{opacity:1}.base-switch.n-switch--disabled[data-v-b0c0e5fe] .n-switch__rail{background-color:var(--n-rail-color-disabled)}.base-switch.n-switch--disabled[data-v-b0c0e5fe] .n-switch__rail .n-switch__button{background-color:var(--n-button-color-disabled)}.base-switch.n-switch--disabled.n-switch--active[data-v-b0c0e5fe] .n-switch__rail{background-color:var(--n-rail-color-active-disabled)}.base-switch.n-switch--disabled.n-switch--active[data-v-b0c0e5fe] .n-switch__rail .n-switch__button{background-color:var(--n-button-color-active-disabled)}.selected-mix-menu[data-v-937ba79c]{background-color:var(--v6a6cfcc8)}
|
package/es/index.d.ts
CHANGED
package/es/index.mjs
CHANGED
|
@@ -1,47 +1,62 @@
|
|
|
1
1
|
import "./_virtual/virtual_svg-icons-register.mjs";
|
|
2
2
|
/* empty css */
|
|
3
3
|
/* empty css */
|
|
4
|
-
import { default as
|
|
4
|
+
import { default as s } from "./components/AppProvider/index.vue.mjs";
|
|
5
5
|
import { default as m } from "./components/BaseButton/index.vue.mjs";
|
|
6
|
-
import { default as
|
|
6
|
+
import { default as u } from "./components/BaseDataTable/index.vue.mjs";
|
|
7
7
|
import { default as x } from "./components/BaseDialog/index.vue.mjs";
|
|
8
|
-
import { default as
|
|
9
|
-
import { default as
|
|
10
|
-
import { default as
|
|
11
|
-
import { default as k } from "./components/
|
|
12
|
-
import { default as
|
|
13
|
-
import { default as D } from "./components/
|
|
14
|
-
import { default as
|
|
15
|
-
import {
|
|
16
|
-
import { default as
|
|
17
|
-
import { default as O } from "./
|
|
18
|
-
|
|
19
|
-
import { default as
|
|
20
|
-
import { default as
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
8
|
+
import { default as B } from "./components/BaseInputNumber/index.vue.mjs";
|
|
9
|
+
import { default as n } from "./components/BaseLayout/index.vue.mjs";
|
|
10
|
+
import { default as T } from "./components/BaseLayout/ASide/index.vue.mjs";
|
|
11
|
+
import { default as k } from "./components/BaseLayout/AsideMenu/index.vue.mjs";
|
|
12
|
+
import { default as L } from "./components/BaseLayout/Header/index.vue.mjs";
|
|
13
|
+
import { default as D } from "./components/BaseLayout/Default/index.vue.mjs";
|
|
14
|
+
import { default as b } from "./components/BaseRadio/index.vue.mjs";
|
|
15
|
+
import { default as C } from "./components/BaseProductIntroduction/index.vue.mjs";
|
|
16
|
+
import { default as M } from "./components/BaseProgress/index.mjs";
|
|
17
|
+
import { default as O } from "./components/BaseSelect/index.vue.mjs";
|
|
18
|
+
/* empty css */
|
|
19
|
+
import { default as w } from "./components/BaseSlider/index.vue.mjs";
|
|
20
|
+
import { default as H } from "./components/BaseSwitch/index.vue.mjs";
|
|
21
|
+
import { configProviderInjectionKey as N } from "./config/themes/index.mjs";
|
|
22
|
+
import { default as q } from "./globalMethods/index.mjs";
|
|
23
|
+
import { default as E } from "./config/themes/token/dark.mjs";
|
|
24
|
+
import { default as J } from "./config/themes/token/light.mjs";
|
|
25
|
+
import { default as U } from "./config/themes/color/dark.mjs";
|
|
26
|
+
import { default as W } from "./config/themes/color/light.mjs";
|
|
27
|
+
import { default as Y } from "./globalMethods/modules/message.mjs";
|
|
28
|
+
import { default as _ } from "./globalMethods/modules/confirmTip.mjs";
|
|
29
|
+
import { lightThemeOverrides as ee } from "./config/themes/light.mjs";
|
|
30
|
+
import { darkThemeOverrides as ae } from "./config/themes/dark.mjs";
|
|
31
|
+
import { ChartsThemeDark as te } from "./config/themes/components/charts/dark.mjs";
|
|
32
|
+
import { ChartsThemeLight as se } from "./config/themes/components/charts/light.mjs";
|
|
25
33
|
export {
|
|
26
|
-
|
|
34
|
+
s as AppProvider,
|
|
35
|
+
k as BaseAsideMenu,
|
|
27
36
|
m as BaseButton,
|
|
28
|
-
|
|
37
|
+
u as BaseDataTable,
|
|
38
|
+
D as BaseDefaultLayout,
|
|
29
39
|
x as BaseDialog,
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
40
|
+
B as BaseInputNumber,
|
|
41
|
+
n as BaseLayout,
|
|
42
|
+
T as BaseLayoutAside,
|
|
43
|
+
L as BaseLayoutHeader,
|
|
44
|
+
C as BaseProductIntroduction,
|
|
45
|
+
M as BaseProgress,
|
|
46
|
+
b as BaseRadio,
|
|
47
|
+
O as BaseSelect,
|
|
48
|
+
w as BaseSlider,
|
|
49
|
+
H as BaseSwitch,
|
|
50
|
+
te as ChartsThemeDark,
|
|
51
|
+
se as ChartsThemeLight,
|
|
52
|
+
N as configProviderInjectionKey,
|
|
53
|
+
U as darkBase,
|
|
54
|
+
ae as darkThemeOverrides,
|
|
55
|
+
E as darkToken,
|
|
56
|
+
W as lightBase,
|
|
57
|
+
ee as lightThemeOverrides,
|
|
58
|
+
J as lightToken,
|
|
59
|
+
q as registerGlobalMethods,
|
|
60
|
+
_ as useConfirmTip,
|
|
61
|
+
Y as useMessage
|
|
47
62
|
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { makeDestructurable as p, camelize as f } from "../../../../@vueuse_shared@13.0.0_vue@3.5.13_typescript@5.7.2_/node_modules/@vueuse/shared/index.mjs";
|
|
2
|
+
import { shallowRef as d, defineComponent as i } from "vue";
|
|
3
|
+
function h(r = {}) {
|
|
4
|
+
const {
|
|
5
|
+
inheritAttrs: t = !0
|
|
6
|
+
} = r, e = d(), l = /* @__PURE__ */ i({
|
|
7
|
+
setup(s, { slots: o }) {
|
|
8
|
+
return () => {
|
|
9
|
+
e.value = o.default;
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
}), u = /* @__PURE__ */ i({
|
|
13
|
+
inheritAttrs: t,
|
|
14
|
+
props: r.props,
|
|
15
|
+
setup(s, { attrs: o, slots: c }) {
|
|
16
|
+
return () => {
|
|
17
|
+
var a;
|
|
18
|
+
if (!e.value && process.env.NODE_ENV !== "production")
|
|
19
|
+
throw new Error("[VueUse] Failed to find the definition of reusable template");
|
|
20
|
+
const n = (a = e.value) == null ? void 0 : a.call(e, {
|
|
21
|
+
...r.props == null ? m(o) : s,
|
|
22
|
+
$slots: c
|
|
23
|
+
});
|
|
24
|
+
return t && n?.length === 1 ? n[0] : n;
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
});
|
|
28
|
+
return p(
|
|
29
|
+
{ define: l, reuse: u },
|
|
30
|
+
[l, u]
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
function m(r) {
|
|
34
|
+
const t = {};
|
|
35
|
+
for (const e in r)
|
|
36
|
+
t[f(e)] = r[e];
|
|
37
|
+
return t;
|
|
38
|
+
}
|
|
39
|
+
export {
|
|
40
|
+
f as camelize,
|
|
41
|
+
h as createReusableTemplate,
|
|
42
|
+
p as makeDestructurable
|
|
43
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import "vue";
|
|
2
|
+
function i(t, n) {
|
|
3
|
+
if (typeof Symbol < "u") {
|
|
4
|
+
const e = { ...t };
|
|
5
|
+
return Object.defineProperty(e, Symbol.iterator, {
|
|
6
|
+
enumerable: !1,
|
|
7
|
+
value() {
|
|
8
|
+
let o = 0;
|
|
9
|
+
return {
|
|
10
|
+
next: () => ({
|
|
11
|
+
value: n[o++],
|
|
12
|
+
done: o > n.length
|
|
13
|
+
})
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
}), e;
|
|
17
|
+
} else
|
|
18
|
+
return Object.assign([...n], t);
|
|
19
|
+
}
|
|
20
|
+
typeof WorkerGlobalScope < "u" && globalThis instanceof WorkerGlobalScope;
|
|
21
|
+
function c(t) {
|
|
22
|
+
const n = /* @__PURE__ */ Object.create(null);
|
|
23
|
+
return (e) => n[e] || (n[e] = t(e));
|
|
24
|
+
}
|
|
25
|
+
const r = /-(\w)/g, a = c((t) => t.replace(r, (n, e) => e ? e.toUpperCase() : ""));
|
|
26
|
+
export {
|
|
27
|
+
a as camelize,
|
|
28
|
+
i as makeDestructurable
|
|
29
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";const
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const u=(e,o)=>{const t=e.__vccOpts||e;for(const[r,s]of o)t[r]=s;return t};exports.default=u;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";if(typeof window<"u"){let a=function(){var l=document.body,o=document.getElementById("__BASE6_UI_SVG_ICON_LOCAL__");o||(o=document.createElementNS("http://www.w3.org/2000/svg","svg"),o.style.position="absolute",o.style.width="0",o.style.height="0",o.id="__BASE6_UI_SVG_ICON_LOCAL__",o.setAttribute("xmlns","http://www.w3.org/2000/svg"),o.setAttribute("xmlns:link","http://www.w3.org/1999/xlink")),o.innerHTML='<symbol class="icon" viewBox="0 0 1024 1024" id="icon-add"><path d="M480 544v288h64V544h288v-64H544V192h-64v288H192v64h288z" /></symbol><symbol fill="none" viewBox="0 0 48 48" id="icon-logo"><rect width="48" height="48" rx="13.333" fill="currentColor" /><path d="M33.6 35.228a.6.6 0 0 1-.497.262h-3.97a.6.6 0 0 1-.497-.937l4.91-7.232a.6.6 0 0 0-.497-.937H10.6a.6.6 0 0 1-.6-.6v-3.347a.6.6 0 0 1 .6-.6h22.6a.6.6 0 0 0 .497-.937l-5.061-7.453a.6.6 0 0 1 .496-.937h3.971a.6.6 0 0 1 .496.263l7.398 10.89a.6.6 0 0 1 0 .674l-7.398 10.89Zm-9.842-16.215a.6.6 0 0 1-.49-.256l-1.001-1.426a.6.6 0 0 0-.491-.255H10.6a.6.6 0 0 1-.6-.6V13.11a.6.6 0 0 1 .6-.6h13.402a.6.6 0 0 1 .491.256l3.713 5.303a.6.6 0 0 1-.491.944h-3.957Zm-.49 10.23a.6.6 0 0 1 .49-.256h3.957a.6.6 0 0 1 .491.945l-3.713 5.303a.6.6 0 0 1-.491.255H10.6a.6.6 0 0 1-.6-.6v-3.366a.6.6 0 0 1 .6-.6h11.176a.6.6 0 0 0 .491-.255l1-1.426Z" fill="#fff" /></symbol><symbol fill="none" viewBox="0 0 25 25" id="icon-progress-default"><path d="M4.69 21.109v-5.845a.819.819 0 0 1 1.636 0v5.845a.818.818 0 1 1-1.636 0Zm4.675 0v-9.351a.819.819 0 0 1 1.637 0v9.35a.818.818 0 0 1-1.637 0Zm4.675 0v-5.845a.818.818 0 0 1 1.637 0v5.845a.818.818 0 0 1-1.636 0Zm4.676 0v-9.351a.818.818 0 0 1 1.636 0v9.35a.818.818 0 0 1-1.636 0ZM20.19 4.106a.819.819 0 0 1 1.023 1.278L15.37 10.06a.818.818 0 0 1-1.002.014l-4.235-3.176-5.373 3.225a.819.819 0 0 1-.841-1.404l5.843-3.506.11-.056a.819.819 0 0 1 .802.102l4.168 3.126 5.35-4.28Z" fill="#fff" /></symbol><symbol class="icon" viewBox="0 0 1024 1024" id="icon-arrow-down"><path d="m512 594.752 233.344-233.408 45.312 45.312L512 685.248 233.344 406.656l45.312-45.312L512 594.752z" /></symbol><symbol class="icon" viewBox="0 0 1024 1024" id="icon-arrow-top"><path d="m512 429.248 233.344 233.408 45.248-45.312L512 338.752 233.344 617.344l45.312 45.312L512 429.248z" /></symbol><symbol class="icon" viewBox="0 0 1024 1024" id="icon-operate-add"><path d="M480 544v288h64V544h288v-64H544V192h-64v288H192v64h288z" /></symbol><symbol class="icon" viewBox="0 0 1024 1024" id="icon-operate-close"><path d="m300.8 240.448 211.2 211.2 211.2-211.2 60.352 60.352-211.2 211.2 211.2 211.2-60.352 60.352-211.2-211.2-211.2 211.2-60.288-60.352 211.2-211.2-211.2-211.2 60.352-60.352z" /></symbol><symbol class="icon" viewBox="0 0 1024 1024" id="icon-operate-minus"><path d="M832 544H192v-64h640v64z" /></symbol>',l.insertBefore(o,l.lastChild)};document.readyState==="loading"?document.addEventListener("DOMContentLoaded",a):a()}
|
|
1
|
+
"use strict";if(typeof window<"u"){let l=function(){var i=document.body,o=document.getElementById("__BASE6_UI_SVG_ICON_LOCAL__");o||(o=document.createElementNS("http://www.w3.org/2000/svg","svg"),o.style.position="absolute",o.style.width="0",o.style.height="0",o.id="__BASE6_UI_SVG_ICON_LOCAL__",o.setAttribute("xmlns","http://www.w3.org/2000/svg"),o.setAttribute("xmlns:link","http://www.w3.org/1999/xlink")),o.innerHTML='<symbol class="icon" viewBox="0 0 1024 1024" id="icon-add"><path d="M480 544v288h64V544h288v-64H544V192h-64v288H192v64h288z" /></symbol><symbol fill="none" viewBox="0 0 48 48" id="icon-logo"><rect width="48" height="48" rx="13.333" fill="currentColor" /><path d="M33.6 35.228a.6.6 0 0 1-.497.262h-3.97a.6.6 0 0 1-.497-.937l4.91-7.232a.6.6 0 0 0-.497-.937H10.6a.6.6 0 0 1-.6-.6v-3.347a.6.6 0 0 1 .6-.6h22.6a.6.6 0 0 0 .497-.937l-5.061-7.453a.6.6 0 0 1 .496-.937h3.971a.6.6 0 0 1 .496.263l7.398 10.89a.6.6 0 0 1 0 .674l-7.398 10.89Zm-9.842-16.215a.6.6 0 0 1-.49-.256l-1.001-1.426a.6.6 0 0 0-.491-.255H10.6a.6.6 0 0 1-.6-.6V13.11a.6.6 0 0 1 .6-.6h13.402a.6.6 0 0 1 .491.256l3.713 5.303a.6.6 0 0 1-.491.944h-3.957Zm-.49 10.23a.6.6 0 0 1 .49-.256h3.957a.6.6 0 0 1 .491.945l-3.713 5.303a.6.6 0 0 1-.491.255H10.6a.6.6 0 0 1-.6-.6v-3.366a.6.6 0 0 1 .6-.6h11.176a.6.6 0 0 0 .491-.255l1-1.426Z" fill="#fff" /></symbol><symbol fill="none" viewBox="0 0 25 25" id="icon-progress-default"><path d="M4.69 21.109v-5.845a.819.819 0 0 1 1.636 0v5.845a.818.818 0 1 1-1.636 0Zm4.675 0v-9.351a.819.819 0 0 1 1.637 0v9.35a.818.818 0 0 1-1.637 0Zm4.675 0v-5.845a.818.818 0 0 1 1.637 0v5.845a.818.818 0 0 1-1.636 0Zm4.676 0v-9.351a.818.818 0 0 1 1.636 0v9.35a.818.818 0 0 1-1.636 0ZM20.19 4.106a.819.819 0 0 1 1.023 1.278L15.37 10.06a.818.818 0 0 1-1.002.014l-4.235-3.176-5.373 3.225a.819.819 0 0 1-.841-1.404l5.843-3.506.11-.056a.819.819 0 0 1 .802.102l4.168 3.126 5.35-4.28Z" fill="#fff" /></symbol><symbol class="icon" viewBox="0 0 1024 1024" id="icon-arrow-down"><path d="m512 594.752 233.344-233.408 45.312 45.312L512 685.248 233.344 406.656l45.312-45.312L512 594.752z" /></symbol><symbol class="icon" viewBox="0 0 1024 1024" id="icon-arrow-top"><path d="m512 429.248 233.344 233.408 45.248-45.312L512 338.752 233.344 617.344l45.312 45.312L512 429.248z" /></symbol><symbol fill="none" viewBox="0 0 20 20" id="icon-layout-lang"><path d="M10 1.041a8.958 8.958 0 0 1 2.18 17.648v.001h-.003A8.96 8.96 0 1 1 10 1.041ZM7.719 2.635a7.716 7.716 0 0 0-5.35 6.288c.525.385 1.165.676 1.874.676.554 0 1.032.025 1.433.1.403.076.773.208 1.074.454.625.512.716 1.314.716 2.139 0 .849.003 1.207.048 1.512.044.292.13.543.352 1.18.251.722.42 1.6.018 2.426a7.708 7.708 0 0 0 3.535.165c.422-.674.61-1.188.678-1.584a1.953 1.953 0 0 0-.117-1.103c-.065-.164-.142-.318-.23-.492-.084-.164-.184-.36-.258-.563-.165-.45-.214-.965.09-1.549.218-.416.532-.658.91-.777.32-.1.683-.108.947-.12.562-.026 1.174-.072 1.925-.612.81-.582 1.623-.657 2.337-.488.003-.096.009-.192.009-.288a7.672 7.672 0 0 0-1.492-4.554c-.542.123-1.107.4-1.524.939-.677.876-1.404 1.416-2.14 1.633-.752.22-1.46.089-2.026-.278-.889-.575-.957-1.392-1.03-1.884-.039-.258-.074-.415-.143-.543-.058-.108-.165-.237-.428-.365-.688-.334-1.064-.957-1.178-1.617a2.798 2.798 0 0 1-.03-.695Zm9.835 8.904c-.464-.148-.954-.112-1.46.252-1.045.751-1.952.815-2.597.845-.34.015-.504.023-.63.062-.067.021-.115.048-.176.165-.106.203-.098.34-.024.54.044.122.11.252.199.429.084.167.187.372.276.599.186.472.312 1.047.189 1.772a4.394 4.394 0 0 1-.246.86 7.719 7.719 0 0 0 4.47-5.524ZM2.3 10.354a7.71 7.71 0 0 0 4.403 6.613c.247-.406.216-.898-.019-1.57-.21-.605-.343-.976-.408-1.408-.063-.42-.06-.89-.06-1.697 0-.83-.126-1.063-.258-1.172-.08-.064-.225-.138-.512-.192-.289-.054-.677-.08-1.204-.08-.73 0-1.384-.204-1.942-.495ZM10 2.292c-.327 0-.649.022-.965.062a1.717 1.717 0 0 0-.056.762c.058.335.227.577.494.706.47.229.784.531.98.895.185.341.242.696.28.954.08.544.112.786.473 1.02.266.172.6.242.994.126.408-.12.932-.457 1.504-1.197a3.746 3.746 0 0 1 1.61-1.202 7.68 7.68 0 0 0-5.313-2.126Z" fill="#56647A" /></symbol><symbol fill="none" viewBox="0 0 16 16" id="icon-layout-logout"><path d="M2.667 4v8" stroke="currentColor" stroke-linecap="round" /><path d="M5.333 8h8M8 5.333S5.333 7.297 5.333 8C5.333 8.703 8 10.667 8 10.667" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" /></symbol><symbol fill="none" viewBox="0 0 20 20" id="icon-layout-theme"><path d="M14.166 10a4.167 4.167 0 1 1-8.333 0 4.167 4.167 0 0 1 8.333 0Z" stroke="currentColor" stroke-width="1.25" /><path d="M10 1.666v1.25m0 14.167v1.25m5.892-2.44-.884-.885M4.991 4.99l-.884-.883m14.226 5.892h-1.25M2.917 10h-1.25m14.226-5.892-.884.883M4.99 15.008l-.884.884" stroke="#56647A" stroke-width="1.25" stroke-linecap="round" /></symbol><symbol fill="none" viewBox="0 0 16 16" id="icon-layout-user-center"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 .833a3.167 3.167 0 1 0 0 6.334A3.167 3.167 0 0 0 8 .833ZM5.833 4a2.167 2.167 0 1 1 4.334 0 2.167 2.167 0 0 1-4.334 0ZM8 8.167c-1.36 0-2.615.314-3.548.847-.919.525-1.619 1.326-1.619 2.32 0 .993.7 1.794 1.619 2.32.933.532 2.188.846 3.548.846 1.36 0 2.615-.314 3.548-.847.919-.525 1.619-1.326 1.619-2.32 0-.993-.7-1.794-1.62-2.32-.932-.532-2.188-.846-3.547-.846Zm-4.167 3.167c0-.48.345-1.012 1.115-1.452.756-.432 1.834-.715 3.052-.715s2.296.283 3.052.715c.77.44 1.115.972 1.115 1.452 0 .479-.345 1.01-1.115 1.451-.756.432-1.834.715-3.052.715s-2.296-.283-3.052-.715c-.77-.44-1.115-.972-1.115-1.451Z" fill="currentColor" /></symbol><symbol fill="none" viewBox="0 0 32 32" id="icon-layout-user-dark"><rect width="32" height="32" rx="16" fill="#4C4C4F" /><path d="M16 16a4 4 0 1 0 0-8 4 4 0 0 0 0 8ZM16 17.332a6.007 6.007 0 0 0-6 6c0 .369.299.667.667.667h10.666a.667.667 0 0 0 .667-.666 6.007 6.007 0 0 0-6-6Z" fill="#fff" fill-opacity=".7" /></symbol><symbol fill="none" viewBox="0 0 32 32" id="icon-layout-user-light"><rect width="32" height="32" rx="16" fill="#CAD3E2" /><path d="M16 16a4 4 0 1 0 0-8 4 4 0 0 0 0 8ZM16 17.332a6.007 6.007 0 0 0-6 6c0 .369.299.667.667.667h10.666a.667.667 0 0 0 .667-.666 6.007 6.007 0 0 0-6-6Z" fill="#56647A" /></symbol><symbol fill="none" viewBox="0 0 32 32" id="icon-logo-base"><rect width="32" height="32" rx="8.889" fill="#0151FF" /><path d="M22.4 23.485a.4.4 0 0 1-.331.175h-2.647a.4.4 0 0 1-.331-.624l3.273-4.822a.4.4 0 0 0-.331-.625H7.067a.4.4 0 0 1-.4-.4v-2.231a.4.4 0 0 1 .4-.4h15.067a.4.4 0 0 0 .33-.625l-3.373-4.968a.4.4 0 0 1 .33-.625h2.648a.4.4 0 0 1 .33.175l4.932 7.26a.4.4 0 0 1 0 .45l-4.931 7.26Zm-6.561-10.81a.4.4 0 0 1-.328-.17l-.666-.95a.4.4 0 0 0-.328-.171h-7.45a.4.4 0 0 1-.4-.4V8.74c0-.221.179-.4.4-.4H16a.4.4 0 0 1 .328.17l2.475 3.536a.4.4 0 0 1-.327.63h-2.638Zm-.328 6.82a.4.4 0 0 1 .328-.17h2.638a.4.4 0 0 1 .327.63L16.33 23.49a.4.4 0 0 1-.328.17H7.067a.4.4 0 0 1-.4-.4v-2.244c0-.22.179-.4.4-.4h7.45a.4.4 0 0 0 .328-.17l.666-.95Z" fill="#fff" /></symbol><symbol fill="none" viewBox="0 0 32 32" id="icon-logo-bcollection"><rect width="32" height="32" rx="8.889" fill="#0DAB63" /><path fill="#fff" d="M6.58 23.194h18.84v2.305H6.58z" /><path d="M14.533 23.194h8.583v2.305h-8.583v-2.305Z" fill="url(#icon-logo-bcollection_a)" /><path fill="#fff" d="M6.58 6.336h18.84v2.305H6.58z" /><path fill="url(#icon-logo-bcollection_b)" d="M8.885 6.336h8.584v2.305H8.885z" /><path fill="#fff" d="M6.58 25.338V7.458h2.304v17.88z" /><path d="M6.58 23.194V14.61h2.305v8.584H6.58Z" fill="url(#icon-logo-bcollection_c)" /><path fill="#fff" d="M23.115 25.338V6.498h2.305v18.84z" /><path d="M23.115 17.601V8.642h2.305v8.96h-2.305Z" fill="url(#icon-logo-bcollection_d)" /><path fill-rule="evenodd" clip-rule="evenodd" d="M3.569 16.89a1.26 1.26 0 0 1 0-1.782l2.313-2.313v2.403c0 .497.198.973.55 1.324 1.55 1.552 5.86 5.862 5.86 5.862l-3.205.025-5.518-5.518ZM19.205 5.883H16.8c-.496 0-.973.198-1.324.55-1.552 1.55-5.861 5.86-5.861 5.86L9.59 9.087l5.518-5.518a1.26 1.26 0 0 1 1.783 0l2.314 2.313Z" fill="url(#icon-logo-bcollection_e)" /><path fill-rule="evenodd" clip-rule="evenodd" d="M28.43 14.945a1.26 1.26 0 0 1 0 1.782l-2.313 2.314v-2.403c0-.497-.198-.973-.549-1.324l-5.86-5.862 3.204-.025 5.518 5.518ZM12.795 25.953h2.403c.497 0 .973-.197 1.324-.548l5.861-5.861.026 3.205-5.518 5.518a1.26 1.26 0 0 1-1.783 0l-2.313-2.314Z" fill="url(#icon-logo-bcollection_f)" /><defs><linearGradient id="icon-logo-bcollection_a" x1="16.363" y1="23.571" x2="21.598" y2="26.251" gradientUnits="userSpaceOnUse"><stop stop-color="#fff" /><stop offset=".469" stop-color="#3C72AF" /><stop offset="1" stop-color="#fff" /></linearGradient><linearGradient id="icon-logo-bcollection_b" x1="10.336" y1="6.545" x2="15.741" y2="9.366" gradientUnits="userSpaceOnUse"><stop stop-color="#fff" /><stop offset=".4" stop-color="#3C72AF" /><stop offset="1" stop-color="#fff" /></linearGradient><linearGradient id="icon-logo-bcollection_c" x1="6.738" y1="21.717" x2="9.607" y2="16.342" gradientUnits="userSpaceOnUse"><stop stop-color="#fff" /><stop offset=".361" stop-color="#3C72AF" /><stop offset="1" stop-color="#fff" /></linearGradient><linearGradient id="icon-logo-bcollection_d" x1="24.268" y1="15.9" x2="25.656" y2="9.702" gradientUnits="userSpaceOnUse"><stop stop-color="#fff" /><stop offset=".477" stop-color="#3C72AF" /><stop offset="1" stop-color="#fff" /></linearGradient><linearGradient id="icon-logo-bcollection_e" x1="4.401" y1="16.41" x2="12.063" y2="8.209" gradientUnits="userSpaceOnUse"><stop stop-color="#fff" /><stop offset=".424" stop-color="#3C72AF" /><stop offset="1" stop-color="#fff" /></linearGradient><linearGradient id="icon-logo-bcollection_f" x1="28.377" y1="15.159" x2="20.136" y2="23.464" gradientUnits="userSpaceOnUse"><stop stop-color="#fff" /><stop offset=".479" stop-color="#3C72AF" /><stop offset="1" stop-color="#fff" /></linearGradient></defs></symbol><symbol fill="none" viewBox="0 0 32 32" id="icon-logo-blink"><rect width="32" height="32" rx="8.896" fill="#050776" /><path d="M23.9 4.153a4.008 4.008 0 0 1 1.194 7.835 10.46 10.46 0 0 1-3.78.702c-4.684 0-8.65-3.07-9.997-7.31a6.408 6.408 0 0 0 4.628 1.968c1.76 0 3.354-.707 4.514-1.852l.002.004a4.052 4.052 0 0 1 3.23-1.342h.003c.068-.003.137-.005.206-.005Z" fill="url(#icon-logo-blink_a)" /><mask id="icon-logo-blink_c" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="11" y="4" width="17" height="9"><path d="M23.898 4.15a4.008 4.008 0 0 1 4.01 4.007c.002 1.798-1.41 3.347-2.812 3.828-1.402.482-2.446.704-3.779.705-4.684.003-8.653-3.066-10.001-7.304a6.408 6.408 0 0 0 4.629 1.965 6.406 6.406 0 0 0 4.512-1.855l.002.004a4.051 4.051 0 0 1 3.23-1.344h.003a4.08 4.08 0 0 1 .206-.005Z" fill="url(#icon-logo-blink_b)" /><path d="M23.898 4.15a4.008 4.008 0 0 1 4.01 4.007c.002 1.798-1.41 3.347-2.812 3.828-1.402.482-2.446.704-3.779.705-4.684.003-8.653-3.066-10.001-7.304a6.408 6.408 0 0 0 4.629 1.965 6.406 6.406 0 0 0 4.512-1.855l.002.004a4.051 4.051 0 0 1 3.23-1.344h.003a4.08 4.08 0 0 1 .206-.005Z" fill="#000" fill-opacity=".2" /></mask><g mask="url(#icon-logo-blink_c)"><circle cx="19.019" cy=".885" r="8.775" transform="rotate(74.966 19.019 .885)" fill="url(#icon-logo-blink_d)" stroke="url(#icon-logo-blink_e)" stroke-width=".222" /></g><mask id="icon-logo-blink_g" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="11" y="4" width="17" height="9"><path d="M23.905 4.135c2.213.01 4 1.811 3.991 4.025-.007 1.798-1.425 3.34-2.83 3.815-1.404.475-2.45.693-3.782.687-4.684-.019-8.633-3.034-9.962-7.279 1.165 1.218 2.797 1.908 4.615 1.915a6.406 6.406 0 0 0 4.521-1.834l.002.005a4.052 4.052 0 0 1 3.236-1.33h.002a4.07 4.07 0 0 1 .207-.004Z" fill="url(#icon-logo-blink_f)" /><path d="M23.905 4.135c2.213.01 4 1.811 3.991 4.025-.007 1.798-1.425 3.34-2.83 3.815-1.404.475-2.45.693-3.782.687-4.684-.019-8.633-3.034-9.962-7.279 1.165 1.218 2.797 1.908 4.615 1.915a6.406 6.406 0 0 0 4.521-1.834l.002.005a4.052 4.052 0 0 1 3.236-1.33h.002a4.07 4.07 0 0 1 .207-.004Z" fill="#000" fill-opacity=".2" /></mask><g mask="url(#icon-logo-blink_g)"><circle cx="17.992" cy=".922" r="7.353" transform="rotate(75.234 17.992 .922)" fill="url(#icon-logo-blink_h)" /></g><path d="M8.068 27.978a4.008 4.008 0 0 1-1.193-7.835 10.46 10.46 0 0 1 3.78-.703c4.684 0 8.65 3.072 9.996 7.31a6.409 6.409 0 0 0-4.628-1.967c-1.759 0-3.353.707-4.513 1.852l-.002-.004a4.051 4.051 0 0 1-3.23 1.342h-.003a4.033 4.033 0 0 1-.207.005Z" fill="url(#icon-logo-blink_i)" /><mask id="icon-logo-blink_k" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="4" y="19" width="17" height="9"><path d="M8.07 27.98a4.008 4.008 0 0 1-4.01-4.005c0-1.798 1.41-3.347 2.813-3.829 1.402-.482 2.446-.704 3.779-.705 4.684-.002 8.653 3.067 10.001 7.305a6.408 6.408 0 0 0-4.63-1.965 6.406 6.406 0 0 0-4.512 1.855l-.002-.005a4.052 4.052 0 0 1-3.23 1.344h-.002a4.15 4.15 0 0 1-.206.005Z" fill="url(#icon-logo-blink_j)" /><path d="M8.07 27.98a4.008 4.008 0 0 1-4.01-4.005c0-1.798 1.41-3.347 2.813-3.829 1.402-.482 2.446-.704 3.779-.705 4.684-.002 8.653 3.067 10.001 7.305a6.408 6.408 0 0 0-4.63-1.965 6.406 6.406 0 0 0-4.512 1.855l-.002-.005a4.052 4.052 0 0 1-3.23 1.344h-.002a4.15 4.15 0 0 1-.206.005Z" fill="#000" fill-opacity=".2" /></mask><g mask="url(#icon-logo-blink_k)"><circle cx="12.95" cy="31.246" r="8.775" transform="rotate(-105.033 12.95 31.246)" fill="url(#icon-logo-blink_l)" stroke="url(#icon-logo-blink_m)" stroke-width=".222" /></g><mask id="icon-logo-blink_o" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="4" y="19" width="17" height="9"><path d="M8.064 27.996a4.008 4.008 0 0 1-3.992-4.024c.008-1.799 1.426-3.34 2.83-3.816 1.405-.475 2.45-.692 3.782-.687 4.685.02 8.633 3.035 9.962 7.279-1.164-1.218-2.796-1.907-4.614-1.915a6.406 6.406 0 0 0-4.521 1.834l-.002-.004a4.052 4.052 0 0 1-3.236 1.329H8.27a4.037 4.037 0 0 1-.206.004Z" fill="url(#icon-logo-blink_n)" /><path d="M8.064 27.996a4.008 4.008 0 0 1-3.992-4.024c.008-1.799 1.426-3.34 2.83-3.816 1.405-.475 2.45-.692 3.782-.687 4.685.02 8.633 3.035 9.962 7.279-1.164-1.218-2.796-1.907-4.614-1.915a6.406 6.406 0 0 0-4.521 1.834l-.002-.004a4.052 4.052 0 0 1-3.236 1.329H8.27a4.037 4.037 0 0 1-.206.004Z" fill="#000" fill-opacity=".2" /></mask><g mask="url(#icon-logo-blink_o)"><circle cx="13.977" cy="31.209" r="7.353" transform="rotate(-104.766 13.977 31.21)" fill="url(#icon-logo-blink_p)" /></g><path d="M27.848 23.968a4.008 4.008 0 0 1-7.835 1.194 10.462 10.462 0 0 1-.703-3.78c0-4.684 3.071-8.65 7.31-9.997a6.408 6.408 0 0 0-1.968 4.628c0 1.76.708 3.353 1.853 4.514l-.005.002a4.052 4.052 0 0 1 1.343 3.23v.003c.003.068.005.137.005.206Z" fill="url(#icon-logo-blink_q)" /><mask id="icon-logo-blink_s" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="19" y="11" width="9" height="17"><path d="M27.85 23.966a4.008 4.008 0 0 1-4.006 4.01c-1.798.001-3.347-1.41-3.828-2.812-.482-1.402-.704-2.447-.705-3.779-.003-4.684 3.066-8.653 7.304-10.002a6.408 6.408 0 0 0-1.965 4.63 6.406 6.406 0 0 0 1.855 4.512l-.004.002a4.052 4.052 0 0 1 1.344 3.23v.002c.003.069.005.137.005.207Z" fill="url(#icon-logo-blink_r)" /><path d="M27.85 23.966a4.008 4.008 0 0 1-4.006 4.01c-1.798.001-3.347-1.41-3.828-2.812-.482-1.402-.704-2.447-.705-3.779-.003-4.684 3.066-8.653 7.304-10.002a6.408 6.408 0 0 0-1.965 4.63 6.406 6.406 0 0 0 1.855 4.512l-.004.002a4.052 4.052 0 0 1 1.344 3.23v.002c.003.069.005.137.005.207Z" fill="#000" fill-opacity=".2" /></mask><g mask="url(#icon-logo-blink_s)"><circle cx="31.115" cy="19.087" r="8.775" transform="rotate(164.967 31.115 19.087)" fill="url(#icon-logo-blink_t)" stroke="url(#icon-logo-blink_u)" stroke-width=".222" /></g><mask id="icon-logo-blink_w" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="19" y="11" width="9" height="17"><path d="M27.865 23.972a4.008 4.008 0 0 1-4.024 3.992c-1.798-.008-3.34-1.426-3.816-2.83-.475-1.405-.692-2.45-.687-3.782.02-4.685 3.035-8.633 7.28-9.962-1.218 1.164-1.908 2.796-1.915 4.614a6.406 6.406 0 0 0 1.834 4.521l-.005.002a4.051 4.051 0 0 1 1.329 3.236v.003c.003.068.005.137.004.206Z" fill="url(#icon-logo-blink_v)" /><path d="M27.865 23.972a4.008 4.008 0 0 1-4.024 3.992c-1.798-.008-3.34-1.426-3.816-2.83-.475-1.405-.692-2.45-.687-3.782.02-4.685 3.035-8.633 7.28-9.962-1.218 1.164-1.908 2.796-1.915 4.614a6.406 6.406 0 0 0 1.834 4.521l-.005.002a4.051 4.051 0 0 1 1.329 3.236v.003c.003.068.005.137.004.206Z" fill="#000" fill-opacity=".2" /></mask><g mask="url(#icon-logo-blink_w)"><circle cx="31.079" cy="18.06" r="7.353" transform="rotate(165.234 31.08 18.06)" fill="url(#icon-logo-blink_x)" /></g><path d="M4.152 8.163a4.008 4.008 0 0 1 7.836-1.194 10.46 10.46 0 0 1 .702 3.78c0 4.684-3.071 8.65-7.31 9.997a6.408 6.408 0 0 0 1.968-4.628c0-1.76-.708-3.353-1.853-4.514l.005-.002a4.052 4.052 0 0 1-1.342-3.23v-.003a4.08 4.08 0 0 1-.006-.206Z" fill="url(#icon-logo-blink_y)" /><mask id="icon-logo-blink_A" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="4" y="4" width="9" height="17"><path d="M4.15 8.166a4.008 4.008 0 0 1 4.006-4.011c1.798-.001 3.347 1.41 3.829 2.813.481 1.402.704 2.446.704 3.778.003 4.685-3.066 8.653-7.304 10.002a6.408 6.408 0 0 0 1.965-4.63 6.406 6.406 0 0 0-1.855-4.512l.004-.002a4.052 4.052 0 0 1-1.344-3.23v-.002a4.078 4.078 0 0 1-.005-.206Z" fill="url(#icon-logo-blink_z)" /><path d="M4.15 8.166a4.008 4.008 0 0 1 4.006-4.011c1.798-.001 3.347 1.41 3.829 2.813.481 1.402.704 2.446.704 3.778.003 4.685-3.066 8.653-7.304 10.002a6.408 6.408 0 0 0 1.965-4.63 6.406 6.406 0 0 0-1.855-4.512l.004-.002a4.052 4.052 0 0 1-1.344-3.23v-.002a4.078 4.078 0 0 1-.005-.206Z" fill="#000" fill-opacity=".2" /></mask><g mask="url(#icon-logo-blink_A)"><circle cx=".885" cy="13.044" r="8.775" transform="rotate(-15.033 .885 13.044)" fill="url(#icon-logo-blink_B)" stroke="url(#icon-logo-blink_C)" stroke-width=".222" /></g><mask id="icon-logo-blink_E" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="4" y="4" width="9" height="17"><path d="M4.134 8.158c.01-2.213 1.811-4 4.025-3.992 1.798.008 3.34 1.427 3.815 2.83.475 1.405.693 2.45.687 3.783-.019 4.684-3.034 8.633-7.279 9.962 1.218-1.165 1.908-2.797 1.915-4.615a6.406 6.406 0 0 0-1.834-4.521l.005-.002a4.052 4.052 0 0 1-1.33-3.236v-.002a4.083 4.083 0 0 1-.004-.207Z" fill="url(#icon-logo-blink_D)" /><path d="M4.134 8.158c.01-2.213 1.811-4 4.025-3.992 1.798.008 3.34 1.427 3.815 2.83.475 1.405.693 2.45.687 3.783-.019 4.684-3.034 8.633-7.279 9.962 1.218-1.165 1.908-2.797 1.915-4.615a6.406 6.406 0 0 0-1.834-4.521l.005-.002a4.052 4.052 0 0 1-1.33-3.236v-.002a4.083 4.083 0 0 1-.004-.207Z" fill="#000" fill-opacity=".2" /></mask><g mask="url(#icon-logo-blink_E)"><circle cx=".921" cy="14.071" r="7.353" transform="rotate(-14.767 .921 14.07)" fill="url(#icon-logo-blink_F)" /></g><defs><linearGradient id="icon-logo-blink_a" x1="26.924" y1="6.684" x2="17.857" y2="11.866" gradientUnits="userSpaceOnUse"><stop stop-color="#1F5CF5" /><stop offset="1" stop-color="#EEF5FC" /></linearGradient><linearGradient id="icon-logo-blink_b" x1="27.919" y1="7.017" x2="13.451" y2="9.521" gradientUnits="userSpaceOnUse"><stop stop-color="#F2F2FC" /><stop offset="1" stop-color="#DED7FC" /></linearGradient><linearGradient id="icon-logo-blink_d" x1="24.118" y1="-4.301" x2="21.741" y2="9.006" gradientUnits="userSpaceOnUse"><stop stop-color="#7AA0FE" /><stop offset=".271" stop-color="#B7D4FF" /><stop offset="1" stop-color="#E9F5FF" /></linearGradient><linearGradient id="icon-logo-blink_e" x1="26.264" y1="-1.64" x2="23.363" y2="9.774" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff" stop-opacity="0" /><stop offset=".42" stop-color="#fff" /><stop offset="1" stop-color="#fff" stop-opacity="0" /></linearGradient><linearGradient id="icon-logo-blink_f" x1="27.913" y1="7.02" x2="13.432" y2="9.457" gradientUnits="userSpaceOnUse"><stop stop-color="#F2F2FC" /><stop offset="1" stop-color="#DED7FC" /></linearGradient><linearGradient id="icon-logo-blink_h" x1="22.212" y1="-3.37" x2="20.245" y2="7.642" gradientUnits="userSpaceOnUse"><stop stop-color="#6F90FF" stop-opacity=".33" /><stop offset="1" stop-color="#E9F5FF" stop-opacity="0" /></linearGradient><linearGradient id="icon-logo-blink_i" x1="5.045" y1="25.447" x2="14.112" y2="20.265" gradientUnits="userSpaceOnUse"><stop stop-color="#1F5CF5" /><stop offset="1" stop-color="#EEF5FC" /></linearGradient><linearGradient id="icon-logo-blink_j" x1="4.049" y1="25.114" x2="18.518" y2="22.61" gradientUnits="userSpaceOnUse"><stop stop-color="#F2F2FC" /><stop offset="1" stop-color="#DED7FC" /></linearGradient><linearGradient id="icon-logo-blink_l" x1="18.049" y1="26.06" x2="15.672" y2="39.367" gradientUnits="userSpaceOnUse"><stop stop-color="#7AA0FE" /><stop offset=".271" stop-color="#B7D4FF" /><stop offset="1" stop-color="#E9F5FF" /></linearGradient><linearGradient id="icon-logo-blink_m" x1="20.195" y1="28.721" x2="17.294" y2="40.136" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff" stop-opacity="0" /><stop offset=".42" stop-color="#fff" /><stop offset="1" stop-color="#fff" stop-opacity="0" /></linearGradient><linearGradient id="icon-logo-blink_n" x1="4.056" y1="25.111" x2="18.536" y2="22.675" gradientUnits="userSpaceOnUse"><stop stop-color="#F2F2FC" /><stop offset="1" stop-color="#DED7FC" /></linearGradient><linearGradient id="icon-logo-blink_p" x1="18.197" y1="26.917" x2="16.229" y2="37.929" gradientUnits="userSpaceOnUse"><stop stop-color="#6F90FF" stop-opacity=".33" /><stop offset="1" stop-color="#E9F5FF" stop-opacity="0" /></linearGradient><linearGradient id="icon-logo-blink_q" x1="25.316" y1="26.992" x2="20.135" y2="17.924" gradientUnits="userSpaceOnUse"><stop stop-color="#1F5CF5" /><stop offset="1" stop-color="#EEF5FC" /></linearGradient><linearGradient id="icon-logo-blink_r" x1="24.984" y1="27.987" x2="22.48" y2="13.518" gradientUnits="userSpaceOnUse"><stop stop-color="#F2F2FC" /><stop offset="1" stop-color="#DED7FC" /></linearGradient><linearGradient id="icon-logo-blink_t" x1="36.215" y1="13.901" x2="33.837" y2="27.208" gradientUnits="userSpaceOnUse"><stop stop-color="#7AA0FE" /><stop offset=".271" stop-color="#B7D4FF" /><stop offset="1" stop-color="#E9F5FF" /></linearGradient><linearGradient id="icon-logo-blink_u" x1="38.361" y1="16.562" x2="35.459" y2="27.976" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff" stop-opacity="0" /><stop offset=".42" stop-color="#fff" /><stop offset="1" stop-color="#fff" stop-opacity="0" /></linearGradient><linearGradient id="icon-logo-blink_v" x1="24.98" y1="27.98" x2="22.544" y2="13.5" gradientUnits="userSpaceOnUse"><stop stop-color="#F2F2FC" /><stop offset="1" stop-color="#DED7FC" /></linearGradient><linearGradient id="icon-logo-blink_x" x1="35.299" y1="13.768" x2="33.332" y2="24.78" gradientUnits="userSpaceOnUse"><stop stop-color="#6F90FF" stop-opacity=".33" /><stop offset="1" stop-color="#E9F5FF" stop-opacity="0" /></linearGradient><linearGradient id="icon-logo-blink_y" x1="6.684" y1="5.139" x2="11.865" y2="14.207" gradientUnits="userSpaceOnUse"><stop stop-color="#1F5CF5" /><stop offset="1" stop-color="#EEF5FC" /></linearGradient><linearGradient id="icon-logo-blink_z" x1="7.016" y1="4.144" x2="9.52" y2="18.613" gradientUnits="userSpaceOnUse"><stop stop-color="#F2F2FC" /><stop offset="1" stop-color="#DED7FC" /></linearGradient><linearGradient id="icon-logo-blink_B" x1="5.984" y1="7.857" x2="3.607" y2="21.165" gradientUnits="userSpaceOnUse"><stop stop-color="#7AA0FE" /><stop offset=".271" stop-color="#B7D4FF" /><stop offset="1" stop-color="#E9F5FF" /></linearGradient><linearGradient id="icon-logo-blink_C" x1="8.13" y1="10.519" x2="5.229" y2="21.933" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff" stop-opacity="0" /><stop offset=".42" stop-color="#fff" /><stop offset="1" stop-color="#fff" stop-opacity="0" /></linearGradient><linearGradient id="icon-logo-blink_D" x1="7.019" y1="4.15" x2="9.456" y2="18.631" gradientUnits="userSpaceOnUse"><stop stop-color="#F2F2FC" /><stop offset="1" stop-color="#DED7FC" /></linearGradient><linearGradient id="icon-logo-blink_F" x1="5.141" y1="9.779" x2="3.173" y2="20.791" gradientUnits="userSpaceOnUse"><stop stop-color="#6F90FF" stop-opacity=".33" /><stop offset="1" stop-color="#E9F5FF" stop-opacity="0" /></linearGradient></defs></symbol><symbol class="icon" viewBox="0 0 1024 1024" id="icon-operate-add"><path d="M480 544v288h64V544h288v-64H544V192h-64v288H192v64h288z" /></symbol><symbol fill="none" viewBox="0 0 40 40" id="icon-operate-close-large"><path d="M29.9 29.9 10.1 10.1M10.1 29.899l19.8-19.8" stroke="currentColor" stroke-width="2.4" stroke-linejoin="round" /></symbol><symbol class="icon" viewBox="0 0 1024 1024" id="icon-operate-close"><path d="m300.8 240.448 211.2 211.2 211.2-211.2 60.352 60.352-211.2 211.2 211.2 211.2-60.352 60.352-211.2-211.2-211.2 211.2-60.288-60.352 211.2-211.2-211.2-211.2 60.352-60.352z" /></symbol><symbol class="icon" viewBox="0 0 1024 1024" id="icon-operate-minus"><path d="M832 544H192v-64h640v64z" /></symbol><symbol fill="none" viewBox="0 0 26 22" id="icon-operate-more-bar"><path d="M.2 1.4h25.6M.2 11h25.6M.2 20.6h25.6" stroke="currentColor" stroke-width="2.4" stroke-linejoin="round" /></symbol>',i.insertBefore(o,i.lastChild)};document.readyState==="loading"?document.addEventListener("DOMContentLoaded",l):l()}
|