valaxy 0.20.5 → 0.20.7
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/client/components/ValaxyApp.vue +10 -11
- package/client/components/ValaxyDecrypt.vue +9 -7
- package/client/components/ValaxyGalleryDecrypt.vue +1 -0
- package/client/components/ValaxyLogo.vue +5 -1
- package/client/components/ValaxyMd.vue +3 -3
- package/client/components/builtin/ValaxyMermaid.vue +40 -41
- package/client/composables/app/useValaxyHead.ts +13 -6
- package/client/composables/categories.ts +1 -1
- package/client/composables/codeGroups.ts +1 -1
- package/client/composables/collections.ts +1 -1
- package/client/composables/common.ts +3 -3
- package/client/composables/features/collapse-code.ts +1 -1
- package/client/composables/features/copy-code.ts +1 -0
- package/client/composables/features/index.ts +1 -1
- package/client/composables/helper/useInvisibleElement.ts +1 -1
- package/client/composables/index.ts +10 -10
- package/client/composables/locale.ts +4 -3
- package/client/composables/outline/anchor.ts +9 -8
- package/client/composables/outline/headers.ts +3 -3
- package/client/composables/outline/index.ts +1 -1
- package/client/composables/post/index.ts +3 -3
- package/client/composables/search/useFuseSearch.ts +4 -4
- package/client/composables/tags.ts +1 -1
- package/client/composables/widgets/aplayer.ts +1 -1
- package/client/config.ts +8 -8
- package/client/index.ts +5 -5
- package/client/main.ts +15 -15
- package/client/modules/devtools.ts +1 -1
- package/client/modules/floating-vue.ts +3 -3
- package/client/modules/mermaid.ts +3 -3
- package/client/modules/nprogress.ts +1 -1
- package/client/modules/pinia.ts +1 -1
- package/client/modules/schemaOrg.ts +1 -1
- package/client/modules/valaxy.ts +6 -6
- package/client/setup/main.ts +7 -7
- package/client/setup/mermaid.ts +1 -1
- package/client/setups.ts +2 -2
- package/client/stores/app.ts +1 -1
- package/client/stores/site.ts +2 -2
- package/client/styles/common/markdown.scss +4 -4
- package/client/styles/index.scss +0 -1
- package/client/types/index.ts +1 -1
- package/client/utils/index.ts +3 -3
- package/client/utils/time.ts +3 -4
- package/dist/chunk-JOSLTXIR.cjs +161 -0
- package/dist/chunk-LB5BBIUM.mjs +162 -0
- package/dist/node/cli/index.cjs +1 -1
- package/dist/node/cli/index.mjs +1 -1
- package/dist/node/index.cjs +1 -1
- package/dist/node/index.d.cts +86 -86
- package/dist/node/index.d.ts +86 -86
- package/dist/node/index.mjs +1 -1
- package/dist/types/index.cjs +1 -1
- package/dist/types/index.d.cts +3 -3
- package/dist/types/index.d.ts +3 -3
- package/dist/types/index.mjs +1 -1
- package/package.json +23 -23
- package/shims.d.ts +2 -2
- package/types/config.ts +1 -1
- package/types/index.ts +3 -3
- package/client/styles/common/scrollbar.scss +0 -30
- package/dist/chunk-5CL433IL.mjs +0 -162
- package/dist/chunk-VDCJKFCV.cjs +0 -161
- package/dist/{chunk-6GE64PZD.cjs → chunk-BJ22GQI6.cjs} +0 -0
- package/dist/{chunk-WE2LNW3F.mjs → chunk-XKANGEKW.mjs} +0 -0
- package/dist/{config-DfXD9Gt_.d.cts → config-Dxu7i2Zs.d.cts} +1 -1
- package/dist/{config-DfXD9Gt_.d.ts → config-Dxu7i2Zs.d.ts} +1 -1
|
File without changes
|
|
File without changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ZoomOptions } from 'medium-zoom';
|
|
2
1
|
import { FuseOptions } from '@vueuse/integrations/useFuse';
|
|
2
|
+
import { ZoomOptions } from 'medium-zoom';
|
|
3
3
|
import { ILazyLoadOptions } from 'vanilla-lazyload';
|
|
4
4
|
import { RouteRecordRaw } from 'vue-router';
|
|
5
5
|
import { UseDarkOptions } from '@vueuse/core';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ZoomOptions } from 'medium-zoom';
|
|
2
1
|
import { FuseOptions } from '@vueuse/integrations/useFuse';
|
|
2
|
+
import { ZoomOptions } from 'medium-zoom';
|
|
3
3
|
import { ILazyLoadOptions } from 'vanilla-lazyload';
|
|
4
4
|
import { RouteRecordRaw } from 'vue-router';
|
|
5
5
|
import { UseDarkOptions } from '@vueuse/core';
|