x-block-lib 0.7.18 → 0.7.19

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.
@@ -3,12 +3,12 @@ export declare function isCompAvail(): boolean;
3
3
  export declare function getAllPropertyInfos(): {
4
4
  id: string;
5
5
  name: string;
6
- type: import("x-runtime-lib").FieldType;
6
+ type: import("x-runtime-lib").Type;
7
7
  }[];
8
8
  export declare function getPropertyInfo(id: string): {
9
9
  id: string;
10
10
  name: string;
11
- type: import("x-runtime-lib").FieldType;
11
+ type: import("x-runtime-lib").Type;
12
12
  } | undefined;
13
13
  export declare function genPropertyOpts(): Blockly.MenuOption[];
14
14
  export declare function getAllMethodInfos(): {
@@ -17,12 +17,12 @@ export declare function getAllMethodInfos(): {
17
17
  inputs: {
18
18
  id: string;
19
19
  name: string;
20
- type: import("x-runtime-lib").FieldType;
20
+ type: import("x-runtime-lib").Type;
21
21
  }[];
22
22
  outputs: {
23
23
  id: string;
24
24
  name: string;
25
- type: import("x-runtime-lib").FieldType;
25
+ type: import("x-runtime-lib").Type;
26
26
  }[];
27
27
  }[];
28
28
  export declare function getMethodInfo(id: string): {
@@ -31,24 +31,24 @@ export declare function getMethodInfo(id: string): {
31
31
  inputs: {
32
32
  id: string;
33
33
  name: string;
34
- type: import("x-runtime-lib").FieldType;
34
+ type: import("x-runtime-lib").Type;
35
35
  }[];
36
36
  outputs: {
37
37
  id: string;
38
38
  name: string;
39
- type: import("x-runtime-lib").FieldType;
39
+ type: import("x-runtime-lib").Type;
40
40
  }[];
41
41
  } | undefined;
42
42
  export declare function genMethodOpts(): Blockly.MenuOption[];
43
43
  export declare function getMethodAllOutputInfos(methodid: string): {
44
44
  id: string;
45
45
  name: string;
46
- type: import("x-runtime-lib").FieldType;
46
+ type: import("x-runtime-lib").Type;
47
47
  }[];
48
48
  export declare function getMethodOutputInfo(methodid: string, outputid: string): {
49
49
  id: string;
50
50
  name: string;
51
- type: import("x-runtime-lib").FieldType;
51
+ type: import("x-runtime-lib").Type;
52
52
  } | undefined;
53
53
  export declare function genMethodOutputOpts(methodid: string): Blockly.MenuOption[];
54
54
  export declare function getAllEventInfos(): {
@@ -57,7 +57,7 @@ export declare function getAllEventInfos(): {
57
57
  params: {
58
58
  id: string;
59
59
  name: string;
60
- type: import("x-runtime-lib").FieldType;
60
+ type: import("x-runtime-lib").Type;
61
61
  }[];
62
62
  }[];
63
63
  export declare function getEventInfo(id: string): {
@@ -66,7 +66,7 @@ export declare function getEventInfo(id: string): {
66
66
  params: {
67
67
  id: string;
68
68
  name: string;
69
- type: import("x-runtime-lib").FieldType;
69
+ type: import("x-runtime-lib").Type;
70
70
  }[];
71
71
  } | undefined;
72
72
  export declare function genEventOpts(): Blockly.MenuOption[];
@@ -3,11 +3,11 @@ export declare function isPageAvail(): false | undefined;
3
3
  export declare function getAllArgumentInfos(): {
4
4
  id: string;
5
5
  name: string;
6
- type: import("x-runtime-lib").FieldType;
6
+ type: import("x-runtime-lib").Type;
7
7
  }[];
8
8
  export declare function getArgumentInfo(id: string): {
9
9
  id: string;
10
10
  name: string;
11
- type: import("x-runtime-lib").FieldType;
11
+ type: import("x-runtime-lib").Type;
12
12
  } | undefined;
13
13
  export declare function genArgumentOpts(): Blockly.MenuOption[];
@@ -1,8 +1,8 @@
1
- import { FieldType } from 'x-runtime-lib';
1
+ import { Type } from 'x-runtime-lib';
2
2
  export declare function shadowOfTextV1(value: string): Element;
3
3
  export declare function shadowOfMathNumberV1(value: number): Element;
4
4
  export declare function shadowOfLogicBooleanV1(value: boolean): Element;
5
5
  export declare function shadowOfListCreateV1(): Element;
6
6
  export declare function shadowOfObjectCreateV1(): Element;
7
7
  export declare function shadowOfSelectCompV1(): Element;
8
- export declare function shadowOfField(type: FieldType): Element | null;
8
+ export declare function shadowOfField(type: Type): Element | null;
@@ -6,6 +6,6 @@ export declare function getActiveFunc(): import("x-state-lib").ActiveFunc;
6
6
  export declare function getActiveFuncOutputInfo(id: string): {
7
7
  id: string;
8
8
  name: string;
9
- type: import("x-runtime-lib").FieldType;
9
+ type: import("x-runtime-lib").Type;
10
10
  } | undefined;
11
11
  export declare function genActiveFuncOutputOpts(): Blockly.MenuOption[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "x-block-lib",
3
3
  "private": false,
4
- "version": "0.7.18",
4
+ "version": "0.7.19",
5
5
  "type": "module",
6
6
  "module": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -36,8 +36,8 @@
36
36
  "vue-router": "^4.5.1",
37
37
  "vuetify": "^3.9.4",
38
38
  "x-essential-lib": "^0.8.28",
39
- "x-runtime-lib": "^0.7.32",
40
- "x-state-lib": "^0.3.6"
39
+ "x-runtime-lib": "^0.7.33",
40
+ "x-state-lib": "^0.3.7"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@eslint/js": "^9.33.0",