@stonecrop/node-editor 0.4.31 → 0.4.33

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,7 @@
1
1
  import { App } from 'vue';
2
2
  import NodeEditor from './components/NodeEditor.vue';
3
3
  import StateEditor from './components/StateEditor.vue';
4
- export type { EditorStates, FlowElement, FlowElements, Layout } from './types';
4
+ export type * from './types';
5
5
  /**
6
6
  * Install all Node Editor components
7
7
  * @param app - Vue app instance
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AAEzB,OAAO,UAAU,MAAM,6BAA6B,CAAA;AACpD,OAAO,WAAW,MAAM,8BAA8B,CAAA;AACtD,YAAY,EAAE,YAAY,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,EAAE,MAAM,SAAS,CAAA;AAE9E;;;;GAIG;AACH,iBAAS,OAAO,CAAC,GAAG,EAAE,GAAG,QAGxB;AAED,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,WAAW,EAAE,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AAEzB,OAAO,UAAU,MAAM,6BAA6B,CAAA;AACpD,OAAO,WAAW,MAAM,8BAA8B,CAAA;AACtD,mBAAmB,SAAS,CAAA;AAE5B;;;;GAIG;AACH,iBAAS,OAAO,CAAC,GAAG,EAAE,GAAG,QAGxB;AAED,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,WAAW,EAAE,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stonecrop/node-editor",
3
- "version": "0.4.31",
3
+ "version": "0.4.33",
4
4
  "description": "Node editor UI for Stonecrop",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -24,6 +24,10 @@
24
24
  },
25
25
  "require": "./dist/node-editor.umd.cjs"
26
26
  },
27
+ "./types": {
28
+ "import": "./dist/src/types/index.d.ts",
29
+ "require": "./dist/src/types/index.d.ts"
30
+ },
27
31
  "./styles": "./dist/node-editor.css"
28
32
  },
29
33
  "typings": "./dist/src/index.d.ts",
package/src/index.ts CHANGED
@@ -2,7 +2,7 @@ import { App } from 'vue'
2
2
 
3
3
  import NodeEditor from './components/NodeEditor.vue'
4
4
  import StateEditor from './components/StateEditor.vue'
5
- export type { EditorStates, FlowElement, FlowElements, Layout } from './types'
5
+ export type * from './types'
6
6
 
7
7
  /**
8
8
  * Install all Node Editor components