@lupinum/board-connections 0.1.0
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.
- package/LICENSE +21 -0
- package/README.md +63 -0
- package/dist/colors-CI4AZ9tI.js +553 -0
- package/dist/colors.d.ts +10 -0
- package/dist/connection-actions.d.ts +41 -0
- package/dist/connection-label.d.ts +99 -0
- package/dist/connection-toolbar.d.ts +19 -0
- package/dist/controller.d.ts +50 -0
- package/dist/directionality.d.ts +8 -0
- package/dist/geometry.d.ts +23 -0
- package/dist/hit-testing.d.ts +11 -0
- package/dist/index.d.ts +17 -0
- package/dist/index.js +298 -0
- package/dist/layer-helpers.d.ts +26 -0
- package/dist/layer.d.ts +38 -0
- package/dist/plugin.d.ts +7 -0
- package/dist/renderer.d.ts +32 -0
- package/dist/routing/arc.d.ts +11 -0
- package/dist/types.d.ts +113 -0
- package/dist/vue.d.ts +2 -0
- package/dist/vue.js +1479 -0
- package/package.json +62 -0
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@lupinum/board-connections",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Connection and edge rendering plugin for Nuxt Board.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Lupinum OG <info@lupinum.com> (https://lupinum.com)",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"engines": {
|
|
9
|
+
"node": ">=20.19.0"
|
|
10
|
+
},
|
|
11
|
+
"main": "dist/index.js",
|
|
12
|
+
"module": "dist/index.js",
|
|
13
|
+
"types": "dist/index.d.ts",
|
|
14
|
+
"files": [
|
|
15
|
+
"dist"
|
|
16
|
+
],
|
|
17
|
+
"exports": {
|
|
18
|
+
".": {
|
|
19
|
+
"types": "./dist/index.d.ts",
|
|
20
|
+
"import": "./dist/index.js"
|
|
21
|
+
},
|
|
22
|
+
"./vue": {
|
|
23
|
+
"types": "./dist/vue.d.ts",
|
|
24
|
+
"import": "./dist/vue.js"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "git+https://github.com/lupinum-dev/nuxt-board.git",
|
|
30
|
+
"directory": "packages/board-connections"
|
|
31
|
+
},
|
|
32
|
+
"homepage": "https://nuxt-board.lupinum.com",
|
|
33
|
+
"bugs": {
|
|
34
|
+
"url": "https://github.com/lupinum-dev/nuxt-board/issues"
|
|
35
|
+
},
|
|
36
|
+
"keywords": [
|
|
37
|
+
"board",
|
|
38
|
+
"connections",
|
|
39
|
+
"edges",
|
|
40
|
+
"vue",
|
|
41
|
+
"diagram"
|
|
42
|
+
],
|
|
43
|
+
"publishConfig": {
|
|
44
|
+
"access": "public"
|
|
45
|
+
},
|
|
46
|
+
"peerDependencies": {
|
|
47
|
+
"vue": "^3.5.0",
|
|
48
|
+
"@lupinum/board-core": "0.1.0",
|
|
49
|
+
"@lupinum/vue-board": "0.1.0"
|
|
50
|
+
},
|
|
51
|
+
"peerDependenciesMeta": {
|
|
52
|
+
"@lupinum/vue-board": {
|
|
53
|
+
"optional": true
|
|
54
|
+
},
|
|
55
|
+
"vue": {
|
|
56
|
+
"optional": true
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"scripts": {
|
|
60
|
+
"build": "vite build && vue-tsc -p tsconfig.build.json && node ../../scripts/normalize-vue-declarations.mjs dist"
|
|
61
|
+
}
|
|
62
|
+
}
|