x-block-lib 0.8.54 → 0.8.55
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/dist/core/utils/app/argument.d.ts +1 -1
- package/dist/core/utils/app/property.d.ts +2 -1
- package/dist/core/utils/app/state.d.ts +2 -2
- package/dist/core/utils/common/misc.d.ts +2 -1
- package/dist/core/utils/common/shadow.d.ts +2 -1
- package/dist/core/utils/compute/func.d.ts +1 -1
- package/package.json +4 -4
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as Blockly from 'blockly/core';
|
|
2
|
-
import {
|
|
2
|
+
import { Type } from 'x-essential-lib';
|
|
3
|
+
import { PropertyKind, ZProperty } from 'x-runtime-lib';
|
|
3
4
|
interface PropertyInfo {
|
|
4
5
|
id: string;
|
|
5
6
|
kind: PropertyKind;
|
|
@@ -2,11 +2,11 @@ import * as Blockly from 'blockly/core';
|
|
|
2
2
|
export declare function getAllStateInfos(): {
|
|
3
3
|
id: string;
|
|
4
4
|
name: string;
|
|
5
|
-
type: import("x-
|
|
5
|
+
type: import("x-essential-lib").Type;
|
|
6
6
|
}[];
|
|
7
7
|
export declare function getStateInfo(id: string): {
|
|
8
8
|
id: string;
|
|
9
9
|
name: string;
|
|
10
|
-
type: import("x-
|
|
10
|
+
type: import("x-essential-lib").Type;
|
|
11
11
|
} | undefined;
|
|
12
12
|
export declare function genStateOpts(): Blockly.MenuOption[];
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as Blockly from 'blockly/core';
|
|
2
|
-
import { Type
|
|
2
|
+
import { Type } from 'x-essential-lib';
|
|
3
|
+
import { ZProperty } from 'x-runtime-lib';
|
|
3
4
|
export declare const plusImage: string;
|
|
4
5
|
export declare const minusImage: string;
|
|
5
6
|
export declare function toBlockType(key: string): string;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { Type
|
|
1
|
+
import { Type } from 'x-essential-lib';
|
|
2
|
+
import { ZProperty } from 'x-runtime-lib';
|
|
2
3
|
export declare function shadowOfTextV1(value: string): Element;
|
|
3
4
|
export declare function shadowOfMathNumberV1(value: number): Element;
|
|
4
5
|
export declare function shadowOfLogicBooleanV1(value: boolean): Element;
|
|
@@ -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-
|
|
9
|
+
type: import("x-essential-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.8.
|
|
4
|
+
"version": "0.8.55",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"vue-i18n": "^11.2.1",
|
|
38
38
|
"vue-router": "^4.6.3",
|
|
39
39
|
"vuetify": "^3.11.1",
|
|
40
|
-
"x-essential-lib": "^0.9.
|
|
41
|
-
"x-runtime-lib": "^0.8.
|
|
42
|
-
"x-state-lib": "^0.3.
|
|
40
|
+
"x-essential-lib": "^0.9.18",
|
|
41
|
+
"x-runtime-lib": "^0.8.109",
|
|
42
|
+
"x-state-lib": "^0.3.29"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@eslint/js": "^9.39.1",
|