x-block-lib 0.8.33 → 0.8.35

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,3 +1,3 @@
1
1
  import './callAppMethod/v1';
2
- import './implAppMethod/v1';
2
+ import './implementAppMethod/v1';
3
3
  import './setAppMethodOutput/v1';
@@ -110,6 +110,7 @@ declare const _default: {
110
110
  APP_POPUP_MESSAGE_TYPE_INFO: string;
111
111
  APP_POPUP_MESSAGE_TYPE_SUCCESS: string;
112
112
  APP_POPUP_MESSAGE_TYPE_WARNING: string;
113
+ APP_REF_KEY: string;
113
114
  APP_RETURN: string;
114
115
  APP_TEXT: string;
115
116
  APP_TITLE: string;
@@ -110,6 +110,7 @@ declare const _default: {
110
110
  APP_POPUP_MESSAGE_TYPE_INFO: string;
111
111
  APP_POPUP_MESSAGE_TYPE_SUCCESS: string;
112
112
  APP_POPUP_MESSAGE_TYPE_WARNING: string;
113
+ APP_REF_KEY: string;
113
114
  APP_RETURN: string;
114
115
  APP_TEXT: string;
115
116
  APP_TITLE: 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 getAllImplMethodInfos(): MethodInfo[];
24
- export declare function getImplMethodInfo(id: string): MethodInfo | undefined;
25
- export declare function genImplMethodOpts(): Blockly.MenuOption[];
26
- export declare function getAllImplMethodOutputInfos(methodId: string): Output[];
27
- export declare function getImplMethodOutputInfo(methodId: string, outputKey: string): Output | undefined;
28
- export declare function genImplMethodOutputOpts(methodKey: string): Blockly.MenuOption[];
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 {};
@@ -7,6 +7,7 @@ const t = {
7
7
  }
8
8
  },
9
9
  funcEntry: "Func Entry",
10
+ implementMethod: "Implement Method",
10
11
  msg: {
11
12
  cannotOperateInLockedState: "Cannot operate in locked state"
12
13
  },
@@ -7,6 +7,7 @@ const t = {
7
7
  }
8
8
  },
9
9
  funcEntry: "函数入口",
10
+ implementMethod: "实现方法",
10
11
  msg: {
11
12
  cannotOperateInLockedState: "锁定状态下不能操作"
12
13
  },