From 61f4b0d447fde0eff6324cb7d1f5ae00f9f397bd Mon Sep 17 00:00:00 2001
From: Braks <78412429+bcakmakoglu@users.noreply.github.com>
Date: Tue, 5 Nov 2024 15:53:16 +0300
Subject: [PATCH] docs(examples): add simple layout example (#1678)
* docs(examples): cleanup animated layout example
Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
* chore(docs,deps): update deps
Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
* docs(examples): add animated and simple layout examples
Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
---------
Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
---
docs/examples/index.ts | 11 +
docs/examples/layout-simple/App.vue | 133 +++
docs/examples/layout-simple/Icon.vue | 40 +
docs/examples/layout-simple/index.ts | 4 +
.../layout-simple/initial-elements.js | 94 ++
docs/examples/layout-simple/useLayout.js | 56 ++
docs/examples/layout/App.vue | 7 +-
docs/examples/layout/initial-elements.js | 21 +-
docs/package.json | 22 +-
docs/src/.vitepress/config.mts | 9 +-
docs/src/examples/layout/animated.md | 10 +
.../examples/{layout.md => layout/simple.md} | 4 +-
pnpm-lock.yaml | 911 +++++++++++-------
13 files changed, 959 insertions(+), 363 deletions(-)
create mode 100644 docs/examples/layout-simple/App.vue
create mode 100644 docs/examples/layout-simple/Icon.vue
create mode 100644 docs/examples/layout-simple/index.ts
create mode 100644 docs/examples/layout-simple/initial-elements.js
create mode 100644 docs/examples/layout-simple/useLayout.js
create mode 100644 docs/src/examples/layout/animated.md
rename docs/src/examples/{layout.md => layout/simple.md} (88%)
diff --git a/docs/examples/index.ts b/docs/examples/index.ts
index 0ba4d3b7..cf9f6141 100644
--- a/docs/examples/index.ts
+++ b/docs/examples/index.ts
@@ -19,6 +19,8 @@ import { SnapToHandleApp, SnappableConnectionLine } from './connection-radius'
import { NodeResizerApp, ResizableNode } from './node-resizer'
import { ToolbarApp, ToolbarNode } from './node-toolbar'
import { LayoutApp, LayoutEdge, LayoutElements, LayoutIcon, LayoutNode, useLayout, useRunProcess, useShuffle } from './layout'
+import { SimpleLayoutApp, SimpleLayoutElements, SimpleLayoutIcon, useSimpleLayout } from './layout-simple'
+
import { MathApp, MathCSS, MathElements, MathIcon, MathOperatorNode, MathResultNode, MathValueNode } from './math'
import { ConfirmApp, ConfirmDialog, useDialog } from './confirm-delete'
@@ -140,6 +142,15 @@ export const exampleImports = {
'@dagrejs/dagre': 'https://cdn.jsdelivr.net/npm/@dagrejs/dagre@1.1.2/+esm',
},
},
+ layoutSimple: {
+ 'App.vue': SimpleLayoutApp,
+ 'initial-elements.js': SimpleLayoutElements,
+ 'useLayout.js': useSimpleLayout,
+ 'Icon.vue': SimpleLayoutIcon,
+ 'additionalImports': {
+ '@dagrejs/dagre': 'https://cdn.jsdelivr.net/npm/@dagrejs/dagre@1.1.2/+esm',
+ },
+ },
math: {
'App.vue': MathApp,
'ValueNode.vue': MathValueNode,
diff --git a/docs/examples/layout-simple/App.vue b/docs/examples/layout-simple/App.vue
new file mode 100644
index 00000000..2e2ed4f4
--- /dev/null
+++ b/docs/examples/layout-simple/App.vue
@@ -0,0 +1,133 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/examples/layout-simple/Icon.vue b/docs/examples/layout-simple/Icon.vue
new file mode 100644
index 00000000..a69d9cc7
--- /dev/null
+++ b/docs/examples/layout-simple/Icon.vue
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/examples/layout-simple/index.ts b/docs/examples/layout-simple/index.ts
new file mode 100644
index 00000000..30166481
--- /dev/null
+++ b/docs/examples/layout-simple/index.ts
@@ -0,0 +1,4 @@
+export { default as SimpleLayoutApp } from './App.vue?raw'
+export { default as SimpleLayoutElements } from './initial-elements.js?raw'
+export { default as useSimpleLayout } from './useLayout.js?raw'
+export { default as SimpleLayoutIcon } from './Icon.vue?raw'
diff --git a/docs/examples/layout-simple/initial-elements.js b/docs/examples/layout-simple/initial-elements.js
new file mode 100644
index 00000000..2c2f3b38
--- /dev/null
+++ b/docs/examples/layout-simple/initial-elements.js
@@ -0,0 +1,94 @@
+const position = { x: 0, y: 0 }
+
+export const initialNodes = [
+ {
+ id: '1',
+ position,
+ data: {
+ label: 'Node 1',
+ },
+ },
+ {
+ id: '2',
+ position,
+ data: {
+ label: 'Node 2',
+ },
+ },
+ {
+ id: '2a',
+ position,
+ data: {
+ label: 'Node 2a',
+ },
+ },
+ {
+ id: '2b',
+ position,
+ data: {
+ label: 'Node 2b',
+ },
+ },
+ {
+ id: '2c',
+ position,
+ data: {
+ label: 'Node 2c',
+ },
+ },
+ {
+ id: '2d',
+ position,
+ data: {
+ label: 'Node 2d',
+ },
+ },
+ {
+ id: '3',
+ position,
+ data: {
+ label: 'Node 3',
+ },
+ },
+ {
+ id: '4',
+ position,
+ data: {
+ label: 'Node 4',
+ },
+ },
+ {
+ id: '5',
+ position,
+ data: {
+ label: 'Node 5',
+ },
+ },
+ {
+ id: '6',
+ position,
+ data: {
+ label: 'Node 6',
+ },
+ },
+ {
+ id: '7',
+ position,
+ data: {
+ label: 'Node 7',
+ },
+ },
+]
+
+export const initialEdges = [
+ { id: 'e1-2', source: '1', target: '2' },
+ { id: 'e1-3', source: '1', target: '3' },
+ { id: 'e2-2a', source: '2', target: '2a' },
+ { id: 'e2-2b', source: '2', target: '2b' },
+ { id: 'e2-2c', source: '2', target: '2c' },
+ { id: 'e2c-2d', source: '2c', target: '2d' },
+ { id: 'e3-7', source: '3', target: '4' },
+ { id: 'e4-5', source: '4', target: '5' },
+ { id: 'e5-6', source: '5', target: '6' },
+ { id: 'e5-7', source: '5', target: '7' },
+]
diff --git a/docs/examples/layout-simple/useLayout.js b/docs/examples/layout-simple/useLayout.js
new file mode 100644
index 00000000..652aced6
--- /dev/null
+++ b/docs/examples/layout-simple/useLayout.js
@@ -0,0 +1,56 @@
+import dagre from '@dagrejs/dagre'
+import { Position, useVueFlow } from '@vue-flow/core'
+import { ref } from 'vue'
+
+/**
+ * Composable to run the layout algorithm on the graph.
+ * It uses the `dagre` library to calculate the layout of the nodes and edges.
+ */
+export function useLayout() {
+ const { findNode } = useVueFlow()
+
+ const graph = ref(new dagre.graphlib.Graph())
+
+ const previousDirection = ref('LR')
+
+ function layout(nodes, edges, direction) {
+ // we create a new graph instance, in case some nodes/edges were removed, otherwise dagre would act as if they were still there
+ const dagreGraph = new dagre.graphlib.Graph()
+
+ graph.value = dagreGraph
+
+ dagreGraph.setDefaultEdgeLabel(() => ({}))
+
+ const isHorizontal = direction === 'LR'
+ dagreGraph.setGraph({ rankdir: direction })
+
+ previousDirection.value = direction
+
+ for (const node of nodes) {
+ // if you need width+height of nodes for your layout, you can use the dimensions property of the internal node (`GraphNode` type)
+ const graphNode = findNode(node.id)
+
+ dagreGraph.setNode(node.id, { width: graphNode.dimensions.width || 150, height: graphNode.dimensions.height || 50 })
+ }
+
+ for (const edge of edges) {
+ dagreGraph.setEdge(edge.source, edge.target)
+ }
+
+ dagre.layout(dagreGraph)
+
+ // set nodes with updated positions
+ return nodes.map((node) => {
+ const nodeWithPosition = dagreGraph.node(node.id)
+
+ return {
+ ...node,
+ targetPosition: isHorizontal ? Position.Left : Position.Top,
+ sourcePosition: isHorizontal ? Position.Right : Position.Bottom,
+ position: { x: nodeWithPosition.x, y: nodeWithPosition.y },
+ }
+ })
+ }
+
+ return { graph, layout, previousDirection }
+}
diff --git a/docs/examples/layout/App.vue b/docs/examples/layout/App.vue
index c6123bbb..766f77f2 100644
--- a/docs/examples/layout/App.vue
+++ b/docs/examples/layout/App.vue
@@ -52,7 +52,12 @@ async function layoutGraph(direction) {
-
+
diff --git a/docs/examples/layout/initial-elements.js b/docs/examples/layout/initial-elements.js
index b0619cf3..c83083c0 100644
--- a/docs/examples/layout/initial-elements.js
+++ b/docs/examples/layout/initial-elements.js
@@ -1,6 +1,5 @@
const position = { x: 0, y: 0 }
const nodeType = 'process'
-const edgeType = 'animation'
export const initialNodes = [
{
@@ -61,14 +60,14 @@ export const initialNodes = [
]
export const initialEdges = [
- { id: 'e1-2', source: '1', target: '2', type: edgeType, animated: true },
- { id: 'e1-3', source: '1', target: '3', type: edgeType, animated: true },
- { id: 'e2-2a', source: '2', target: '2a', type: edgeType, animated: true },
- { id: 'e2-2b', source: '2', target: '2b', type: edgeType, animated: true },
- { id: 'e2-2c', source: '2', target: '2c', type: edgeType, animated: true },
- { id: 'e2c-2d', source: '2c', target: '2d', type: edgeType, animated: true },
- { id: 'e3-7', source: '3', target: '4', type: edgeType, animated: true },
- { id: 'e4-5', source: '4', target: '5', type: edgeType, animated: true },
- { id: 'e5-6', source: '5', target: '6', type: edgeType, animated: true },
- { id: 'e5-7', source: '5', target: '7', type: edgeType, animated: true },
+ { id: 'e1-2', source: '1', target: '2' },
+ { id: 'e1-3', source: '1', target: '3' },
+ { id: 'e2-2a', source: '2', target: '2a' },
+ { id: 'e2-2b', source: '2', target: '2b' },
+ { id: 'e2-2c', source: '2', target: '2c' },
+ { id: 'e2c-2d', source: '2c', target: '2d' },
+ { id: 'e3-7', source: '3', target: '4' },
+ { id: 'e4-5', source: '4', target: '5' },
+ { id: 'e5-6', source: '5', target: '6' },
+ { id: 'e5-7', source: '5', target: '7' },
]
diff --git a/docs/package.json b/docs/package.json
index 050bb7ce..924ee2ba 100644
--- a/docs/package.json
+++ b/docs/package.json
@@ -11,10 +11,10 @@
"typedocs": "typedoc --options ./typedoc.json"
},
"dependencies": {
- "@algolia/client-search": "^5.7.0",
+ "@algolia/client-search": "^5.12.0",
"@stackblitz/sdk": "^1.11.0",
- "@vercel/analytics": "^1.3.1",
- "@vercel/speed-insights": "^1.0.12",
+ "@vercel/analytics": "^1.3.2",
+ "@vercel/speed-insights": "^1.0.14",
"@vue-flow/background": "workspace:*",
"@vue-flow/controls": "workspace:*",
"@vue-flow/core": "workspace:*",
@@ -23,24 +23,24 @@
"@vue-flow/node-toolbar": "workspace:*",
"@vue/repl": "3.4.0",
"blobity": "^0.2.3",
- "vue": "^3.5.11",
- "web-vitals": "^4.2.3"
+ "vue": "^3.5.12",
+ "web-vitals": "^4.2.4"
},
"devDependencies": {
- "@iconify/json": "^2.2.256",
+ "@iconify/json": "^2.2.268",
"@tooling/eslint-config": "workspace:*",
"@tooling/tsconfig": "workspace:*",
"@windicss/plugin-scrollbar": "^1.2.3",
"dotenv": "^16.4.5",
"ohmyfetch": "^0.4.21",
- "typedoc": "^0.26.7",
- "typedoc-plugin-markdown": "^4.2.9",
- "typedoc-plugin-merge-modules": "^6.0.1",
+ "typedoc": "^0.26.11",
+ "typedoc-plugin-markdown": "^4.2.10",
+ "typedoc-plugin-merge-modules": "^6.0.3",
"unplugin-auto-import": "^0.18.3",
- "unplugin-icons": "^0.19.3",
+ "unplugin-icons": "^0.20.0",
"unplugin-vue-components": "^0.27.4",
"vite-plugin-windicss": "^1.9.3",
- "vitepress": "^1.3.4",
+ "vitepress": "^1.5.0",
"windicss": "^3.5.6"
}
}
diff --git a/docs/src/.vitepress/config.mts b/docs/src/.vitepress/config.mts
index cc4f764b..8df6d358 100644
--- a/docs/src/.vitepress/config.mts
+++ b/docs/src/.vitepress/config.mts
@@ -202,7 +202,6 @@ export default defineConfigWithTheme({
collapsed: false,
items: [
{ text: 'Basic', link: '/examples/' },
- { text: 'Layouting', link: '/examples/layout' },
{ text: 'Drag & Drop', link: '/examples/dnd' },
{ text: 'Interactions', link: '/examples/interaction' },
{ text: 'Save & Restore', link: '/examples/save' },
@@ -217,6 +216,14 @@ export default defineConfigWithTheme({
{ text: 'Stress Test', link: '/examples/stress' },
],
},
+ {
+ text: 'Layout',
+ collapsed: false,
+ items: [
+ { text: 'Simple Layout', link: '/examples/layout/simple' },
+ { text: 'Animation & Layout', link: '/examples/layout/animated' },
+ ],
+ },
{
text: 'Nodes',
collapsed: false,
diff --git a/docs/src/examples/layout/animated.md b/docs/src/examples/layout/animated.md
new file mode 100644
index 00000000..476342dd
--- /dev/null
+++ b/docs/src/examples/layout/animated.md
@@ -0,0 +1,10 @@
+# Animation and Layout
+
+In this example we are going to use [dagre](https://github.com/dagrejs/dagre) to layout our nodes and also implement
+some animations
+to demonstrate execution from one node to another in a sequence.
+
+
+
+
+
diff --git a/docs/src/examples/layout.md b/docs/src/examples/layout/simple.md
similarity index 88%
rename from docs/src/examples/layout.md
rename to docs/src/examples/layout/simple.md
index f03e9519..78ac43bb 100644
--- a/docs/src/examples/layout.md
+++ b/docs/src/examples/layout/simple.md
@@ -1,4 +1,4 @@
-# Layouting
+# Layout
A lot of the time, you'll want to layout your nodes automatically instead of assigning their positions manually.
Vue Flow does *not* have a built-in layouting system, but it's easy to use a third-party library to achieve this.
@@ -6,5 +6,5 @@ Vue Flow does *not* have a built-in layouting system, but it's easy to use a thi
In this example we are going to use [dagre](https://github.com/dagrejs/dagre) to layout our nodes.
-
+
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 5d6fc3f4..f553634c 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -24,17 +24,17 @@ importers:
docs:
dependencies:
'@algolia/client-search':
- specifier: ^5.7.0
- version: 5.7.0
+ specifier: ^5.12.0
+ version: 5.12.0
'@stackblitz/sdk':
specifier: ^1.11.0
version: 1.11.0
'@vercel/analytics':
- specifier: ^1.3.1
- version: 1.3.1(react@18.2.0)
+ specifier: ^1.3.2
+ version: 1.3.2(react@18.2.0)
'@vercel/speed-insights':
- specifier: ^1.0.12
- version: 1.0.12(react@18.2.0)(vue-router@4.4.5(vue@3.5.11(typescript@5.4.5)))(vue@3.5.11(typescript@5.4.5))
+ specifier: ^1.0.14
+ version: 1.0.14(react@18.2.0)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5))
'@vue-flow/background':
specifier: workspace:*
version: link:../packages/background
@@ -58,17 +58,17 @@ importers:
version: 3.4.0
blobity:
specifier: ^0.2.3
- version: 0.2.3(react@18.2.0)(vue@3.5.11(typescript@5.4.5))
+ version: 0.2.3(react@18.2.0)(vue@3.5.12(typescript@5.4.5))
vue:
- specifier: ^3.5.11
- version: 3.5.11(typescript@5.4.5)
+ specifier: ^3.5.12
+ version: 3.5.12(typescript@5.4.5)
web-vitals:
- specifier: ^4.2.3
- version: 4.2.3
+ specifier: ^4.2.4
+ version: 4.2.4
devDependencies:
'@iconify/json':
- specifier: ^2.2.256
- version: 2.2.256
+ specifier: ^2.2.268
+ version: 2.2.268
'@tooling/eslint-config':
specifier: workspace:*
version: link:../tooling/eslint-config
@@ -85,29 +85,29 @@ importers:
specifier: ^0.4.21
version: 0.4.21
typedoc:
- specifier: ^0.26.7
- version: 0.26.7(typescript@5.4.5)
+ specifier: ^0.26.11
+ version: 0.26.11(typescript@5.4.5)
typedoc-plugin-markdown:
- specifier: ^4.2.9
- version: 4.2.9(typedoc@0.26.7(typescript@5.4.5))
+ specifier: ^4.2.10
+ version: 4.2.10(typedoc@0.26.11(typescript@5.4.5))
typedoc-plugin-merge-modules:
- specifier: ^6.0.1
- version: 6.0.1(typedoc@0.26.7(typescript@5.4.5))
+ specifier: ^6.0.3
+ version: 6.0.3(typedoc@0.26.11(typescript@5.4.5))
unplugin-auto-import:
specifier: ^0.18.3
- version: 0.18.3(@nuxt/kit@3.13.2(rollup@4.21.0)(webpack-sources@3.2.3))(@vueuse/core@11.0.3(vue@3.5.11(typescript@5.4.5)))(rollup@4.21.0)(webpack-sources@3.2.3)
+ version: 0.18.3(@nuxt/kit@3.13.2(rollup@4.21.0)(webpack-sources@3.2.3))(@vueuse/core@11.2.0(vue@3.5.12(typescript@5.4.5)))(rollup@4.21.0)(webpack-sources@3.2.3)
unplugin-icons:
- specifier: ^0.19.3
- version: 0.19.3(@vue/compiler-sfc@3.5.11)(vue-template-compiler@2.7.14)(webpack-sources@3.2.3)
+ specifier: ^0.20.0
+ version: 0.20.0(@vue/compiler-sfc@3.5.12)(vue-template-compiler@2.7.14)(webpack-sources@3.2.3)
unplugin-vue-components:
specifier: ^0.27.4
- version: 0.27.4(@babel/parser@7.25.7)(@nuxt/kit@3.13.2(rollup@4.21.0)(webpack-sources@3.2.3))(rollup@4.21.0)(vue@3.5.11(typescript@5.4.5))
+ version: 0.27.4(@babel/parser@7.25.7)(@nuxt/kit@3.13.2(rollup@4.21.0)(webpack-sources@3.2.3))(rollup@4.21.0)(vue@3.5.12(typescript@5.4.5))
vite-plugin-windicss:
specifier: ^1.9.3
- version: 1.9.3(vite@5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))
+ version: 1.9.3(vite@5.4.10(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))
vitepress:
- specifier: ^1.3.4
- version: 1.3.4(@algolia/client-search@5.7.0)(@types/node@20.14.2)(postcss@8.4.47)(react@18.2.0)(sass@1.79.4)(search-insights@2.8.3)(terser@5.21.0)(typescript@5.4.5)
+ specifier: ^1.5.0
+ version: 1.5.0(@algolia/client-search@5.12.0)(@types/node@20.14.2)(postcss@8.4.47)(react@18.2.0)(sass@1.79.4)(search-insights@2.8.3)(terser@5.21.0)(typescript@5.4.5)
windicss:
specifier: ^3.5.6
version: 3.5.6
@@ -221,7 +221,7 @@ importers:
version: 5.1.4(vite@5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(vue@3.5.11(typescript@5.4.5))
unplugin-auto-import:
specifier: ^0.18.3
- version: 0.18.3(@nuxt/kit@3.13.2(rollup@4.21.0)(webpack-sources@3.2.3))(@vueuse/core@11.0.3(vue@3.5.11(typescript@5.4.5)))(rollup@4.21.0)(webpack-sources@3.2.3)
+ version: 0.18.3(@nuxt/kit@3.13.2(rollup@4.21.0)(webpack-sources@3.2.3))(@vueuse/core@11.2.0(vue@3.5.11(typescript@5.4.5)))(rollup@4.21.0)(webpack-sources@3.2.3)
vite:
specifier: ^5.4.8
version: 5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0)
@@ -544,7 +544,7 @@ importers:
version: link:../tsconfig
'@vitejs/plugin-vue':
specifier: ^4.4.0
- version: 4.4.0(vite@4.4.11(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(vue@3.5.11(typescript@5.4.5))
+ version: 4.4.0(vite@4.4.11(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(vue@3.5.12(typescript@5.4.5))
defu:
specifier: ^6.1.2
version: 6.1.2
@@ -566,8 +566,14 @@ packages:
peerDependencies:
search-insights: '>= 1 < 3'
- '@algolia/autocomplete-preset-algolia@1.9.3':
- resolution: {integrity: sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==}
+ '@algolia/autocomplete-preset-algolia@1.17.6':
+ resolution: {integrity: sha512-Cvg5JENdSCMuClwhJ1ON1/jSuojaYMiUW2KePm18IkdCzPJj/NXojaOxw58RFtQFpJgfVW8h2E8mEoDtLlMdeA==}
+ peerDependencies:
+ '@algolia/client-search': '>= 4.9.1 < 6'
+ algoliasearch: '>= 4.9.1 < 6'
+
+ '@algolia/autocomplete-shared@1.17.6':
+ resolution: {integrity: sha512-aq/3V9E00Tw2GC/PqgyPGXtqJUlVc17v4cn1EUhSc+O/4zd04Uwb3UmPm8KDaYQQOrkt1lwvCj2vG2wRE5IKhw==}
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
@@ -578,67 +584,57 @@ packages:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
- '@algolia/cache-browser-local-storage@4.20.0':
- resolution: {integrity: sha512-uujahcBt4DxduBTvYdwO3sBfHuJvJokiC3BP1+O70fglmE1ShkH8lpXqZBac1rrU3FnNYSUs4pL9lBdTKeRPOQ==}
-
- '@algolia/cache-common@4.20.0':
- resolution: {integrity: sha512-vCfxauaZutL3NImzB2G9LjLt36vKAckc6DhMp05An14kVo8F1Yofb6SIl6U3SaEz8pG2QOB9ptwM5c+zGevwIQ==}
-
- '@algolia/cache-in-memory@4.20.0':
- resolution: {integrity: sha512-Wm9ak/IaacAZXS4mB3+qF/KCoVSBV6aLgIGFEtQtJwjv64g4ePMapORGmCyulCFwfePaRAtcaTbMcJF+voc/bg==}
-
- '@algolia/client-account@4.20.0':
- resolution: {integrity: sha512-GGToLQvrwo7am4zVkZTnKa72pheQeez/16sURDWm7Seyz+HUxKi3BM6fthVVPUEBhtJ0reyVtuK9ArmnaKl10Q==}
-
- '@algolia/client-analytics@4.20.0':
- resolution: {integrity: sha512-EIr+PdFMOallRdBTHHdKI3CstslgLORQG7844Mq84ib5oVFRVASuuPmG4bXBgiDbcsMLUeOC6zRVJhv1KWI0ug==}
-
- '@algolia/client-common@4.20.0':
- resolution: {integrity: sha512-P3WgMdEss915p+knMMSd/fwiHRHKvDu4DYRrCRaBrsfFw7EQHon+EbRSm4QisS9NYdxbS04kcvNoavVGthyfqQ==}
-
- '@algolia/client-common@5.7.0':
- resolution: {integrity: sha512-hrYlN9yNQukmNj8bBlw9PCXi9jmRQqNUXaG6MXH1aDabjO6YD1WPVqTvaELbIBgTbDJzCn0R2owms0uaxQkjUg==}
+ '@algolia/client-abtesting@5.12.0':
+ resolution: {integrity: sha512-hx4eVydkm3yrFCFxmcBtSzI/ykt0cZ6sDWch+v3JTgKpD2WtosMJU3Upv1AjQ4B6COSHCOWEX3vfFxW6OoH6aA==}
engines: {node: '>= 14.0.0'}
- '@algolia/client-personalization@4.20.0':
- resolution: {integrity: sha512-N9+zx0tWOQsLc3K4PVRDV8GUeOLAY0i445En79Pr3zWB+m67V+n/8w4Kw1C5LlbHDDJcyhMMIlqezh6BEk7xAQ==}
-
- '@algolia/client-search@4.20.0':
- resolution: {integrity: sha512-zgwqnMvhWLdpzKTpd3sGmMlr4c+iS7eyyLGiaO51zDZWGMkpgoNVmltkzdBwxOVXz0RsFMznIxB9zuarUv4TZg==}
-
- '@algolia/client-search@5.7.0':
- resolution: {integrity: sha512-0Frfjt4oxvVP2qsTQAjwdaG5SvJ3TbHBkBrS6M7cG5RDrgHqOrhBnBGCFT+YO3CeNK54r+d57oB1VcD2F1lHuQ==}
+ '@algolia/client-analytics@5.12.0':
+ resolution: {integrity: sha512-EpTsSv6IW8maCfXCDIptgT7+mQJj7pImEkcNUnxR8yUKAHzTogTXv9yGm2WXOZFVuwstd2i0sImhQ1Vz8RH/hA==}
engines: {node: '>= 14.0.0'}
- '@algolia/logger-common@4.20.0':
- resolution: {integrity: sha512-xouigCMB5WJYEwvoWW5XDv7Z9f0A8VoXJc3VKwlHJw/je+3p2RcDXfksLI4G4lIVncFUYMZx30tP/rsdlvvzHQ==}
-
- '@algolia/logger-console@4.20.0':
- resolution: {integrity: sha512-THlIGG1g/FS63z0StQqDhT6bprUczBI8wnLT3JWvfAQDZX5P6fCg7dG+pIrUBpDIHGszgkqYEqECaKKsdNKOUA==}
-
- '@algolia/requester-browser-xhr@4.20.0':
- resolution: {integrity: sha512-HbzoSjcjuUmYOkcHECkVTwAelmvTlgs48N6Owt4FnTOQdwn0b8pdht9eMgishvk8+F8bal354nhx/xOoTfwiAw==}
-
- '@algolia/requester-browser-xhr@5.7.0':
- resolution: {integrity: sha512-ohtIp+lyTGM3agrHyedC3w7ijfdUvSN6wmGuKqUezrNzd0nCkFoLW0OINlyv1ODrTEVnL8PAM/Zqubjafxd/Ww==}
+ '@algolia/client-common@5.12.0':
+ resolution: {integrity: sha512-od3WmO8qxyfNhKc+K3D17tvun3IMs/xMNmxCG9MiElAkYVbPPTRUYMkRneCpmJyQI0hNx2/EA4kZgzVfQjO86Q==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-common@4.20.0':
- resolution: {integrity: sha512-9h6ye6RY/BkfmeJp7Z8gyyeMrmmWsMOCRBXQDs4mZKKsyVlfIVICpcSibbeYcuUdurLhIlrOUkH3rQEgZzonng==}
-
- '@algolia/requester-fetch@5.7.0':
- resolution: {integrity: sha512-Eg8cBhNg2QNnDDldyK77aXvg3wIc5qnpCDCAJXQ2oaqZwwvvYaTgnP1ofznNG6+klri4Fk1YAaC9wyDBhByWIA==}
+ '@algolia/client-insights@5.12.0':
+ resolution: {integrity: sha512-8alajmsYUd+7vfX5lpRNdxqv3Xx9clIHLUItyQK0Z6gwGMbVEFe6YYhgDtwslMAP0y6b0WeJEIZJMLgT7VYpRw==}
engines: {node: '>= 14.0.0'}
- '@algolia/requester-node-http@4.20.0':
- resolution: {integrity: sha512-ocJ66L60ABSSTRFnCHIEZpNHv6qTxsBwJEPfYaSBsLQodm0F9ptvalFkHMpvj5DfE22oZrcrLbOYM2bdPJRHng==}
-
- '@algolia/requester-node-http@5.7.0':
- resolution: {integrity: sha512-8BDssYEkcp1co06KtHO9b37H+5zVM/h+5kyesJb2C2EHFO3kgzLHWl/JyXOVtYlKQBkmdObYOI0s6JaXRy2yQA==}
+ '@algolia/client-personalization@5.12.0':
+ resolution: {integrity: sha512-bUV9HtfkTBgpoVhxFrMkmVPG03ZN1Rtn51kiaEtukucdk3ggjR9Qu1YUfRSU2lFgxr9qJc8lTxwfvhjCeJRcqw==}
engines: {node: '>= 14.0.0'}
- '@algolia/transporter@4.20.0':
- resolution: {integrity: sha512-Lsii1pGWOAISbzeyuf+r/GPhvHMPHSPrTDWNcIzOE1SG1inlJHICaVe2ikuoRjcpgxZNU54Jl+if15SUCsaTUg==}
+ '@algolia/client-query-suggestions@5.12.0':
+ resolution: {integrity: sha512-Q5CszzGWfxbIDs9DJ/QJsL7bP6h+lJMg27KxieEnI9KGCu0Jt5iFA3GkREkgRZxRdzlHbZKkrIzhtHVbSHw/rg==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/client-search@5.12.0':
+ resolution: {integrity: sha512-R3qzEytgVLHOGNri+bpta6NtTt7YtkvUe/QBcAmMDjW4Jk1P0eBYIPfvnzIPbINRsLxIq9fZs9uAYBgsrts4Zg==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/ingestion@1.12.0':
+ resolution: {integrity: sha512-zpHo6qhR22tL8FsdSI4DvEraPDi/019HmMrCFB/TUX98yzh5ooAU7sNW0qPL1I7+S++VbBmNzJOEU9VI8tEC8A==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/monitoring@1.12.0':
+ resolution: {integrity: sha512-i2AJZED/zf4uhxezAJUhMKoL5QoepCBp2ynOYol0N76+TSoohaMADdPnWCqOULF4RzOwrG8wWynAwBlXsAI1RQ==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/recommend@5.12.0':
+ resolution: {integrity: sha512-0jmZyKvYnB/Bj5c7WKsKedOUjnr0UtXm0LVFUdQrxXfqOqvWv9n6Vpr65UjdYG4Q49kRQxhlwtal9WJYrYymXg==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/requester-browser-xhr@5.12.0':
+ resolution: {integrity: sha512-KxwleraFuVoEGCoeW6Y1RAEbgBMS7SavqeyzWdtkJc6mXeCOJXn1iZitb8Tyn2FcpMNUKlSm0adrUTt7G47+Ow==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/requester-fetch@5.12.0':
+ resolution: {integrity: sha512-FuDZXUGU1pAg2HCnrt8+q1VGHKChV/LhvjvZlLOT7e56GJie6p+EuLu4/hMKPOVuQQ8XXtrTHKIU3Lw+7O5/bQ==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/requester-node-http@5.12.0':
+ resolution: {integrity: sha512-ncDDY7CxZhMs6LIoPl+vHFQceIBhYPY5EfuGF1V7beO0U38xfsCYEyutEFB2kRzf4D9Gqppn3iWX71sNtrKcuw==}
+ engines: {node: '>= 14.0.0'}
'@ampproject/remapping@2.2.1':
resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
@@ -1067,14 +1063,14 @@ packages:
resolution: {integrity: sha512-mepCf/e9+SKYy1d02/UkvSy6+6MoyXhVxP8lLDfA7BPE1X1d4dR0sZznmbM8/XVJ1GPM+Svnx7Xj6ZweByWUkw==}
engines: {node: '>17.0.0'}
- '@docsearch/css@3.6.1':
- resolution: {integrity: sha512-VtVb5DS+0hRIprU2CO6ZQjK2Zg4QU5HrDM1+ix6rT0umsYvFvatMAnf97NHZlVWDaaLlx7GRfR/7FikANiM2Fg==}
+ '@docsearch/css@3.6.3':
+ resolution: {integrity: sha512-3uvbg8E7rhqE1C4oBAK3tGlS2qfhi9zpfZgH/yjDPF73vd9B41urVIKujF4rczcF4E3qs34SedhehiDJ4UdNBA==}
- '@docsearch/js@3.6.1':
- resolution: {integrity: sha512-erI3RRZurDr1xES5hvYJ3Imp7jtrXj6f1xYIzDzxiS7nNBufYWPbJwrmMqWC5g9y165PmxEmN9pklGCdLi0Iqg==}
+ '@docsearch/js@3.6.3':
+ resolution: {integrity: sha512-2mBFomaN6VijyQQGwieERDu9GeE0hlv9TQRZBTOYsPQW7/vqtd4hnHEkbBbaBRiS4PYcy+UhikbMuDExJs63UA==}
- '@docsearch/react@3.6.1':
- resolution: {integrity: sha512-qXZkEPvybVhSXj0K7U3bXc233tk5e8PfhoZ6MhPOiik/qUQxYC+Dn9DnoS7CxHQQhHfCvTiN0eY9M12oRghEXw==}
+ '@docsearch/react@3.6.3':
+ resolution: {integrity: sha512-2munr4uBuZq1PG+Ge+F+ldIdxb3Wi8OmEIv2tQQb4RvEvvph+xtQkxwHzVIEnt5s+HecwucuXwB+3JhcZboFLg==}
peerDependencies:
'@types/react': '>= 16.8.0 < 19.0.0'
react: '>= 16.8.0 < 19.0.0'
@@ -1679,8 +1675,11 @@ packages:
'@humanwhocodes/object-schema@1.2.1':
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
- '@iconify/json@2.2.256':
- resolution: {integrity: sha512-u2RwfBUuDE3A8qx3vnXdcJMtirHc9QrRRULfGY6Il6/K76Odfrm4yVqS/fYIh+wXwWl/fZdAZEozqxpZftfnIQ==}
+ '@iconify-json/simple-icons@1.2.11':
+ resolution: {integrity: sha512-AHCGDtBRqP+JzAbBzgO8uN/08CXxEmuaC6lQQZ3b5burKhRU12AJnJczwbUw2K5Mb/U85EpSUNhYMG3F28b8NA==}
+
+ '@iconify/json@2.2.268':
+ resolution: {integrity: sha512-iGeNYAX81qJAMjQaOV3dSk1ybcPHTiRI8fppZALqJB6xrRrAiDev+Lzuua4DjGv7xHAHvADbeUlNXm/1eLRubQ==}
'@iconify/types@2.0.0':
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
@@ -2125,27 +2124,39 @@ packages:
cpu: [x64]
os: [win32]
- '@shikijs/core@1.14.1':
- resolution: {integrity: sha512-KyHIIpKNaT20FtFPFjCQB5WVSTpLR/n+jQXhWHWVUMm9MaOaG9BGOG0MSyt7yA4+Lm+4c9rTc03tt3nYzeYSfw==}
-
'@shikijs/core@1.21.0':
resolution: {integrity: sha512-zAPMJdiGuqXpZQ+pWNezQAk5xhzRXBNiECFPcJLtUdsFM3f//G95Z15EHTnHchYycU8kIIysqGgxp8OVSj1SPQ==}
+ '@shikijs/core@1.22.2':
+ resolution: {integrity: sha512-bvIQcd8BEeR1yFvOYv6HDiyta2FFVePbzeowf5pPS1avczrPK+cjmaxxh0nx5QzbON7+Sv0sQfQVciO7bN72sg==}
+
'@shikijs/engine-javascript@1.21.0':
resolution: {integrity: sha512-jxQHNtVP17edFW4/0vICqAVLDAxmyV31MQJL4U/Kg+heQALeKYVOWo0sMmEZ18FqBt+9UCdyqGKYE7bLRtk9mg==}
+ '@shikijs/engine-javascript@1.22.2':
+ resolution: {integrity: sha512-iOvql09ql6m+3d1vtvP8fLCVCK7BQD1pJFmHIECsujB0V32BJ0Ab6hxk1ewVSMFA58FI0pR2Had9BKZdyQrxTw==}
+
'@shikijs/engine-oniguruma@1.21.0':
resolution: {integrity: sha512-AIZ76XocENCrtYzVU7S4GY/HL+tgHGbVU+qhiDyNw1qgCA5OSi4B4+HY4BtAoJSMGuD/L5hfTzoRVbzEm2WTvg==}
- '@shikijs/transformers@1.14.1':
- resolution: {integrity: sha512-JJqL8QBVCJh3L61jqqEXgFq1cTycwjcGj7aSmqOEsbxnETM9hRlaB74QuXvY/fVJNjbNt8nvWo0VwAXKvMSLRg==}
+ '@shikijs/engine-oniguruma@1.22.2':
+ resolution: {integrity: sha512-GIZPAGzQOy56mGvWMoZRPggn0dTlBf1gutV5TdceLCZlFNqWmuc7u+CzD0Gd9vQUTgLbrt0KLzz6FNprqYAxlA==}
+
+ '@shikijs/transformers@1.22.2':
+ resolution: {integrity: sha512-8f78OiBa6pZDoZ53lYTmuvpFPlWtevn23bzG+azpPVvZg7ITax57o/K3TC91eYL3OMJOO0onPbgnQyZjRos8XQ==}
'@shikijs/types@1.21.0':
resolution: {integrity: sha512-tzndANDhi5DUndBtpojEq/42+dpUF2wS7wdCDQaFtIXm3Rd1QkrcVgSSRLOvEwexekihOXfbYJINW37g96tJRw==}
+ '@shikijs/types@1.22.2':
+ resolution: {integrity: sha512-NCWDa6LGZqTuzjsGfXOBWfjS/fDIbDdmVDug+7ykVe1IKT4c1gakrvlfFYp5NhAXH/lyqLM8wsAPo5wNy73Feg==}
+
'@shikijs/vscode-textmate@9.2.2':
resolution: {integrity: sha512-TMp15K+GGYrWlZM8+Lnj9EaHEFmOen0WJBrfa17hF7taDOYthuPPV0GWzfd/9iMij0akS/8Yw2ikquH7uVi/fg==}
+ '@shikijs/vscode-textmate@9.3.0':
+ resolution: {integrity: sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==}
+
'@sindresorhus/merge-streams@2.3.0':
resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
engines: {node: '>=18'}
@@ -2412,11 +2423,11 @@ packages:
peerDependencies:
vue: '>=2.7 || >=3'
- '@vercel/analytics@1.3.1':
- resolution: {integrity: sha512-xhSlYgAuJ6Q4WQGkzYTLmXwhYl39sWjoMA3nHxfkvG+WdBT25c563a7QhwwKivEOZtPJXifYHR1m2ihoisbWyA==}
+ '@vercel/analytics@1.3.2':
+ resolution: {integrity: sha512-n/Ws7skBbW+fUBMeg+jrT30+GP00jTHvCcL4fuVrShuML0uveEV/4vVUdvqEVnDgXIGfLm0GXW5EID2mCcRXhg==}
peerDependencies:
next: '>= 13'
- react: ^18 || ^19
+ react: ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
next:
optional: true
@@ -2428,13 +2439,13 @@ packages:
engines: {node: '>=16'}
hasBin: true
- '@vercel/speed-insights@1.0.12':
- resolution: {integrity: sha512-ZGQ+a7bcfWJD2VYEp2R1LHvRAMyyaFBYytZXsfnbOMkeOvzGNVxUL7aVUvisIrTZjXTSsxG45DKX7yiw6nq2Jw==}
+ '@vercel/speed-insights@1.0.14':
+ resolution: {integrity: sha512-env1BkPddz1UaEZwBL4GmfRksMi2LbiYaKuoxMQjfLk83aEh7kkWMukkUhpQVs717NE6nnD+1+KO85GZHOZ4nQ==}
peerDependencies:
'@sveltejs/kit': ^1 || ^2
next: '>= 13'
- react: ^18 || ^19
- svelte: ^4
+ react: ^18 || ^19 || ^19.0.0-rc
+ svelte: '>= 4'
vue: ^3
vue-router: ^4
peerDependenciesMeta:
@@ -2472,13 +2483,6 @@ packages:
vite: ^4.0.0
vue: ^3.2.25
- '@vitejs/plugin-vue@5.1.2':
- resolution: {integrity: sha512-nY9IwH12qeiJqumTCLJLE7IiNx7HZ39cbHaysEUd+Myvbz9KAqd2yq+U01Kab1R/H1BmiyM2ShTYlNH32Fzo3A==}
- engines: {node: ^18.0.0 || >=20.0.0}
- peerDependencies:
- vite: ^5.0.0
- vue: ^3.2.25
-
'@vitejs/plugin-vue@5.1.4':
resolution: {integrity: sha512-N2XSI2n3sQqp5w7Y/AN/L2XDjBIRGqXko+eDp42sydYSBeJuSm5a1sLf8zakmo8u7tA8NmBgoDLA1HeOESjp9A==}
engines: {node: ^18.0.0 || >=20.0.0}
@@ -2546,6 +2550,9 @@ packages:
'@vue/compiler-core@3.5.11':
resolution: {integrity: sha512-PwAdxs7/9Hc3ieBO12tXzmTD+Ln4qhT/56S+8DvrrZ4kLDn4Z/AMUr8tXJD0axiJBS0RKIoNaR0yMuQB9v9Udg==}
+ '@vue/compiler-core@3.5.12':
+ resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==}
+
'@vue/compiler-dom@3.3.4':
resolution: {integrity: sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==}
@@ -2555,44 +2562,53 @@ packages:
'@vue/compiler-dom@3.5.11':
resolution: {integrity: sha512-pyGf8zdbDDRkBrEzf8p7BQlMKNNF5Fk/Cf/fQ6PiUz9at4OaUfyXW0dGJTo2Vl1f5U9jSLCNf0EZJEogLXoeew==}
+ '@vue/compiler-dom@3.5.12':
+ resolution: {integrity: sha512-9G6PbJ03uwxLHKQ3P42cMTi85lDRvGLB2rSGOiQqtXELat6uI4n8cNz9yjfVHRPIu+MsK6TE418Giruvgptckg==}
+
'@vue/compiler-sfc@3.3.4':
resolution: {integrity: sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==}
'@vue/compiler-sfc@3.5.11':
resolution: {integrity: sha512-gsbBtT4N9ANXXepprle+X9YLg2htQk1sqH/qGJ/EApl+dgpUBdTv3yP7YlR535uHZY3n6XaR0/bKo0BgwwDniw==}
+ '@vue/compiler-sfc@3.5.12':
+ resolution: {integrity: sha512-2k973OGo2JuAa5+ZlekuQJtitI5CgLMOwgl94BzMCsKZCX/xiqzJYzapl4opFogKHqwJk34vfsaKpfEhd1k5nw==}
+
'@vue/compiler-ssr@3.3.4':
resolution: {integrity: sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==}
'@vue/compiler-ssr@3.5.11':
resolution: {integrity: sha512-P4+GPjOuC2aFTk1Z4WANvEhyOykcvEd5bIj2KVNGKGfM745LaXGr++5njpdBTzVz5pZifdlR1kpYSJJpIlSePA==}
+ '@vue/compiler-ssr@3.5.12':
+ resolution: {integrity: sha512-eLwc7v6bfGBSM7wZOGPmRavSWzNFF6+PdRhE+VFJhNCgHiF8AM7ccoqcv5kBXA2eWUfigD7byekvf/JsOfKvPA==}
+
'@vue/compiler-vue2@2.7.16':
resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
'@vue/devtools-api@6.6.4':
resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
- '@vue/devtools-api@7.3.9':
- resolution: {integrity: sha512-D+GTYtFg68bqSu66EugQUydsOqaDlPLNmYw5oYk8k81uBu9/bVTUrqlAJrAA9Am7MXhKz2gWdDkopY6sOBf/Bg==}
+ '@vue/devtools-api@7.6.2':
+ resolution: {integrity: sha512-NCT0ujqlwAhoFvCsAG7G5qS8w/A/dhvFSt2BhmNxyqgpYDrf9CG1zYyWLQkE3dsZ+5lCT6ULUic2VKNaE07Vzg==}
'@vue/devtools-core@7.4.4':
resolution: {integrity: sha512-DLxgA3DfeADkRzhAfm3G2Rw/cWxub64SdP5b+s5dwL30+whOGj+QNhmyFpwZ8ZTrHDFRIPj0RqNzJ8IRR1pz7w==}
peerDependencies:
vue: ^3.0.0
- '@vue/devtools-kit@7.3.9':
- resolution: {integrity: sha512-Gr17nA+DaQzqyhNx1DUJr1CJRzTRfbIuuC80ZgU8MD/qNO302tv9la+ROi+Uaw+ULVwU9T71GnwLy4n8m9Lspg==}
-
'@vue/devtools-kit@7.4.4':
resolution: {integrity: sha512-awK/4NfsUG0nQ7qnTM37m7ZkEUMREyPh8taFCX+uQYps/MTFEum0AD05VeGDRMXwWvMmGIcWX9xp8ZiBddY0jw==}
- '@vue/devtools-shared@7.3.9':
- resolution: {integrity: sha512-CdfMRZKXyI8vw+hqOcQIiLihB6Hbbi7WNZGp7LsuH1Qe4aYAFmTaKjSciRZ301oTnwmU/knC/s5OGuV6UNiNoA==}
+ '@vue/devtools-kit@7.6.2':
+ resolution: {integrity: sha512-k61BxHRmcTtIQZFouF9QWt9nCCNtSdw12lhg8VNtHq5/XOBGD+ewiK27a40UJ8UPYoCJvi80hbvbYr5E/Zeu1g==}
'@vue/devtools-shared@7.4.6':
resolution: {integrity: sha512-rPeSBzElnHYMB05Cc056BQiJpgocQjY8XVulgni+O9a9Gr9tNXgPteSzFFD+fT/iWMxNuUgGKs9CuW5DZewfIg==}
+ '@vue/devtools-shared@7.6.2':
+ resolution: {integrity: sha512-lcjyJ7hCC0W0kNwnCGMLVTMvDLoZgjcq9BvboPgS+6jQyDul7fpzRSKTGtGhCHoxrDox7qBAKGbAl2Rcf7GE1A==}
+
'@vue/language-core@1.8.16':
resolution: {integrity: sha512-IAONyjgR3XImwgrtyQ7CCJlSXTlLesXG6/LpPjOBaXFiwknmGf1yDAXGa9fVH0lRplcnvOA7HNDI92OwWBi9qg==}
peerDependencies:
@@ -2618,6 +2634,9 @@ packages:
'@vue/reactivity@3.5.11':
resolution: {integrity: sha512-Nqo5VZEn8MJWlCce8XoyVqHZbd5P2NH+yuAaFzuNSR96I+y1cnuUiq7xfSG+kyvLSiWmaHTKP1r3OZY4mMD50w==}
+ '@vue/reactivity@3.5.12':
+ resolution: {integrity: sha512-UzaN3Da7xnJXdz4Okb/BGbAaomRHc3RdoWqTzlvd9+WBR5m3J39J1fGcHes7U3za0ruYn/iYy/a1euhMEHvTAg==}
+
'@vue/repl@3.4.0':
resolution: {integrity: sha512-iHhIsmQsp9PJuOwverCRQC2owFb0FSFzk6YWwyirAX6AqH//2FrUV4WB16f9lGX5pDXAHjxlzAE6Lqf9P17HHA==}
@@ -2627,12 +2646,18 @@ packages:
'@vue/runtime-core@3.5.11':
resolution: {integrity: sha512-7PsxFGqwfDhfhh0OcDWBG1DaIQIVOLgkwA5q6MtkPiDFjp5gohVnJEahSktwSFLq7R5PtxDKy6WKURVN1UDbzA==}
+ '@vue/runtime-core@3.5.12':
+ resolution: {integrity: sha512-hrMUYV6tpocr3TL3Ad8DqxOdpDe4zuQY4HPY3X/VRh+L2myQO8MFXPAMarIOSGNu0bFAjh1yBkMPXZBqCk62Uw==}
+
'@vue/runtime-dom@3.3.4':
resolution: {integrity: sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==}
'@vue/runtime-dom@3.5.11':
resolution: {integrity: sha512-GNghjecT6IrGf0UhuYmpgaOlN7kxzQBhxWEn08c/SQDxv1yy4IXI1bn81JgEpQ4IXjRxWtPyI8x0/7TF5rPfYQ==}
+ '@vue/runtime-dom@3.5.12':
+ resolution: {integrity: sha512-q8VFxR9A2MRfBr6/55Q3umyoN7ya836FzRXajPB6/Vvuv0zOPL+qltd9rIMzG/DbRLAIlREmnLsplEF/kotXKA==}
+
'@vue/server-renderer@3.3.4':
resolution: {integrity: sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==}
peerDependencies:
@@ -2643,6 +2668,11 @@ packages:
peerDependencies:
vue: 3.5.11
+ '@vue/server-renderer@3.5.12':
+ resolution: {integrity: sha512-I3QoeDDeEPZm8yR28JtY+rk880Oqmj43hreIBVTicisFTx/Dl7JpG72g/X7YF8hnQD3IFhkky5i2bPonwrTVPg==}
+ peerDependencies:
+ vue: 3.5.12
+
'@vue/shared@3.3.4':
resolution: {integrity: sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==}
@@ -2652,17 +2682,20 @@ packages:
'@vue/shared@3.5.11':
resolution: {integrity: sha512-W8GgysJVnFo81FthhzurdRAWP/byq3q2qIw70e0JWblzVhjgOMiC2GyovXrZTFQJnFVryYaKGP3Tc9vYzYm6PQ==}
+ '@vue/shared@3.5.12':
+ resolution: {integrity: sha512-L2RPSAwUFbgZH20etwrXyVyCBu9OxRSi8T/38QsvnkJyvq2LufW2lDCOzm7t/U9C1mkhJGWYfCuFBCmIuNivrg==}
+
'@vue/typescript@1.8.16':
resolution: {integrity: sha512-ywbY4bS4YJw8gYyPpOhwyutqzl0lqkYI7l3waZkOcQG4ZYgiu6KyHZc3aagEbH8saFQTQxi5+I3ATUN5KwfvNw==}
'@vueuse/core@10.5.0':
resolution: {integrity: sha512-z/tI2eSvxwLRjOhDm0h/SXAjNm8N5ld6/SC/JQs6o6kpJ6Ya50LnEL8g5hoYu005i28L0zqB5L5yAl8Jl26K3A==}
- '@vueuse/core@11.0.3':
- resolution: {integrity: sha512-RENlh64+SYA9XMExmmH1a3TPqeIuJBNNB/63GT35MZI+zpru3oMRUA6cEFr9HmGqEgUisurwGwnIieF6qu3aXw==}
+ '@vueuse/core@11.2.0':
+ resolution: {integrity: sha512-JIUwRcOqOWzcdu1dGlfW04kaJhW3EXnnjJJfLTtddJanymTL7lF1C0+dVVZ/siLfc73mWn+cGP1PE1PKPruRSA==}
- '@vueuse/integrations@11.0.3':
- resolution: {integrity: sha512-w6CDisaxs19S5Fd+NPPLFaA3GoX5gxuxrbTTBu0EYap7oH13w75L6C/+7e9mcoF9akhcR6GyYajwVMQEjdapJg==}
+ '@vueuse/integrations@11.2.0':
+ resolution: {integrity: sha512-zGXz3dsxNHKwiD9jPMvR3DAxQEOV6VWIEYTGVSB9PNpk4pTWR+pXrHz9gvXWcP2sTk3W2oqqS6KwWDdntUvNVA==}
peerDependencies:
async-validator: ^4
axios: ^1
@@ -2705,14 +2738,14 @@ packages:
'@vueuse/metadata@10.5.0':
resolution: {integrity: sha512-fEbElR+MaIYyCkeM0SzWkdoMtOpIwO72x8WsZHRE7IggiOlILttqttM69AS13nrDxosnDBYdyy3C5mR1LCxHsw==}
- '@vueuse/metadata@11.0.3':
- resolution: {integrity: sha512-+FtbO4SD5WpsOcQTcC0hAhNlOid6QNLzqedtquTtQ+CRNBoAt9GuV07c6KNHK1wCmlq8DFPwgiLF2rXwgSHX5Q==}
+ '@vueuse/metadata@11.2.0':
+ resolution: {integrity: sha512-L0ZmtRmNx+ZW95DmrgD6vn484gSpVeRbgpWevFKXwqqQxW9hnSi2Ppuh2BzMjnbv4aJRiIw8tQatXT9uOB23dQ==}
'@vueuse/shared@10.5.0':
resolution: {integrity: sha512-18iyxbbHYLst9MqU1X1QNdMHIjks6wC7XTVf0KNOv5es/Ms6gjVFCAAWTVP2JStuGqydg3DT+ExpFORUEi9yhg==}
- '@vueuse/shared@11.0.3':
- resolution: {integrity: sha512-0rY2m6HS5t27n/Vp5cTDsKTlNnimCqsbh/fmT2LgE+aaU42EMfXo8+bNX91W9I7DDmxfuACXMmrd7d79JxkqWA==}
+ '@vueuse/shared@11.2.0':
+ resolution: {integrity: sha512-VxFjie0EanOudYSgMErxXfq6fo8vhr5ICI+BuE3I9FnX7ePllEsVrRQ7O6Q1TLgApeLuPKcHQxAXpP+KnlrJsg==}
'@windicss/config@1.9.3':
resolution: {integrity: sha512-u8GUjsfC9r5X1AGYhzb1lX3zZj8wqk6SH1DYex8XUGmZ1M2UpvnUPOFi63XFViduspQ6l2xTX84QtG+lUzhEoQ==}
@@ -2778,8 +2811,9 @@ packages:
ajv@8.12.0:
resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
- algoliasearch@4.20.0:
- resolution: {integrity: sha512-y+UHEjnOItoNy0bYO+WWmLWBlPwDjKHW6mNHrPi0NkuhpQOOEbrkwQH/wgKFDLh7qlKjzoKeiRtlpewDPDG23g==}
+ algoliasearch@5.12.0:
+ resolution: {integrity: sha512-psGBRYdGgik8I6m28iAB8xpubvjEt7UQU+w5MAJUA2324WHiGoHap5BPkkjB14rMaXeRts6pmOsrVIglGyOVwg==}
+ engines: {node: '>= 14.0.0'}
ansi-colors@4.1.3:
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
@@ -2958,6 +2992,9 @@ packages:
birpc@0.2.17:
resolution: {integrity: sha512-+hkTxhot+dWsLpp3gia5AkVHIsKlZybNT5gIYiDlNzJrmYPcTM9k5/w2uaj3IPpd7LlEYpmCj4Jj1nC41VhDFg==}
+ birpc@0.2.19:
+ resolution: {integrity: sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ==}
+
bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
@@ -4321,8 +4358,8 @@ packages:
flatted@3.3.1:
resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
- focus-trap@7.5.4:
- resolution: {integrity: sha512-N7kHdlgsO/v+iD/dMoJKtsSqs5Dz/dXZVebRgJw23LDk+jMi/974zyiOYDziY2JPp8xivq9BmUGwIJMiuSBi7w==}
+ focus-trap@7.6.0:
+ resolution: {integrity: sha512-1td0l3pMkWJLFipobUcGaf+5DTY4PLDDrcqoSaKP8ediO/CoWCCYk/fT/Y2A4e6TNB+Sh6clRJCjOPPnKoNHnQ==}
for-each@0.3.3:
resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
@@ -6416,12 +6453,12 @@ packages:
engines: {node: '>=4'}
hasBin: true
- shiki@1.14.1:
- resolution: {integrity: sha512-FujAN40NEejeXdzPt+3sZ3F2dx1U24BY2XTY01+MG8mbxCiA2XukXdcbyMyLAHJ/1AUUnQd1tZlvIjefWWEJeA==}
-
shiki@1.21.0:
resolution: {integrity: sha512-apCH5BoWTrmHDPGgg3RF8+HAAbEL/CdbYr8rMw7eIrdhCkZHdVGat5mMNlRtd1erNG01VPMIKHNQ0Pj2HMAiog==}
+ shiki@1.22.2:
+ resolution: {integrity: sha512-3IZau0NdGKXhH2bBlUk4w1IHNxPh6A5B2sUpyY+8utLu2j/h1QpFkAaUA1bAMxOWWGtTWcAh531vnS4NJKS/lA==}
+
shx@0.3.4:
resolution: {integrity: sha512-N6A9MLVqjxZYcVn8hLmtneQWIJtp8IKzMP4eMnx+nqkvXoqinUPCbUFLp2UcWTEIUONhlk0ewxr/jaVGlc+J+g==}
engines: {node: '>=6'}
@@ -6866,19 +6903,19 @@ packages:
typed-array-length@1.0.4:
resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
- typedoc-plugin-markdown@4.2.9:
- resolution: {integrity: sha512-Wqmx+7ezKFgtTklEq/iUhQ5uFeBDhAT6wiS2na9cFLidIpl9jpDHJy/COYh8jUZXgIRIZVQ/bPNjyrnPFoDwzg==}
+ typedoc-plugin-markdown@4.2.10:
+ resolution: {integrity: sha512-PLX3pc1/7z13UJm4TDE9vo9jWGcClFUErXXtd5LdnoLjV6mynPpqZLU992DwMGFSRqJFZeKbVyqlNNeNHnk2tQ==}
engines: {node: '>= 18'}
peerDependencies:
typedoc: 0.26.x
- typedoc-plugin-merge-modules@6.0.1:
- resolution: {integrity: sha512-cEolb9LDW1pmVyZmNkF3nBMapTu57Ppnim8a6OLqjQdkWjagM7gDGIn7F4Bq17gg9kkFqT4ohD3mAwFq6EkARw==}
+ typedoc-plugin-merge-modules@6.0.3:
+ resolution: {integrity: sha512-66mKhcU3RqjLnFzrC4jObqKpnKg+yCyBmTYfzGHjuVlBb1ZhPyD64kLBR6ZsSx5oy99W/Kizu5xc5NBN2nY3kQ==}
peerDependencies:
typedoc: 0.26.x
- typedoc@0.26.7:
- resolution: {integrity: sha512-gUeI/Wk99vjXXMi8kanwzyhmeFEGv1LTdTQsiyIsmSYsBebvFxhbcyAx7Zjo4cMbpLGxM4Uz3jVIjksu/I2v6Q==}
+ typedoc@0.26.11:
+ resolution: {integrity: sha512-sFEgRRtrcDl2FxVP58Ze++ZK2UQAEvtvvH8rRlig1Ja3o7dDaMHmaBfvJmdGnNEFaLTpQsN8dpvZaTqJSu/Ugw==}
engines: {node: '>= 18'}
hasBin: true
peerDependencies:
@@ -6983,12 +7020,13 @@ packages:
'@vueuse/core':
optional: true
- unplugin-icons@0.19.3:
- resolution: {integrity: sha512-EUegRmsAI6+rrYr0vXjFlIP+lg4fSC4zb62zAZKx8FGXlWAGgEGBCa3JDe27aRAXhistObLPbBPhwa/0jYLFkQ==}
+ unplugin-icons@0.20.0:
+ resolution: {integrity: sha512-817iCV6AMADLHHcs9R15XII5Jaz++thnaQRzXbd0IZDcxi43iekoKENpuxqZN3k3+aOqJfqxcZ6I8POJ35UCEA==}
peerDependencies:
'@svgr/core': '>=7.0.0'
'@svgx/core': ^1.0.1
'@vue/compiler-sfc': ^3.0.2 || ^2.7.0
+ svelte: ^3.0.0 || ^4.0.0 || ^5.0.0
vue-template-compiler: ^2.6.12
vue-template-es2015-compiler: ^1.9.0
peerDependenciesMeta:
@@ -6998,6 +7036,8 @@ packages:
optional: true
'@vue/compiler-sfc':
optional: true
+ svelte:
+ optional: true
vue-template-compiler:
optional: true
vue-template-es2015-compiler:
@@ -7264,6 +7304,37 @@ packages:
terser:
optional: true
+ vite@5.4.10:
+ resolution: {integrity: sha512-1hvaPshuPUtxeQ0hsVH3Mud0ZanOLwVTneA1EgbAM5LhaZEqyPWGRQ7BtaMvUrTDeEaC8pxtj6a6jku3x4z6SQ==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || >=20.0.0
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ sass-embedded: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+
vite@5.4.8:
resolution: {integrity: sha512-FqrItQ4DT1NC4zCUqMB4c4AZORMKIa0m8/URVCZ77OZ/QSNeJ54bU1vrFADbDsuwfIPcgknRkmqakQcgnL4GiQ==}
engines: {node: ^18.0.0 || >=20.0.0}
@@ -7295,8 +7366,8 @@ packages:
terser:
optional: true
- vitepress@1.3.4:
- resolution: {integrity: sha512-I1/F6OW1xl3kW4PaIMC6snxjWgf3qfziq2aqsDoFc/Gt41WbcRv++z8zjw8qGRIJ+I4bUW7ZcKFDHHN/jkH9DQ==}
+ vitepress@1.5.0:
+ resolution: {integrity: sha512-q4Q/G2zjvynvizdB3/bupdYkCJe2umSAMv9Ju4d92E6/NXJ59z70xB0q5p/4lpRyAwflDsbwy1mLV9Q5+nlB+g==}
hasBin: true
peerDependencies:
markdown-it-mathjax3: ^4
@@ -7396,11 +7467,19 @@ packages:
typescript:
optional: true
+ vue@3.5.12:
+ resolution: {integrity: sha512-CLVZtXtn2ItBIi/zHZ0Sg1Xkb7+PU32bJJ8Bmy7ts3jxXTcbfsEfBivFYYWz1Hur+lalqGAh65Coin0r+HRUfg==}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
wcwidth@1.0.1:
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
- web-vitals@4.2.3:
- resolution: {integrity: sha512-/CFAm1mNxSmOj6i0Co+iGFJ58OS4NRGVP+AWS/l509uIK5a1bSoIVaHz/ZumpHTfHSZBpgrJ+wjfpAOrTHok5Q==}
+ web-vitals@4.2.4:
+ resolution: {integrity: sha512-r4DIlprAGwJ7YM11VZp4R884m0Vmgr6EAKe3P+kO0PPj3Unqyvv59rczf6UiGcb9Z8QxZVcqKNwv/g0WNdWwsw==}
webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
@@ -7564,116 +7643,115 @@ snapshots:
'@aashutoshrathi/word-wrap@1.2.6': {}
- '@algolia/autocomplete-core@1.9.3(@algolia/client-search@5.7.0)(algoliasearch@4.20.0)(search-insights@2.8.3)':
+ '@algolia/autocomplete-core@1.9.3(@algolia/client-search@5.12.0)(algoliasearch@5.12.0)(search-insights@2.8.3)':
dependencies:
- '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@5.7.0)(algoliasearch@4.20.0)(search-insights@2.8.3)
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@5.7.0)(algoliasearch@4.20.0)
+ '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@5.12.0)(algoliasearch@5.12.0)(search-insights@2.8.3)
+ '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@5.12.0)(algoliasearch@5.12.0)
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- search-insights
- '@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@5.7.0)(algoliasearch@4.20.0)(search-insights@2.8.3)':
+ '@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@5.12.0)(algoliasearch@5.12.0)(search-insights@2.8.3)':
dependencies:
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@5.7.0)(algoliasearch@4.20.0)
+ '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@5.12.0)(algoliasearch@5.12.0)
search-insights: 2.8.3
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- '@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@5.7.0)(algoliasearch@4.20.0)':
+ '@algolia/autocomplete-preset-algolia@1.17.6(@algolia/client-search@5.12.0)(algoliasearch@5.12.0)':
dependencies:
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@5.7.0)(algoliasearch@4.20.0)
- '@algolia/client-search': 5.7.0
- algoliasearch: 4.20.0
+ '@algolia/autocomplete-shared': 1.17.6(@algolia/client-search@5.12.0)(algoliasearch@5.12.0)
+ '@algolia/client-search': 5.12.0
+ algoliasearch: 5.12.0
- '@algolia/autocomplete-shared@1.9.3(@algolia/client-search@5.7.0)(algoliasearch@4.20.0)':
+ '@algolia/autocomplete-shared@1.17.6(@algolia/client-search@5.12.0)(algoliasearch@5.12.0)':
dependencies:
- '@algolia/client-search': 5.7.0
- algoliasearch: 4.20.0
+ '@algolia/client-search': 5.12.0
+ algoliasearch: 5.12.0
- '@algolia/cache-browser-local-storage@4.20.0':
+ '@algolia/autocomplete-shared@1.9.3(@algolia/client-search@5.12.0)(algoliasearch@5.12.0)':
dependencies:
- '@algolia/cache-common': 4.20.0
+ '@algolia/client-search': 5.12.0
+ algoliasearch: 5.12.0
- '@algolia/cache-common@4.20.0': {}
-
- '@algolia/cache-in-memory@4.20.0':
+ '@algolia/client-abtesting@5.12.0':
dependencies:
- '@algolia/cache-common': 4.20.0
+ '@algolia/client-common': 5.12.0
+ '@algolia/requester-browser-xhr': 5.12.0
+ '@algolia/requester-fetch': 5.12.0
+ '@algolia/requester-node-http': 5.12.0
- '@algolia/client-account@4.20.0':
+ '@algolia/client-analytics@5.12.0':
dependencies:
- '@algolia/client-common': 4.20.0
- '@algolia/client-search': 4.20.0
- '@algolia/transporter': 4.20.0
+ '@algolia/client-common': 5.12.0
+ '@algolia/requester-browser-xhr': 5.12.0
+ '@algolia/requester-fetch': 5.12.0
+ '@algolia/requester-node-http': 5.12.0
- '@algolia/client-analytics@4.20.0':
+ '@algolia/client-common@5.12.0': {}
+
+ '@algolia/client-insights@5.12.0':
dependencies:
- '@algolia/client-common': 4.20.0
- '@algolia/client-search': 4.20.0
- '@algolia/requester-common': 4.20.0
- '@algolia/transporter': 4.20.0
+ '@algolia/client-common': 5.12.0
+ '@algolia/requester-browser-xhr': 5.12.0
+ '@algolia/requester-fetch': 5.12.0
+ '@algolia/requester-node-http': 5.12.0
- '@algolia/client-common@4.20.0':
+ '@algolia/client-personalization@5.12.0':
dependencies:
- '@algolia/requester-common': 4.20.0
- '@algolia/transporter': 4.20.0
+ '@algolia/client-common': 5.12.0
+ '@algolia/requester-browser-xhr': 5.12.0
+ '@algolia/requester-fetch': 5.12.0
+ '@algolia/requester-node-http': 5.12.0
- '@algolia/client-common@5.7.0': {}
-
- '@algolia/client-personalization@4.20.0':
+ '@algolia/client-query-suggestions@5.12.0':
dependencies:
- '@algolia/client-common': 4.20.0
- '@algolia/requester-common': 4.20.0
- '@algolia/transporter': 4.20.0
+ '@algolia/client-common': 5.12.0
+ '@algolia/requester-browser-xhr': 5.12.0
+ '@algolia/requester-fetch': 5.12.0
+ '@algolia/requester-node-http': 5.12.0
- '@algolia/client-search@4.20.0':
+ '@algolia/client-search@5.12.0':
dependencies:
- '@algolia/client-common': 4.20.0
- '@algolia/requester-common': 4.20.0
- '@algolia/transporter': 4.20.0
+ '@algolia/client-common': 5.12.0
+ '@algolia/requester-browser-xhr': 5.12.0
+ '@algolia/requester-fetch': 5.12.0
+ '@algolia/requester-node-http': 5.12.0
- '@algolia/client-search@5.7.0':
+ '@algolia/ingestion@1.12.0':
dependencies:
- '@algolia/client-common': 5.7.0
- '@algolia/requester-browser-xhr': 5.7.0
- '@algolia/requester-fetch': 5.7.0
- '@algolia/requester-node-http': 5.7.0
+ '@algolia/client-common': 5.12.0
+ '@algolia/requester-browser-xhr': 5.12.0
+ '@algolia/requester-fetch': 5.12.0
+ '@algolia/requester-node-http': 5.12.0
- '@algolia/logger-common@4.20.0': {}
-
- '@algolia/logger-console@4.20.0':
+ '@algolia/monitoring@1.12.0':
dependencies:
- '@algolia/logger-common': 4.20.0
+ '@algolia/client-common': 5.12.0
+ '@algolia/requester-browser-xhr': 5.12.0
+ '@algolia/requester-fetch': 5.12.0
+ '@algolia/requester-node-http': 5.12.0
- '@algolia/requester-browser-xhr@4.20.0':
+ '@algolia/recommend@5.12.0':
dependencies:
- '@algolia/requester-common': 4.20.0
+ '@algolia/client-common': 5.12.0
+ '@algolia/requester-browser-xhr': 5.12.0
+ '@algolia/requester-fetch': 5.12.0
+ '@algolia/requester-node-http': 5.12.0
- '@algolia/requester-browser-xhr@5.7.0':
+ '@algolia/requester-browser-xhr@5.12.0':
dependencies:
- '@algolia/client-common': 5.7.0
+ '@algolia/client-common': 5.12.0
- '@algolia/requester-common@4.20.0': {}
-
- '@algolia/requester-fetch@5.7.0':
+ '@algolia/requester-fetch@5.12.0':
dependencies:
- '@algolia/client-common': 5.7.0
+ '@algolia/client-common': 5.12.0
- '@algolia/requester-node-http@4.20.0':
+ '@algolia/requester-node-http@5.12.0':
dependencies:
- '@algolia/requester-common': 4.20.0
-
- '@algolia/requester-node-http@5.7.0':
- dependencies:
- '@algolia/client-common': 5.7.0
-
- '@algolia/transporter@4.20.0':
- dependencies:
- '@algolia/cache-common': 4.20.0
- '@algolia/logger-common': 4.20.0
- '@algolia/requester-common': 4.20.0
+ '@algolia/client-common': 5.12.0
'@ampproject/remapping@2.2.1':
dependencies:
@@ -8395,11 +8473,11 @@ snapshots:
'@dagrejs/graphlib@2.2.4': {}
- '@docsearch/css@3.6.1': {}
+ '@docsearch/css@3.6.3': {}
- '@docsearch/js@3.6.1(@algolia/client-search@5.7.0)(react@18.2.0)(search-insights@2.8.3)':
+ '@docsearch/js@3.6.3(@algolia/client-search@5.12.0)(react@18.2.0)(search-insights@2.8.3)':
dependencies:
- '@docsearch/react': 3.6.1(@algolia/client-search@5.7.0)(react@18.2.0)(search-insights@2.8.3)
+ '@docsearch/react': 3.6.3(@algolia/client-search@5.12.0)(react@18.2.0)(search-insights@2.8.3)
preact: 10.18.1
transitivePeerDependencies:
- '@algolia/client-search'
@@ -8408,12 +8486,12 @@ snapshots:
- react-dom
- search-insights
- '@docsearch/react@3.6.1(@algolia/client-search@5.7.0)(react@18.2.0)(search-insights@2.8.3)':
+ '@docsearch/react@3.6.3(@algolia/client-search@5.12.0)(react@18.2.0)(search-insights@2.8.3)':
dependencies:
- '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@5.7.0)(algoliasearch@4.20.0)(search-insights@2.8.3)
- '@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@5.7.0)(algoliasearch@4.20.0)
- '@docsearch/css': 3.6.1
- algoliasearch: 4.20.0
+ '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@5.12.0)(algoliasearch@5.12.0)(search-insights@2.8.3)
+ '@algolia/autocomplete-preset-algolia': 1.17.6(@algolia/client-search@5.12.0)(algoliasearch@5.12.0)
+ '@docsearch/css': 3.6.3
+ algoliasearch: 5.12.0
optionalDependencies:
react: 18.2.0
search-insights: 2.8.3
@@ -8739,7 +8817,11 @@ snapshots:
'@humanwhocodes/object-schema@1.2.1': {}
- '@iconify/json@2.2.256':
+ '@iconify-json/simple-icons@1.2.11':
+ dependencies:
+ '@iconify/types': 2.0.0
+
+ '@iconify/json@2.2.268':
dependencies:
'@iconify/types': 2.0.0
pathe: 1.1.2
@@ -8895,13 +8977,13 @@ snapshots:
rc9: 2.1.2
semver: 7.6.3
- '@nuxt/devtools@1.5.2(rollup@4.21.0)(vite@5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(vue@3.5.11(typescript@5.4.5))(webpack-sources@3.2.3)':
+ '@nuxt/devtools@1.5.2(rollup@4.21.0)(vite@5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(vue@3.5.12(typescript@5.4.5))(webpack-sources@3.2.3)':
dependencies:
'@antfu/utils': 0.7.10
'@nuxt/devtools-kit': 1.5.2(magicast@0.3.5)(rollup@4.21.0)(vite@5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(webpack-sources@3.2.3)
'@nuxt/devtools-wizard': 1.5.2
'@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.21.0)(webpack-sources@3.2.3)
- '@vue/devtools-core': 7.4.4(vite@5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(vue@3.5.11(typescript@5.4.5))
+ '@vue/devtools-core': 7.4.4(vite@5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(vue@3.5.12(typescript@5.4.5))
'@vue/devtools-kit': 7.4.4
birpc: 0.2.17
consola: 3.2.3
@@ -9016,12 +9098,12 @@ snapshots:
- supports-color
- webpack-sources
- '@nuxt/vite-builder@3.13.2(@types/node@20.14.2)(eslint@8.51.0)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.21.0)(sass@1.79.4)(terser@5.21.0)(typescript@5.4.5)(vue-tsc@2.1.6(typescript@5.4.5))(vue@3.5.11(typescript@5.4.5))(webpack-sources@3.2.3)':
+ '@nuxt/vite-builder@3.13.2(@types/node@20.14.2)(eslint@8.51.0)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.21.0)(sass@1.79.4)(terser@5.21.0)(typescript@5.4.5)(vue-tsc@2.1.6(typescript@5.4.5))(vue@3.5.12(typescript@5.4.5))(webpack-sources@3.2.3)':
dependencies:
'@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.21.0)(webpack-sources@3.2.3)
'@rollup/plugin-replace': 5.0.7(rollup@4.21.0)
- '@vitejs/plugin-vue': 5.1.4(vite@5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(vue@3.5.11(typescript@5.4.5))
- '@vitejs/plugin-vue-jsx': 4.0.1(vite@5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(vue@3.5.11(typescript@5.4.5))
+ '@vitejs/plugin-vue': 5.1.4(vite@5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(vue@3.5.12(typescript@5.4.5))
+ '@vitejs/plugin-vue-jsx': 4.0.1(vite@5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(vue@3.5.12(typescript@5.4.5))
autoprefixer: 10.4.20(postcss@8.4.47)
clear: 0.1.0
consola: 3.2.3
@@ -9050,7 +9132,7 @@ snapshots:
vite: 5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0)
vite-node: 2.1.2(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0)
vite-plugin-checker: 0.8.0(eslint@8.51.0)(optionator@0.9.3)(typescript@5.4.5)(vite@5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(vue-tsc@2.1.6(typescript@5.4.5))
- vue: 3.5.11(typescript@5.4.5)
+ vue: 3.5.12(typescript@5.4.5)
vue-bundle-renderer: 2.1.1
transitivePeerDependencies:
- '@biomejs/biome'
@@ -9344,10 +9426,6 @@ snapshots:
'@rollup/rollup-win32-x64-msvc@4.21.0':
optional: true
- '@shikijs/core@1.14.1':
- dependencies:
- '@types/hast': 3.0.4
-
'@shikijs/core@1.21.0':
dependencies:
'@shikijs/engine-javascript': 1.21.0
@@ -9357,28 +9435,55 @@ snapshots:
'@types/hast': 3.0.4
hast-util-to-html: 9.0.3
+ '@shikijs/core@1.22.2':
+ dependencies:
+ '@shikijs/engine-javascript': 1.22.2
+ '@shikijs/engine-oniguruma': 1.22.2
+ '@shikijs/types': 1.22.2
+ '@shikijs/vscode-textmate': 9.3.0
+ '@types/hast': 3.0.4
+ hast-util-to-html: 9.0.3
+
'@shikijs/engine-javascript@1.21.0':
dependencies:
'@shikijs/types': 1.21.0
'@shikijs/vscode-textmate': 9.2.2
oniguruma-to-js: 0.4.3
+ '@shikijs/engine-javascript@1.22.2':
+ dependencies:
+ '@shikijs/types': 1.22.2
+ '@shikijs/vscode-textmate': 9.3.0
+ oniguruma-to-js: 0.4.3
+
'@shikijs/engine-oniguruma@1.21.0':
dependencies:
'@shikijs/types': 1.21.0
'@shikijs/vscode-textmate': 9.2.2
- '@shikijs/transformers@1.14.1':
+ '@shikijs/engine-oniguruma@1.22.2':
dependencies:
- shiki: 1.14.1
+ '@shikijs/types': 1.22.2
+ '@shikijs/vscode-textmate': 9.3.0
+
+ '@shikijs/transformers@1.22.2':
+ dependencies:
+ shiki: 1.22.2
'@shikijs/types@1.21.0':
dependencies:
'@shikijs/vscode-textmate': 9.2.2
'@types/hast': 3.0.4
+ '@shikijs/types@1.22.2':
+ dependencies:
+ '@shikijs/vscode-textmate': 9.3.0
+ '@types/hast': 3.0.4
+
'@shikijs/vscode-textmate@9.2.2': {}
+ '@shikijs/vscode-textmate@9.3.0': {}
+
'@sindresorhus/merge-streams@2.3.0': {}
'@stackblitz/sdk@1.11.0': {}
@@ -9471,7 +9576,7 @@ snapshots:
'@types/hast@3.0.4':
dependencies:
- '@types/unist': 2.0.8
+ '@types/unist': 3.0.3
'@types/http-errors@2.0.2': {}
@@ -9560,7 +9665,7 @@ snapshots:
'@typescript-eslint/type-utils': 6.19.0(eslint@8.51.0)(typescript@5.4.5)
'@typescript-eslint/utils': 6.19.0(eslint@8.51.0)(typescript@5.4.5)
'@typescript-eslint/visitor-keys': 6.19.0
- debug: 4.3.4
+ debug: 4.3.6(supports-color@8.1.1)
eslint: 8.51.0
graphemer: 1.4.0
ignore: 5.2.4
@@ -9578,7 +9683,7 @@ snapshots:
'@typescript-eslint/types': 6.19.0
'@typescript-eslint/typescript-estree': 6.19.0(typescript@5.4.5)
'@typescript-eslint/visitor-keys': 6.19.0
- debug: 4.3.4
+ debug: 4.3.6(supports-color@8.1.1)
eslint: 8.51.0
optionalDependencies:
typescript: 5.4.5
@@ -9700,16 +9805,16 @@ snapshots:
'@unhead/schema': 1.11.7
'@unhead/shared': 1.11.7
- '@unhead/vue@1.11.7(vue@3.5.11(typescript@5.4.5))':
+ '@unhead/vue@1.11.7(vue@3.5.12(typescript@5.4.5))':
dependencies:
'@unhead/schema': 1.11.7
'@unhead/shared': 1.11.7
defu: 6.1.4
hookable: 5.5.3
unhead: 1.11.7
- vue: 3.5.11(typescript@5.4.5)
+ vue: 3.5.12(typescript@5.4.5)
- '@vercel/analytics@1.3.1(react@18.2.0)':
+ '@vercel/analytics@1.3.2(react@18.2.0)':
dependencies:
server-only: 0.0.1
optionalDependencies:
@@ -9733,19 +9838,19 @@ snapshots:
- encoding
- supports-color
- '@vercel/speed-insights@1.0.12(react@18.2.0)(vue-router@4.4.5(vue@3.5.11(typescript@5.4.5)))(vue@3.5.11(typescript@5.4.5))':
+ '@vercel/speed-insights@1.0.14(react@18.2.0)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5))':
optionalDependencies:
react: 18.2.0
- vue: 3.5.11(typescript@5.4.5)
- vue-router: 4.4.5(vue@3.5.11(typescript@5.4.5))
+ vue: 3.5.12(typescript@5.4.5)
+ vue-router: 4.4.5(vue@3.5.12(typescript@5.4.5))
- '@vitejs/plugin-vue-jsx@4.0.1(vite@5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(vue@3.5.11(typescript@5.4.5))':
+ '@vitejs/plugin-vue-jsx@4.0.1(vite@5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(vue@3.5.12(typescript@5.4.5))':
dependencies:
'@babel/core': 7.25.7
'@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.25.7)
'@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.25.7)
vite: 5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0)
- vue: 3.5.11(typescript@5.4.5)
+ vue: 3.5.12(typescript@5.4.5)
transitivePeerDependencies:
- supports-color
@@ -9759,15 +9864,15 @@ snapshots:
vite: 4.4.11(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0)
vue: 3.3.4
- '@vitejs/plugin-vue@4.4.0(vite@4.4.11(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(vue@3.5.11(typescript@5.4.5))':
+ '@vitejs/plugin-vue@4.4.0(vite@4.4.11(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(vue@3.5.12(typescript@5.4.5))':
dependencies:
vite: 4.4.11(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0)
- vue: 3.5.11(typescript@5.4.5)
+ vue: 3.5.12(typescript@5.4.5)
- '@vitejs/plugin-vue@5.1.2(vite@5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(vue@3.5.11(typescript@5.4.5))':
+ '@vitejs/plugin-vue@5.1.4(vite@5.4.10(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(vue@3.5.12(typescript@5.4.5))':
dependencies:
- vite: 5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0)
- vue: 3.5.11(typescript@5.4.5)
+ vite: 5.4.10(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0)
+ vue: 3.5.12(typescript@5.4.5)
'@vitejs/plugin-vue@5.1.4(vite@5.4.8(@types/node@18.18.4)(sass@1.79.4)(terser@5.21.0))(vue@3.5.11(typescript@5.4.5))':
dependencies:
@@ -9784,6 +9889,11 @@ snapshots:
vite: 5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0)
vue: 3.5.11(typescript@5.4.5)
+ '@vitejs/plugin-vue@5.1.4(vite@5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(vue@3.5.12(typescript@5.4.5))':
+ dependencies:
+ vite: 5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0)
+ vue: 3.5.12(typescript@5.4.5)
+
'@volar/language-core@1.10.3':
dependencies:
'@volar/source-map': 1.10.3
@@ -9808,7 +9918,7 @@ snapshots:
path-browserify: 1.0.1
vscode-uri: 3.0.8
- '@vue-macros/common@1.14.0(rollup@4.21.0)(vue@3.5.11(typescript@5.4.5))':
+ '@vue-macros/common@1.14.0(rollup@4.21.0)(vue@3.5.12(typescript@5.4.5))':
dependencies:
'@babel/types': 7.25.7
'@rollup/pluginutils': 5.1.2(rollup@4.21.0)
@@ -9817,7 +9927,7 @@ snapshots:
local-pkg: 0.5.0
magic-string-ast: 0.6.2
optionalDependencies:
- vue: 3.5.11(typescript@5.4.5)
+ vue: 3.5.12(typescript@5.4.5)
transitivePeerDependencies:
- rollup
@@ -9891,6 +10001,14 @@ snapshots:
estree-walker: 2.0.2
source-map-js: 1.2.1
+ '@vue/compiler-core@3.5.12':
+ dependencies:
+ '@babel/parser': 7.25.7
+ '@vue/shared': 3.5.12
+ entities: 4.5.0
+ estree-walker: 2.0.2
+ source-map-js: 1.2.1
+
'@vue/compiler-dom@3.3.4':
dependencies:
'@vue/compiler-core': 3.3.4
@@ -9906,6 +10024,11 @@ snapshots:
'@vue/compiler-core': 3.5.11
'@vue/shared': 3.5.11
+ '@vue/compiler-dom@3.5.12':
+ dependencies:
+ '@vue/compiler-core': 3.5.12
+ '@vue/shared': 3.5.12
+
'@vue/compiler-sfc@3.3.4':
dependencies:
'@babel/parser': 7.23.0
@@ -9931,6 +10054,18 @@ snapshots:
postcss: 8.4.47
source-map-js: 1.2.1
+ '@vue/compiler-sfc@3.5.12':
+ dependencies:
+ '@babel/parser': 7.25.7
+ '@vue/compiler-core': 3.5.12
+ '@vue/compiler-dom': 3.5.12
+ '@vue/compiler-ssr': 3.5.12
+ '@vue/shared': 3.5.12
+ estree-walker: 2.0.2
+ magic-string: 0.30.11
+ postcss: 8.4.47
+ source-map-js: 1.2.1
+
'@vue/compiler-ssr@3.3.4':
dependencies:
'@vue/compiler-dom': 3.3.4
@@ -9941,6 +10076,11 @@ snapshots:
'@vue/compiler-dom': 3.5.11
'@vue/shared': 3.5.11
+ '@vue/compiler-ssr@3.5.12':
+ dependencies:
+ '@vue/compiler-dom': 3.5.12
+ '@vue/shared': 3.5.12
+
'@vue/compiler-vue2@2.7.16':
dependencies:
de-indent: 1.0.2
@@ -9948,11 +10088,11 @@ snapshots:
'@vue/devtools-api@6.6.4': {}
- '@vue/devtools-api@7.3.9':
+ '@vue/devtools-api@7.6.2':
dependencies:
- '@vue/devtools-kit': 7.3.9
+ '@vue/devtools-kit': 7.6.2
- '@vue/devtools-core@7.4.4(vite@5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(vue@3.5.11(typescript@5.4.5))':
+ '@vue/devtools-core@7.4.4(vite@5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(vue@3.5.12(typescript@5.4.5))':
dependencies:
'@vue/devtools-kit': 7.4.4
'@vue/devtools-shared': 7.4.6
@@ -9960,20 +10100,10 @@ snapshots:
nanoid: 3.3.7
pathe: 1.1.2
vite-hot-client: 0.2.3(vite@5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))
- vue: 3.5.11(typescript@5.4.5)
+ vue: 3.5.12(typescript@5.4.5)
transitivePeerDependencies:
- vite
- '@vue/devtools-kit@7.3.9':
- dependencies:
- '@vue/devtools-shared': 7.3.9
- birpc: 0.2.17
- hookable: 5.5.3
- mitt: 3.0.1
- perfect-debounce: 1.0.0
- speakingurl: 14.0.1
- superjson: 2.2.1
-
'@vue/devtools-kit@7.4.4':
dependencies:
'@vue/devtools-shared': 7.4.6
@@ -9984,11 +10114,21 @@ snapshots:
speakingurl: 14.0.1
superjson: 2.2.1
- '@vue/devtools-shared@7.3.9':
+ '@vue/devtools-kit@7.6.2':
+ dependencies:
+ '@vue/devtools-shared': 7.6.2
+ birpc: 0.2.19
+ hookable: 5.5.3
+ mitt: 3.0.1
+ perfect-debounce: 1.0.0
+ speakingurl: 14.0.1
+ superjson: 2.2.1
+
+ '@vue/devtools-shared@7.4.6':
dependencies:
rfdc: 1.4.1
- '@vue/devtools-shared@7.4.6':
+ '@vue/devtools-shared@7.6.2':
dependencies:
rfdc: 1.4.1
@@ -10034,6 +10174,10 @@ snapshots:
dependencies:
'@vue/shared': 3.5.11
+ '@vue/reactivity@3.5.12':
+ dependencies:
+ '@vue/shared': 3.5.12
+
'@vue/repl@3.4.0': {}
'@vue/runtime-core@3.3.4':
@@ -10046,6 +10190,11 @@ snapshots:
'@vue/reactivity': 3.5.11
'@vue/shared': 3.5.11
+ '@vue/runtime-core@3.5.12':
+ dependencies:
+ '@vue/reactivity': 3.5.12
+ '@vue/shared': 3.5.12
+
'@vue/runtime-dom@3.3.4':
dependencies:
'@vue/runtime-core': 3.3.4
@@ -10059,6 +10208,13 @@ snapshots:
'@vue/shared': 3.5.11
csstype: 3.1.3
+ '@vue/runtime-dom@3.5.12':
+ dependencies:
+ '@vue/reactivity': 3.5.12
+ '@vue/runtime-core': 3.5.12
+ '@vue/shared': 3.5.12
+ csstype: 3.1.3
+
'@vue/server-renderer@3.3.4(vue@3.3.4)':
dependencies:
'@vue/compiler-ssr': 3.3.4
@@ -10071,12 +10227,20 @@ snapshots:
'@vue/shared': 3.5.11
vue: 3.5.11(typescript@5.4.5)
+ '@vue/server-renderer@3.5.12(vue@3.5.12(typescript@5.4.5))':
+ dependencies:
+ '@vue/compiler-ssr': 3.5.12
+ '@vue/shared': 3.5.12
+ vue: 3.5.12(typescript@5.4.5)
+
'@vue/shared@3.3.4': {}
'@vue/shared@3.4.38': {}
'@vue/shared@3.5.11': {}
+ '@vue/shared@3.5.12': {}
+
'@vue/typescript@1.8.16(typescript@5.4.5)':
dependencies:
'@volar/typescript': 1.10.3
@@ -10094,30 +10258,41 @@ snapshots:
- '@vue/composition-api'
- vue
- '@vueuse/core@11.0.3(vue@3.5.11(typescript@5.4.5))':
+ '@vueuse/core@11.2.0(vue@3.5.11(typescript@5.4.5))':
dependencies:
'@types/web-bluetooth': 0.0.20
- '@vueuse/metadata': 11.0.3
- '@vueuse/shared': 11.0.3(vue@3.5.11(typescript@5.4.5))
+ '@vueuse/metadata': 11.2.0
+ '@vueuse/shared': 11.2.0(vue@3.5.11(typescript@5.4.5))
vue-demi: 0.14.10(vue@3.5.11(typescript@5.4.5))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
+ optional: true
- '@vueuse/integrations@11.0.3(focus-trap@7.5.4)(vue@3.5.11(typescript@5.4.5))':
+ '@vueuse/core@11.2.0(vue@3.5.12(typescript@5.4.5))':
dependencies:
- '@vueuse/core': 11.0.3(vue@3.5.11(typescript@5.4.5))
- '@vueuse/shared': 11.0.3(vue@3.5.11(typescript@5.4.5))
- vue-demi: 0.14.10(vue@3.5.11(typescript@5.4.5))
+ '@types/web-bluetooth': 0.0.20
+ '@vueuse/metadata': 11.2.0
+ '@vueuse/shared': 11.2.0(vue@3.5.12(typescript@5.4.5))
+ vue-demi: 0.14.10(vue@3.5.12(typescript@5.4.5))
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+ - vue
+
+ '@vueuse/integrations@11.2.0(focus-trap@7.6.0)(vue@3.5.12(typescript@5.4.5))':
+ dependencies:
+ '@vueuse/core': 11.2.0(vue@3.5.12(typescript@5.4.5))
+ '@vueuse/shared': 11.2.0(vue@3.5.12(typescript@5.4.5))
+ vue-demi: 0.14.10(vue@3.5.12(typescript@5.4.5))
optionalDependencies:
- focus-trap: 7.5.4
+ focus-trap: 7.6.0
transitivePeerDependencies:
- '@vue/composition-api'
- vue
'@vueuse/metadata@10.5.0': {}
- '@vueuse/metadata@11.0.3': {}
+ '@vueuse/metadata@11.2.0': {}
'@vueuse/shared@10.5.0(vue@3.3.4)':
dependencies:
@@ -10126,12 +10301,20 @@ snapshots:
- '@vue/composition-api'
- vue
- '@vueuse/shared@11.0.3(vue@3.5.11(typescript@5.4.5))':
+ '@vueuse/shared@11.2.0(vue@3.5.11(typescript@5.4.5))':
dependencies:
vue-demi: 0.14.10(vue@3.5.11(typescript@5.4.5))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
+ optional: true
+
+ '@vueuse/shared@11.2.0(vue@3.5.12(typescript@5.4.5))':
+ dependencies:
+ vue-demi: 0.14.10(vue@3.5.12(typescript@5.4.5))
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+ - vue
'@windicss/config@1.9.3':
dependencies:
@@ -10207,22 +10390,21 @@ snapshots:
require-from-string: 2.0.2
uri-js: 4.4.1
- algoliasearch@4.20.0:
+ algoliasearch@5.12.0:
dependencies:
- '@algolia/cache-browser-local-storage': 4.20.0
- '@algolia/cache-common': 4.20.0
- '@algolia/cache-in-memory': 4.20.0
- '@algolia/client-account': 4.20.0
- '@algolia/client-analytics': 4.20.0
- '@algolia/client-common': 4.20.0
- '@algolia/client-personalization': 4.20.0
- '@algolia/client-search': 4.20.0
- '@algolia/logger-common': 4.20.0
- '@algolia/logger-console': 4.20.0
- '@algolia/requester-browser-xhr': 4.20.0
- '@algolia/requester-common': 4.20.0
- '@algolia/requester-node-http': 4.20.0
- '@algolia/transporter': 4.20.0
+ '@algolia/client-abtesting': 5.12.0
+ '@algolia/client-analytics': 5.12.0
+ '@algolia/client-common': 5.12.0
+ '@algolia/client-insights': 5.12.0
+ '@algolia/client-personalization': 5.12.0
+ '@algolia/client-query-suggestions': 5.12.0
+ '@algolia/client-search': 5.12.0
+ '@algolia/ingestion': 1.12.0
+ '@algolia/monitoring': 1.12.0
+ '@algolia/recommend': 5.12.0
+ '@algolia/requester-browser-xhr': 5.12.0
+ '@algolia/requester-fetch': 5.12.0
+ '@algolia/requester-node-http': 5.12.0
ansi-colors@4.1.3: {}
@@ -10424,6 +10606,8 @@ snapshots:
birpc@0.2.17: {}
+ birpc@0.2.19: {}
+
bl@4.1.0:
dependencies:
buffer: 5.7.1
@@ -10432,12 +10616,12 @@ snapshots:
blob-util@2.0.2: {}
- blobity@0.2.3(react@18.2.0)(vue@3.5.11(typescript@5.4.5)):
+ blobity@0.2.3(react@18.2.0)(vue@3.5.12(typescript@5.4.5)):
dependencies:
kinet: 2.2.1
lodash: 4.17.21
react: 18.2.0
- vue: 3.5.11(typescript@5.4.5)
+ vue: 3.5.12(typescript@5.4.5)
bluebird@3.7.2: {}
@@ -11702,7 +11886,7 @@ snapshots:
eslint-plugin-yml@1.9.0(eslint@8.51.0):
dependencies:
- debug: 4.3.4
+ debug: 4.3.6(supports-color@8.1.1)
eslint: 8.51.0
lodash: 4.17.21
natural-compare: 1.4.0
@@ -11998,7 +12182,7 @@ snapshots:
flatted@3.3.1: {}
- focus-trap@7.5.4:
+ focus-trap@7.6.0:
dependencies:
tabbable: 6.2.0
@@ -13287,15 +13471,15 @@ snapshots:
nuxt@3.13.2(@parcel/watcher@2.4.1)(@types/node@20.14.2)(encoding@0.1.13)(eslint@8.51.0)(ioredis@5.4.1)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.21.0)(sass@1.79.4)(terser@5.21.0)(typescript@5.4.5)(vite@5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(vue-tsc@2.1.6(typescript@5.4.5))(webpack-sources@3.2.3):
dependencies:
'@nuxt/devalue': 2.0.2
- '@nuxt/devtools': 1.5.2(rollup@4.21.0)(vite@5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(vue@3.5.11(typescript@5.4.5))(webpack-sources@3.2.3)
+ '@nuxt/devtools': 1.5.2(rollup@4.21.0)(vite@5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(vue@3.5.12(typescript@5.4.5))(webpack-sources@3.2.3)
'@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.21.0)(webpack-sources@3.2.3)
'@nuxt/schema': 3.13.2(rollup@4.21.0)(webpack-sources@3.2.3)
'@nuxt/telemetry': 2.6.0(magicast@0.3.5)(rollup@4.21.0)(webpack-sources@3.2.3)
- '@nuxt/vite-builder': 3.13.2(@types/node@20.14.2)(eslint@8.51.0)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.21.0)(sass@1.79.4)(terser@5.21.0)(typescript@5.4.5)(vue-tsc@2.1.6(typescript@5.4.5))(vue@3.5.11(typescript@5.4.5))(webpack-sources@3.2.3)
+ '@nuxt/vite-builder': 3.13.2(@types/node@20.14.2)(eslint@8.51.0)(magicast@0.3.5)(optionator@0.9.3)(rollup@4.21.0)(sass@1.79.4)(terser@5.21.0)(typescript@5.4.5)(vue-tsc@2.1.6(typescript@5.4.5))(vue@3.5.12(typescript@5.4.5))(webpack-sources@3.2.3)
'@unhead/dom': 1.11.7
'@unhead/shared': 1.11.7
'@unhead/ssr': 1.11.7
- '@unhead/vue': 1.11.7(vue@3.5.11(typescript@5.4.5))
+ '@unhead/vue': 1.11.7(vue@3.5.12(typescript@5.4.5))
'@vue/shared': 3.5.11
acorn: 8.12.1
c12: 1.11.2(magicast@0.3.5)
@@ -13343,13 +13527,13 @@ snapshots:
unhead: 1.11.7
unimport: 3.13.1(rollup@4.21.0)(webpack-sources@3.2.3)
unplugin: 1.14.1(webpack-sources@3.2.3)
- unplugin-vue-router: 0.10.8(rollup@4.21.0)(vue-router@4.4.5(vue@3.5.11(typescript@5.4.5)))(vue@3.5.11(typescript@5.4.5))(webpack-sources@3.2.3)
+ unplugin-vue-router: 0.10.8(rollup@4.21.0)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5))(webpack-sources@3.2.3)
unstorage: 1.12.0(ioredis@5.4.1)
untyped: 1.4.2
- vue: 3.5.11(typescript@5.4.5)
+ vue: 3.5.12(typescript@5.4.5)
vue-bundle-renderer: 2.1.1
vue-devtools-stub: 0.1.0
- vue-router: 4.4.5(vue@3.5.11(typescript@5.4.5))
+ vue-router: 4.4.5(vue@3.5.12(typescript@5.4.5))
optionalDependencies:
'@parcel/watcher': 2.4.1
'@types/node': 20.14.2
@@ -14276,11 +14460,6 @@ snapshots:
interpret: 1.4.0
rechoir: 0.6.2
- shiki@1.14.1:
- dependencies:
- '@shikijs/core': 1.14.1
- '@types/hast': 3.0.4
-
shiki@1.21.0:
dependencies:
'@shikijs/core': 1.21.0
@@ -14290,6 +14469,15 @@ snapshots:
'@shikijs/vscode-textmate': 9.2.2
'@types/hast': 3.0.4
+ shiki@1.22.2:
+ dependencies:
+ '@shikijs/core': 1.22.2
+ '@shikijs/engine-javascript': 1.22.2
+ '@shikijs/engine-oniguruma': 1.22.2
+ '@shikijs/types': 1.22.2
+ '@shikijs/vscode-textmate': 9.3.0
+ '@types/hast': 3.0.4
+
shx@0.3.4:
dependencies:
minimist: 1.2.8
@@ -14751,15 +14939,15 @@ snapshots:
for-each: 0.3.3
is-typed-array: 1.1.12
- typedoc-plugin-markdown@4.2.9(typedoc@0.26.7(typescript@5.4.5)):
+ typedoc-plugin-markdown@4.2.10(typedoc@0.26.11(typescript@5.4.5)):
dependencies:
- typedoc: 0.26.7(typescript@5.4.5)
+ typedoc: 0.26.11(typescript@5.4.5)
- typedoc-plugin-merge-modules@6.0.1(typedoc@0.26.7(typescript@5.4.5)):
+ typedoc-plugin-merge-modules@6.0.3(typedoc@0.26.11(typescript@5.4.5)):
dependencies:
- typedoc: 0.26.7(typescript@5.4.5)
+ typedoc: 0.26.11(typescript@5.4.5)
- typedoc@0.26.7(typescript@5.4.5):
+ typedoc@0.26.11(typescript@5.4.5):
dependencies:
lunr: 2.3.9
markdown-it: 14.1.0
@@ -14879,7 +15067,7 @@ snapshots:
unpipe@1.0.0: {}
- unplugin-auto-import@0.18.3(@nuxt/kit@3.13.2(rollup@4.21.0)(webpack-sources@3.2.3))(@vueuse/core@11.0.3(vue@3.5.11(typescript@5.4.5)))(rollup@4.21.0)(webpack-sources@3.2.3):
+ unplugin-auto-import@0.18.3(@nuxt/kit@3.13.2(rollup@4.21.0)(webpack-sources@3.2.3))(@vueuse/core@11.2.0(vue@3.5.11(typescript@5.4.5)))(rollup@4.21.0)(webpack-sources@3.2.3):
dependencies:
'@antfu/utils': 0.7.10
'@rollup/pluginutils': 5.1.0(rollup@4.21.0)
@@ -14891,12 +15079,29 @@ snapshots:
unplugin: 1.14.1(webpack-sources@3.2.3)
optionalDependencies:
'@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.21.0)(webpack-sources@3.2.3)
- '@vueuse/core': 11.0.3(vue@3.5.11(typescript@5.4.5))
+ '@vueuse/core': 11.2.0(vue@3.5.11(typescript@5.4.5))
transitivePeerDependencies:
- rollup
- webpack-sources
- unplugin-icons@0.19.3(@vue/compiler-sfc@3.5.11)(vue-template-compiler@2.7.14)(webpack-sources@3.2.3):
+ unplugin-auto-import@0.18.3(@nuxt/kit@3.13.2(rollup@4.21.0)(webpack-sources@3.2.3))(@vueuse/core@11.2.0(vue@3.5.12(typescript@5.4.5)))(rollup@4.21.0)(webpack-sources@3.2.3):
+ dependencies:
+ '@antfu/utils': 0.7.10
+ '@rollup/pluginutils': 5.1.0(rollup@4.21.0)
+ fast-glob: 3.3.2
+ local-pkg: 0.5.0
+ magic-string: 0.30.11
+ minimatch: 9.0.5
+ unimport: 3.13.1(rollup@4.21.0)(webpack-sources@3.2.3)
+ unplugin: 1.14.1(webpack-sources@3.2.3)
+ optionalDependencies:
+ '@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.21.0)(webpack-sources@3.2.3)
+ '@vueuse/core': 11.2.0(vue@3.5.12(typescript@5.4.5))
+ transitivePeerDependencies:
+ - rollup
+ - webpack-sources
+
+ unplugin-icons@0.20.0(@vue/compiler-sfc@3.5.12)(vue-template-compiler@2.7.14)(webpack-sources@3.2.3):
dependencies:
'@antfu/install-pkg': 0.4.1
'@antfu/utils': 0.7.10
@@ -14906,13 +15111,13 @@ snapshots:
local-pkg: 0.5.0
unplugin: 1.14.1(webpack-sources@3.2.3)
optionalDependencies:
- '@vue/compiler-sfc': 3.5.11
+ '@vue/compiler-sfc': 3.5.12
vue-template-compiler: 2.7.14
transitivePeerDependencies:
- supports-color
- webpack-sources
- unplugin-vue-components@0.27.4(@babel/parser@7.25.7)(@nuxt/kit@3.13.2(rollup@4.21.0)(webpack-sources@3.2.3))(rollup@4.21.0)(vue@3.5.11(typescript@5.4.5)):
+ unplugin-vue-components@0.27.4(@babel/parser@7.25.7)(@nuxt/kit@3.13.2(rollup@4.21.0)(webpack-sources@3.2.3))(rollup@4.21.0)(vue@3.5.12(typescript@5.4.5)):
dependencies:
'@antfu/utils': 0.7.10
'@rollup/pluginutils': 5.1.0(rollup@4.21.0)
@@ -14924,7 +15129,7 @@ snapshots:
minimatch: 9.0.5
mlly: 1.7.1
unplugin: 1.12.2
- vue: 3.5.11(typescript@5.4.5)
+ vue: 3.5.12(typescript@5.4.5)
optionalDependencies:
'@babel/parser': 7.25.7
'@nuxt/kit': 3.13.2(magicast@0.3.5)(rollup@4.21.0)(webpack-sources@3.2.3)
@@ -14932,11 +15137,11 @@ snapshots:
- rollup
- supports-color
- unplugin-vue-router@0.10.8(rollup@4.21.0)(vue-router@4.4.5(vue@3.5.11(typescript@5.4.5)))(vue@3.5.11(typescript@5.4.5))(webpack-sources@3.2.3):
+ unplugin-vue-router@0.10.8(rollup@4.21.0)(vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)))(vue@3.5.12(typescript@5.4.5))(webpack-sources@3.2.3):
dependencies:
'@babel/types': 7.25.7
'@rollup/pluginutils': 5.1.2(rollup@4.21.0)
- '@vue-macros/common': 1.14.0(rollup@4.21.0)(vue@3.5.11(typescript@5.4.5))
+ '@vue-macros/common': 1.14.0(rollup@4.21.0)(vue@3.5.12(typescript@5.4.5))
ast-walker-scope: 0.6.2
chokidar: 3.6.0
fast-glob: 3.3.2
@@ -14949,7 +15154,7 @@ snapshots:
unplugin: 1.14.1(webpack-sources@3.2.3)
yaml: 2.5.0
optionalDependencies:
- vue-router: 4.4.5(vue@3.5.11(typescript@5.4.5))
+ vue-router: 4.4.5(vue@3.5.12(typescript@5.4.5))
transitivePeerDependencies:
- rollup
- vue
@@ -15154,12 +15359,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- vite-plugin-windicss@1.9.3(vite@5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0)):
+ vite-plugin-windicss@1.9.3(vite@5.4.10(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0)):
dependencies:
'@windicss/plugin-utils': 1.9.3
debug: 4.3.4
kolorist: 1.8.0
- vite: 5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0)
+ vite: 5.4.10(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0)
windicss: 3.5.6
transitivePeerDependencies:
- supports-color
@@ -15195,6 +15400,17 @@ snapshots:
sass: 1.79.4
terser: 5.21.0
+ vite@5.4.10(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0):
+ dependencies:
+ esbuild: 0.21.5
+ postcss: 8.4.47
+ rollup: 4.21.0
+ optionalDependencies:
+ '@types/node': 20.14.2
+ fsevents: 2.3.3
+ sass: 1.79.4
+ terser: 5.21.0
+
vite@5.4.8(@types/node@18.18.4)(sass@1.79.4)(terser@5.21.0):
dependencies:
esbuild: 0.21.5
@@ -15217,24 +15433,26 @@ snapshots:
sass: 1.79.4
terser: 5.21.0
- vitepress@1.3.4(@algolia/client-search@5.7.0)(@types/node@20.14.2)(postcss@8.4.47)(react@18.2.0)(sass@1.79.4)(search-insights@2.8.3)(terser@5.21.0)(typescript@5.4.5):
+ vitepress@1.5.0(@algolia/client-search@5.12.0)(@types/node@20.14.2)(postcss@8.4.47)(react@18.2.0)(sass@1.79.4)(search-insights@2.8.3)(terser@5.21.0)(typescript@5.4.5):
dependencies:
- '@docsearch/css': 3.6.1
- '@docsearch/js': 3.6.1(@algolia/client-search@5.7.0)(react@18.2.0)(search-insights@2.8.3)
- '@shikijs/core': 1.14.1
- '@shikijs/transformers': 1.14.1
+ '@docsearch/css': 3.6.3
+ '@docsearch/js': 3.6.3(@algolia/client-search@5.12.0)(react@18.2.0)(search-insights@2.8.3)
+ '@iconify-json/simple-icons': 1.2.11
+ '@shikijs/core': 1.22.2
+ '@shikijs/transformers': 1.22.2
+ '@shikijs/types': 1.22.2
'@types/markdown-it': 14.1.2
- '@vitejs/plugin-vue': 5.1.2(vite@5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(vue@3.5.11(typescript@5.4.5))
- '@vue/devtools-api': 7.3.9
- '@vue/shared': 3.4.38
- '@vueuse/core': 11.0.3(vue@3.5.11(typescript@5.4.5))
- '@vueuse/integrations': 11.0.3(focus-trap@7.5.4)(vue@3.5.11(typescript@5.4.5))
- focus-trap: 7.5.4
+ '@vitejs/plugin-vue': 5.1.4(vite@5.4.10(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0))(vue@3.5.12(typescript@5.4.5))
+ '@vue/devtools-api': 7.6.2
+ '@vue/shared': 3.5.12
+ '@vueuse/core': 11.2.0(vue@3.5.12(typescript@5.4.5))
+ '@vueuse/integrations': 11.2.0(focus-trap@7.6.0)(vue@3.5.12(typescript@5.4.5))
+ focus-trap: 7.6.0
mark.js: 8.11.1
minisearch: 7.1.0
- shiki: 1.14.1
- vite: 5.4.8(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0)
- vue: 3.5.11(typescript@5.4.5)
+ shiki: 1.22.2
+ vite: 5.4.10(@types/node@20.14.2)(sass@1.79.4)(terser@5.21.0)
+ vue: 3.5.12(typescript@5.4.5)
optionalDependencies:
postcss: 8.4.47
transitivePeerDependencies:
@@ -15296,6 +15514,10 @@ snapshots:
dependencies:
vue: 3.5.11(typescript@5.4.5)
+ vue-demi@0.14.10(vue@3.5.12(typescript@5.4.5)):
+ dependencies:
+ vue: 3.5.12(typescript@5.4.5)
+
vue-demi@0.14.6(vue@3.3.4):
dependencies:
vue: 3.3.4
@@ -15320,6 +15542,11 @@ snapshots:
'@vue/devtools-api': 6.6.4
vue: 3.5.11(typescript@5.4.5)
+ vue-router@4.4.5(vue@3.5.12(typescript@5.4.5)):
+ dependencies:
+ '@vue/devtools-api': 6.6.4
+ vue: 3.5.12(typescript@5.4.5)
+
vue-template-compiler@2.7.14:
dependencies:
de-indent: 1.0.2
@@ -15357,11 +15584,21 @@ snapshots:
optionalDependencies:
typescript: 5.4.5
+ vue@3.5.12(typescript@5.4.5):
+ dependencies:
+ '@vue/compiler-dom': 3.5.12
+ '@vue/compiler-sfc': 3.5.12
+ '@vue/runtime-dom': 3.5.12
+ '@vue/server-renderer': 3.5.12(vue@3.5.12(typescript@5.4.5))
+ '@vue/shared': 3.5.12
+ optionalDependencies:
+ typescript: 5.4.5
+
wcwidth@1.0.1:
dependencies:
defaults: 1.0.4
- web-vitals@4.2.3: {}
+ web-vitals@4.2.4: {}
webidl-conversions@3.0.1: {}