@flaier/core 0.1.1 → 0.1.7
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/README.md +57 -10
- package/dist/context.d.ts +1 -0
- package/dist/index.js +118 -9
- package/dist/index.js.map +1 -1
- package/dist/style.css +3 -0
- package/dist/types.d.ts +1 -0
- package/package.json +8 -8
package/dist/style.css
CHANGED
package/dist/types.d.ts
CHANGED
|
@@ -282,6 +282,7 @@ export interface FlaierProps {
|
|
|
282
282
|
interval?: number;
|
|
283
283
|
themeMode?: "local" | "document";
|
|
284
284
|
nodes?: FlaierCustomNodeDefinitions;
|
|
285
|
+
viewportResetToken?: number;
|
|
285
286
|
}
|
|
286
287
|
export interface FlaierPanelProps extends FlaierProps {
|
|
287
288
|
height?: number | string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flaier/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "Vue components and registry helpers for rendering Flaier flow specs.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"diagram",
|
|
@@ -39,12 +39,6 @@
|
|
|
39
39
|
"access": "public",
|
|
40
40
|
"provenance": true
|
|
41
41
|
},
|
|
42
|
-
"scripts": {
|
|
43
|
-
"build": "vp pack && vue-tsc --project tsconfig.build.json",
|
|
44
|
-
"dev": "vp pack --watch",
|
|
45
|
-
"check": "vp check",
|
|
46
|
-
"typecheck": "vue-tsc --noEmit"
|
|
47
|
-
},
|
|
48
42
|
"dependencies": {
|
|
49
43
|
"@dagrejs/dagre": "^2.0.4",
|
|
50
44
|
"@json-render/core": "^0.17.0",
|
|
@@ -71,5 +65,11 @@
|
|
|
71
65
|
},
|
|
72
66
|
"peerDependencies": {
|
|
73
67
|
"vue": "^3.5"
|
|
68
|
+
},
|
|
69
|
+
"scripts": {
|
|
70
|
+
"build": "vp pack && vue-tsc --project tsconfig.build.json",
|
|
71
|
+
"dev": "vp pack --watch",
|
|
72
|
+
"check": "vp check",
|
|
73
|
+
"typecheck": "vue-tsc --noEmit"
|
|
74
74
|
}
|
|
75
|
-
}
|
|
75
|
+
}
|