feat(resize-rotate): add snappable
This commit is contained in:
@@ -1,23 +1,58 @@
|
||||
<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 { ref } from 'vue'
|
||||
import { ResizeRotateNode } from '../src'
|
||||
import initialElements from './elements'
|
||||
|
||||
const elements = ref<Elements>(initialElements)
|
||||
|
||||
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>
|
||||
|
||||
<template>
|
||||
<div style="height: 100%">
|
||||
<VueFlow v-model="elements" class="vue-flow-basic-example" :fit-view-on-init="true" @connect="onConnect">
|
||||
<div style="height: 100%; color: black">
|
||||
{{ 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">
|
||||
<ResizeRotateNode v-bind="props" />
|
||||
</template>
|
||||
|
||||
<Controls />
|
||||
|
||||
<MiniMap />
|
||||
<Background color="#aaa" :gap="8" />
|
||||
|
||||
<Background variant="lines" color="#aaa" size="1" :gap="10" />
|
||||
</VueFlow>
|
||||
</div>
|
||||
</template>
|
||||
@@ -29,8 +64,9 @@ const onConnect = (params: Edge | Connection) => (elements.value = addEdge(param
|
||||
html,
|
||||
body,
|
||||
#root {
|
||||
height: 100%;
|
||||
height: 1024px;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
font-family: 'JetBrains Mono', monospace;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
||||
@@ -38,13 +38,13 @@
|
||||
"@vitejs/plugin-vue": "^2.3.3",
|
||||
"ts-patch": "^2.0.1",
|
||||
"typescript-transform-paths": "^3.3.1",
|
||||
"unplugin-auto-import": "^0.7.2",
|
||||
"unplugin-auto-import": "^0.11.2",
|
||||
"vite": "^2.9.14",
|
||||
"vite-plugin-vue-type-imports": "^0.1.3",
|
||||
"vue-tsc": "^0.35.2"
|
||||
"vite-plugin-vue-type-imports": "^0.2.0",
|
||||
"vue-tsc": "^0.40.1"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@braks/vue-flow": "^0.4.29",
|
||||
"@braks/vue-flow": "^0.4.37",
|
||||
"vue": "^3.2.25"
|
||||
},
|
||||
"publishConfig": {
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
// Generated by 'unplugin-auto-import'
|
||||
// We suggest you to commit this file into source control
|
||||
export {}
|
||||
declare global {
|
||||
const EffectScope: typeof import('vue')['EffectScope']
|
||||
const asyncComputed: typeof import('@vueuse/core')['asyncComputed']
|
||||
const autoResetRef: typeof import('@vueuse/core')['autoResetRef']
|
||||
const computed: typeof import('vue')['computed']
|
||||
@@ -24,7 +25,6 @@ declare global {
|
||||
const defineComponent: typeof import('vue')['defineComponent']
|
||||
const eagerComputed: typeof import('@vueuse/core')['eagerComputed']
|
||||
const effectScope: typeof import('vue')['effectScope']
|
||||
const EffectScope: typeof import('vue')['EffectScope']
|
||||
const extendRef: typeof import('@vueuse/core')['extendRef']
|
||||
const getCurrentInstance: typeof import('vue')['getCurrentInstance']
|
||||
const getCurrentScope: typeof import('vue')['getCurrentScope']
|
||||
@@ -32,6 +32,8 @@ declare global {
|
||||
const ignorableWatch: typeof import('@vueuse/core')['ignorableWatch']
|
||||
const inject: typeof import('vue')['inject']
|
||||
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 isRef: typeof import('vue')['isRef']
|
||||
const logicAnd: typeof import('@vueuse/core')['logicAnd']
|
||||
@@ -120,8 +122,8 @@ declare global {
|
||||
const useDark: typeof import('@vueuse/core')['useDark']
|
||||
const useDateFormat: typeof import('@vueuse/core')['useDateFormat']
|
||||
const useDebounce: typeof import('@vueuse/core')['useDebounce']
|
||||
const useDebouncedRefHistory: typeof import('@vueuse/core')['useDebouncedRefHistory']
|
||||
const useDebounceFn: typeof import('@vueuse/core')['useDebounceFn']
|
||||
const useDebouncedRefHistory: typeof import('@vueuse/core')['useDebouncedRefHistory']
|
||||
const useDeviceMotion: typeof import('@vueuse/core')['useDeviceMotion']
|
||||
const useDeviceOrientation: typeof import('@vueuse/core')['useDeviceOrientation']
|
||||
const useDevicePixelRatio: typeof import('@vueuse/core')['useDevicePixelRatio']
|
||||
@@ -202,11 +204,11 @@ declare global {
|
||||
const useStyleTag: typeof import('@vueuse/core')['useStyleTag']
|
||||
const useSwipe: typeof import('@vueuse/core')['useSwipe']
|
||||
const useTemplateRefsList: typeof import('@vueuse/core')['useTemplateRefsList']
|
||||
const useTextareaAutosize: typeof import('@vueuse/core')['useTextareaAutosize']
|
||||
const useTextSelection: typeof import('@vueuse/core')['useTextSelection']
|
||||
const useTextareaAutosize: typeof import('@vueuse/core')['useTextareaAutosize']
|
||||
const useThrottle: typeof import('@vueuse/core')['useThrottle']
|
||||
const useThrottledRefHistory: typeof import('@vueuse/core')['useThrottledRefHistory']
|
||||
const useThrottleFn: typeof import('@vueuse/core')['useThrottleFn']
|
||||
const useThrottledRefHistory: typeof import('@vueuse/core')['useThrottledRefHistory']
|
||||
const useTimeAgo: typeof import('@vueuse/core')['useTimeAgo']
|
||||
const useTimeout: typeof import('@vueuse/core')['useTimeout']
|
||||
const useTimeoutFn: typeof import('@vueuse/core')['useTimeoutFn']
|
||||
@@ -217,10 +219,10 @@ declare global {
|
||||
const useTransition: typeof import('@vueuse/core')['useTransition']
|
||||
const useUrlSearchParams: typeof import('@vueuse/core')['useUrlSearchParams']
|
||||
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 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 useWebNotification: typeof import('@vueuse/core')['useWebNotification']
|
||||
const useWebSocket: typeof import('@vueuse/core')['useWebSocket']
|
||||
@@ -237,9 +239,10 @@ declare global {
|
||||
const watchIgnorable: typeof import('@vueuse/core')['watchIgnorable']
|
||||
const watchOnce: typeof import('@vueuse/core')['watchOnce']
|
||||
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 watchTriggerable: typeof import('@vueuse/core')['watchTriggerable']
|
||||
const watchWithFilter: typeof import('@vueuse/core')['watchWithFilter']
|
||||
const whenever: typeof import('@vueuse/core')['whenever']
|
||||
}
|
||||
export {}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script lang="ts" setup>
|
||||
import type { MoveableEvents } from 'vue3-moveable'
|
||||
import type { MoveableEvents, MoveableProps } from 'vue3-moveable'
|
||||
import Moveable from 'vue3-moveable'
|
||||
import type { Position } from '@braks/vue-flow'
|
||||
import { Handle, useVueFlow } from '@braks/vue-flow'
|
||||
@@ -9,14 +9,27 @@ const props = defineProps<{
|
||||
label: string
|
||||
targetPosition: Position
|
||||
sourcePosition: Position
|
||||
nodeElement: HTMLDivElement
|
||||
data: any
|
||||
moveableProps?: MoveableProps
|
||||
}>()
|
||||
|
||||
const { viewport, updateNodeDimensions, onPaneClick, onPaneScroll, onPaneContextMenu, getNode, onNodeClick, onNodeDragStart } =
|
||||
useVueFlow()
|
||||
const emits = defineEmits(['updateNodeInternals'])
|
||||
|
||||
const {
|
||||
viewport,
|
||||
updateNodeDimensions,
|
||||
onPaneClick,
|
||||
onPaneScroll,
|
||||
onPaneContextMenu,
|
||||
getNode,
|
||||
onNodeClick,
|
||||
onNodeDragStart,
|
||||
snapGrid,
|
||||
snapToGrid,
|
||||
} = useVueFlow()
|
||||
|
||||
const el = ref()
|
||||
|
||||
const visible = ref(false)
|
||||
|
||||
const frame = {
|
||||
@@ -37,28 +50,22 @@ const onRotateStart = (e: MoveableEvents['rotateStart']) => {
|
||||
const onRotate = (e: MoveableEvents['rotate']) => {
|
||||
frame.rotate = e.beforeRotate
|
||||
e.target.style.transform = `rotate(${e.beforeRotate}deg)`
|
||||
updateNodeDimensions([{ id: props.id, nodeElement: props.nodeElement, forceUpdate: true }])
|
||||
emits('updateNodeInternals')
|
||||
}
|
||||
|
||||
const onClick = () => {
|
||||
visible.value = true
|
||||
const toggleVisibility = (val?: boolean) => {
|
||||
visible.value = val ?? !visible.value
|
||||
}
|
||||
|
||||
onNodeClick(({ node }) => {
|
||||
if (node.id === props.id) onClick()
|
||||
toggleVisibility(node.id === props.id)
|
||||
})
|
||||
|
||||
onNodeDragStart(({ node }) => {
|
||||
if (node.id === props.id) onClick()
|
||||
toggleVisibility(node.id === props.id)
|
||||
})
|
||||
|
||||
const hideMoveable = () => {
|
||||
visible.value = false
|
||||
}
|
||||
|
||||
onPaneClick(hideMoveable)
|
||||
onPaneScroll(hideMoveable)
|
||||
onPaneContextMenu(hideMoveable)
|
||||
onPaneClick(() => toggleVisibility(false))
|
||||
</script>
|
||||
|
||||
<script lang="ts">
|
||||
@@ -76,27 +83,41 @@ export default {
|
||||
...data.style,
|
||||
}"
|
||||
style="position: relative"
|
||||
@click="onClick"
|
||||
>
|
||||
<Handle type="target" :position="props.targetPosition" />
|
||||
|
||||
<slot>
|
||||
{{ props.label }}
|
||||
</slot>
|
||||
|
||||
<Handle type="source" :position="props.sourcePosition" />
|
||||
</div>
|
||||
|
||||
<Moveable
|
||||
v-if="visible"
|
||||
v-bind="props.moveableProps"
|
||||
class-name="nodrag"
|
||||
:target="[`[data-moveable-id='${props.id}']`]"
|
||||
:resizable="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"
|
||||
:padding="{ left: 0, top: 0, right: 0, bottom: 0 }"
|
||||
:origin="false"
|
||||
:edge="true"
|
||||
:start-drag-rotate="0"
|
||||
:throttle-drag-rotate="0"
|
||||
:throttle-resize="1"
|
||||
:render-directions="['nw', 'n', 'ne', 'w', 'e', 'sw', 's', 'se']"
|
||||
:zoom="0.75"
|
||||
:zoom="1"
|
||||
@resize="onResize"
|
||||
@rotate="onRotate"
|
||||
/>
|
||||
|
||||
447
pnpm-lock.yaml
generated
447
pnpm-lock.yaml
generated
@@ -95,7 +95,7 @@ importers:
|
||||
dependencies:
|
||||
'@braks/vue-flow': link:../../packages/vue-flow
|
||||
devDependencies:
|
||||
nuxt: 3.0.0-rc.3_fgwbinyzo7ig36etrjrs2amb5u
|
||||
nuxt: 3.0.0-rc.3_hvvpxwgroug53rherjt7tg57xy
|
||||
|
||||
examples/quasar:
|
||||
specifiers:
|
||||
@@ -160,7 +160,6 @@ importers:
|
||||
dependencies:
|
||||
pathfinding: 0.4.18
|
||||
perfect-arrows: 0.3.7
|
||||
vue: 3.2.37
|
||||
devDependencies:
|
||||
'@braks/vue-flow': link:../vue-flow
|
||||
'@types/pathfinding': 0.0.5
|
||||
@@ -170,6 +169,7 @@ importers:
|
||||
unplugin-auto-import: 0.7.2_vite@2.9.14
|
||||
vite: 2.9.14
|
||||
vite-plugin-vue-type-imports: 0.2.0_2yymnzrok6eda47acnj2yjm3ae
|
||||
vue: 3.2.37
|
||||
vue-tsc: 0.35.2_typescript@4.7.4
|
||||
|
||||
packages/resize-rotate-node:
|
||||
@@ -179,25 +179,25 @@ importers:
|
||||
'@vueuse/core': ^8.9.4
|
||||
ts-patch: ^2.0.1
|
||||
typescript-transform-paths: ^3.3.1
|
||||
unplugin-auto-import: ^0.7.2
|
||||
unplugin-auto-import: ^0.11.2
|
||||
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-tsc: ^0.35.2
|
||||
vue-tsc: ^0.40.1
|
||||
vue3-moveable: ^0.4.9
|
||||
dependencies:
|
||||
'@vueuse/core': 8.9.4_vue@3.2.37
|
||||
vue: 3.2.37
|
||||
vue3-moveable: 0.4.9_@types+react@16.9.56
|
||||
devDependencies:
|
||||
'@braks/vue-flow': link:../vue-flow
|
||||
'@vitejs/plugin-vue': 2.3.3_vite@2.9.14+vue@3.2.37
|
||||
ts-patch: 2.0.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-plugin-vue-type-imports: 0.1.3_2yymnzrok6eda47acnj2yjm3ae
|
||||
vue-tsc: 0.35.2_typescript@4.7.4
|
||||
vite-plugin-vue-type-imports: 0.2.0_2yymnzrok6eda47acnj2yjm3ae
|
||||
vue: 3.2.37
|
||||
vue-tsc: 0.40.1_typescript@4.7.4
|
||||
|
||||
packages/vue-flow:
|
||||
specifiers:
|
||||
@@ -227,7 +227,6 @@ importers:
|
||||
d3-drag: 3.0.0
|
||||
d3-selection: 3.0.0
|
||||
d3-zoom: 3.0.0
|
||||
vue: 3.2.37
|
||||
devDependencies:
|
||||
'@rollup/plugin-replace': 4.0.0_rollup@2.77.2
|
||||
'@types/d3': 7.4.0
|
||||
@@ -244,6 +243,7 @@ importers:
|
||||
vite: 2.9.15
|
||||
vite-plugin-vue-type-imports: 0.2.0_2yymnzrok6eda47acnj2yjm3ae
|
||||
vite-svg-loader: 3.4.0
|
||||
vue: 3.2.37
|
||||
vue-tsc: 0.38.9_typescript@4.7.4
|
||||
|
||||
packages:
|
||||
@@ -1107,11 +1107,11 @@ packages:
|
||||
resolution: {integrity: sha512-YBI/6o2EBz02tdEJRBK8xkt3zvOFOWlLBf7WKYGBsSYSRtjjgrqPe2skp6VLLmKx5WbHHDNcW+6oACaurxGzeA==}
|
||||
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==}
|
||||
engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0}
|
||||
dependencies:
|
||||
'@nuxt/schema': 3.0.0-rc.6_fgwbinyzo7ig36etrjrs2amb5u
|
||||
'@nuxt/schema': 3.0.0-rc.6_hvvpxwgroug53rherjt7tg57xy
|
||||
c12: 0.2.8
|
||||
consola: 2.15.3
|
||||
defu: 6.0.0
|
||||
@@ -1126,38 +1126,8 @@ packages:
|
||||
pkg-types: 0.3.3
|
||||
scule: 0.2.1
|
||||
semver: 7.3.7
|
||||
unctx: 1.1.4_fgwbinyzo7ig36etrjrs2amb5u
|
||||
unimport: 0.1.9_fgwbinyzo7ig36etrjrs2amb5u
|
||||
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
|
||||
unctx: 1.1.4_hvvpxwgroug53rherjt7tg57xy
|
||||
unimport: 0.1.9_hvvpxwgroug53rherjt7tg57xy
|
||||
untyped: 0.4.4
|
||||
transitivePeerDependencies:
|
||||
- esbuild
|
||||
@@ -1197,23 +1167,32 @@ packages:
|
||||
- webpack
|
||||
dev: true
|
||||
|
||||
/@nuxt/schema/3.0.0-rc.6_fgwbinyzo7ig36etrjrs2amb5u:
|
||||
resolution: {integrity: sha512-BcD5YtWRhn+jU2DlzuI1TeITFeOt5x6qm2KeaU/d5jzJ0oZDzmZwKsAimLtRbHwyU6/kKa+zFbK6pp5obm1XLg==}
|
||||
/@nuxt/kit/3.0.0-rc.6_hvvpxwgroug53rherjt7tg57xy:
|
||||
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_hvvpxwgroug53rherjt7tg57xy
|
||||
c12: 0.2.8
|
||||
create-require: 1.1.1
|
||||
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
|
||||
postcss-import-resolver: 2.0.0
|
||||
pkg-types: 0.3.3
|
||||
scule: 0.2.1
|
||||
std-env: 3.1.1
|
||||
ufo: 0.8.5
|
||||
unimport: 0.4.7_fgwbinyzo7ig36etrjrs2amb5u
|
||||
semver: 7.3.7
|
||||
unctx: 1.1.4_hvvpxwgroug53rherjt7tg57xy
|
||||
unimport: 0.4.7_hvvpxwgroug53rherjt7tg57xy
|
||||
untyped: 0.4.4
|
||||
transitivePeerDependencies:
|
||||
- esbuild
|
||||
- rollup
|
||||
- supports-color
|
||||
- vite
|
||||
- webpack
|
||||
dev: true
|
||||
@@ -1239,11 +1218,32 @@ packages:
|
||||
- webpack
|
||||
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==}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
'@nuxt/kit': 3.0.0-rc.1_fgwbinyzo7ig36etrjrs2amb5u
|
||||
'@nuxt/kit': 3.0.0-rc.1_hvvpxwgroug53rherjt7tg57xy
|
||||
chalk: 5.0.1
|
||||
ci-info: 3.3.2
|
||||
consola: 2.15.3
|
||||
@@ -2267,6 +2267,12 @@ packages:
|
||||
'@volar/source-map': 0.38.9
|
||||
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:
|
||||
resolution: {integrity: sha512-PFHh9wN/qMkOWYyvmB8ckvIzolrpNOvK5EBdxxdTpiPJhfYjW82rMDBnYf6RxCe7yQxrUrmve6BWVO7flxWNVQ==}
|
||||
dev: true
|
||||
@@ -2275,6 +2281,16 @@ packages:
|
||||
resolution: {integrity: sha512-ba0UFoHDYry+vwKdgkWJ6xlQT+8TFtZg1zj9tSjj4PykW1JZDuM0xplMotLun4h3YOoYfY9K1huY5gvxmrNLIw==}
|
||||
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:
|
||||
resolution: {integrity: sha512-8H6P8EtN06eSVGjtcJhGqZzFIg6/nWoHVOlnhc5vKqC7tXwpqPbyMQae0tO7pLBd5qSb/dYU5GQcBAHsi2jgyA==}
|
||||
dependencies:
|
||||
@@ -2295,6 +2311,18 @@ packages:
|
||||
'@vue/shared': 3.2.37
|
||||
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:
|
||||
resolution: {integrity: sha512-PZI6Urb+Vr5Dvgf9xysM8X7TP09inWDy1wjDtprBoBhxS7r0Dg3V0qZuJa7sSGz7M0QMa5R/CBaZPhlxFCfJBw==}
|
||||
dependencies:
|
||||
@@ -2315,6 +2343,14 @@ packages:
|
||||
'@vue/reactivity': 3.2.37
|
||||
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:
|
||||
resolution: {integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==}
|
||||
dev: true
|
||||
@@ -3632,8 +3668,10 @@ packages:
|
||||
nth-check: 2.1.1
|
||||
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==}
|
||||
peerDependencies:
|
||||
'@daybrush/utils': '>=1.0.0'
|
||||
dependencies:
|
||||
'@daybrush/utils': 1.7.1
|
||||
string-hash: 1.1.3
|
||||
@@ -7883,15 +7921,15 @@ packages:
|
||||
fsevents: 2.3.2
|
||||
dev: true
|
||||
|
||||
/nuxt/3.0.0-rc.3_fgwbinyzo7ig36etrjrs2amb5u:
|
||||
/nuxt/3.0.0-rc.3_hvvpxwgroug53rherjt7tg57xy:
|
||||
resolution: {integrity: sha512-Ch68sD9Npt3BN0ZphvtRurVhFqtm1sAu4VDoXghmsRoVAwpT2ZDeDWaQJ9PSmXHYwyEaXPIZ9B2EDXPKETh0cQ==}
|
||||
engines: {node: ^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
'@nuxt/devalue': 2.0.0
|
||||
'@nuxt/kit': 3.0.0-rc.6_fgwbinyzo7ig36etrjrs2amb5u
|
||||
'@nuxt/schema': 3.0.0-rc.6_fgwbinyzo7ig36etrjrs2amb5u
|
||||
'@nuxt/telemetry': 2.1.3_fgwbinyzo7ig36etrjrs2amb5u
|
||||
'@nuxt/kit': 3.0.0-rc.6_hvvpxwgroug53rherjt7tg57xy
|
||||
'@nuxt/schema': 3.0.0-rc.6_hvvpxwgroug53rherjt7tg57xy
|
||||
'@nuxt/telemetry': 2.1.3_hvvpxwgroug53rherjt7tg57xy
|
||||
'@nuxt/ui-templates': 0.1.1
|
||||
'@nuxt/vite-builder': 3.0.0-rc.6_vue@3.2.37
|
||||
'@vue/reactivity': 3.2.37
|
||||
@@ -7918,10 +7956,10 @@ packages:
|
||||
perfect-debounce: 0.1.3
|
||||
scule: 0.2.1
|
||||
ufo: 0.8.5
|
||||
unctx: 1.1.4_fgwbinyzo7ig36etrjrs2amb5u
|
||||
unctx: 1.1.4_hvvpxwgroug53rherjt7tg57xy
|
||||
unenv: 0.5.2
|
||||
unimport: 0.1.9_fgwbinyzo7ig36etrjrs2amb5u
|
||||
unplugin: 0.6.3_fgwbinyzo7ig36etrjrs2amb5u
|
||||
unimport: 0.1.9_hvvpxwgroug53rherjt7tg57xy
|
||||
unplugin: 0.6.3_hvvpxwgroug53rherjt7tg57xy
|
||||
untyped: 0.4.4
|
||||
vue: 3.2.37
|
||||
vue-bundle-renderer: 0.3.9
|
||||
@@ -9053,9 +9091,9 @@ packages:
|
||||
resolution: {integrity: sha512-CG0kVbpKjiLMQc85pP50+Z0R9PGp7NIkkGqO88QTjEsSMOGKYlCXIAnXdKR2ZII23NJmA4XrJry03jkXOxTUkg==}
|
||||
dependencies:
|
||||
'@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
|
||||
react-css-styled: 1.0.3
|
||||
react-css-styled: 1.0.3_@daybrush+utils@1.7.1
|
||||
dev: false
|
||||
|
||||
/react-compat-moveable/0.17.9_@types+react@16.9.56:
|
||||
@@ -9071,17 +9109,19 @@ packages:
|
||||
gesto: 1.10.0
|
||||
overlap-area: 1.1.0
|
||||
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
|
||||
transitivePeerDependencies:
|
||||
- '@types/react'
|
||||
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==}
|
||||
dependencies:
|
||||
css-styled: 1.0.0
|
||||
css-styled: 1.0.0_@daybrush+utils@1.7.1
|
||||
framework-utils: 1.1.0
|
||||
transitivePeerDependencies:
|
||||
- '@daybrush/utils'
|
||||
dev: false
|
||||
|
||||
/react-dom/18.2.0_react@18.2.0:
|
||||
@@ -9114,7 +9154,7 @@ packages:
|
||||
framework-utils: 1.1.0
|
||||
gesto: 1.10.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
|
||||
|
||||
/react-simple-compat/1.2.3:
|
||||
@@ -10468,20 +10508,6 @@ packages:
|
||||
which-boxed-primitive: 1.0.2
|
||||
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:
|
||||
resolution: {integrity: sha512-fQMML+GjUpIjQa0HBrrJezo2dFpTAbQbU0/KFKw4T5wpc9deGjLHSYthdfNAo2xSWM34csI6arzedezQkqtfGw==}
|
||||
dependencies:
|
||||
@@ -10496,6 +10522,20 @@ packages:
|
||||
- webpack
|
||||
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:
|
||||
resolution: {integrity: sha512-1F7Vtcez5w/LwH2G2tGnFIihuWUlc58YidwLiCv+jR2Z50x0tNXpRRw7eOIJ+GvqCqIkg9SB7NWAJ/T9TLfv8Q==}
|
||||
engines: {node: '>=12.18'}
|
||||
@@ -10510,7 +10550,7 @@ packages:
|
||||
pathe: 0.3.2
|
||||
dev: true
|
||||
|
||||
/unimport/0.1.9_fgwbinyzo7ig36etrjrs2amb5u:
|
||||
/unimport/0.1.9_hvvpxwgroug53rherjt7tg57xy:
|
||||
resolution: {integrity: sha512-ap7MnS7zuA4A8eAyA8CHN3YFw1tMpWQK3rSrh6jvrB3tWkT4EKvslg9sNoax5WuL8TnMaXSydRxwOgUUXrnovg==}
|
||||
dependencies:
|
||||
'@rollup/pluginutils': 4.2.1
|
||||
@@ -10521,7 +10561,7 @@ packages:
|
||||
mlly: 0.5.5
|
||||
pathe: 0.3.2
|
||||
scule: 0.2.1
|
||||
unplugin: 0.6.3_fgwbinyzo7ig36etrjrs2amb5u
|
||||
unplugin: 0.6.3_hvvpxwgroug53rherjt7tg57xy
|
||||
transitivePeerDependencies:
|
||||
- esbuild
|
||||
- rollup
|
||||
@@ -10549,26 +10589,6 @@ packages:
|
||||
- webpack
|
||||
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:
|
||||
resolution: {integrity: sha512-V2Pbscd1VSdgWm1/OI2pjtydEOTjE7DDnHZKhpOq7bSUBc1i8+1f6PK8jI1lJ1plRDcSNr0DLtAmtU9NPkFQpw==}
|
||||
dependencies:
|
||||
@@ -10589,6 +10609,26 @@ packages:
|
||||
- webpack
|
||||
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:
|
||||
resolution: {integrity: sha512-1cbSeTsC2EwzWeWAyQleajM354y+EYsymxE9p1wDbHKVTEe9XL6+e7vlEv2pj1Zk8YYFf+CBf9QG8My7aDKhag==}
|
||||
dependencies:
|
||||
@@ -10629,6 +10669,26 @@ packages:
|
||||
- webpack
|
||||
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:
|
||||
resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==}
|
||||
engines: {node: '>=8'}
|
||||
@@ -10674,6 +10734,29 @@ packages:
|
||||
- webpack
|
||||
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:
|
||||
resolution: {integrity: sha512-1+VwBfn9dtiYv9SQLKP1AvZolUbK9xTVeAT+iOcEk4EHSFUlmIqBVLEKI76cifSQTLOJ3rZyPrEgptf3SZNLlQ==}
|
||||
engines: {node: '>=14'}
|
||||
@@ -10719,29 +10802,6 @@ packages:
|
||||
- webpack
|
||||
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:
|
||||
resolution: {integrity: sha512-VzaYUa2VByUT70WSFlOXoovyWuwC/8ePKQUC9fhU+BRmvTC7qhCVgChH/NieWMEVgyT+HhacxM+W7xMEOmA+MA==}
|
||||
engines: {node: '>=14'}
|
||||
@@ -10846,31 +10906,6 @@ packages:
|
||||
webpack-virtual-modules: 0.4.4
|
||||
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:
|
||||
resolution: {integrity: sha512-CoW88FQfCW/yabVc4bLrjikN9HC8dEvMU4O7B6K2jsYMPK0l6iAnd9dpJwqGcmXJKRCU9vwSsy653qg+RK0G6A==}
|
||||
peerDependencies:
|
||||
@@ -10896,6 +10931,30 @@ packages:
|
||||
webpack-virtual-modules: 0.4.4
|
||||
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:
|
||||
resolution: {integrity: sha512-CoW88FQfCW/yabVc4bLrjikN9HC8dEvMU4O7B6K2jsYMPK0l6iAnd9dpJwqGcmXJKRCU9vwSsy653qg+RK0G6A==}
|
||||
peerDependencies:
|
||||
@@ -10945,32 +11004,6 @@ packages:
|
||||
webpack-virtual-modules: 0.4.4
|
||||
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:
|
||||
resolution: {integrity: sha512-m7thX4jP8l5sETpLdUASoDOGOcHaOVtgNyrYlToyQUvILUtEzEnngRBrHnAX3IKqooJVmXpoa/CwQ/QqzvGaHQ==}
|
||||
peerDependencies:
|
||||
@@ -10997,6 +11030,31 @@ packages:
|
||||
webpack-virtual-modules: 0.4.4
|
||||
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:
|
||||
resolution: {integrity: sha512-m7thX4jP8l5sETpLdUASoDOGOcHaOVtgNyrYlToyQUvILUtEzEnngRBrHnAX3IKqooJVmXpoa/CwQ/QqzvGaHQ==}
|
||||
peerDependencies:
|
||||
@@ -11070,6 +11128,30 @@ packages:
|
||||
webpack-virtual-modules: 0.4.4
|
||||
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:
|
||||
resolution: {integrity: sha512-hiaJUOCWrgBp8cc7bnVYe2vAMkd6gRJ3iRLFRZuwL7LjTnPJ3o/r5F55N4t7CdRq4WThTZCRNDKZ4qzZGF7TIA==}
|
||||
dependencies:
|
||||
@@ -11555,6 +11637,17 @@ packages:
|
||||
typescript: 4.7.4
|
||||
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:
|
||||
resolution: {integrity: sha512-bOKEZxrm8Eh+fveCqS1/NkG/n6aMidsI6hahas7pa0w/l7jkbssJVsRhVDs07IdDq7h9KHswZOgItnwJAgtVtQ==}
|
||||
dependencies:
|
||||
|
||||
Reference in New Issue
Block a user