chore(docs,deps): update deps

This commit is contained in:
braks
2024-01-29 21:56:44 +01:00
committed by Braks
parent 64a2091ddb
commit a79d100b25
4 changed files with 333 additions and 428 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ const emit = defineEmits<{ (event: 'change', data: { color: Colors; val: number
const currentColor = toRef(props.data, 'color', 'red') const currentColor = toRef(props.data, 'color', 'red')
function onChange(e: InputEvent) { function onChange(e: InputEvent) {
return emit('change', { color: currentColor.value, val: parseInt((e.target as HTMLInputElement).value) }) return emit('change', { color: currentColor.value, val: Number.parseInt((e.target as HTMLInputElement).value) })
} }
</script> </script>
+11 -10
View File
@@ -11,35 +11,36 @@
"typedocs": "typedoc --options ./typedoc.json" "typedocs": "typedoc --options ./typedoc.json"
}, },
"dependencies": { "dependencies": {
"@algolia/client-search": "^4.21.1", "@algolia/client-search": "^4.22.1",
"@stackblitz/sdk": "^1.9.0", "@stackblitz/sdk": "^1.9.0",
"@vercel/analytics": "^1.1.1", "@vercel/analytics": "^1.1.2",
"@vercel/speed-insights": "^1.0.8",
"@vue-flow/background": "workspace:*", "@vue-flow/background": "workspace:*",
"@vue-flow/controls": "workspace:*", "@vue-flow/controls": "workspace:*",
"@vue-flow/core": "workspace:*", "@vue-flow/core": "workspace:*",
"@vue-flow/minimap": "workspace:*", "@vue-flow/minimap": "workspace:*",
"@vue-flow/node-resizer": "workspace:*", "@vue-flow/node-resizer": "workspace:*",
"@vue-flow/node-toolbar": "workspace:*", "@vue-flow/node-toolbar": "workspace:*",
"@vue/repl": "3.0.0", "@vue/repl": "3.4.0",
"blobity": "^0.2.3", "blobity": "^0.2.3",
"vue": "^3.3.11", "vue": "^3.3.11",
"web-vitals": "^3.5.0" "web-vitals": "^3.5.2"
}, },
"devDependencies": { "devDependencies": {
"@iconify/json": "^2.2.156", "@iconify/json": "^2.2.176",
"@tooling/eslint-config": "workspace:*", "@tooling/eslint-config": "workspace:*",
"@tooling/tsconfig": "workspace:*", "@tooling/tsconfig": "workspace:*",
"@windicss/plugin-scrollbar": "^1.2.3", "@windicss/plugin-scrollbar": "^1.2.3",
"dotenv": "^16.3.1", "dotenv": "^16.3.1",
"ohmyfetch": "^0.4.21", "ohmyfetch": "^0.4.21",
"typedoc": "^0.25.4", "typedoc": "^0.25.7",
"typedoc-plugin-markdown": "^3.17.1", "typedoc-plugin-markdown": "^3.17.1",
"typedoc-plugin-merge-modules": "^5.1.0", "typedoc-plugin-merge-modules": "^5.1.0",
"unplugin-auto-import": "^0.17.2", "unplugin-auto-import": "^0.17.5",
"unplugin-icons": "^0.18.1", "unplugin-icons": "^0.18.3",
"unplugin-vue-components": "^0.26.0", "unplugin-vue-components": "^0.26.0",
"vite-plugin-windicss": "^1.9.1", "vite-plugin-windicss": "^1.9.3",
"vitepress": "1.0.0-rc.31", "vitepress": "1.0.0-rc.40",
"windicss": "^3.5.6" "windicss": "^3.5.6"
} }
} }
+1 -1
View File
@@ -12,7 +12,7 @@ import './style.css'
export default { export default {
extends: Theme, extends: Theme,
Layout, Layout,
enhanceApp({ app }) { enhanceApp() {
inject() inject()
}, },
} as typeof Theme } as typeof Theme
+320 -416
View File
File diff suppressed because it is too large Load Diff