x-block-lib 0.8.4 → 0.8.5

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "x-block-lib",
3
3
  "private": false,
4
- "version": "0.8.4",
4
+ "version": "0.8.5",
5
5
  "type": "module",
6
6
  "module": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -37,7 +37,7 @@
37
37
  "vue-router": "^4.5.1",
38
38
  "vuetify": "^3.10.3",
39
39
  "x-essential-lib": "^0.9.0",
40
- "x-runtime-lib": "^0.8.2",
40
+ "x-runtime-lib": "^0.8.7",
41
41
  "x-state-lib": "^0.3.19"
42
42
  },
43
43
  "devDependencies": {
@@ -1,27 +0,0 @@
1
- import * as Blockly from 'blockly/core';
2
- import { Type, ZProp } from 'x-runtime-lib';
3
- interface MetaRegular {
4
- from: 'regular';
5
- raw: ZProp;
6
- }
7
- interface MetaSlot {
8
- from: 'slot';
9
- raw: {
10
- type: Type;
11
- };
12
- }
13
- interface MetaCustom {
14
- from: 'custom';
15
- raw: {
16
- type: Type;
17
- };
18
- }
19
- interface PropInfo {
20
- key: string;
21
- names: string[];
22
- meta: MetaRegular | MetaSlot | MetaCustom;
23
- }
24
- export declare function getAllPropInfos(nodeid: string, modify?: boolean): PropInfo[];
25
- export declare function getPropInfo(nodeid: string, propKey: string): PropInfo | undefined;
26
- export declare function genPropOpts(nodeid: string, modify?: boolean): Blockly.MenuOption[];
27
- export {};