@cat-factory/app 0.32.1 → 0.32.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
2
|
import { VueFlow, useVueFlow, type NodeMouseEvent } from '@vue-flow/core'
|
|
3
3
|
import { Background } from '@vue-flow/background'
|
|
4
|
-
import { Controls } from '@vue-flow/controls'
|
|
5
4
|
import { MiniMap } from '@vue-flow/minimap'
|
|
6
5
|
import BlockNode from './nodes/BlockNode.vue'
|
|
7
6
|
import EpicNode from './nodes/EpicNode.vue'
|
|
@@ -177,7 +176,6 @@ async function onDrop(event: DragEvent) {
|
|
|
177
176
|
>
|
|
178
177
|
<Background pattern-color="#1e293b" :gap="22" :size="1.4" />
|
|
179
178
|
<MiniMap pannable zoomable :node-color="minimapColor" class="!bg-slate-900/80" />
|
|
180
|
-
<Controls position="bottom-left" />
|
|
181
179
|
|
|
182
180
|
<template #node-block="props">
|
|
183
181
|
<BlockNode :id="props.id" />
|
package/nuxt.config.ts
CHANGED
|
@@ -49,7 +49,6 @@ export default defineNuxtConfig({
|
|
|
49
49
|
css: [
|
|
50
50
|
'@vue-flow/core/dist/style.css',
|
|
51
51
|
'@vue-flow/core/dist/theme-default.css',
|
|
52
|
-
'@vue-flow/controls/dist/style.css',
|
|
53
52
|
'@vue-flow/minimap/dist/style.css',
|
|
54
53
|
'@vue-flow/node-resizer/dist/style.css',
|
|
55
54
|
join(layerDir, 'app/assets/css/main.css'),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cat-factory/app",
|
|
3
|
-
"version": "0.32.
|
|
3
|
+
"version": "0.32.2",
|
|
4
4
|
"description": "Reusable Nuxt layer for the Agent Architecture Board SPA (components, stores, composables, pages). Consume it from a thin deployment app via `extends: ['@cat-factory/app']` and point it at your backend with NUXT_PUBLIC_API_BASE. See deploy/frontend for an example.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -20,7 +20,6 @@
|
|
|
20
20
|
"@nuxt/ui": "^4.9.0",
|
|
21
21
|
"@pinia/nuxt": "^0.11.3",
|
|
22
22
|
"@vue-flow/background": "^1.3.2",
|
|
23
|
-
"@vue-flow/controls": "^1.1.3",
|
|
24
23
|
"@vue-flow/core": "^1.48.2",
|
|
25
24
|
"@vue-flow/minimap": "^1.5.4",
|
|
26
25
|
"@vue-flow/node-resizer": "^1.5.1",
|