x-block-lib 0.8.34 → 0.8.36
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/blocks/app/method/index.d.ts +1 -1
- package/dist/core/locale/msg/en.d.ts +3 -3
- package/dist/core/locale/msg/zhHans.d.ts +3 -3
- package/dist/core/utils/app/method.d.ts +6 -6
- package/dist/{i18n-en.h3b844ct.js → i18n-en.gy41k67q.js} +1 -0
- package/dist/{i18n-zhHans.mk5971y3.js → i18n-zhHans.jba8gtia.js} +1 -0
- package/dist/index.js +1108 -1048
- package/dist/{msg-en.gmqsbfuw.js → msg-en.jch03670.js} +3 -3
- package/dist/{msg-zhHans.f0e8559c.js → msg-zhHans.e9yn43wz.js} +3 -3
- package/package.json +2 -2
- /package/dist/core/blocks/app/method/{implAppMethod → implementAppMethod}/v1/index.d.ts +0 -0
|
@@ -141,9 +141,9 @@ declare const _default: {
|
|
|
141
141
|
APP_V1_GET_APP_PROPERTY_TITLE: string;
|
|
142
142
|
APP_V1_GET_APP_PROPERTY_TOOLTIP: string;
|
|
143
143
|
APP_V1_GET_APP_PROPERTY_HELPURL: string;
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
144
|
+
APP_V1_IMPLEMENT_APP_METHOD_TITLE: string;
|
|
145
|
+
APP_V1_IMPLEMENT_APP_METHOD_TOOLTIP: string;
|
|
146
|
+
APP_V1_IMPLEMENT_APP_METHOD_HELPURL: string;
|
|
147
147
|
APP_V1_NAVIGATE_TO_TITLE: string;
|
|
148
148
|
APP_V1_NAVIGATE_TO_TOOLTIP: string;
|
|
149
149
|
APP_V1_NAVIGATE_TO_HELPURL: string;
|
|
@@ -141,9 +141,9 @@ declare const _default: {
|
|
|
141
141
|
APP_V1_GET_APP_PROPERTY_TITLE: string;
|
|
142
142
|
APP_V1_GET_APP_PROPERTY_TOOLTIP: string;
|
|
143
143
|
APP_V1_GET_APP_PROPERTY_HELPURL: string;
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
144
|
+
APP_V1_IMPLEMENT_APP_METHOD_TITLE: string;
|
|
145
|
+
APP_V1_IMPLEMENT_APP_METHOD_TOOLTIP: string;
|
|
146
|
+
APP_V1_IMPLEMENT_APP_METHOD_HELPURL: string;
|
|
147
147
|
APP_V1_NAVIGATE_TO_TITLE: string;
|
|
148
148
|
APP_V1_NAVIGATE_TO_TOOLTIP: string;
|
|
149
149
|
APP_V1_NAVIGATE_TO_HELPURL: string;
|
|
@@ -20,10 +20,10 @@ interface MethodInfo {
|
|
|
20
20
|
export declare function getAllCallMethodInfos(nodeId: string): MethodInfo[];
|
|
21
21
|
export declare function getCallMethodInfo(id: string): MethodInfo | undefined;
|
|
22
22
|
export declare function genCallMethodOpts(nodeId: string): Blockly.MenuOption[];
|
|
23
|
-
export declare function
|
|
24
|
-
export declare function
|
|
25
|
-
export declare function
|
|
26
|
-
export declare function
|
|
27
|
-
export declare function
|
|
28
|
-
export declare function
|
|
23
|
+
export declare function getAllImplementMethodInfos(): MethodInfo[];
|
|
24
|
+
export declare function getImplementMethodInfo(id: string): MethodInfo | undefined;
|
|
25
|
+
export declare function genImplementMethodOpts(): Blockly.MenuOption[];
|
|
26
|
+
export declare function getAllImplementMethodOutputInfos(methodId: string): Output[];
|
|
27
|
+
export declare function getImplementMethodOutputInfo(methodId: string, outputKey: string): Output | undefined;
|
|
28
|
+
export declare function genImplementMethodOutputOpts(methodKey: string): Blockly.MenuOption[];
|
|
29
29
|
export {};
|