refactor: replace additional-components package occurrences
Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
@@ -12,6 +12,8 @@ const { vueFlowVersion } = useVueFlow()
|
|||||||
|
|
||||||
let css = `@import 'https://cdn.jsdelivr.net/npm/@vue-flow/core@${vueFlowVersion.value}/dist/style.css';
|
let css = `@import 'https://cdn.jsdelivr.net/npm/@vue-flow/core@${vueFlowVersion.value}/dist/style.css';
|
||||||
@import 'https://cdn.jsdelivr.net/npm/@vue-flow/core@${vueFlowVersion.value}/dist/theme-default.css';
|
@import 'https://cdn.jsdelivr.net/npm/@vue-flow/core@${vueFlowVersion.value}/dist/theme-default.css';
|
||||||
|
@import 'https://cdn.jsdelivr.net/npm/@vue-flow/controls@latest/dist/style.css';
|
||||||
|
@import 'https://cdn.jsdelivr.net/npm/@vue-flow/minimap@latest/dist/style.css';
|
||||||
|
|
||||||
html,
|
html,
|
||||||
body,
|
body,
|
||||||
@@ -72,7 +74,9 @@ onMounted(async () => {
|
|||||||
// pre-set import map
|
// pre-set import map
|
||||||
await store.setImportMap({
|
await store.setImportMap({
|
||||||
imports: {
|
imports: {
|
||||||
'@vue-flow/additional-components': `${location.origin}/vue-flow-additional-components.mjs`,
|
'@vue-flow/background': `${location.origin}/vue-flow-background.mjs`,
|
||||||
|
'@vue-flow/controls': `${location.origin}/vue-flow-controls.mjs`,
|
||||||
|
'@vue-flow/minimap': `${location.origin}/vue-flow-minimap.mjs`,
|
||||||
'@vue-flow/core': `${location.origin}/vue-flow-core.mjs`,
|
'@vue-flow/core': `${location.origin}/vue-flow-core.mjs`,
|
||||||
'@vue-flow/node-toolbar': `${location.origin}/vue-flow-node-toolbar.mjs`,
|
'@vue-flow/node-toolbar': `${location.origin}/vue-flow-node-toolbar.mjs`,
|
||||||
...additionalImports,
|
...additionalImports,
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { Background, Controls, MiniMap, Panel, PanelPosition } from '@vue-flow/additional-components'
|
import { Panel, PanelPosition, VueFlow, isNode, useVueFlow } from '@vue-flow/core'
|
||||||
import { VueFlow, isNode, useVueFlow } from '@vue-flow/core'
|
import { Background } from '@vue-flow/background'
|
||||||
|
import { Controls } from '@vue-flow/controls'
|
||||||
|
import { MiniMap } from '@vue-flow/minimap'
|
||||||
import { ref } from 'vue'
|
import { ref } from 'vue'
|
||||||
import { initialElements } from './initial-elements.js'
|
import { initialElements } from './initial-elements.js'
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { MiniMap } from '@vue-flow/additional-components'
|
import { MiniMap } from '@vue-flow/minimap'
|
||||||
import { Position, VueFlow, useVueFlow } from '@vue-flow/core'
|
import { Position, VueFlow, useVueFlow } from '@vue-flow/core'
|
||||||
import { h, onMounted, ref } from 'vue'
|
import { h, onMounted, ref } from 'vue'
|
||||||
import ColorSelectorNode from './CustomNode.vue'
|
import ColorSelectorNode from './CustomNode.vue'
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { Background } from '@vue-flow/additional-components'
|
import { Background } from '@vue-flow/background'
|
||||||
import { MarkerType, VueFlow } from '@vue-flow/core'
|
import { MarkerType, VueFlow } from '@vue-flow/core'
|
||||||
import { h, ref } from 'vue'
|
import { h, ref } from 'vue'
|
||||||
import CustomEdge from './CustomEdge.vue'
|
import CustomEdge from './CustomEdge.vue'
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { Background, BackgroundVariant, MiniMap, Panel, PanelPosition } from '@vue-flow/additional-components'
|
import { Panel, PanelPosition, VueFlow, useVueFlow } from '@vue-flow/core'
|
||||||
import { VueFlow, useVueFlow } from '@vue-flow/core'
|
import { Background, BackgroundVariant } from '@vue-flow/background'
|
||||||
|
import { MiniMap } from '@vue-flow/minimap'
|
||||||
|
|
||||||
const { nodes, addNodes, edges, addEdges, onConnect, onPaneReady, onNodeDragStop, dimensions } = useVueFlow()
|
const { nodes, addNodes, edges, addEdges, onConnect, onPaneReady, onNodeDragStop, dimensions } = useVueFlow()
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { Background, Panel, PanelPosition } from '@vue-flow/additional-components'
|
import { Background } from '@vue-flow/background'
|
||||||
import { VueFlow, useVueFlow } from '@vue-flow/core'
|
import { Panel, PanelPosition, VueFlow, useVueFlow } from '@vue-flow/core'
|
||||||
import { ref, watch } from 'vue'
|
import { ref, watch } from 'vue'
|
||||||
|
|
||||||
const isHidden = ref(false)
|
const isHidden = ref(false)
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { Background, Controls, MiniMap } from '@vue-flow/additional-components'
|
|
||||||
import { VueFlow, useVueFlow } from '@vue-flow/core'
|
import { VueFlow, useVueFlow } from '@vue-flow/core'
|
||||||
|
import { Background } from '@vue-flow/background'
|
||||||
|
import { Controls } from '@vue-flow/controls'
|
||||||
|
import { MiniMap } from '@vue-flow/minimap'
|
||||||
import { ref } from 'vue'
|
import { ref } from 'vue'
|
||||||
import { initialElements } from './initial-elements.js'
|
import { initialElements } from './initial-elements.js'
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { Background, Panel, PanelPosition } from '@vue-flow/additional-components'
|
import { Background } from '@vue-flow/background'
|
||||||
import { VueFlow, isNode } from '@vue-flow/core'
|
import { Panel, PanelPosition, VueFlow, isNode } from '@vue-flow/core'
|
||||||
import { ref } from 'vue'
|
import { ref } from 'vue'
|
||||||
|
|
||||||
const elements = ref([
|
const elements = ref([
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { Background, Controls, MiniMap } from '@vue-flow/additional-components'
|
|
||||||
import { VueFlow, useVueFlow } from '@vue-flow/core'
|
import { VueFlow, useVueFlow } from '@vue-flow/core'
|
||||||
|
import { Background } from '@vue-flow/background'
|
||||||
|
import { Controls } from '@vue-flow/controls'
|
||||||
|
import { MiniMap } from '@vue-flow/minimap'
|
||||||
import { onMounted } from 'vue'
|
import { onMounted } from 'vue'
|
||||||
|
|
||||||
const { onConnect, nodes, edges, addEdges, addNodes } = useVueFlow({
|
const { onConnect, nodes, edges, addEdges, addNodes } = useVueFlow({
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { Panel, PanelPosition } from '@vue-flow/additional-components'
|
import { Panel, PanelPosition, useVueFlow } from '@vue-flow/core'
|
||||||
import { useVueFlow } from '@vue-flow/core'
|
|
||||||
|
|
||||||
const flowKey = 'example-flow'
|
const flowKey = 'example-flow'
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { Background, MiniMap, Panel, PanelPosition } from '@vue-flow/additional-components'
|
import { Panel, PanelPosition, VueFlow, isNode, useVueFlow } from '@vue-flow/core'
|
||||||
import { VueFlow, isNode, useVueFlow } from '@vue-flow/core'
|
import { Background } from '@vue-flow/background'
|
||||||
|
import { MiniMap } from '@vue-flow/minimap'
|
||||||
import { nextTick, ref } from 'vue'
|
import { nextTick, ref } from 'vue'
|
||||||
import { getElements } from './utils.js'
|
import { getElements } from './utils.js'
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { Background } from '@vue-flow/additional-components'
|
import { Background } from '@vue-flow/background'
|
||||||
import { VueFlow, useVueFlow } from '@vue-flow/core'
|
import { VueFlow, useVueFlow } from '@vue-flow/core'
|
||||||
import { ref } from 'vue'
|
import { ref } from 'vue'
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,9 @@
|
|||||||
import { ref } from 'vue'
|
import { ref } from 'vue'
|
||||||
import type { Elements } from '@vue-flow/core'
|
import type { Elements } from '@vue-flow/core'
|
||||||
import { Position, VueFlow, useVueFlow } from '@vue-flow/core'
|
import { Position, VueFlow, useVueFlow } from '@vue-flow/core'
|
||||||
import { Background, Controls, MiniMap } from '@vue-flow/additional-components'
|
import { Background } from '@vue-flow/background'
|
||||||
|
import { Controls } from '@vue-flow/controls'
|
||||||
|
import { MiniMap } from '@vue-flow/minimap'
|
||||||
|
|
||||||
const emit = defineEmits(['pane'])
|
const emit = defineEmits(['pane'])
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import type { ClassFunc, GraphEdge, GraphNode, StyleFunc } from '@vue-flow/core'
|
import type { ClassFunc, GraphEdge, GraphNode, StyleFunc } from '@vue-flow/core'
|
||||||
import { ConnectionLineType, VueFlow, useVueFlow } from '@vue-flow/core'
|
import { ConnectionLineType, VueFlow, useVueFlow } from '@vue-flow/core'
|
||||||
import { Background, Controls } from '@vue-flow/additional-components'
|
import { Background } from '@vue-flow/background'
|
||||||
|
import { Controls } from '@vue-flow/controls'
|
||||||
|
|
||||||
import Cross from '~icons/mdi/window-close'
|
import Cross from '~icons/mdi/window-close'
|
||||||
|
|
||||||
const emit = defineEmits(['pane'])
|
const emit = defineEmits(['pane'])
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import { Handle, Position, VueFlow, useVueFlow } from '@vue-flow/core'
|
|||||||
import { breakpointsTailwind, useBreakpoints } from '@vueuse/core'
|
import { breakpointsTailwind, useBreakpoints } from '@vueuse/core'
|
||||||
import confetti from 'canvas-confetti'
|
import confetti from 'canvas-confetti'
|
||||||
import colors from 'windicss/colors'
|
import colors from 'windicss/colors'
|
||||||
import { Background } from '@vue-flow/additional-components'
|
import { Background } from '@vue-flow/background'
|
||||||
import { cheer, fireworks } from './confetti'
|
import { cheer, fireworks } from './confetti'
|
||||||
import Heart from '~icons/mdi/heart'
|
import Heart from '~icons/mdi/heart'
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { ConnectionMode, VueFlow, useVueFlow } from '@vue-flow/core'
|
import { ConnectionMode, VueFlow, useVueFlow } from '@vue-flow/core'
|
||||||
|
import { Background } from '@vue-flow/background'
|
||||||
|
import { Controls } from '@vue-flow/controls'
|
||||||
import { breakpointsTailwind } from '@vueuse/core'
|
import { breakpointsTailwind } from '@vueuse/core'
|
||||||
import { Background, Controls } from '@vue-flow/additional-components'
|
|
||||||
|
|
||||||
const emit = defineEmits(['pane'])
|
const emit = defineEmits(['pane'])
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,11 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { VueFlow, useVueFlow } from '@vue-flow/core'
|
import { VueFlow, useVueFlow } from '@vue-flow/core'
|
||||||
import { breakpointsTailwind } from '@vueuse/core'
|
import { breakpointsTailwind } from '@vueuse/core'
|
||||||
import type { MiniMapNodeFunc } from '@vue-flow/additional-components'
|
import { Background, BackgroundVariant } from '@vue-flow/background'
|
||||||
import { Background, BackgroundVariant, Controls, MiniMap } from '@vue-flow/additional-components'
|
import { Controls } from '@vue-flow/controls'
|
||||||
|
import { MiniMap } from '@vue-flow/minimap'
|
||||||
|
import type { MiniMapNodeFunc } from '@vue-flow/minimap'
|
||||||
|
|
||||||
import CustomEdge from '../edges/Custom.vue'
|
import CustomEdge from '../edges/Custom.vue'
|
||||||
import RGBNode from '../nodes/Input.vue'
|
import RGBNode from '../nodes/Input.vue'
|
||||||
import RGBOutputNode from '../nodes/Output.vue'
|
import RGBOutputNode from '../nodes/Output.vue'
|
||||||
|
|||||||
@@ -16,7 +16,10 @@
|
|||||||
"@animxyz/vue3": "^0.6.7",
|
"@animxyz/vue3": "^0.6.7",
|
||||||
"@stackblitz/sdk": "^1.8.0",
|
"@stackblitz/sdk": "^1.8.0",
|
||||||
"@vercel/analytics": "^0.1.5",
|
"@vercel/analytics": "^0.1.5",
|
||||||
|
"@vue-flow/background": "workspace:*",
|
||||||
|
"@vue-flow/controls": "workspace:*",
|
||||||
"@vue-flow/core": "workspace:*",
|
"@vue-flow/core": "workspace:*",
|
||||||
|
"@vue-flow/minimap": "workspace:*",
|
||||||
"@vue-flow/node-toolbar": "workspace:*",
|
"@vue-flow/node-toolbar": "workspace:*",
|
||||||
"@vue/repl": "1.1.2",
|
"@vue/repl": "1.1.2",
|
||||||
"blobity": "^0.2.1",
|
"blobity": "^0.2.1",
|
||||||
|
|||||||
@@ -9,8 +9,16 @@ export function copyVueFlowPlugin(): Plugin {
|
|||||||
;[
|
;[
|
||||||
{ path: '../../../node_modules/@vue-flow/core/dist/', pkgName: 'vue-flow-core.mjs' },
|
{ path: '../../../node_modules/@vue-flow/core/dist/', pkgName: 'vue-flow-core.mjs' },
|
||||||
{
|
{
|
||||||
path: '../../../node_modules/@vue-flow/additional-components/dist/',
|
path: '../../../node_modules/@vue-flow/background/dist/',
|
||||||
pkgName: 'vue-flow-additional-components.mjs',
|
pkgName: 'vue-flow-background.mjs',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '../../../node_modules/@vue-flow/controls/dist/',
|
||||||
|
pkgName: 'vue-flow-controls.mjs',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '../../../node_modules/@vue-flow/minimap/dist/',
|
||||||
|
pkgName: 'vue-flow-minimap.mjs',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '../../../node_modules/@vue-flow/node-toolbar/dist/',
|
path: '../../../node_modules/@vue-flow/node-toolbar/dist/',
|
||||||
|
|||||||
@@ -7,6 +7,8 @@ import 'virtual:windi.css'
|
|||||||
import '@animxyz/core'
|
import '@animxyz/core'
|
||||||
import '@vue-flow/core/dist/style.css'
|
import '@vue-flow/core/dist/style.css'
|
||||||
import '@vue-flow/core/dist/theme-default.css'
|
import '@vue-flow/core/dist/theme-default.css'
|
||||||
|
import '@vue-flow/controls/dist/style.css'
|
||||||
|
import '@vue-flow/minimap/dist/style.css'
|
||||||
import './../../assets/index.css'
|
import './../../assets/index.css'
|
||||||
|
|
||||||
const CustomTheme = {
|
const CustomTheme = {
|
||||||
|
|||||||
+3
-1
@@ -6,7 +6,9 @@
|
|||||||
],
|
],
|
||||||
"entryPoints": [
|
"entryPoints": [
|
||||||
"../packages/core/src/index.ts",
|
"../packages/core/src/index.ts",
|
||||||
"../packages/additional-components/src/index.ts",
|
"../packages/background/src/index.ts",
|
||||||
|
"../packages/controls/src/index.ts",
|
||||||
|
"../packages/minimap/src/index.ts",
|
||||||
"../packages/node-toolbar/src/index.ts"
|
"../packages/node-toolbar/src/index.ts"
|
||||||
],
|
],
|
||||||
"categorizeByGroup": true,
|
"categorizeByGroup": true,
|
||||||
|
|||||||
@@ -7,7 +7,9 @@
|
|||||||
],
|
],
|
||||||
"entryPoints": [
|
"entryPoints": [
|
||||||
"../packages/core/src/index.ts",
|
"../packages/core/src/index.ts",
|
||||||
"../packages/additional-components/src/index.ts",
|
"../packages/background/src/index.ts",
|
||||||
|
"../packages/controls/src/index.ts",
|
||||||
|
"../packages/minimap/src/index.ts",
|
||||||
"../packages/node-toolbar/src/index.ts"
|
"../packages/node-toolbar/src/index.ts"
|
||||||
],
|
],
|
||||||
"allReflectionsHaveOwnDocument": true,
|
"allReflectionsHaveOwnDocument": true,
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { VueFlow } from '@vue-flow/core'
|
import { VueFlow } from '@vue-flow/core'
|
||||||
import { Background } from '@vue-flow/additional-components'
|
import { Background } from '@vue-flow/background'
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { VueFlow } from '@vue-flow/core'
|
import { VueFlow } from '@vue-flow/core'
|
||||||
import { Controls } from '@vue-flow/additional-components'
|
import { Controls } from '@vue-flow/controls'
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { VueFlow } from '@vue-flow/core'
|
import { VueFlow } from '@vue-flow/core'
|
||||||
import { MiniMap } from '@vue-flow/additional-components'
|
import { MiniMap } from '@vue-flow/minimap'
|
||||||
|
|
||||||
defineProps({
|
defineProps({
|
||||||
nodes: {
|
nodes: {
|
||||||
|
|||||||
+4
-2
@@ -7,8 +7,10 @@
|
|||||||
"open": "cypress open"
|
"open": "cypress open"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@vue-flow/additional-components": "workspace:*",
|
"@vue-flow/background": "workspace:*",
|
||||||
"@vue-flow/core": "workspace:*"
|
"@vue-flow/controls": "workspace:*",
|
||||||
|
"@vue-flow/core": "workspace:*",
|
||||||
|
"@vue-flow/minimap": "workspace:*"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"cypress": "^10.9.0",
|
"cypress": "^10.9.0",
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { Background, Controls, MiniMap } from '@vue-flow/additional-components'
|
|
||||||
import { VueFlow, isNode, useVueFlow } from '@vue-flow/core'
|
import { VueFlow, isNode, useVueFlow } from '@vue-flow/core'
|
||||||
import { ref } from 'vue'
|
import { ref } from 'vue'
|
||||||
import { initialElements } from './initial-elements.js'
|
import { initialElements } from './initial-elements.js'
|
||||||
@@ -67,10 +66,6 @@ const toggleClass = () => {
|
|||||||
|
|
||||||
<template>
|
<template>
|
||||||
<VueFlow v-model="elements" class="basicflow" :default-zoom="1.5" :min-zoom="0.2" :max-zoom="4">
|
<VueFlow v-model="elements" class="basicflow" :default-zoom="1.5" :min-zoom="0.2" :max-zoom="4">
|
||||||
<Background pattern-color="#aaa" gap="8" />
|
|
||||||
<MiniMap />
|
|
||||||
<Controls />
|
|
||||||
|
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<button style="background-color: #113285; color: white" @click="resetTransform">reset transform</button>
|
<button style="background-color: #113285; color: white" @click="resetTransform">reset transform</button>
|
||||||
<button style="background-color: #6f3381; color: white" @click="updatePos">update positions</button>
|
<button style="background-color: #6f3381; color: white" @click="updatePos">update positions</button>
|
||||||
|
|||||||
@@ -9,8 +9,10 @@
|
|||||||
"dev": "nuxt dev"
|
"dev": "nuxt dev"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@vue-flow/additional-components": "workspace:*",
|
"@vue-flow/background": "workspace:*",
|
||||||
"@vue-flow/core": "workspace:*"
|
"@vue-flow/controls": "workspace:*",
|
||||||
|
"@vue-flow/core": "workspace:*",
|
||||||
|
"@vue-flow/minimap": "workspace:*"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"nuxt": "3.0.0-rc.11"
|
"nuxt": "3.0.0-rc.11"
|
||||||
|
|||||||
@@ -10,8 +10,10 @@
|
|||||||
"lint": "eslint --ext .js,.ts,.vue ./"
|
"lint": "eslint --ext .js,.ts,.vue ./"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@vue-flow/additional-components": "workspace:*",
|
"@vue-flow/background": "workspace:*",
|
||||||
|
"@vue-flow/controls": "workspace:*",
|
||||||
"@vue-flow/core": "workspace:*",
|
"@vue-flow/core": "workspace:*",
|
||||||
|
"@vue-flow/minimap": "workspace:*",
|
||||||
"@quasar/extras": "^1.15.4",
|
"@quasar/extras": "^1.15.4",
|
||||||
"quasar": "^2.9.2",
|
"quasar": "^2.9.2",
|
||||||
"vue": "^3.2.37",
|
"vue": "^3.2.37",
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { Background, Controls, MiniMap } from '@vue-flow/additional-components'
|
|
||||||
import { VueFlow, isNode, useVueFlow } from '@vue-flow/core'
|
import { VueFlow, isNode, useVueFlow } from '@vue-flow/core'
|
||||||
import { ref } from 'vue'
|
import { ref } from 'vue'
|
||||||
import { initialElements } from './initial-elements.js'
|
import { initialElements } from './initial-elements.js'
|
||||||
@@ -67,10 +66,6 @@ const toggleClass = () => {
|
|||||||
|
|
||||||
<template>
|
<template>
|
||||||
<VueFlow v-model="elements" class="basicflow" :default-zoom="1.5" :min-zoom="0.2" :max-zoom="4">
|
<VueFlow v-model="elements" class="basicflow" :default-zoom="1.5" :min-zoom="0.2" :max-zoom="4">
|
||||||
<Background pattern-color="#aaa" gap="8" />
|
|
||||||
<MiniMap />
|
|
||||||
<Controls />
|
|
||||||
|
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<button style="background-color: #113285; color: white" @click="resetTransform">reset transform</button>
|
<button style="background-color: #113285; color: white" @click="resetTransform">reset transform</button>
|
||||||
<button style="background-color: #6f3381; color: white" @click="updatePos">update positions</button>
|
<button style="background-color: #6f3381; color: white" @click="updatePos">update positions</button>
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { Background, Controls, MiniMap } from '@vue-flow/additional-components'
|
|
||||||
import { VueFlow, isNode, useVueFlow } from '@vue-flow/core'
|
import { VueFlow, isNode, useVueFlow } from '@vue-flow/core'
|
||||||
import { ref } from 'vue'
|
import { ref } from 'vue'
|
||||||
import { initialElements } from './customized-elements.js'
|
import { initialElements } from './customized-elements.js'
|
||||||
@@ -78,9 +77,6 @@ const toggleClass = () => {
|
|||||||
</q-card-section>
|
</q-card-section>
|
||||||
</q-card>
|
</q-card>
|
||||||
</template>
|
</template>
|
||||||
<Background pattern-color="#aaa" gap="8" />
|
|
||||||
<MiniMap />
|
|
||||||
<Controls />
|
|
||||||
|
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<button style="background-color: #113285; color: white" @click="resetTransform">reset transform</button>
|
<button style="background-color: #113285; color: white" @click="resetTransform">reset transform</button>
|
||||||
|
|||||||
@@ -4,6 +4,9 @@
|
|||||||
/* import the default theme (optional) */
|
/* import the default theme (optional) */
|
||||||
@import 'node_modules/@vue-flow/core/dist/theme-default.css';
|
@import 'node_modules/@vue-flow/core/dist/theme-default.css';
|
||||||
|
|
||||||
|
@import '@vue-flow/controls/dist/style.css';
|
||||||
|
@import '@vue-flow/minimap/dist/style.css';
|
||||||
|
|
||||||
body {
|
body {
|
||||||
color: #111;
|
color: #111;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
|
|||||||
@@ -8,8 +8,10 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"vueflow": "workspace:*",
|
"vueflow": "workspace:*",
|
||||||
"@vue-flow/additional-components": "workspace:*",
|
"@vue-flow/background": "workspace:*",
|
||||||
|
"@vue-flow/controls": "workspace:*",
|
||||||
"@vue-flow/core": "workspace:*",
|
"@vue-flow/core": "workspace:*",
|
||||||
|
"@vue-flow/minimap": "workspace:*",
|
||||||
"@vue-flow/node-toolbar": "workspace:*"
|
"@vue-flow/node-toolbar": "workspace:*"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { Background, Controls, MiniMap } from '@vue-flow/additional-components'
|
|
||||||
import type { Elements } from '@vue-flow/core'
|
|
||||||
import { VueFlow, isNode, useVueFlow } from '@vue-flow/core'
|
import { VueFlow, isNode, useVueFlow } from '@vue-flow/core'
|
||||||
|
import type { Elements } from '@vue-flow/core'
|
||||||
|
|
||||||
|
import { Background } from '@vue-flow/background'
|
||||||
|
import { Controls } from '@vue-flow/controls'
|
||||||
|
import { MiniMap } from '@vue-flow/minimap'
|
||||||
|
|
||||||
const elements = ref<Elements>([
|
const elements = ref<Elements>([
|
||||||
{ id: '1', type: 'input', label: 'Node 1', position: { x: 250, y: 5 }, class: 'light' },
|
{ id: '1', type: 'input', label: 'Node 1', position: { x: 250, y: 5 }, class: 'light' },
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import type { Elements, FlowEvents, VueFlowStore } from '@vue-flow/core'
|
import type { Elements, FlowEvents, VueFlowStore } from '@vue-flow/core'
|
||||||
import { VueFlow, addEdge, isNode } from '@vue-flow/core'
|
import { VueFlow, addEdge, isNode } from '@vue-flow/core'
|
||||||
import { Background, Controls, MiniMap } from '@vue-flow/additional-components'
|
|
||||||
|
import { Background } from '@vue-flow/background'
|
||||||
|
import { Controls } from '@vue-flow/controls'
|
||||||
|
import { MiniMap } from '@vue-flow/minimap'
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: 'BasicOptionsAPI',
|
name: 'BasicOptionsAPI',
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import type { Elements } from '@vue-flow/core'
|
import type { Elements } from '@vue-flow/core'
|
||||||
import { VueFlow } from '@vue-flow/core'
|
import { VueFlow } from '@vue-flow/core'
|
||||||
import { Background, BackgroundVariant } from '@vue-flow/additional-components'
|
import { Background, BackgroundVariant } from '@vue-flow/background'
|
||||||
import ConnectionLine from './ConnectionLine.vue'
|
import ConnectionLine from './ConnectionLine.vue'
|
||||||
|
|
||||||
const elements = ref<Elements>([
|
const elements = ref<Elements>([
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import type { Elements, Node, SnapGrid } from '@vue-flow/core'
|
import type { Elements, Node, SnapGrid } from '@vue-flow/core'
|
||||||
import { ConnectionMode, Position, VueFlow, isEdge, useVueFlow } from '@vue-flow/core'
|
import { ConnectionMode, Position, VueFlow, isEdge, useVueFlow } from '@vue-flow/core'
|
||||||
import { Controls, MiniMap } from '@vue-flow/additional-components'
|
|
||||||
|
import { Controls } from '@vue-flow/controls'
|
||||||
|
import { MiniMap } from '@vue-flow/minimap'
|
||||||
|
|
||||||
import ColorSelectorNode from './ColorSelectorNode.vue'
|
import ColorSelectorNode from './ColorSelectorNode.vue'
|
||||||
|
|
||||||
const elements = ref<Elements>([])
|
const elements = ref<Elements>([])
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import Sidebar from './Sidebar.vue'
|
|||||||
let id = 0
|
let id = 0
|
||||||
const getId = () => `dndnode_${id++}`
|
const getId = () => `dndnode_${id++}`
|
||||||
|
|
||||||
const { onConnect, nodes, edges, addEdges, addNodes, project } = useVueFlow({
|
const { onConnect, addEdges, addNodes, project } = useVueFlow({
|
||||||
nodes: [
|
nodes: [
|
||||||
{
|
{
|
||||||
id: '1',
|
id: '1',
|
||||||
|
|||||||
@@ -1,19 +1,15 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import type { VueFlowStore } from '@vue-flow/core'
|
|
||||||
import { VueFlow } from '@vue-flow/core'
|
import { VueFlow } from '@vue-flow/core'
|
||||||
import { Controls, MiniMap } from '@vue-flow/additional-components'
|
import { Controls } from '@vue-flow/controls'
|
||||||
|
import { MiniMap } from '@vue-flow/minimap'
|
||||||
|
|
||||||
import { getElements } from './utils'
|
import { getElements } from './utils'
|
||||||
|
|
||||||
const onLoad = (flowInstance: VueFlowStore) => {
|
const elements = ref(getElements())
|
||||||
flowInstance.fitView()
|
|
||||||
console.log(flowInstance.getElements.value)
|
|
||||||
}
|
|
||||||
|
|
||||||
const elements = getElements()
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<VueFlow v-model="elements" :min-zoom="0.2" @pane-ready="onLoad">
|
<VueFlow v-model="elements" :min-zoom="0.2" fit-view-on-init>
|
||||||
<MiniMap />
|
<MiniMap />
|
||||||
<Controls />
|
<Controls />
|
||||||
</VueFlow>
|
</VueFlow>
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { VueFlow } from '@vue-flow/core'
|
import { VueFlow } from '@vue-flow/core'
|
||||||
import { Background, Controls, MiniMap } from '@vue-flow/additional-components'
|
import { Background } from '@vue-flow/background'
|
||||||
|
import { Controls } from '@vue-flow/controls'
|
||||||
|
import { MiniMap } from '@vue-flow/minimap'
|
||||||
|
|
||||||
import CustomEdge from './CustomEdge.vue'
|
import CustomEdge from './CustomEdge.vue'
|
||||||
import CustomEdge2 from './CustomEdge2.vue'
|
import CustomEdge2 from './CustomEdge2.vue'
|
||||||
import { initialEdges, initialNodes } from './initial-elements'
|
import { initialEdges, initialNodes } from './initial-elements'
|
||||||
|
|||||||
@@ -1,9 +1,12 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import type { Node } from '@vue-flow/core'
|
import type { Node } from '@vue-flow/core'
|
||||||
import { VueFlow, useVueFlow } from '@vue-flow/core/src/index'
|
import { VueFlow, useVueFlow } from '@vue-flow/core/src/index'
|
||||||
import { Background, BackgroundVariant, Controls, MiniMap } from '@vue-flow/additional-components'
|
|
||||||
|
|
||||||
const { nodes, addNodes, edges, addEdges, onConnect, onPaneReady, onNodeDragStop, dimensions } = useVueFlow()
|
import { Background, BackgroundVariant } from '@vue-flow/background'
|
||||||
|
import { Controls } from '@vue-flow/controls'
|
||||||
|
import { MiniMap } from '@vue-flow/minimap'
|
||||||
|
|
||||||
|
const { nodes, addNodes, addEdges, onConnect, onPaneReady, onNodeDragStop, dimensions } = useVueFlow()
|
||||||
|
|
||||||
onConnect((params) => addEdges([params]))
|
onConnect((params) => addEdges([params]))
|
||||||
onPaneReady((flowInstance) => console.log('flow loaded:', flowInstance))
|
onPaneReady((flowInstance) => console.log('flow loaded:', flowInstance))
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { MarkerType, VueFlow, useVueFlow } from '@vue-flow/core'
|
import { MarkerType, VueFlow, useVueFlow } from '@vue-flow/core'
|
||||||
import { Background, BackgroundVariant, Controls, MiniMap } from '@vue-flow/additional-components'
|
import { Background, BackgroundVariant } from '@vue-flow/background'
|
||||||
|
import { Controls } from '@vue-flow/controls'
|
||||||
|
import { MiniMap } from '@vue-flow/minimap'
|
||||||
|
|
||||||
import FloatingEdge from './FloatingEdge.vue'
|
import FloatingEdge from './FloatingEdge.vue'
|
||||||
import FloatingConnectionLine from './FloatingConnectionLine.vue'
|
import FloatingConnectionLine from './FloatingConnectionLine.vue'
|
||||||
import { createElements } from './floating-edge-utils'
|
import { createElements } from './floating-edge-utils'
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { VueFlow, useVueFlow } from '@vue-flow/core'
|
import { VueFlow, useVueFlow } from '@vue-flow/core'
|
||||||
import { Controls, MiniMap } from '@vue-flow/additional-components'
|
|
||||||
|
import { Controls } from '@vue-flow/controls'
|
||||||
|
import { MiniMap } from '@vue-flow/minimap'
|
||||||
|
|
||||||
const isHidden = ref(false)
|
const isHidden = ref(false)
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { VueFlow, useVueFlow } from '@vue-flow/core'
|
import { VueFlow, useVueFlow } from '@vue-flow/core'
|
||||||
import { Controls, MiniMap } from '@vue-flow/additional-components'
|
import { Controls } from '@vue-flow/controls'
|
||||||
|
import { MiniMap } from '@vue-flow/minimap'
|
||||||
|
|
||||||
const {
|
const {
|
||||||
nodesDraggable,
|
nodesDraggable,
|
||||||
|
|||||||
@@ -2,7 +2,10 @@
|
|||||||
import dagre from 'dagre'
|
import dagre from 'dagre'
|
||||||
import type { CoordinateExtent, Elements } from '@vue-flow/core'
|
import type { CoordinateExtent, Elements } from '@vue-flow/core'
|
||||||
import { ConnectionMode, Position, VueFlow, isNode } from '@vue-flow/core'
|
import { ConnectionMode, Position, VueFlow, isNode } from '@vue-flow/core'
|
||||||
import { Controls } from '@vue-flow/additional-components'
|
import { Controls } from '@vue-flow/controls'
|
||||||
|
|
||||||
|
import '@vue-flow/controls/dist/style.css'
|
||||||
|
|
||||||
import initialElements from './initial-elements'
|
import initialElements from './initial-elements'
|
||||||
|
|
||||||
const dagreGraph = new dagre.graphlib.Graph()
|
const dagreGraph = new dagre.graphlib.Graph()
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import type { Elements } from '@vue-flow/core'
|
import type { Elements } from '@vue-flow/core'
|
||||||
import { VueFlow } from '@vue-flow/core'
|
import { VueFlow } from '@vue-flow/core'
|
||||||
import { Background } from '@vue-flow/additional-components'
|
import { Background } from '@vue-flow/background'
|
||||||
|
|
||||||
const initialElements: Elements = [
|
const initialElements: Elements = [
|
||||||
{ id: '1', type: 'input', label: 'Node 1', position: { x: 250, y: 5 }, class: 'light' },
|
{ id: '1', type: 'input', label: 'Node 1', position: { x: 250, y: 5 }, class: 'light' },
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { ConnectionMode, VueFlow, useVueFlow } from '@vue-flow/core'
|
import { ConnectionMode, VueFlow, useVueFlow } from '@vue-flow/core'
|
||||||
import { Background, Controls, MiniMap } from '@vue-flow/additional-components'
|
import { Background } from '@vue-flow/background'
|
||||||
|
import { Controls } from '@vue-flow/controls'
|
||||||
|
import { MiniMap } from '@vue-flow/minimap'
|
||||||
|
|
||||||
const { onConnect, addEdges, addNodes } = useVueFlow({
|
const { onConnect, addEdges, addNodes } = useVueFlow({
|
||||||
fitViewOnInit: true,
|
fitViewOnInit: true,
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import type { Connection, Edge, Elements, FlowEvents, Node, SnapGrid, Styles, VueFlowStore } from '@vue-flow/core'
|
import type { Connection, Edge, Elements, FlowEvents, Node, SnapGrid, Styles, VueFlowStore } from '@vue-flow/core'
|
||||||
import { MarkerType, VueFlow, addEdge } from '@vue-flow/core'
|
import { MarkerType, VueFlow, addEdge } from '@vue-flow/core'
|
||||||
import { Background, Controls, MiniMap } from '@vue-flow/additional-components'
|
import { Background } from '@vue-flow/background'
|
||||||
|
import { Controls } from '@vue-flow/controls'
|
||||||
|
import { MiniMap } from '@vue-flow/minimap'
|
||||||
|
|
||||||
const onNodeDragStart = (e: FlowEvents['nodeDragStart']) => console.log('drag start', e)
|
const onNodeDragStart = (e: FlowEvents['nodeDragStart']) => console.log('drag start', e)
|
||||||
const onNodeDrag = (e: FlowEvents['nodeDrag']) => console.log('drag', e)
|
const onNodeDrag = (e: FlowEvents['nodeDrag']) => console.log('drag', e)
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import type { Elements, VueFlowStore } from '@vue-flow/core'
|
import type { Elements, VueFlowStore } from '@vue-flow/core'
|
||||||
import { ConnectionMode, VueFlow, useVueFlow } from '@vue-flow/core'
|
import { ConnectionMode, VueFlow, useVueFlow } from '@vue-flow/core'
|
||||||
import { Controls } from '@vue-flow/additional-components'
|
import { Controls } from '@vue-flow/controls'
|
||||||
|
|
||||||
|
import '@vue-flow/controls/dist/style.css'
|
||||||
|
|
||||||
import Sidebar from './Sidebar.vue'
|
import Sidebar from './Sidebar.vue'
|
||||||
|
|
||||||
const onLoad = (flowInstance: VueFlowStore) => console.log('flow loaded:', flowInstance)
|
const onLoad = (flowInstance: VueFlowStore) => console.log('flow loaded:', flowInstance)
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { Background, MiniMap, Panel, PanelPosition } from '@vue-flow/additional-components'
|
import { Panel, PanelPosition, VueFlow, isNode, useVueFlow } from '@vue-flow/core'
|
||||||
import { VueFlow, isNode, useVueFlow } from '@vue-flow/core'
|
|
||||||
import { nextTick, ref } from 'vue'
|
import { nextTick, ref } from 'vue'
|
||||||
|
import { Background } from '@vue-flow/background'
|
||||||
import { getElements } from './utils'
|
import { getElements } from './utils'
|
||||||
|
|
||||||
const { nodes, edges } = getElements(15, 15)
|
const { nodes, edges } = getElements(15, 15)
|
||||||
const elements = ref([...nodes, ...edges])
|
const elements = ref([...nodes, ...edges])
|
||||||
|
|
||||||
const { onPaneReady, dimensions, onNodeClick, getEdges, fitView } = useVueFlow()
|
const { onPaneReady, dimensions, fitView } = useVueFlow()
|
||||||
|
|
||||||
onPaneReady((i) => {
|
onPaneReady((i) => {
|
||||||
i.fitView({
|
i.fitView({
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import type { Connection, Edge, Elements, FlowEvents, VueFlowStore } from '@vue-flow/core'
|
import type { Connection, Edge, Elements, FlowEvents, VueFlowStore } from '@vue-flow/core'
|
||||||
import { ConnectionMode, VueFlow, addEdge, updateEdge } from '@vue-flow/core'
|
import { ConnectionMode, VueFlow, addEdge, updateEdge } from '@vue-flow/core'
|
||||||
import { Controls } from '@vue-flow/additional-components'
|
import { Controls } from '@vue-flow/controls'
|
||||||
|
|
||||||
|
import '@vue-flow/controls/dist/style.css'
|
||||||
|
|
||||||
const initialElements: Elements = [
|
const initialElements: Elements = [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -35,8 +35,10 @@
|
|||||||
"vue": "^3.2.25"
|
"vue": "^3.2.25"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@vue-flow/additional-components": "workspace:*",
|
"@vue-flow/background": "workspace:*",
|
||||||
"@vue-flow/core": "workspace:*"
|
"@vue-flow/controls": "workspace:*",
|
||||||
|
"@vue-flow/core": "workspace:*",
|
||||||
|
"@vue-flow/minimap": "workspace:*"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"autoprefixer": "^10.4.13",
|
"autoprefixer": "^10.4.13",
|
||||||
|
|||||||
@@ -1,4 +1,9 @@
|
|||||||
import '@vue-flow/core/dist/style.css'
|
import '@vue-flow/core/dist/style.css'
|
||||||
import '@vue-flow/core/dist/theme-default.css'
|
import '@vue-flow/core/dist/theme-default.css'
|
||||||
export * from '@vue-flow/additional-components'
|
import '@vue-flow/controls/dist/style.css'
|
||||||
|
import '@vue-flow/minimap/dist/style.css'
|
||||||
|
|
||||||
|
export * from '@vue-flow/background'
|
||||||
|
export * from '@vue-flow/controls'
|
||||||
|
export * from '@vue-flow/minimap'
|
||||||
export * from '@vue-flow/core'
|
export * from '@vue-flow/core'
|
||||||
|
|||||||
Generated
+65
-24
@@ -38,8 +38,10 @@ importers:
|
|||||||
'@types/canvas-confetti': ^1.4.3
|
'@types/canvas-confetti': ^1.4.3
|
||||||
'@types/node': ^18.7.8
|
'@types/node': ^18.7.8
|
||||||
'@vercel/analytics': ^0.1.5
|
'@vercel/analytics': ^0.1.5
|
||||||
'@vue-flow/additional-components': workspace:*
|
'@vue-flow/background': workspace:*
|
||||||
|
'@vue-flow/controls': workspace:*
|
||||||
'@vue-flow/core': workspace:*
|
'@vue-flow/core': workspace:*
|
||||||
|
'@vue-flow/minimap': workspace:*
|
||||||
'@vue-flow/node-toolbar': workspace:*
|
'@vue-flow/node-toolbar': workspace:*
|
||||||
'@vue/repl': 1.1.2
|
'@vue/repl': 1.1.2
|
||||||
'@windicss/plugin-scrollbar': ^1.2.3
|
'@windicss/plugin-scrollbar': ^1.2.3
|
||||||
@@ -65,8 +67,10 @@ importers:
|
|||||||
'@animxyz/vue3': 0.6.7_vue@3.2.37
|
'@animxyz/vue3': 0.6.7_vue@3.2.37
|
||||||
'@stackblitz/sdk': 1.8.0
|
'@stackblitz/sdk': 1.8.0
|
||||||
'@vercel/analytics': 0.1.5_react@18.2.0
|
'@vercel/analytics': 0.1.5_react@18.2.0
|
||||||
'@vue-flow/additional-components': link:../packages/additional-components
|
'@vue-flow/background': link:../packages/background
|
||||||
|
'@vue-flow/controls': link:../packages/controls
|
||||||
'@vue-flow/core': link:../packages/core
|
'@vue-flow/core': link:../packages/core
|
||||||
|
'@vue-flow/minimap': link:../packages/minimap
|
||||||
'@vue-flow/node-toolbar': link:../packages/node-toolbar
|
'@vue-flow/node-toolbar': link:../packages/node-toolbar
|
||||||
'@vue/repl': 1.1.2_vue@3.2.37
|
'@vue/repl': 1.1.2_vue@3.2.37
|
||||||
blobity: 0.2.1_react@18.2.0+vue@3.2.37
|
blobity: 0.2.1_react@18.2.0+vue@3.2.37
|
||||||
@@ -94,24 +98,32 @@ importers:
|
|||||||
e2e:
|
e2e:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@vitejs/plugin-vue': ^3.2.0
|
'@vitejs/plugin-vue': ^3.2.0
|
||||||
'@vue-flow/additional-components': workspace:*
|
'@vue-flow/background': workspace:*
|
||||||
|
'@vue-flow/controls': workspace:*
|
||||||
'@vue-flow/core': workspace:*
|
'@vue-flow/core': workspace:*
|
||||||
|
'@vue-flow/minimap': workspace:*
|
||||||
cypress: ^10.9.0
|
cypress: ^10.9.0
|
||||||
dependencies:
|
dependencies:
|
||||||
'@vue-flow/additional-components': link:../packages/additional-components
|
'@vue-flow/background': link:../packages/background
|
||||||
|
'@vue-flow/controls': link:../packages/controls
|
||||||
'@vue-flow/core': link:../packages/core
|
'@vue-flow/core': link:../packages/core
|
||||||
|
'@vue-flow/minimap': link:../packages/minimap
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@vitejs/plugin-vue': 3.2.0_vite@3.2.5+vue@3.2.40
|
'@vitejs/plugin-vue': 3.2.0_vite@3.2.5+vue@3.2.40
|
||||||
cypress: 10.9.0
|
cypress: 10.9.0
|
||||||
|
|
||||||
examples/nuxt3:
|
examples/nuxt3:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@vue-flow/additional-components': workspace:*
|
'@vue-flow/background': workspace:*
|
||||||
|
'@vue-flow/controls': workspace:*
|
||||||
'@vue-flow/core': workspace:*
|
'@vue-flow/core': workspace:*
|
||||||
|
'@vue-flow/minimap': workspace:*
|
||||||
nuxt: 3.0.0-rc.11
|
nuxt: 3.0.0-rc.11
|
||||||
dependencies:
|
dependencies:
|
||||||
'@vue-flow/additional-components': link:../../packages/additional-components
|
'@vue-flow/background': link:../../packages/background
|
||||||
|
'@vue-flow/controls': link:../../packages/controls
|
||||||
'@vue-flow/core': link:../../packages/core
|
'@vue-flow/core': link:../../packages/core
|
||||||
|
'@vue-flow/minimap': link:../../packages/minimap
|
||||||
devDependencies:
|
devDependencies:
|
||||||
nuxt: 3.0.0-rc.11_rollup@2.79.1+vite@3.1.6
|
nuxt: 3.0.0-rc.11_rollup@2.79.1+vite@3.1.6
|
||||||
|
|
||||||
@@ -121,16 +133,20 @@ importers:
|
|||||||
'@quasar/extras': ^1.15.4
|
'@quasar/extras': ^1.15.4
|
||||||
'@types/node': ^18.8.3
|
'@types/node': ^18.8.3
|
||||||
'@vitejs/plugin-vue': ^2.3.4
|
'@vitejs/plugin-vue': ^2.3.4
|
||||||
'@vue-flow/additional-components': workspace:*
|
'@vue-flow/background': workspace:*
|
||||||
|
'@vue-flow/controls': workspace:*
|
||||||
'@vue-flow/core': workspace:*
|
'@vue-flow/core': workspace:*
|
||||||
|
'@vue-flow/minimap': workspace:*
|
||||||
autoprefixer: ^10.4.12
|
autoprefixer: ^10.4.12
|
||||||
quasar: ^2.9.2
|
quasar: ^2.9.2
|
||||||
vue: ^3.2.37
|
vue: ^3.2.37
|
||||||
vue-router: ^4.1.5
|
vue-router: ^4.1.5
|
||||||
dependencies:
|
dependencies:
|
||||||
'@quasar/extras': 1.15.4
|
'@quasar/extras': 1.15.4
|
||||||
'@vue-flow/additional-components': link:../../packages/additional-components
|
'@vue-flow/background': link:../../packages/background
|
||||||
|
'@vue-flow/controls': link:../../packages/controls
|
||||||
'@vue-flow/core': link:../../packages/core
|
'@vue-flow/core': link:../../packages/core
|
||||||
|
'@vue-flow/minimap': link:../../packages/minimap
|
||||||
quasar: 2.9.2
|
quasar: 2.9.2
|
||||||
vue: 3.2.37
|
vue: 3.2.37
|
||||||
vue-router: 4.1.5_vue@3.2.37
|
vue-router: 4.1.5_vue@3.2.37
|
||||||
@@ -144,8 +160,10 @@ importers:
|
|||||||
specifiers:
|
specifiers:
|
||||||
'@types/dagre': ^0.7.48
|
'@types/dagre': ^0.7.48
|
||||||
'@vitejs/plugin-vue': ^3.2.0
|
'@vitejs/plugin-vue': ^3.2.0
|
||||||
'@vue-flow/additional-components': workspace:*
|
'@vue-flow/background': workspace:*
|
||||||
|
'@vue-flow/controls': workspace:*
|
||||||
'@vue-flow/core': workspace:*
|
'@vue-flow/core': workspace:*
|
||||||
|
'@vue-flow/minimap': workspace:*
|
||||||
'@vue-flow/node-toolbar': workspace:*
|
'@vue-flow/node-toolbar': workspace:*
|
||||||
dagre: ^0.8.5
|
dagre: ^0.8.5
|
||||||
unplugin-auto-import: ^0.12.0
|
unplugin-auto-import: ^0.12.0
|
||||||
@@ -156,8 +174,10 @@ importers:
|
|||||||
vue-router: ^4.1.6
|
vue-router: ^4.1.6
|
||||||
vueflow: workspace:*
|
vueflow: workspace:*
|
||||||
dependencies:
|
dependencies:
|
||||||
'@vue-flow/additional-components': link:../../packages/additional-components
|
'@vue-flow/background': link:../../packages/background
|
||||||
|
'@vue-flow/controls': link:../../packages/controls
|
||||||
'@vue-flow/core': link:../../packages/core
|
'@vue-flow/core': link:../../packages/core
|
||||||
|
'@vue-flow/minimap': link:../../packages/minimap
|
||||||
'@vue-flow/node-toolbar': link:../../packages/node-toolbar
|
'@vue-flow/node-toolbar': link:../../packages/node-toolbar
|
||||||
vueflow: link:../../packages/vue-flow
|
vueflow: link:../../packages/vue-flow
|
||||||
devDependencies:
|
devDependencies:
|
||||||
@@ -171,33 +191,23 @@ importers:
|
|||||||
vue: 3.2.37
|
vue: 3.2.37
|
||||||
vue-router: 4.1.6_vue@3.2.37
|
vue-router: 4.1.6_vue@3.2.37
|
||||||
|
|
||||||
packages/additional-components:
|
packages/background:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@types/d3-selection': ^3.0.3
|
|
||||||
'@types/d3-zoom': ^3.0.1
|
|
||||||
'@vitejs/plugin-vue': ^3.2.0
|
'@vitejs/plugin-vue': ^3.2.0
|
||||||
'@vue-flow/core': workspace:*
|
'@vue-flow/core': workspace:*
|
||||||
d3-selection: ^3.0.0
|
|
||||||
d3-zoom: ^3.0.0
|
|
||||||
unplugin-auto-import: ^0.12.0
|
unplugin-auto-import: ^0.12.0
|
||||||
vite: ^3.2.5
|
vite: ^3.2.5
|
||||||
vite-plugin-vue-type-imports: 0.2.0
|
vite-plugin-vue-type-imports: 0.2.0
|
||||||
vite-svg-loader: ^3.6.0
|
vue: ^3.2.37
|
||||||
vue: ^3.2.25
|
|
||||||
vue-tsc: ^1.0.11
|
vue-tsc: ^1.0.11
|
||||||
dependencies:
|
dependencies:
|
||||||
d3-selection: 3.0.0
|
|
||||||
d3-zoom: 3.0.0
|
|
||||||
vue: 3.2.40
|
vue: 3.2.40
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@types/d3-selection': 3.0.3
|
|
||||||
'@types/d3-zoom': 3.0.1
|
|
||||||
'@vitejs/plugin-vue': 3.2.0_vite@3.2.5+vue@3.2.40
|
'@vitejs/plugin-vue': 3.2.0_vite@3.2.5+vue@3.2.40
|
||||||
'@vue-flow/core': link:../core
|
'@vue-flow/core': link:../core
|
||||||
unplugin-auto-import: 0.12.0
|
unplugin-auto-import: 0.12.0
|
||||||
vite: 3.2.5
|
vite: 3.2.5
|
||||||
vite-plugin-vue-type-imports: 0.2.0_ek75d3noihdfv6qzog663yntom
|
vite-plugin-vue-type-imports: 0.2.0_ek75d3noihdfv6qzog663yntom
|
||||||
vite-svg-loader: 3.6.0
|
|
||||||
vue-tsc: 1.0.11_typescript@4.8.4
|
vue-tsc: 1.0.11_typescript@4.8.4
|
||||||
|
|
||||||
packages/controls:
|
packages/controls:
|
||||||
@@ -264,6 +274,33 @@ importers:
|
|||||||
vite-plugin-vue-type-imports: 0.2.0_ek75d3noihdfv6qzog663yntom
|
vite-plugin-vue-type-imports: 0.2.0_ek75d3noihdfv6qzog663yntom
|
||||||
vue-tsc: 1.0.11_typescript@4.8.4
|
vue-tsc: 1.0.11_typescript@4.8.4
|
||||||
|
|
||||||
|
packages/minimap:
|
||||||
|
specifiers:
|
||||||
|
'@types/d3-selection': ^3.0.3
|
||||||
|
'@types/d3-zoom': ^3.0.1
|
||||||
|
'@vitejs/plugin-vue': ^3.2.0
|
||||||
|
'@vue-flow/core': workspace:*
|
||||||
|
d3-selection: ^3.0.0
|
||||||
|
d3-zoom: ^3.0.0
|
||||||
|
unplugin-auto-import: ^0.12.0
|
||||||
|
vite: ^3.2.5
|
||||||
|
vite-plugin-vue-type-imports: 0.2.0
|
||||||
|
vue: ^3.2.37
|
||||||
|
vue-tsc: ^1.0.11
|
||||||
|
dependencies:
|
||||||
|
d3-selection: 3.0.0
|
||||||
|
d3-zoom: 3.0.0
|
||||||
|
vue: 3.2.40
|
||||||
|
devDependencies:
|
||||||
|
'@types/d3-selection': 3.0.3
|
||||||
|
'@types/d3-zoom': 3.0.1
|
||||||
|
'@vitejs/plugin-vue': 3.2.0_vite@3.2.5+vue@3.2.40
|
||||||
|
'@vue-flow/core': link:../core
|
||||||
|
unplugin-auto-import: 0.12.0
|
||||||
|
vite: 3.2.5
|
||||||
|
vite-plugin-vue-type-imports: 0.2.0_ek75d3noihdfv6qzog663yntom
|
||||||
|
vue-tsc: 1.0.11_typescript@4.8.4
|
||||||
|
|
||||||
packages/node-toolbar:
|
packages/node-toolbar:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@vitejs/plugin-vue': ^3.2.0
|
'@vitejs/plugin-vue': ^3.2.0
|
||||||
@@ -314,8 +351,10 @@ importers:
|
|||||||
|
|
||||||
packages/vue-flow:
|
packages/vue-flow:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@vue-flow/additional-components': workspace:*
|
'@vue-flow/background': workspace:*
|
||||||
|
'@vue-flow/controls': workspace:*
|
||||||
'@vue-flow/core': workspace:*
|
'@vue-flow/core': workspace:*
|
||||||
|
'@vue-flow/minimap': workspace:*
|
||||||
autoprefixer: ^10.4.13
|
autoprefixer: ^10.4.13
|
||||||
postcss: ^8.4.19
|
postcss: ^8.4.19
|
||||||
postcss-cli: ^10.1.0
|
postcss-cli: ^10.1.0
|
||||||
@@ -323,8 +362,10 @@ importers:
|
|||||||
vite: ^3.2.5
|
vite: ^3.2.5
|
||||||
vue: ^3.2.25
|
vue: ^3.2.25
|
||||||
dependencies:
|
dependencies:
|
||||||
'@vue-flow/additional-components': link:../additional-components
|
'@vue-flow/background': link:../background
|
||||||
|
'@vue-flow/controls': link:../controls
|
||||||
'@vue-flow/core': link:../core
|
'@vue-flow/core': link:../core
|
||||||
|
'@vue-flow/minimap': link:../minimap
|
||||||
vue: 3.2.37
|
vue: 3.2.37
|
||||||
devDependencies:
|
devDependencies:
|
||||||
autoprefixer: 10.4.13_postcss@8.4.19
|
autoprefixer: 10.4.13_postcss@8.4.19
|
||||||
|
|||||||
Reference in New Issue
Block a user