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.
@@ -1,3 +1,3 @@
1
1
  import './callAppMethod/v1';
2
- import './implAppMethod/v1';
2
+ import './implementAppMethod/v1';
3
3
  import './setAppMethodOutput/v1';
@@ -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
- APP_V1_IMPL_APP_METHOD_TITLE: string;
145
- APP_V1_IMPL_APP_METHOD_TOOLTIP: string;
146
- APP_V1_IMPL_APP_METHOD_HELPURL: string;
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
- APP_V1_IMPL_APP_METHOD_TITLE: string;
145
- APP_V1_IMPL_APP_METHOD_TOOLTIP: string;
146
- APP_V1_IMPL_APP_METHOD_HELPURL: string;
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 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
  },