feat(resize-rotate): add snappable
This commit is contained in:
@@ -1,23 +1,58 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import type { Connection, Edge, Elements } from '@braks/vue-flow'
|
import type { Connection, Edge, Elements, VueFlowStore } from '@braks/vue-flow'
|
||||||
import { Background, Controls, MiniMap, VueFlow, addEdge } from '@braks/vue-flow'
|
import { Background, Controls, MiniMap, VueFlow, addEdge } from '@braks/vue-flow'
|
||||||
import { ref } from 'vue'
|
import { ref } from 'vue'
|
||||||
import { ResizeRotateNode } from '../src'
|
import { ResizeRotateNode } from '../src'
|
||||||
import initialElements from './elements'
|
import initialElements from './elements'
|
||||||
|
|
||||||
const elements = ref<Elements>(initialElements)
|
const elements = ref<Elements>(initialElements)
|
||||||
|
|
||||||
const onConnect = (params: Edge | Connection) => (elements.value = addEdge(params, elements.value))
|
const onConnect = (params: Edge | Connection) => (elements.value = addEdge(params, elements.value))
|
||||||
|
|
||||||
|
const extent = ref([
|
||||||
|
[0, 0],
|
||||||
|
[Infinity, Infinity],
|
||||||
|
])
|
||||||
|
|
||||||
|
const onPaneReady = (store: VueFlowStore) => {
|
||||||
|
store.fitView({ minZoom: 1, maxZoom: 1 })
|
||||||
|
|
||||||
|
const bounds = store.vueFlowRef.value.getBoundingClientRect()
|
||||||
|
|
||||||
|
extent.value = [
|
||||||
|
[0, 0],
|
||||||
|
[bounds.width, bounds.height],
|
||||||
|
]
|
||||||
|
|
||||||
|
store.setTranslateExtent(extent.value)
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div style="height: 100%">
|
<div style="height: 100%; color: black">
|
||||||
<VueFlow v-model="elements" class="vue-flow-basic-example" :fit-view-on-init="true" @connect="onConnect">
|
{{ extent }}
|
||||||
|
<VueFlow
|
||||||
|
v-model="elements"
|
||||||
|
class="vue-flow-basic-example"
|
||||||
|
snap-to-grid
|
||||||
|
:snap-grid="[10, 10]"
|
||||||
|
:prevent-scrolling="false"
|
||||||
|
:zoom-on-scroll="false"
|
||||||
|
:pan-on-drag="false"
|
||||||
|
:translate-extent="extent"
|
||||||
|
:node-extent="extent"
|
||||||
|
@connect="onConnect"
|
||||||
|
@pane-ready="onPaneReady"
|
||||||
|
>
|
||||||
<template #node-resize-rotate="props">
|
<template #node-resize-rotate="props">
|
||||||
<ResizeRotateNode v-bind="props" />
|
<ResizeRotateNode v-bind="props" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<Controls />
|
<Controls />
|
||||||
|
|
||||||
<MiniMap />
|
<MiniMap />
|
||||||
<Background color="#aaa" :gap="8" />
|
|
||||||
|
<Background variant="lines" color="#aaa" size="1" :gap="10" />
|
||||||
</VueFlow>
|
</VueFlow>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@@ -29,8 +64,9 @@ const onConnect = (params: Edge | Connection) => (elements.value = addEdge(param
|
|||||||
html,
|
html,
|
||||||
body,
|
body,
|
||||||
#root {
|
#root {
|
||||||
height: 100%;
|
height: 1024px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
margin: 0;
|
||||||
font-family: 'JetBrains Mono', monospace;
|
font-family: 'JetBrains Mono', monospace;
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
-moz-osx-font-smoothing: grayscale;
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
|||||||
@@ -38,13 +38,13 @@
|
|||||||
"@vitejs/plugin-vue": "^2.3.3",
|
"@vitejs/plugin-vue": "^2.3.3",
|
||||||
"ts-patch": "^2.0.1",
|
"ts-patch": "^2.0.1",
|
||||||
"typescript-transform-paths": "^3.3.1",
|
"typescript-transform-paths": "^3.3.1",
|
||||||
"unplugin-auto-import": "^0.7.2",
|
"unplugin-auto-import": "^0.11.2",
|
||||||
"vite": "^2.9.14",
|
"vite": "^2.9.14",
|
||||||
"vite-plugin-vue-type-imports": "^0.1.3",
|
"vite-plugin-vue-type-imports": "^0.2.0",
|
||||||
"vue-tsc": "^0.35.2"
|
"vue-tsc": "^0.40.1"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@braks/vue-flow": "^0.4.29",
|
"@braks/vue-flow": "^0.4.37",
|
||||||
"vue": "^3.2.25"
|
"vue": "^3.2.25"
|
||||||
},
|
},
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
|
|||||||
+11
-8
@@ -1,6 +1,7 @@
|
|||||||
// Generated by 'unplugin-auto-import'
|
// Generated by 'unplugin-auto-import'
|
||||||
// We suggest you to commit this file into source control
|
export {}
|
||||||
declare global {
|
declare global {
|
||||||
|
const EffectScope: typeof import('vue')['EffectScope']
|
||||||
const asyncComputed: typeof import('@vueuse/core')['asyncComputed']
|
const asyncComputed: typeof import('@vueuse/core')['asyncComputed']
|
||||||
const autoResetRef: typeof import('@vueuse/core')['autoResetRef']
|
const autoResetRef: typeof import('@vueuse/core')['autoResetRef']
|
||||||
const computed: typeof import('vue')['computed']
|
const computed: typeof import('vue')['computed']
|
||||||
@@ -24,7 +25,6 @@ declare global {
|
|||||||
const defineComponent: typeof import('vue')['defineComponent']
|
const defineComponent: typeof import('vue')['defineComponent']
|
||||||
const eagerComputed: typeof import('@vueuse/core')['eagerComputed']
|
const eagerComputed: typeof import('@vueuse/core')['eagerComputed']
|
||||||
const effectScope: typeof import('vue')['effectScope']
|
const effectScope: typeof import('vue')['effectScope']
|
||||||
const EffectScope: typeof import('vue')['EffectScope']
|
|
||||||
const extendRef: typeof import('@vueuse/core')['extendRef']
|
const extendRef: typeof import('@vueuse/core')['extendRef']
|
||||||
const getCurrentInstance: typeof import('vue')['getCurrentInstance']
|
const getCurrentInstance: typeof import('vue')['getCurrentInstance']
|
||||||
const getCurrentScope: typeof import('vue')['getCurrentScope']
|
const getCurrentScope: typeof import('vue')['getCurrentScope']
|
||||||
@@ -32,6 +32,8 @@ declare global {
|
|||||||
const ignorableWatch: typeof import('@vueuse/core')['ignorableWatch']
|
const ignorableWatch: typeof import('@vueuse/core')['ignorableWatch']
|
||||||
const inject: typeof import('vue')['inject']
|
const inject: typeof import('vue')['inject']
|
||||||
const isDefined: typeof import('@vueuse/core')['isDefined']
|
const isDefined: typeof import('@vueuse/core')['isDefined']
|
||||||
|
const isProxy: typeof import('vue')['isProxy']
|
||||||
|
const isReactive: typeof import('vue')['isReactive']
|
||||||
const isReadonly: typeof import('vue')['isReadonly']
|
const isReadonly: typeof import('vue')['isReadonly']
|
||||||
const isRef: typeof import('vue')['isRef']
|
const isRef: typeof import('vue')['isRef']
|
||||||
const logicAnd: typeof import('@vueuse/core')['logicAnd']
|
const logicAnd: typeof import('@vueuse/core')['logicAnd']
|
||||||
@@ -120,8 +122,8 @@ declare global {
|
|||||||
const useDark: typeof import('@vueuse/core')['useDark']
|
const useDark: typeof import('@vueuse/core')['useDark']
|
||||||
const useDateFormat: typeof import('@vueuse/core')['useDateFormat']
|
const useDateFormat: typeof import('@vueuse/core')['useDateFormat']
|
||||||
const useDebounce: typeof import('@vueuse/core')['useDebounce']
|
const useDebounce: typeof import('@vueuse/core')['useDebounce']
|
||||||
const useDebouncedRefHistory: typeof import('@vueuse/core')['useDebouncedRefHistory']
|
|
||||||
const useDebounceFn: typeof import('@vueuse/core')['useDebounceFn']
|
const useDebounceFn: typeof import('@vueuse/core')['useDebounceFn']
|
||||||
|
const useDebouncedRefHistory: typeof import('@vueuse/core')['useDebouncedRefHistory']
|
||||||
const useDeviceMotion: typeof import('@vueuse/core')['useDeviceMotion']
|
const useDeviceMotion: typeof import('@vueuse/core')['useDeviceMotion']
|
||||||
const useDeviceOrientation: typeof import('@vueuse/core')['useDeviceOrientation']
|
const useDeviceOrientation: typeof import('@vueuse/core')['useDeviceOrientation']
|
||||||
const useDevicePixelRatio: typeof import('@vueuse/core')['useDevicePixelRatio']
|
const useDevicePixelRatio: typeof import('@vueuse/core')['useDevicePixelRatio']
|
||||||
@@ -202,11 +204,11 @@ declare global {
|
|||||||
const useStyleTag: typeof import('@vueuse/core')['useStyleTag']
|
const useStyleTag: typeof import('@vueuse/core')['useStyleTag']
|
||||||
const useSwipe: typeof import('@vueuse/core')['useSwipe']
|
const useSwipe: typeof import('@vueuse/core')['useSwipe']
|
||||||
const useTemplateRefsList: typeof import('@vueuse/core')['useTemplateRefsList']
|
const useTemplateRefsList: typeof import('@vueuse/core')['useTemplateRefsList']
|
||||||
const useTextareaAutosize: typeof import('@vueuse/core')['useTextareaAutosize']
|
|
||||||
const useTextSelection: typeof import('@vueuse/core')['useTextSelection']
|
const useTextSelection: typeof import('@vueuse/core')['useTextSelection']
|
||||||
|
const useTextareaAutosize: typeof import('@vueuse/core')['useTextareaAutosize']
|
||||||
const useThrottle: typeof import('@vueuse/core')['useThrottle']
|
const useThrottle: typeof import('@vueuse/core')['useThrottle']
|
||||||
const useThrottledRefHistory: typeof import('@vueuse/core')['useThrottledRefHistory']
|
|
||||||
const useThrottleFn: typeof import('@vueuse/core')['useThrottleFn']
|
const useThrottleFn: typeof import('@vueuse/core')['useThrottleFn']
|
||||||
|
const useThrottledRefHistory: typeof import('@vueuse/core')['useThrottledRefHistory']
|
||||||
const useTimeAgo: typeof import('@vueuse/core')['useTimeAgo']
|
const useTimeAgo: typeof import('@vueuse/core')['useTimeAgo']
|
||||||
const useTimeout: typeof import('@vueuse/core')['useTimeout']
|
const useTimeout: typeof import('@vueuse/core')['useTimeout']
|
||||||
const useTimeoutFn: typeof import('@vueuse/core')['useTimeoutFn']
|
const useTimeoutFn: typeof import('@vueuse/core')['useTimeoutFn']
|
||||||
@@ -217,10 +219,10 @@ declare global {
|
|||||||
const useTransition: typeof import('@vueuse/core')['useTransition']
|
const useTransition: typeof import('@vueuse/core')['useTransition']
|
||||||
const useUrlSearchParams: typeof import('@vueuse/core')['useUrlSearchParams']
|
const useUrlSearchParams: typeof import('@vueuse/core')['useUrlSearchParams']
|
||||||
const useUserMedia: typeof import('@vueuse/core')['useUserMedia']
|
const useUserMedia: typeof import('@vueuse/core')['useUserMedia']
|
||||||
const useVibrate: typeof import('@vueuse/core')['useVibrate']
|
|
||||||
const useVirtualList: typeof import('@vueuse/core')['useVirtualList']
|
|
||||||
const useVModel: typeof import('@vueuse/core')['useVModel']
|
const useVModel: typeof import('@vueuse/core')['useVModel']
|
||||||
const useVModels: typeof import('@vueuse/core')['useVModels']
|
const useVModels: typeof import('@vueuse/core')['useVModels']
|
||||||
|
const useVibrate: typeof import('@vueuse/core')['useVibrate']
|
||||||
|
const useVirtualList: typeof import('@vueuse/core')['useVirtualList']
|
||||||
const useWakeLock: typeof import('@vueuse/core')['useWakeLock']
|
const useWakeLock: typeof import('@vueuse/core')['useWakeLock']
|
||||||
const useWebNotification: typeof import('@vueuse/core')['useWebNotification']
|
const useWebNotification: typeof import('@vueuse/core')['useWebNotification']
|
||||||
const useWebSocket: typeof import('@vueuse/core')['useWebSocket']
|
const useWebSocket: typeof import('@vueuse/core')['useWebSocket']
|
||||||
@@ -237,9 +239,10 @@ declare global {
|
|||||||
const watchIgnorable: typeof import('@vueuse/core')['watchIgnorable']
|
const watchIgnorable: typeof import('@vueuse/core')['watchIgnorable']
|
||||||
const watchOnce: typeof import('@vueuse/core')['watchOnce']
|
const watchOnce: typeof import('@vueuse/core')['watchOnce']
|
||||||
const watchPausable: typeof import('@vueuse/core')['watchPausable']
|
const watchPausable: typeof import('@vueuse/core')['watchPausable']
|
||||||
|
const watchPostEffect: typeof import('vue')['watchPostEffect']
|
||||||
|
const watchSyncEffect: typeof import('vue')['watchSyncEffect']
|
||||||
const watchThrottled: typeof import('@vueuse/core')['watchThrottled']
|
const watchThrottled: typeof import('@vueuse/core')['watchThrottled']
|
||||||
const watchTriggerable: typeof import('@vueuse/core')['watchTriggerable']
|
const watchTriggerable: typeof import('@vueuse/core')['watchTriggerable']
|
||||||
const watchWithFilter: typeof import('@vueuse/core')['watchWithFilter']
|
const watchWithFilter: typeof import('@vueuse/core')['watchWithFilter']
|
||||||
const whenever: typeof import('@vueuse/core')['whenever']
|
const whenever: typeof import('@vueuse/core')['whenever']
|
||||||
}
|
}
|
||||||
export {}
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import type { MoveableEvents } from 'vue3-moveable'
|
import type { MoveableEvents, MoveableProps } from 'vue3-moveable'
|
||||||
import Moveable from 'vue3-moveable'
|
import Moveable from 'vue3-moveable'
|
||||||
import type { Position } from '@braks/vue-flow'
|
import type { Position } from '@braks/vue-flow'
|
||||||
import { Handle, useVueFlow } from '@braks/vue-flow'
|
import { Handle, useVueFlow } from '@braks/vue-flow'
|
||||||
@@ -9,14 +9,27 @@ const props = defineProps<{
|
|||||||
label: string
|
label: string
|
||||||
targetPosition: Position
|
targetPosition: Position
|
||||||
sourcePosition: Position
|
sourcePosition: Position
|
||||||
nodeElement: HTMLDivElement
|
|
||||||
data: any
|
data: any
|
||||||
|
moveableProps?: MoveableProps
|
||||||
}>()
|
}>()
|
||||||
|
|
||||||
const { viewport, updateNodeDimensions, onPaneClick, onPaneScroll, onPaneContextMenu, getNode, onNodeClick, onNodeDragStart } =
|
const emits = defineEmits(['updateNodeInternals'])
|
||||||
useVueFlow()
|
|
||||||
|
const {
|
||||||
|
viewport,
|
||||||
|
updateNodeDimensions,
|
||||||
|
onPaneClick,
|
||||||
|
onPaneScroll,
|
||||||
|
onPaneContextMenu,
|
||||||
|
getNode,
|
||||||
|
onNodeClick,
|
||||||
|
onNodeDragStart,
|
||||||
|
snapGrid,
|
||||||
|
snapToGrid,
|
||||||
|
} = useVueFlow()
|
||||||
|
|
||||||
const el = ref()
|
const el = ref()
|
||||||
|
|
||||||
const visible = ref(false)
|
const visible = ref(false)
|
||||||
|
|
||||||
const frame = {
|
const frame = {
|
||||||
@@ -37,28 +50,22 @@ const onRotateStart = (e: MoveableEvents['rotateStart']) => {
|
|||||||
const onRotate = (e: MoveableEvents['rotate']) => {
|
const onRotate = (e: MoveableEvents['rotate']) => {
|
||||||
frame.rotate = e.beforeRotate
|
frame.rotate = e.beforeRotate
|
||||||
e.target.style.transform = `rotate(${e.beforeRotate}deg)`
|
e.target.style.transform = `rotate(${e.beforeRotate}deg)`
|
||||||
updateNodeDimensions([{ id: props.id, nodeElement: props.nodeElement, forceUpdate: true }])
|
emits('updateNodeInternals')
|
||||||
}
|
}
|
||||||
|
|
||||||
const onClick = () => {
|
const toggleVisibility = (val?: boolean) => {
|
||||||
visible.value = true
|
visible.value = val ?? !visible.value
|
||||||
}
|
}
|
||||||
|
|
||||||
onNodeClick(({ node }) => {
|
onNodeClick(({ node }) => {
|
||||||
if (node.id === props.id) onClick()
|
toggleVisibility(node.id === props.id)
|
||||||
})
|
})
|
||||||
|
|
||||||
onNodeDragStart(({ node }) => {
|
onNodeDragStart(({ node }) => {
|
||||||
if (node.id === props.id) onClick()
|
toggleVisibility(node.id === props.id)
|
||||||
})
|
})
|
||||||
|
|
||||||
const hideMoveable = () => {
|
onPaneClick(() => toggleVisibility(false))
|
||||||
visible.value = false
|
|
||||||
}
|
|
||||||
|
|
||||||
onPaneClick(hideMoveable)
|
|
||||||
onPaneScroll(hideMoveable)
|
|
||||||
onPaneContextMenu(hideMoveable)
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
@@ -76,27 +83,41 @@ export default {
|
|||||||
...data.style,
|
...data.style,
|
||||||
}"
|
}"
|
||||||
style="position: relative"
|
style="position: relative"
|
||||||
@click="onClick"
|
|
||||||
>
|
>
|
||||||
<Handle type="target" :position="props.targetPosition" />
|
<Handle type="target" :position="props.targetPosition" />
|
||||||
|
|
||||||
<slot>
|
<slot>
|
||||||
{{ props.label }}
|
{{ props.label }}
|
||||||
</slot>
|
</slot>
|
||||||
|
|
||||||
<Handle type="source" :position="props.sourcePosition" />
|
<Handle type="source" :position="props.sourcePosition" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<Moveable
|
<Moveable
|
||||||
v-if="visible"
|
v-if="visible"
|
||||||
|
v-bind="props.moveableProps"
|
||||||
class-name="nodrag"
|
class-name="nodrag"
|
||||||
:target="[`[data-moveable-id='${props.id}']`]"
|
:target="[`[data-moveable-id='${props.id}']`]"
|
||||||
:resizable="true"
|
:resizable="true"
|
||||||
:rotatable="true"
|
:rotatable="true"
|
||||||
|
:draggable="true"
|
||||||
|
:snappable="snapToGrid"
|
||||||
|
:snap-element="snapToGrid"
|
||||||
|
:snap-gap="snapToGrid"
|
||||||
|
:snap-directions="snapToGrid"
|
||||||
|
:snap-digit="snapGrid[0]"
|
||||||
|
:snap-treshold="snapGrid[0]"
|
||||||
|
:snap-grid-width="snapGrid[0]"
|
||||||
|
:snap-grid-height="snapGrid[0]"
|
||||||
rotation-position="top"
|
rotation-position="top"
|
||||||
:padding="{ left: 0, top: 0, right: 0, bottom: 0 }"
|
:padding="{ left: 0, top: 0, right: 0, bottom: 0 }"
|
||||||
:origin="false"
|
:origin="false"
|
||||||
:edge="true"
|
:edge="true"
|
||||||
|
:start-drag-rotate="0"
|
||||||
|
:throttle-drag-rotate="0"
|
||||||
:throttle-resize="1"
|
:throttle-resize="1"
|
||||||
:render-directions="['nw', 'n', 'ne', 'w', 'e', 'sw', 's', 'se']"
|
:render-directions="['nw', 'n', 'ne', 'w', 'e', 'sw', 's', 'se']"
|
||||||
:zoom="0.75"
|
:zoom="1"
|
||||||
@resize="onResize"
|
@resize="onResize"
|
||||||
@rotate="onRotate"
|
@rotate="onRotate"
|
||||||
/>
|
/>
|
||||||
|
|||||||
Generated
+270
-177
@@ -95,7 +95,7 @@ importers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
'@braks/vue-flow': link:../../packages/vue-flow
|
'@braks/vue-flow': link:../../packages/vue-flow
|
||||||
devDependencies:
|
devDependencies:
|
||||||
nuxt: 3.0.0-rc.3_fgwbinyzo7ig36etrjrs2amb5u
|
nuxt: 3.0.0-rc.3_hvvpxwgroug53rherjt7tg57xy
|
||||||
|
|
||||||
examples/quasar:
|
examples/quasar:
|
||||||
specifiers:
|
specifiers:
|
||||||
@@ -160,7 +160,6 @@ importers:
|
|||||||
dependencies:
|
dependencies:
|
||||||
pathfinding: 0.4.18
|
pathfinding: 0.4.18
|
||||||
perfect-arrows: 0.3.7
|
perfect-arrows: 0.3.7
|
||||||
vue: 3.2.37
|
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@braks/vue-flow': link:../vue-flow
|
'@braks/vue-flow': link:../vue-flow
|
||||||
'@types/pathfinding': 0.0.5
|
'@types/pathfinding': 0.0.5
|
||||||
@@ -170,6 +169,7 @@ importers:
|
|||||||
unplugin-auto-import: 0.7.2_vite@2.9.14
|
unplugin-auto-import: 0.7.2_vite@2.9.14
|
||||||
vite: 2.9.14
|
vite: 2.9.14
|
||||||
vite-plugin-vue-type-imports: 0.2.0_2yymnzrok6eda47acnj2yjm3ae
|
vite-plugin-vue-type-imports: 0.2.0_2yymnzrok6eda47acnj2yjm3ae
|
||||||
|
vue: 3.2.37
|
||||||
vue-tsc: 0.35.2_typescript@4.7.4
|
vue-tsc: 0.35.2_typescript@4.7.4
|
||||||
|
|
||||||
packages/resize-rotate-node:
|
packages/resize-rotate-node:
|
||||||
@@ -179,25 +179,25 @@ importers:
|
|||||||
'@vueuse/core': ^8.9.4
|
'@vueuse/core': ^8.9.4
|
||||||
ts-patch: ^2.0.1
|
ts-patch: ^2.0.1
|
||||||
typescript-transform-paths: ^3.3.1
|
typescript-transform-paths: ^3.3.1
|
||||||
unplugin-auto-import: ^0.7.2
|
unplugin-auto-import: ^0.11.2
|
||||||
vite: ^2.9.14
|
vite: ^2.9.14
|
||||||
vite-plugin-vue-type-imports: ^0.1.3
|
vite-plugin-vue-type-imports: ^0.2.0
|
||||||
vue: ^3.2.25
|
vue: ^3.2.25
|
||||||
vue-tsc: ^0.35.2
|
vue-tsc: ^0.40.1
|
||||||
vue3-moveable: ^0.4.9
|
vue3-moveable: ^0.4.9
|
||||||
dependencies:
|
dependencies:
|
||||||
'@vueuse/core': 8.9.4_vue@3.2.37
|
'@vueuse/core': 8.9.4_vue@3.2.37
|
||||||
vue: 3.2.37
|
|
||||||
vue3-moveable: 0.4.9_@types+react@16.9.56
|
vue3-moveable: 0.4.9_@types+react@16.9.56
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@braks/vue-flow': link:../vue-flow
|
'@braks/vue-flow': link:../vue-flow
|
||||||
'@vitejs/plugin-vue': 2.3.3_vite@2.9.14+vue@3.2.37
|
'@vitejs/plugin-vue': 2.3.3_vite@2.9.14+vue@3.2.37
|
||||||
ts-patch: 2.0.1_typescript@4.7.4
|
ts-patch: 2.0.1_typescript@4.7.4
|
||||||
typescript-transform-paths: 3.3.1_typescript@4.7.4
|
typescript-transform-paths: 3.3.1_typescript@4.7.4
|
||||||
unplugin-auto-import: 0.7.2_dmt5nkmgq6u7w3gscjexvr3mxm
|
unplugin-auto-import: 0.11.2_dmt5nkmgq6u7w3gscjexvr3mxm
|
||||||
vite: 2.9.14
|
vite: 2.9.14
|
||||||
vite-plugin-vue-type-imports: 0.1.3_2yymnzrok6eda47acnj2yjm3ae
|
vite-plugin-vue-type-imports: 0.2.0_2yymnzrok6eda47acnj2yjm3ae
|
||||||
vue-tsc: 0.35.2_typescript@4.7.4
|
vue: 3.2.37
|
||||||
|
vue-tsc: 0.40.1_typescript@4.7.4
|
||||||
|
|
||||||
packages/vue-flow:
|
packages/vue-flow:
|
||||||
specifiers:
|
specifiers:
|
||||||
@@ -227,7 +227,6 @@ importers:
|
|||||||
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
|
||||||
vue: 3.2.37
|
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@rollup/plugin-replace': 4.0.0_rollup@2.77.2
|
'@rollup/plugin-replace': 4.0.0_rollup@2.77.2
|
||||||
'@types/d3': 7.4.0
|
'@types/d3': 7.4.0
|
||||||
@@ -244,6 +243,7 @@ importers:
|
|||||||
vite: 2.9.15
|
vite: 2.9.15
|
||||||
vite-plugin-vue-type-imports: 0.2.0_2yymnzrok6eda47acnj2yjm3ae
|
vite-plugin-vue-type-imports: 0.2.0_2yymnzrok6eda47acnj2yjm3ae
|
||||||
vite-svg-loader: 3.4.0
|
vite-svg-loader: 3.4.0
|
||||||
|
vue: 3.2.37
|
||||||
vue-tsc: 0.38.9_typescript@4.7.4
|
vue-tsc: 0.38.9_typescript@4.7.4
|
||||||
|
|
||||||
packages:
|
packages:
|
||||||
@@ -1107,11 +1107,11 @@ packages:
|
|||||||
resolution: {integrity: sha512-YBI/6o2EBz02tdEJRBK8xkt3zvOFOWlLBf7WKYGBsSYSRtjjgrqPe2skp6VLLmKx5WbHHDNcW+6oACaurxGzeA==}
|
resolution: {integrity: sha512-YBI/6o2EBz02tdEJRBK8xkt3zvOFOWlLBf7WKYGBsSYSRtjjgrqPe2skp6VLLmKx5WbHHDNcW+6oACaurxGzeA==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/@nuxt/kit/3.0.0-rc.1_fgwbinyzo7ig36etrjrs2amb5u:
|
/@nuxt/kit/3.0.0-rc.1_hvvpxwgroug53rherjt7tg57xy:
|
||||||
resolution: {integrity: sha512-S2x0zdLYLZ4/2lMnS6emSmFPJszPJf70Y4/8gpmkPb4TArEjPNaOTCIz7tKpj/Upo71fv7cfuwYw/X0F2UAntg==}
|
resolution: {integrity: sha512-S2x0zdLYLZ4/2lMnS6emSmFPJszPJf70Y4/8gpmkPb4TArEjPNaOTCIz7tKpj/Upo71fv7cfuwYw/X0F2UAntg==}
|
||||||
engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0}
|
engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@nuxt/schema': 3.0.0-rc.6_fgwbinyzo7ig36etrjrs2amb5u
|
'@nuxt/schema': 3.0.0-rc.6_hvvpxwgroug53rherjt7tg57xy
|
||||||
c12: 0.2.8
|
c12: 0.2.8
|
||||||
consola: 2.15.3
|
consola: 2.15.3
|
||||||
defu: 6.0.0
|
defu: 6.0.0
|
||||||
@@ -1126,38 +1126,8 @@ packages:
|
|||||||
pkg-types: 0.3.3
|
pkg-types: 0.3.3
|
||||||
scule: 0.2.1
|
scule: 0.2.1
|
||||||
semver: 7.3.7
|
semver: 7.3.7
|
||||||
unctx: 1.1.4_fgwbinyzo7ig36etrjrs2amb5u
|
unctx: 1.1.4_hvvpxwgroug53rherjt7tg57xy
|
||||||
unimport: 0.1.9_fgwbinyzo7ig36etrjrs2amb5u
|
unimport: 0.1.9_hvvpxwgroug53rherjt7tg57xy
|
||||||
untyped: 0.4.4
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- esbuild
|
|
||||||
- rollup
|
|
||||||
- supports-color
|
|
||||||
- vite
|
|
||||||
- webpack
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/@nuxt/kit/3.0.0-rc.6_fgwbinyzo7ig36etrjrs2amb5u:
|
|
||||||
resolution: {integrity: sha512-+lxSd6dSWlAzMXfGOPcY4856xnMF1Ck1rycFUZ+K2QYiDXphq/fiW2eMaWLVvqgPyL2Box2WzVDZJ6C5ceptcw==}
|
|
||||||
engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0}
|
|
||||||
dependencies:
|
|
||||||
'@nuxt/schema': 3.0.0-rc.6_fgwbinyzo7ig36etrjrs2amb5u
|
|
||||||
c12: 0.2.8
|
|
||||||
consola: 2.15.3
|
|
||||||
defu: 6.0.0
|
|
||||||
globby: 13.1.2
|
|
||||||
hash-sum: 2.0.0
|
|
||||||
ignore: 5.2.0
|
|
||||||
jiti: 1.14.0
|
|
||||||
knitwork: 0.1.2
|
|
||||||
lodash.template: 4.5.0
|
|
||||||
mlly: 0.5.5
|
|
||||||
pathe: 0.3.2
|
|
||||||
pkg-types: 0.3.3
|
|
||||||
scule: 0.2.1
|
|
||||||
semver: 7.3.7
|
|
||||||
unctx: 1.1.4_fgwbinyzo7ig36etrjrs2amb5u
|
|
||||||
unimport: 0.4.7_fgwbinyzo7ig36etrjrs2amb5u
|
|
||||||
untyped: 0.4.4
|
untyped: 0.4.4
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- esbuild
|
- esbuild
|
||||||
@@ -1197,23 +1167,32 @@ packages:
|
|||||||
- webpack
|
- webpack
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/@nuxt/schema/3.0.0-rc.6_fgwbinyzo7ig36etrjrs2amb5u:
|
/@nuxt/kit/3.0.0-rc.6_hvvpxwgroug53rherjt7tg57xy:
|
||||||
resolution: {integrity: sha512-BcD5YtWRhn+jU2DlzuI1TeITFeOt5x6qm2KeaU/d5jzJ0oZDzmZwKsAimLtRbHwyU6/kKa+zFbK6pp5obm1XLg==}
|
resolution: {integrity: sha512-+lxSd6dSWlAzMXfGOPcY4856xnMF1Ck1rycFUZ+K2QYiDXphq/fiW2eMaWLVvqgPyL2Box2WzVDZJ6C5ceptcw==}
|
||||||
engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0}
|
engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0}
|
||||||
dependencies:
|
dependencies:
|
||||||
|
'@nuxt/schema': 3.0.0-rc.6_hvvpxwgroug53rherjt7tg57xy
|
||||||
c12: 0.2.8
|
c12: 0.2.8
|
||||||
create-require: 1.1.1
|
consola: 2.15.3
|
||||||
defu: 6.0.0
|
defu: 6.0.0
|
||||||
|
globby: 13.1.2
|
||||||
|
hash-sum: 2.0.0
|
||||||
|
ignore: 5.2.0
|
||||||
jiti: 1.14.0
|
jiti: 1.14.0
|
||||||
|
knitwork: 0.1.2
|
||||||
|
lodash.template: 4.5.0
|
||||||
|
mlly: 0.5.5
|
||||||
pathe: 0.3.2
|
pathe: 0.3.2
|
||||||
postcss-import-resolver: 2.0.0
|
pkg-types: 0.3.3
|
||||||
scule: 0.2.1
|
scule: 0.2.1
|
||||||
std-env: 3.1.1
|
semver: 7.3.7
|
||||||
ufo: 0.8.5
|
unctx: 1.1.4_hvvpxwgroug53rherjt7tg57xy
|
||||||
unimport: 0.4.7_fgwbinyzo7ig36etrjrs2amb5u
|
unimport: 0.4.7_hvvpxwgroug53rherjt7tg57xy
|
||||||
|
untyped: 0.4.4
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- esbuild
|
- esbuild
|
||||||
- rollup
|
- rollup
|
||||||
|
- supports-color
|
||||||
- vite
|
- vite
|
||||||
- webpack
|
- webpack
|
||||||
dev: true
|
dev: true
|
||||||
@@ -1239,11 +1218,32 @@ packages:
|
|||||||
- webpack
|
- webpack
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/@nuxt/telemetry/2.1.3_fgwbinyzo7ig36etrjrs2amb5u:
|
/@nuxt/schema/3.0.0-rc.6_hvvpxwgroug53rherjt7tg57xy:
|
||||||
|
resolution: {integrity: sha512-BcD5YtWRhn+jU2DlzuI1TeITFeOt5x6qm2KeaU/d5jzJ0oZDzmZwKsAimLtRbHwyU6/kKa+zFbK6pp5obm1XLg==}
|
||||||
|
engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0}
|
||||||
|
dependencies:
|
||||||
|
c12: 0.2.8
|
||||||
|
create-require: 1.1.1
|
||||||
|
defu: 6.0.0
|
||||||
|
jiti: 1.14.0
|
||||||
|
pathe: 0.3.2
|
||||||
|
postcss-import-resolver: 2.0.0
|
||||||
|
scule: 0.2.1
|
||||||
|
std-env: 3.1.1
|
||||||
|
ufo: 0.8.5
|
||||||
|
unimport: 0.4.7_hvvpxwgroug53rherjt7tg57xy
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- esbuild
|
||||||
|
- rollup
|
||||||
|
- vite
|
||||||
|
- webpack
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/@nuxt/telemetry/2.1.3_hvvpxwgroug53rherjt7tg57xy:
|
||||||
resolution: {integrity: sha512-k8wP3D17di27/loe35GZEqXyabG/045tFD1CipmG9MOnZdwf6WeL+gFEXzIaDeDFVLmbI1bnddOk+RutxeIjVA==}
|
resolution: {integrity: sha512-k8wP3D17di27/loe35GZEqXyabG/045tFD1CipmG9MOnZdwf6WeL+gFEXzIaDeDFVLmbI1bnddOk+RutxeIjVA==}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
dependencies:
|
dependencies:
|
||||||
'@nuxt/kit': 3.0.0-rc.1_fgwbinyzo7ig36etrjrs2amb5u
|
'@nuxt/kit': 3.0.0-rc.1_hvvpxwgroug53rherjt7tg57xy
|
||||||
chalk: 5.0.1
|
chalk: 5.0.1
|
||||||
ci-info: 3.3.2
|
ci-info: 3.3.2
|
||||||
consola: 2.15.3
|
consola: 2.15.3
|
||||||
@@ -2267,6 +2267,12 @@ packages:
|
|||||||
'@volar/source-map': 0.38.9
|
'@volar/source-map': 0.38.9
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/@volar/code-gen/0.40.1:
|
||||||
|
resolution: {integrity: sha512-mN1jn08wRKLoUj+KThltyWfsiEGt6Um1yT6S7bkruwV76yiLlzIR4WZgWng254byGMozJ00qgkZmBhraD5b48A==}
|
||||||
|
dependencies:
|
||||||
|
'@volar/source-map': 0.40.1
|
||||||
|
dev: true
|
||||||
|
|
||||||
/@volar/source-map/0.35.2:
|
/@volar/source-map/0.35.2:
|
||||||
resolution: {integrity: sha512-PFHh9wN/qMkOWYyvmB8ckvIzolrpNOvK5EBdxxdTpiPJhfYjW82rMDBnYf6RxCe7yQxrUrmve6BWVO7flxWNVQ==}
|
resolution: {integrity: sha512-PFHh9wN/qMkOWYyvmB8ckvIzolrpNOvK5EBdxxdTpiPJhfYjW82rMDBnYf6RxCe7yQxrUrmve6BWVO7flxWNVQ==}
|
||||||
dev: true
|
dev: true
|
||||||
@@ -2275,6 +2281,16 @@ packages:
|
|||||||
resolution: {integrity: sha512-ba0UFoHDYry+vwKdgkWJ6xlQT+8TFtZg1zj9tSjj4PykW1JZDuM0xplMotLun4h3YOoYfY9K1huY5gvxmrNLIw==}
|
resolution: {integrity: sha512-ba0UFoHDYry+vwKdgkWJ6xlQT+8TFtZg1zj9tSjj4PykW1JZDuM0xplMotLun4h3YOoYfY9K1huY5gvxmrNLIw==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/@volar/source-map/0.40.1:
|
||||||
|
resolution: {integrity: sha512-ORYg5W+R4iT2k/k2U4ASkKvDxabIzKtP+lXZ1CcqFIbTF81GOooAv5tJZImf8ifhUV9p8bgGaitFj/VnNzkdYg==}
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/@volar/typescript-faster/0.40.1:
|
||||||
|
resolution: {integrity: sha512-UiX8OzVRJtpudGfTY2KgB5m78DIA8oVbwI4QN5i4Ot8oURQPOviH7MahikHeeXidbh3iOy/u4vceMb+mfdizpQ==}
|
||||||
|
dependencies:
|
||||||
|
semver: 7.3.7
|
||||||
|
dev: true
|
||||||
|
|
||||||
/@volar/vue-code-gen/0.35.2:
|
/@volar/vue-code-gen/0.35.2:
|
||||||
resolution: {integrity: sha512-8H6P8EtN06eSVGjtcJhGqZzFIg6/nWoHVOlnhc5vKqC7tXwpqPbyMQae0tO7pLBd5qSb/dYU5GQcBAHsi2jgyA==}
|
resolution: {integrity: sha512-8H6P8EtN06eSVGjtcJhGqZzFIg6/nWoHVOlnhc5vKqC7tXwpqPbyMQae0tO7pLBd5qSb/dYU5GQcBAHsi2jgyA==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -2295,6 +2311,18 @@ packages:
|
|||||||
'@vue/shared': 3.2.37
|
'@vue/shared': 3.2.37
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/@volar/vue-language-core/0.40.1:
|
||||||
|
resolution: {integrity: sha512-RBU2nQkj+asKZ/ht3sU3hTau+dGuTjJrQS3nNSw4+vnwUJnN/WogO/MmgKdrvVf3pUdLiucIog1E/Us1C8Y5wg==}
|
||||||
|
dependencies:
|
||||||
|
'@volar/code-gen': 0.40.1
|
||||||
|
'@volar/source-map': 0.40.1
|
||||||
|
'@vue/compiler-core': 3.2.37
|
||||||
|
'@vue/compiler-dom': 3.2.37
|
||||||
|
'@vue/compiler-sfc': 3.2.37
|
||||||
|
'@vue/reactivity': 3.2.37
|
||||||
|
'@vue/shared': 3.2.37
|
||||||
|
dev: true
|
||||||
|
|
||||||
/@volar/vue-typescript/0.35.2:
|
/@volar/vue-typescript/0.35.2:
|
||||||
resolution: {integrity: sha512-PZI6Urb+Vr5Dvgf9xysM8X7TP09inWDy1wjDtprBoBhxS7r0Dg3V0qZuJa7sSGz7M0QMa5R/CBaZPhlxFCfJBw==}
|
resolution: {integrity: sha512-PZI6Urb+Vr5Dvgf9xysM8X7TP09inWDy1wjDtprBoBhxS7r0Dg3V0qZuJa7sSGz7M0QMa5R/CBaZPhlxFCfJBw==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -2315,6 +2343,14 @@ packages:
|
|||||||
'@vue/reactivity': 3.2.37
|
'@vue/reactivity': 3.2.37
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/@volar/vue-typescript/0.40.1:
|
||||||
|
resolution: {integrity: sha512-58nW/Xwy7VBkeIPmbyEmi/j1Ta2HxGl/5aFiEEpWxoas7vI1AM+txz8+MhWho4ZMw0w0eCqPtGgugD2rr+/v7w==}
|
||||||
|
dependencies:
|
||||||
|
'@volar/code-gen': 0.40.1
|
||||||
|
'@volar/typescript-faster': 0.40.1
|
||||||
|
'@volar/vue-language-core': 0.40.1
|
||||||
|
dev: true
|
||||||
|
|
||||||
/@vue/babel-helper-vue-transform-on/1.0.2:
|
/@vue/babel-helper-vue-transform-on/1.0.2:
|
||||||
resolution: {integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==}
|
resolution: {integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==}
|
||||||
dev: true
|
dev: true
|
||||||
@@ -3632,8 +3668,10 @@ packages:
|
|||||||
nth-check: 2.1.1
|
nth-check: 2.1.1
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/css-styled/1.0.0:
|
/css-styled/1.0.0_@daybrush+utils@1.7.1:
|
||||||
resolution: {integrity: sha512-lDdPvM2/djv+La110zVY3RGQ7X4OOlzLS+IEjRcn8UlUmJd1+GNcGfDFmsKWwnLBupsY1w0QM1gRgV4RdcCjfw==}
|
resolution: {integrity: sha512-lDdPvM2/djv+La110zVY3RGQ7X4OOlzLS+IEjRcn8UlUmJd1+GNcGfDFmsKWwnLBupsY1w0QM1gRgV4RdcCjfw==}
|
||||||
|
peerDependencies:
|
||||||
|
'@daybrush/utils': '>=1.0.0'
|
||||||
dependencies:
|
dependencies:
|
||||||
'@daybrush/utils': 1.7.1
|
'@daybrush/utils': 1.7.1
|
||||||
string-hash: 1.1.3
|
string-hash: 1.1.3
|
||||||
@@ -7883,15 +7921,15 @@ packages:
|
|||||||
fsevents: 2.3.2
|
fsevents: 2.3.2
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/nuxt/3.0.0-rc.3_fgwbinyzo7ig36etrjrs2amb5u:
|
/nuxt/3.0.0-rc.3_hvvpxwgroug53rherjt7tg57xy:
|
||||||
resolution: {integrity: sha512-Ch68sD9Npt3BN0ZphvtRurVhFqtm1sAu4VDoXghmsRoVAwpT2ZDeDWaQJ9PSmXHYwyEaXPIZ9B2EDXPKETh0cQ==}
|
resolution: {integrity: sha512-Ch68sD9Npt3BN0ZphvtRurVhFqtm1sAu4VDoXghmsRoVAwpT2ZDeDWaQJ9PSmXHYwyEaXPIZ9B2EDXPKETh0cQ==}
|
||||||
engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0}
|
engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
dependencies:
|
dependencies:
|
||||||
'@nuxt/devalue': 2.0.0
|
'@nuxt/devalue': 2.0.0
|
||||||
'@nuxt/kit': 3.0.0-rc.6_fgwbinyzo7ig36etrjrs2amb5u
|
'@nuxt/kit': 3.0.0-rc.6_hvvpxwgroug53rherjt7tg57xy
|
||||||
'@nuxt/schema': 3.0.0-rc.6_fgwbinyzo7ig36etrjrs2amb5u
|
'@nuxt/schema': 3.0.0-rc.6_hvvpxwgroug53rherjt7tg57xy
|
||||||
'@nuxt/telemetry': 2.1.3_fgwbinyzo7ig36etrjrs2amb5u
|
'@nuxt/telemetry': 2.1.3_hvvpxwgroug53rherjt7tg57xy
|
||||||
'@nuxt/ui-templates': 0.1.1
|
'@nuxt/ui-templates': 0.1.1
|
||||||
'@nuxt/vite-builder': 3.0.0-rc.6_vue@3.2.37
|
'@nuxt/vite-builder': 3.0.0-rc.6_vue@3.2.37
|
||||||
'@vue/reactivity': 3.2.37
|
'@vue/reactivity': 3.2.37
|
||||||
@@ -7918,10 +7956,10 @@ packages:
|
|||||||
perfect-debounce: 0.1.3
|
perfect-debounce: 0.1.3
|
||||||
scule: 0.2.1
|
scule: 0.2.1
|
||||||
ufo: 0.8.5
|
ufo: 0.8.5
|
||||||
unctx: 1.1.4_fgwbinyzo7ig36etrjrs2amb5u
|
unctx: 1.1.4_hvvpxwgroug53rherjt7tg57xy
|
||||||
unenv: 0.5.2
|
unenv: 0.5.2
|
||||||
unimport: 0.1.9_fgwbinyzo7ig36etrjrs2amb5u
|
unimport: 0.1.9_hvvpxwgroug53rherjt7tg57xy
|
||||||
unplugin: 0.6.3_fgwbinyzo7ig36etrjrs2amb5u
|
unplugin: 0.6.3_hvvpxwgroug53rherjt7tg57xy
|
||||||
untyped: 0.4.4
|
untyped: 0.4.4
|
||||||
vue: 3.2.37
|
vue: 3.2.37
|
||||||
vue-bundle-renderer: 0.3.9
|
vue-bundle-renderer: 0.3.9
|
||||||
@@ -9053,9 +9091,9 @@ packages:
|
|||||||
resolution: {integrity: sha512-CG0kVbpKjiLMQc85pP50+Z0R9PGp7NIkkGqO88QTjEsSMOGKYlCXIAnXdKR2ZII23NJmA4XrJry03jkXOxTUkg==}
|
resolution: {integrity: sha512-CG0kVbpKjiLMQc85pP50+Z0R9PGp7NIkkGqO88QTjEsSMOGKYlCXIAnXdKR2ZII23NJmA4XrJry03jkXOxTUkg==}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@daybrush/utils': 1.7.1
|
'@daybrush/utils': 1.7.1
|
||||||
css-styled: 1.0.0
|
css-styled: 1.0.0_@daybrush+utils@1.7.1
|
||||||
framework-utils: 1.1.0
|
framework-utils: 1.1.0
|
||||||
react-css-styled: 1.0.3
|
react-css-styled: 1.0.3_@daybrush+utils@1.7.1
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/react-compat-moveable/0.17.9_@types+react@16.9.56:
|
/react-compat-moveable/0.17.9_@types+react@16.9.56:
|
||||||
@@ -9071,17 +9109,19 @@ packages:
|
|||||||
gesto: 1.10.0
|
gesto: 1.10.0
|
||||||
overlap-area: 1.1.0
|
overlap-area: 1.1.0
|
||||||
react-compat-css-styled: 1.0.8
|
react-compat-css-styled: 1.0.8
|
||||||
react-css-styled: 1.0.3
|
react-css-styled: 1.0.3_@daybrush+utils@1.7.1
|
||||||
react-moveable: 0.32.9_@types+react@16.9.56
|
react-moveable: 0.32.9_@types+react@16.9.56
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- '@types/react'
|
- '@types/react'
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/react-css-styled/1.0.3:
|
/react-css-styled/1.0.3_@daybrush+utils@1.7.1:
|
||||||
resolution: {integrity: sha512-6H3aZPO66PYmYg9wx12WzOJpPlBEdA7O5JefCh+4SldlihVKBCxA6mityfWSGWL5ldOkJdHJWGwHR6nGPcVm+A==}
|
resolution: {integrity: sha512-6H3aZPO66PYmYg9wx12WzOJpPlBEdA7O5JefCh+4SldlihVKBCxA6mityfWSGWL5ldOkJdHJWGwHR6nGPcVm+A==}
|
||||||
dependencies:
|
dependencies:
|
||||||
css-styled: 1.0.0
|
css-styled: 1.0.0_@daybrush+utils@1.7.1
|
||||||
framework-utils: 1.1.0
|
framework-utils: 1.1.0
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- '@daybrush/utils'
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/react-dom/18.2.0_react@18.2.0:
|
/react-dom/18.2.0_react@18.2.0:
|
||||||
@@ -9114,7 +9154,7 @@ packages:
|
|||||||
framework-utils: 1.1.0
|
framework-utils: 1.1.0
|
||||||
gesto: 1.10.0
|
gesto: 1.10.0
|
||||||
overlap-area: 1.1.0
|
overlap-area: 1.1.0
|
||||||
react-css-styled: 1.0.3
|
react-css-styled: 1.0.3_@daybrush+utils@1.7.1
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/react-simple-compat/1.2.3:
|
/react-simple-compat/1.2.3:
|
||||||
@@ -10468,20 +10508,6 @@ packages:
|
|||||||
which-boxed-primitive: 1.0.2
|
which-boxed-primitive: 1.0.2
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/unctx/1.1.4_fgwbinyzo7ig36etrjrs2amb5u:
|
|
||||||
resolution: {integrity: sha512-fQMML+GjUpIjQa0HBrrJezo2dFpTAbQbU0/KFKw4T5wpc9deGjLHSYthdfNAo2xSWM34csI6arzedezQkqtfGw==}
|
|
||||||
dependencies:
|
|
||||||
acorn: 8.8.0
|
|
||||||
estree-walker: 2.0.2
|
|
||||||
magic-string: 0.26.2
|
|
||||||
unplugin: 0.6.3_fgwbinyzo7ig36etrjrs2amb5u
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- esbuild
|
|
||||||
- rollup
|
|
||||||
- vite
|
|
||||||
- webpack
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/unctx/1.1.4_gb7pxktvahb4daphcpsfap3rg4:
|
/unctx/1.1.4_gb7pxktvahb4daphcpsfap3rg4:
|
||||||
resolution: {integrity: sha512-fQMML+GjUpIjQa0HBrrJezo2dFpTAbQbU0/KFKw4T5wpc9deGjLHSYthdfNAo2xSWM34csI6arzedezQkqtfGw==}
|
resolution: {integrity: sha512-fQMML+GjUpIjQa0HBrrJezo2dFpTAbQbU0/KFKw4T5wpc9deGjLHSYthdfNAo2xSWM34csI6arzedezQkqtfGw==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -10496,6 +10522,20 @@ packages:
|
|||||||
- webpack
|
- webpack
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/unctx/1.1.4_hvvpxwgroug53rherjt7tg57xy:
|
||||||
|
resolution: {integrity: sha512-fQMML+GjUpIjQa0HBrrJezo2dFpTAbQbU0/KFKw4T5wpc9deGjLHSYthdfNAo2xSWM34csI6arzedezQkqtfGw==}
|
||||||
|
dependencies:
|
||||||
|
acorn: 8.8.0
|
||||||
|
estree-walker: 2.0.2
|
||||||
|
magic-string: 0.26.2
|
||||||
|
unplugin: 0.6.3_hvvpxwgroug53rherjt7tg57xy
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- esbuild
|
||||||
|
- rollup
|
||||||
|
- vite
|
||||||
|
- webpack
|
||||||
|
dev: true
|
||||||
|
|
||||||
/undici/5.8.0:
|
/undici/5.8.0:
|
||||||
resolution: {integrity: sha512-1F7Vtcez5w/LwH2G2tGnFIihuWUlc58YidwLiCv+jR2Z50x0tNXpRRw7eOIJ+GvqCqIkg9SB7NWAJ/T9TLfv8Q==}
|
resolution: {integrity: sha512-1F7Vtcez5w/LwH2G2tGnFIihuWUlc58YidwLiCv+jR2Z50x0tNXpRRw7eOIJ+GvqCqIkg9SB7NWAJ/T9TLfv8Q==}
|
||||||
engines: {node: '>=12.18'}
|
engines: {node: '>=12.18'}
|
||||||
@@ -10510,7 +10550,7 @@ packages:
|
|||||||
pathe: 0.3.2
|
pathe: 0.3.2
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/unimport/0.1.9_fgwbinyzo7ig36etrjrs2amb5u:
|
/unimport/0.1.9_hvvpxwgroug53rherjt7tg57xy:
|
||||||
resolution: {integrity: sha512-ap7MnS7zuA4A8eAyA8CHN3YFw1tMpWQK3rSrh6jvrB3tWkT4EKvslg9sNoax5WuL8TnMaXSydRxwOgUUXrnovg==}
|
resolution: {integrity: sha512-ap7MnS7zuA4A8eAyA8CHN3YFw1tMpWQK3rSrh6jvrB3tWkT4EKvslg9sNoax5WuL8TnMaXSydRxwOgUUXrnovg==}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@rollup/pluginutils': 4.2.1
|
'@rollup/pluginutils': 4.2.1
|
||||||
@@ -10521,7 +10561,7 @@ packages:
|
|||||||
mlly: 0.5.5
|
mlly: 0.5.5
|
||||||
pathe: 0.3.2
|
pathe: 0.3.2
|
||||||
scule: 0.2.1
|
scule: 0.2.1
|
||||||
unplugin: 0.6.3_fgwbinyzo7ig36etrjrs2amb5u
|
unplugin: 0.6.3_hvvpxwgroug53rherjt7tg57xy
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- esbuild
|
- esbuild
|
||||||
- rollup
|
- rollup
|
||||||
@@ -10549,26 +10589,6 @@ packages:
|
|||||||
- webpack
|
- webpack
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/unimport/0.4.7_fgwbinyzo7ig36etrjrs2amb5u:
|
|
||||||
resolution: {integrity: sha512-V2Pbscd1VSdgWm1/OI2pjtydEOTjE7DDnHZKhpOq7bSUBc1i8+1f6PK8jI1lJ1plRDcSNr0DLtAmtU9NPkFQpw==}
|
|
||||||
dependencies:
|
|
||||||
'@rollup/pluginutils': 4.2.1
|
|
||||||
escape-string-regexp: 5.0.0
|
|
||||||
fast-glob: 3.2.11
|
|
||||||
local-pkg: 0.4.2
|
|
||||||
magic-string: 0.26.2
|
|
||||||
mlly: 0.5.5
|
|
||||||
pathe: 0.3.2
|
|
||||||
scule: 0.2.1
|
|
||||||
strip-literal: 0.4.0
|
|
||||||
unplugin: 0.7.2_fgwbinyzo7ig36etrjrs2amb5u
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- esbuild
|
|
||||||
- rollup
|
|
||||||
- vite
|
|
||||||
- webpack
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/unimport/0.4.7_gb7pxktvahb4daphcpsfap3rg4:
|
/unimport/0.4.7_gb7pxktvahb4daphcpsfap3rg4:
|
||||||
resolution: {integrity: sha512-V2Pbscd1VSdgWm1/OI2pjtydEOTjE7DDnHZKhpOq7bSUBc1i8+1f6PK8jI1lJ1plRDcSNr0DLtAmtU9NPkFQpw==}
|
resolution: {integrity: sha512-V2Pbscd1VSdgWm1/OI2pjtydEOTjE7DDnHZKhpOq7bSUBc1i8+1f6PK8jI1lJ1plRDcSNr0DLtAmtU9NPkFQpw==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -10589,6 +10609,26 @@ packages:
|
|||||||
- webpack
|
- webpack
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/unimport/0.4.7_hvvpxwgroug53rherjt7tg57xy:
|
||||||
|
resolution: {integrity: sha512-V2Pbscd1VSdgWm1/OI2pjtydEOTjE7DDnHZKhpOq7bSUBc1i8+1f6PK8jI1lJ1plRDcSNr0DLtAmtU9NPkFQpw==}
|
||||||
|
dependencies:
|
||||||
|
'@rollup/pluginutils': 4.2.1
|
||||||
|
escape-string-regexp: 5.0.0
|
||||||
|
fast-glob: 3.2.11
|
||||||
|
local-pkg: 0.4.2
|
||||||
|
magic-string: 0.26.2
|
||||||
|
mlly: 0.5.5
|
||||||
|
pathe: 0.3.2
|
||||||
|
scule: 0.2.1
|
||||||
|
strip-literal: 0.4.0
|
||||||
|
unplugin: 0.7.2_hvvpxwgroug53rherjt7tg57xy
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- esbuild
|
||||||
|
- rollup
|
||||||
|
- vite
|
||||||
|
- webpack
|
||||||
|
dev: true
|
||||||
|
|
||||||
/unimport/0.6.4_vite@2.9.15:
|
/unimport/0.6.4_vite@2.9.15:
|
||||||
resolution: {integrity: sha512-1cbSeTsC2EwzWeWAyQleajM354y+EYsymxE9p1wDbHKVTEe9XL6+e7vlEv2pj1Zk8YYFf+CBf9QG8My7aDKhag==}
|
resolution: {integrity: sha512-1cbSeTsC2EwzWeWAyQleajM354y+EYsymxE9p1wDbHKVTEe9XL6+e7vlEv2pj1Zk8YYFf+CBf9QG8My7aDKhag==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -10629,6 +10669,26 @@ packages:
|
|||||||
- webpack
|
- webpack
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/unimport/0.6.7_vite@2.9.14:
|
||||||
|
resolution: {integrity: sha512-EMoVqDjswHkU+nD098QYHXH7Mkw7KwGDQAyeRF2lgairJnuO+wpkhIcmCqrD1OPJmsjkTbJ2tW6Ap8St0PuWZA==}
|
||||||
|
dependencies:
|
||||||
|
'@rollup/pluginutils': 4.2.1
|
||||||
|
escape-string-regexp: 5.0.0
|
||||||
|
fast-glob: 3.2.11
|
||||||
|
local-pkg: 0.4.2
|
||||||
|
magic-string: 0.26.2
|
||||||
|
mlly: 0.5.13
|
||||||
|
pathe: 0.3.5
|
||||||
|
scule: 0.3.2
|
||||||
|
strip-literal: 0.4.0
|
||||||
|
unplugin: 0.9.3_vite@2.9.14
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- esbuild
|
||||||
|
- rollup
|
||||||
|
- vite
|
||||||
|
- webpack
|
||||||
|
dev: true
|
||||||
|
|
||||||
/unique-string/2.0.0:
|
/unique-string/2.0.0:
|
||||||
resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==}
|
resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
@@ -10674,6 +10734,29 @@ packages:
|
|||||||
- webpack
|
- webpack
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/unplugin-auto-import/0.11.2_dmt5nkmgq6u7w3gscjexvr3mxm:
|
||||||
|
resolution: {integrity: sha512-1+VwBfn9dtiYv9SQLKP1AvZolUbK9xTVeAT+iOcEk4EHSFUlmIqBVLEKI76cifSQTLOJ3rZyPrEgptf3SZNLlQ==}
|
||||||
|
engines: {node: '>=14'}
|
||||||
|
peerDependencies:
|
||||||
|
'@vueuse/core': '*'
|
||||||
|
peerDependenciesMeta:
|
||||||
|
'@vueuse/core':
|
||||||
|
optional: true
|
||||||
|
dependencies:
|
||||||
|
'@antfu/utils': 0.5.2
|
||||||
|
'@rollup/pluginutils': 4.2.1
|
||||||
|
'@vueuse/core': 8.9.4_vue@3.2.37
|
||||||
|
local-pkg: 0.4.2
|
||||||
|
magic-string: 0.26.2
|
||||||
|
unimport: 0.6.7_vite@2.9.14
|
||||||
|
unplugin: 0.9.3_vite@2.9.14
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- esbuild
|
||||||
|
- rollup
|
||||||
|
- vite
|
||||||
|
- webpack
|
||||||
|
dev: true
|
||||||
|
|
||||||
/unplugin-auto-import/0.11.2_rce4thgtecgubd5bjwo7pjazje:
|
/unplugin-auto-import/0.11.2_rce4thgtecgubd5bjwo7pjazje:
|
||||||
resolution: {integrity: sha512-1+VwBfn9dtiYv9SQLKP1AvZolUbK9xTVeAT+iOcEk4EHSFUlmIqBVLEKI76cifSQTLOJ3rZyPrEgptf3SZNLlQ==}
|
resolution: {integrity: sha512-1+VwBfn9dtiYv9SQLKP1AvZolUbK9xTVeAT+iOcEk4EHSFUlmIqBVLEKI76cifSQTLOJ3rZyPrEgptf3SZNLlQ==}
|
||||||
engines: {node: '>=14'}
|
engines: {node: '>=14'}
|
||||||
@@ -10719,29 +10802,6 @@ packages:
|
|||||||
- webpack
|
- webpack
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/unplugin-auto-import/0.7.2_dmt5nkmgq6u7w3gscjexvr3mxm:
|
|
||||||
resolution: {integrity: sha512-VzaYUa2VByUT70WSFlOXoovyWuwC/8ePKQUC9fhU+BRmvTC7qhCVgChH/NieWMEVgyT+HhacxM+W7xMEOmA+MA==}
|
|
||||||
engines: {node: '>=14'}
|
|
||||||
peerDependencies:
|
|
||||||
'@vueuse/core': '*'
|
|
||||||
peerDependenciesMeta:
|
|
||||||
'@vueuse/core':
|
|
||||||
optional: true
|
|
||||||
dependencies:
|
|
||||||
'@antfu/utils': 0.5.2
|
|
||||||
'@rollup/pluginutils': 4.2.1
|
|
||||||
'@vueuse/core': 8.9.4_vue@3.2.37
|
|
||||||
local-pkg: 0.4.2
|
|
||||||
magic-string: 0.26.2
|
|
||||||
resolve: 1.22.1
|
|
||||||
unplugin: 0.6.3_vite@2.9.14
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- esbuild
|
|
||||||
- rollup
|
|
||||||
- vite
|
|
||||||
- webpack
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/unplugin-auto-import/0.7.2_vite@2.9.14:
|
/unplugin-auto-import/0.7.2_vite@2.9.14:
|
||||||
resolution: {integrity: sha512-VzaYUa2VByUT70WSFlOXoovyWuwC/8ePKQUC9fhU+BRmvTC7qhCVgChH/NieWMEVgyT+HhacxM+W7xMEOmA+MA==}
|
resolution: {integrity: sha512-VzaYUa2VByUT70WSFlOXoovyWuwC/8ePKQUC9fhU+BRmvTC7qhCVgChH/NieWMEVgyT+HhacxM+W7xMEOmA+MA==}
|
||||||
engines: {node: '>=14'}
|
engines: {node: '>=14'}
|
||||||
@@ -10846,31 +10906,6 @@ packages:
|
|||||||
webpack-virtual-modules: 0.4.4
|
webpack-virtual-modules: 0.4.4
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/unplugin/0.6.3_fgwbinyzo7ig36etrjrs2amb5u:
|
|
||||||
resolution: {integrity: sha512-CoW88FQfCW/yabVc4bLrjikN9HC8dEvMU4O7B6K2jsYMPK0l6iAnd9dpJwqGcmXJKRCU9vwSsy653qg+RK0G6A==}
|
|
||||||
peerDependencies:
|
|
||||||
esbuild: '>=0.13'
|
|
||||||
rollup: ^2.50.0
|
|
||||||
vite: ^2.3.0
|
|
||||||
webpack: 4 || 5
|
|
||||||
peerDependenciesMeta:
|
|
||||||
esbuild:
|
|
||||||
optional: true
|
|
||||||
rollup:
|
|
||||||
optional: true
|
|
||||||
vite:
|
|
||||||
optional: true
|
|
||||||
webpack:
|
|
||||||
optional: true
|
|
||||||
dependencies:
|
|
||||||
chokidar: 3.5.3
|
|
||||||
esbuild: 0.14.50
|
|
||||||
rollup: 2.77.2
|
|
||||||
vite: 3.0.0-beta.10
|
|
||||||
webpack-sources: 3.2.3
|
|
||||||
webpack-virtual-modules: 0.4.4
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/unplugin/0.6.3_gb7pxktvahb4daphcpsfap3rg4:
|
/unplugin/0.6.3_gb7pxktvahb4daphcpsfap3rg4:
|
||||||
resolution: {integrity: sha512-CoW88FQfCW/yabVc4bLrjikN9HC8dEvMU4O7B6K2jsYMPK0l6iAnd9dpJwqGcmXJKRCU9vwSsy653qg+RK0G6A==}
|
resolution: {integrity: sha512-CoW88FQfCW/yabVc4bLrjikN9HC8dEvMU4O7B6K2jsYMPK0l6iAnd9dpJwqGcmXJKRCU9vwSsy653qg+RK0G6A==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -10896,6 +10931,30 @@ packages:
|
|||||||
webpack-virtual-modules: 0.4.4
|
webpack-virtual-modules: 0.4.4
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/unplugin/0.6.3_hvvpxwgroug53rherjt7tg57xy:
|
||||||
|
resolution: {integrity: sha512-CoW88FQfCW/yabVc4bLrjikN9HC8dEvMU4O7B6K2jsYMPK0l6iAnd9dpJwqGcmXJKRCU9vwSsy653qg+RK0G6A==}
|
||||||
|
peerDependencies:
|
||||||
|
esbuild: '>=0.13'
|
||||||
|
rollup: ^2.50.0
|
||||||
|
vite: ^2.3.0
|
||||||
|
webpack: 4 || 5
|
||||||
|
peerDependenciesMeta:
|
||||||
|
esbuild:
|
||||||
|
optional: true
|
||||||
|
rollup:
|
||||||
|
optional: true
|
||||||
|
vite:
|
||||||
|
optional: true
|
||||||
|
webpack:
|
||||||
|
optional: true
|
||||||
|
dependencies:
|
||||||
|
chokidar: 3.5.3
|
||||||
|
rollup: 2.77.2
|
||||||
|
vite: 3.0.0-beta.10
|
||||||
|
webpack-sources: 3.2.3
|
||||||
|
webpack-virtual-modules: 0.4.4
|
||||||
|
dev: true
|
||||||
|
|
||||||
/unplugin/0.6.3_vite@2.9.14:
|
/unplugin/0.6.3_vite@2.9.14:
|
||||||
resolution: {integrity: sha512-CoW88FQfCW/yabVc4bLrjikN9HC8dEvMU4O7B6K2jsYMPK0l6iAnd9dpJwqGcmXJKRCU9vwSsy653qg+RK0G6A==}
|
resolution: {integrity: sha512-CoW88FQfCW/yabVc4bLrjikN9HC8dEvMU4O7B6K2jsYMPK0l6iAnd9dpJwqGcmXJKRCU9vwSsy653qg+RK0G6A==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -10945,32 +11004,6 @@ packages:
|
|||||||
webpack-virtual-modules: 0.4.4
|
webpack-virtual-modules: 0.4.4
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/unplugin/0.7.2_fgwbinyzo7ig36etrjrs2amb5u:
|
|
||||||
resolution: {integrity: sha512-m7thX4jP8l5sETpLdUASoDOGOcHaOVtgNyrYlToyQUvILUtEzEnngRBrHnAX3IKqooJVmXpoa/CwQ/QqzvGaHQ==}
|
|
||||||
peerDependencies:
|
|
||||||
esbuild: '>=0.13'
|
|
||||||
rollup: ^2.50.0
|
|
||||||
vite: ^2.3.0 || ^3.0.0-0
|
|
||||||
webpack: 4 || 5
|
|
||||||
peerDependenciesMeta:
|
|
||||||
esbuild:
|
|
||||||
optional: true
|
|
||||||
rollup:
|
|
||||||
optional: true
|
|
||||||
vite:
|
|
||||||
optional: true
|
|
||||||
webpack:
|
|
||||||
optional: true
|
|
||||||
dependencies:
|
|
||||||
acorn: 8.8.0
|
|
||||||
chokidar: 3.5.3
|
|
||||||
esbuild: 0.14.50
|
|
||||||
rollup: 2.77.2
|
|
||||||
vite: 3.0.0-beta.10
|
|
||||||
webpack-sources: 3.2.3
|
|
||||||
webpack-virtual-modules: 0.4.4
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/unplugin/0.7.2_gb7pxktvahb4daphcpsfap3rg4:
|
/unplugin/0.7.2_gb7pxktvahb4daphcpsfap3rg4:
|
||||||
resolution: {integrity: sha512-m7thX4jP8l5sETpLdUASoDOGOcHaOVtgNyrYlToyQUvILUtEzEnngRBrHnAX3IKqooJVmXpoa/CwQ/QqzvGaHQ==}
|
resolution: {integrity: sha512-m7thX4jP8l5sETpLdUASoDOGOcHaOVtgNyrYlToyQUvILUtEzEnngRBrHnAX3IKqooJVmXpoa/CwQ/QqzvGaHQ==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -10997,6 +11030,31 @@ packages:
|
|||||||
webpack-virtual-modules: 0.4.4
|
webpack-virtual-modules: 0.4.4
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/unplugin/0.7.2_hvvpxwgroug53rherjt7tg57xy:
|
||||||
|
resolution: {integrity: sha512-m7thX4jP8l5sETpLdUASoDOGOcHaOVtgNyrYlToyQUvILUtEzEnngRBrHnAX3IKqooJVmXpoa/CwQ/QqzvGaHQ==}
|
||||||
|
peerDependencies:
|
||||||
|
esbuild: '>=0.13'
|
||||||
|
rollup: ^2.50.0
|
||||||
|
vite: ^2.3.0 || ^3.0.0-0
|
||||||
|
webpack: 4 || 5
|
||||||
|
peerDependenciesMeta:
|
||||||
|
esbuild:
|
||||||
|
optional: true
|
||||||
|
rollup:
|
||||||
|
optional: true
|
||||||
|
vite:
|
||||||
|
optional: true
|
||||||
|
webpack:
|
||||||
|
optional: true
|
||||||
|
dependencies:
|
||||||
|
acorn: 8.8.0
|
||||||
|
chokidar: 3.5.3
|
||||||
|
rollup: 2.77.2
|
||||||
|
vite: 3.0.0-beta.10
|
||||||
|
webpack-sources: 3.2.3
|
||||||
|
webpack-virtual-modules: 0.4.4
|
||||||
|
dev: true
|
||||||
|
|
||||||
/unplugin/0.7.2_vite@2.9.15:
|
/unplugin/0.7.2_vite@2.9.15:
|
||||||
resolution: {integrity: sha512-m7thX4jP8l5sETpLdUASoDOGOcHaOVtgNyrYlToyQUvILUtEzEnngRBrHnAX3IKqooJVmXpoa/CwQ/QqzvGaHQ==}
|
resolution: {integrity: sha512-m7thX4jP8l5sETpLdUASoDOGOcHaOVtgNyrYlToyQUvILUtEzEnngRBrHnAX3IKqooJVmXpoa/CwQ/QqzvGaHQ==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -11070,6 +11128,30 @@ packages:
|
|||||||
webpack-virtual-modules: 0.4.4
|
webpack-virtual-modules: 0.4.4
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/unplugin/0.9.3_vite@2.9.14:
|
||||||
|
resolution: {integrity: sha512-GWXxizZG+tobNs8fuGTCeilerkkfZTZax2iivuE4pxLaF9wTnPJHOq8tbLKDb5ohVb+2BXNjrU9xx59yWTUnuw==}
|
||||||
|
peerDependencies:
|
||||||
|
esbuild: '>=0.13'
|
||||||
|
rollup: ^2.50.0
|
||||||
|
vite: ^2.3.0 || ^3.0.0-0
|
||||||
|
webpack: 4 || 5
|
||||||
|
peerDependenciesMeta:
|
||||||
|
esbuild:
|
||||||
|
optional: true
|
||||||
|
rollup:
|
||||||
|
optional: true
|
||||||
|
vite:
|
||||||
|
optional: true
|
||||||
|
webpack:
|
||||||
|
optional: true
|
||||||
|
dependencies:
|
||||||
|
acorn: 8.8.0
|
||||||
|
chokidar: 3.5.3
|
||||||
|
vite: 2.9.14
|
||||||
|
webpack-sources: 3.2.3
|
||||||
|
webpack-virtual-modules: 0.4.4
|
||||||
|
dev: true
|
||||||
|
|
||||||
/unstorage/0.5.5:
|
/unstorage/0.5.5:
|
||||||
resolution: {integrity: sha512-hiaJUOCWrgBp8cc7bnVYe2vAMkd6gRJ3iRLFRZuwL7LjTnPJ3o/r5F55N4t7CdRq4WThTZCRNDKZ4qzZGF7TIA==}
|
resolution: {integrity: sha512-hiaJUOCWrgBp8cc7bnVYe2vAMkd6gRJ3iRLFRZuwL7LjTnPJ3o/r5F55N4t7CdRq4WThTZCRNDKZ4qzZGF7TIA==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -11555,6 +11637,17 @@ packages:
|
|||||||
typescript: 4.7.4
|
typescript: 4.7.4
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/vue-tsc/0.40.1_typescript@4.7.4:
|
||||||
|
resolution: {integrity: sha512-Z+3rlp/6TrtKvLuaFYwBn03zrdinMR6lBb3mWBJtDA+KwlRu+I4eMoqC1qT9D7i/29u0Bw58dH7ErjMpNLN9bQ==}
|
||||||
|
hasBin: true
|
||||||
|
peerDependencies:
|
||||||
|
typescript: '*'
|
||||||
|
dependencies:
|
||||||
|
'@volar/vue-language-core': 0.40.1
|
||||||
|
'@volar/vue-typescript': 0.40.1
|
||||||
|
typescript: 4.7.4
|
||||||
|
dev: true
|
||||||
|
|
||||||
/vue/3.2.37:
|
/vue/3.2.37:
|
||||||
resolution: {integrity: sha512-bOKEZxrm8Eh+fveCqS1/NkG/n6aMidsI6hahas7pa0w/l7jkbssJVsRhVDs07IdDq7h9KHswZOgItnwJAgtVtQ==}
|
resolution: {integrity: sha512-bOKEZxrm8Eh+fveCqS1/NkG/n6aMidsI6hahas7pa0w/l7jkbssJVsRhVDs07IdDq7h9KHswZOgItnwJAgtVtQ==}
|
||||||
dependencies:
|
dependencies:
|
||||||
|
|||||||
Reference in New Issue
Block a user