chore: update deps

Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
braks
2023-01-17 22:13:12 +01:00
committed by Braks
parent b22327951b
commit 64823b10a1
13 changed files with 850 additions and 562 deletions
+4 -5
View File
@@ -17,13 +17,12 @@
}, },
"devDependencies": { "devDependencies": {
"@types/dagre": "^0.7.48", "@types/dagre": "^0.7.48",
"@vitejs/plugin-vue": "^3.2.0", "@vitejs/plugin-vue": "^4.0.0",
"dagre": "^0.8.5", "dagre": "^0.8.5",
"unplugin-auto-import": "^0.12.0", "unplugin-auto-import": "^0.12.1",
"vite": "^3.2.5", "vite": "^4.0.4",
"vite-plugin-vue-type-imports": "0.2.0",
"vite-svg-loader": "^3.6.0", "vite-svg-loader": "^3.6.0",
"vue": "^3.2.37", "vue": "^3.2.45",
"vue-router": "^4.1.6" "vue-router": "^4.1.6"
} }
} }
+6 -6
View File
@@ -29,17 +29,17 @@
"test": "exit 0" "test": "exit 0"
}, },
"peerDependencies": { "peerDependencies": {
"@vue-flow/core": "^1.0.0", "@vue-flow/core": "^1.12.2",
"vue": "^3.2.37" "vue": "^3.2.37"
}, },
"dependencies": {}, "dependencies": {},
"devDependencies": { "devDependencies": {
"@vue-flow/core": "workspace:*", "@vue-flow/core": "workspace:*",
"@vitejs/plugin-vue": "^3.2.0", "@vitejs/plugin-vue": "^4.0.0",
"unplugin-auto-import": "^0.12.0", "unplugin-auto-import": "^0.12.1",
"vite": "^3.2.5", "vite": "^4.0.4",
"vite-plugin-vue-type-imports": "0.2.0", "vite-plugin-vue-type-imports": "^0.2.4",
"vue-tsc": "^1.0.11" "vue-tsc": "^1.0.24"
}, },
"publishConfig": { "publishConfig": {
"access": "public", "access": "public",
+6 -6
View File
@@ -29,18 +29,18 @@
"test": "exit 0" "test": "exit 0"
}, },
"peerDependencies": { "peerDependencies": {
"@vue-flow/core": "^1.6.0", "@vue-flow/core": "^1.12.2",
"vue": "^3.2.37" "vue": "^3.2.37"
}, },
"dependencies": {}, "dependencies": {},
"devDependencies": { "devDependencies": {
"@vue-flow/core": "workspace:*", "@vue-flow/core": "workspace:*",
"@vitejs/plugin-vue": "^3.2.0", "@vitejs/plugin-vue": "^4.0.0",
"unplugin-auto-import": "^0.12.0", "unplugin-auto-import": "^0.12.1",
"vite": "^3.2.5", "vite": "^4.0.4",
"vite-plugin-vue-type-imports": "0.2.0", "vite-plugin-vue-type-imports": "^0.2.4",
"vite-svg-loader": "^3.6.0", "vite-svg-loader": "^3.6.0",
"vue-tsc": "^1.0.11" "vue-tsc": "^1.0.24"
}, },
"publishConfig": { "publishConfig": {
"access": "public", "access": "public",
+10 -10
View File
@@ -39,26 +39,26 @@
"vue": "^3.2.25" "vue": "^3.2.25"
}, },
"dependencies": { "dependencies": {
"@vueuse/core": "^9.6.0", "@vueuse/core": "^9.11.0",
"d3-drag": "^3.0.0", "d3-drag": "^3.0.0",
"d3-selection": "^3.0.0", "d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0" "d3-zoom": "^3.0.0"
}, },
"devDependencies": { "devDependencies": {
"@rollup/plugin-replace": "^5.0.1", "@rollup/plugin-replace": "^5.0.2",
"@types/d3": "^7.4.0", "@types/d3": "^7.4.0",
"@vitejs/plugin-vue": "^3.2.0", "@vitejs/plugin-vue": "^4.0.0",
"autoprefixer": "^10.4.13", "autoprefixer": "^10.4.13",
"postcss": "^8.4.19", "postcss": "^8.4.21",
"postcss-cli": "^10.1.0", "postcss-cli": "^10.1.0",
"postcss-nested": "^6.0.0", "postcss-nested": "^6.0.0",
"ts-patch": "^2.0.2", "ts-patch": "^2.1.0",
"typescript-transform-paths": "^3.4.4", "typescript-transform-paths": "^3.4.6",
"unplugin-auto-import": "^0.12.0", "unplugin-auto-import": "^0.12.1",
"unplugin-vue-macros": "^1.0.3", "unplugin-vue-macros": "^1.4.1",
"vite": "^3.2.5", "vite": "^4.0.4",
"vite-plugin-vue-type-imports": "0.2.0", "vite-plugin-vue-type-imports": "0.2.0",
"vue-tsc": "^1.0.11" "vue-tsc": "^1.0.24"
}, },
"publishConfig": { "publishConfig": {
"access": "public", "access": "public",
+15 -19
View File
@@ -32,26 +32,22 @@ const patchedTypeImports = `import type {
VueFlowStore, VueFlowStore,
} from '../../types'` } from '../../types'`
const unpatchedSlots = `(new () => { const unpatchedSlots = `Record<string, (_: {}) => any> &
$slots: Record<string, {}> & Record<string, (_: {}) => any> & {
Record<string, {}> & { 'connection-line': (_: {}) => any
'connection-line': (_: {}) => any 'zoom-pane': (_: {}) => any
'zoom-pane': (_: {}) => any 'default': (_: {}) => any
'default': (_: {}) => any }`
}
})`
const patchedSlots = `(new () => { const patchedSlots = `Record<string, (_: any) => any> & {
$slots: Record<string, any> & { 'connection-line': (connectionLineProps: ConnectionLineProps) => any
'connection-line': (connectionLineProps: ConnectionLineProps) => any 'zoom-pane': () => any
'zoom-pane': () => any 'default': () => any
'default': () => any } & {
} & { [key: \`node-\${string}\`]: (nodeProps: NodeProps) => any
[key: \`node-\${string}\`]: (nodeProps: NodeProps) => any } & {
} & { [key: \`edge-\${string}\`]: (edgeProps: EdgeProps) => any
[key: \`edge-\${string}\`]: (edgeProps: EdgeProps) => any }`
}
})`
const patchSlots = async () => { const patchSlots = async () => {
const fileContents = await content(filePath) const fileContents = await content(filePath)
+2
View File
@@ -190,6 +190,7 @@ declare global {
const useArrayMap: typeof import('@vueuse/core')['useArrayMap'] const useArrayMap: typeof import('@vueuse/core')['useArrayMap']
const useArrayReduce: typeof import('@vueuse/core')['useArrayReduce'] const useArrayReduce: typeof import('@vueuse/core')['useArrayReduce']
const useArraySome: typeof import('@vueuse/core')['useArraySome'] const useArraySome: typeof import('@vueuse/core')['useArraySome']
const useArrayUnique: typeof import('@vueuse/core')['useArrayUnique']
const useAsyncQueue: typeof import('@vueuse/core')['useAsyncQueue'] const useAsyncQueue: typeof import('@vueuse/core')['useAsyncQueue']
const useAsyncState: typeof import('@vueuse/core')['useAsyncState'] const useAsyncState: typeof import('@vueuse/core')['useAsyncState']
const useAttrs: typeof import('vue')['useAttrs'] const useAttrs: typeof import('vue')['useAttrs']
@@ -282,6 +283,7 @@ declare global {
const useParallax: typeof import('@vueuse/core')['useParallax'] const useParallax: typeof import('@vueuse/core')['useParallax']
const usePermission: typeof import('@vueuse/core')['usePermission'] const usePermission: typeof import('@vueuse/core')['usePermission']
const usePointer: typeof import('@vueuse/core')['usePointer'] const usePointer: typeof import('@vueuse/core')['usePointer']
const usePointerLock: typeof import('@vueuse/core')['usePointerLock']
const usePointerSwipe: typeof import('@vueuse/core')['usePointerSwipe'] const usePointerSwipe: typeof import('@vueuse/core')['usePointerSwipe']
const usePreferredColorScheme: typeof import('@vueuse/core')['usePreferredColorScheme'] const usePreferredColorScheme: typeof import('@vueuse/core')['usePreferredColorScheme']
const usePreferredContrast: typeof import('@vueuse/core')['usePreferredContrast'] const usePreferredContrast: typeof import('@vueuse/core')['usePreferredContrast']
+6 -7
View File
@@ -29,7 +29,7 @@
"test": "exit 0" "test": "exit 0"
}, },
"peerDependencies": { "peerDependencies": {
"@vue-flow/core": "^1.6.0", "@vue-flow/core": "^1.12.2",
"vue": "^3.2.37" "vue": "^3.2.37"
}, },
"dependencies": { "dependencies": {
@@ -39,12 +39,11 @@
"devDependencies": { "devDependencies": {
"@types/d3-selection": "^3.0.3", "@types/d3-selection": "^3.0.3",
"@types/d3-zoom": "^3.0.1", "@types/d3-zoom": "^3.0.1",
"@vue-flow/core": "workspace:*", "@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue": "^3.2.0", "unplugin-auto-import": "^0.12.1",
"unplugin-auto-import": "^0.12.0", "vite": "^4.0.4",
"vite": "^3.2.5", "vite-plugin-vue-type-imports": "^0.2.4",
"vite-plugin-vue-type-imports": "0.2.0", "vue-tsc": "^1.0.24"
"vue-tsc": "^1.0.11"
}, },
"publishConfig": { "publishConfig": {
"access": "public", "access": "public",
+6 -7
View File
@@ -29,7 +29,7 @@
"test": "exit 0" "test": "exit 0"
}, },
"peerDependencies": { "peerDependencies": {
"@vue-flow/core": "^1.0.0", "@vue-flow/core": "^1.12.2",
"vue": "^3.2.37" "vue": "^3.2.37"
}, },
"dependencies": { "dependencies": {
@@ -39,12 +39,11 @@
"devDependencies": { "devDependencies": {
"@types/d3-drag": "^3.0.1", "@types/d3-drag": "^3.0.1",
"@types/d3-selection": "^3.0.3", "@types/d3-selection": "^3.0.3",
"@vue-flow/core": "workspace:*", "@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue": "^3.2.0", "unplugin-auto-import": "^0.12.1",
"unplugin-auto-import": "^0.12.0", "vite": "^4.0.4",
"vite": "^3.2.5", "vite-plugin-vue-type-imports": "^0.2.4",
"vite-plugin-vue-type-imports": "0.2.0", "vue-tsc": "^1.0.24"
"vue-tsc": "^1.0.11"
}, },
"publishConfig": { "publishConfig": {
"access": "public", "access": "public",
+6 -6
View File
@@ -29,17 +29,17 @@
"test": "exit 0" "test": "exit 0"
}, },
"peerDependencies": { "peerDependencies": {
"@vue-flow/core": "^1.0.0", "@vue-flow/core": "^1.12.2",
"vue": "^3.2.37" "vue": "^3.2.37"
}, },
"dependencies": {}, "dependencies": {},
"devDependencies": { "devDependencies": {
"@vue-flow/core": "workspace:*", "@vue-flow/core": "workspace:*",
"@vitejs/plugin-vue": "^3.2.0", "@vitejs/plugin-vue": "^4.0.0",
"unplugin-auto-import": "^0.12.0", "unplugin-auto-import": "^0.12.1",
"vite": "^3.2.5", "vite": "^4.0.4",
"vite-plugin-vue-type-imports": "0.2.0", "vite-plugin-vue-type-imports": "^0.2.4",
"vue-tsc": "^1.0.11" "vue-tsc": "^1.0.24"
}, },
"publishConfig": { "publishConfig": {
"access": "public", "access": "public",
+9 -9
View File
@@ -33,17 +33,17 @@
}, },
"devDependencies": { "devDependencies": {
"@vue-flow/core": "workspace:*", "@vue-flow/core": "workspace:*",
"@types/pathfinding": "^0.0.5", "@types/pathfinding": "^0.0.6",
"@vitejs/plugin-vue": "^2.3.4", "@vitejs/plugin-vue": "^4.0.0",
"ts-patch": "^2.0.1", "ts-patch": "^2.1.0",
"typescript-transform-paths": "^3.3.1", "typescript-transform-paths": "^3.4.6",
"unplugin-auto-import": "^0.11.2", "unplugin-auto-import": "^0.12.1",
"vite": "^2.9.15", "vite": "^4.0.4",
"vite-plugin-vue-type-imports": "0.2.0", "vite-plugin-vue-type-imports": "^0.2.4",
"vue-tsc": "^0.40.13" "vue-tsc": "^1.0.24"
}, },
"peerDependencies": { "peerDependencies": {
"@vue-flow/core": "^1.0.0", "@vue-flow/core": "^1.12.2",
"vue": "^3.2.25" "vue": "^3.2.25"
}, },
"publishConfig": { "publishConfig": {
+1
View File
@@ -36,6 +36,7 @@ declare global {
const readonly: typeof import('vue')['readonly'] const readonly: typeof import('vue')['readonly']
const ref: typeof import('vue')['ref'] const ref: typeof import('vue')['ref']
const resolveComponent: typeof import('vue')['resolveComponent'] const resolveComponent: typeof import('vue')['resolveComponent']
const resolveDirective: typeof import('vue')['resolveDirective']
const shallowReactive: typeof import('vue')['shallowReactive'] const shallowReactive: typeof import('vue')['shallowReactive']
const shallowReadonly: typeof import('vue')['shallowReadonly'] const shallowReadonly: typeof import('vue')['shallowReadonly']
const shallowRef: typeof import('vue')['shallowRef'] const shallowRef: typeof import('vue')['shallowRef']
+2 -2
View File
@@ -42,10 +42,10 @@
}, },
"devDependencies": { "devDependencies": {
"autoprefixer": "^10.4.13", "autoprefixer": "^10.4.13",
"postcss": "^8.4.19", "postcss": "^8.4.21",
"postcss-cli": "^10.1.0", "postcss-cli": "^10.1.0",
"postcss-nested": "^6.0.0", "postcss-nested": "^6.0.0",
"vite": "^3.2.5" "vite": "^4.0.4"
}, },
"publishConfig": { "publishConfig": {
"access": "public", "access": "public",
+777 -485
View File
File diff suppressed because it is too large Load Diff