x-block-lib 0.6.38 → 0.6.40

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.
@@ -0,0 +1,3 @@
1
+ import './downloadResource/v1';
2
+ import './selectResource/v1';
3
+ import './uploadResource/v1';
@@ -120,6 +120,7 @@ declare const _default: {
120
120
  COLOR_V1_RGB_TOOLTIP: string;
121
121
  COLOR_V1_RGB_HELPURL: string;
122
122
  COMPUTE_CALL: string;
123
+ COMPUTE_CALLBACK: string;
123
124
  COMPUTE_DO: string;
124
125
  COMPUTE_FUNC_ENTRY: string;
125
126
  COMPUTE_V1_DEBUG_TRACE_TITLE: string;
@@ -120,6 +120,7 @@ declare const _default: {
120
120
  COLOR_V1_RGB_TOOLTIP: string;
121
121
  COLOR_V1_RGB_HELPURL: string;
122
122
  COMPUTE_CALL: string;
123
+ COMPUTE_CALLBACK: string;
123
124
  COMPUTE_DO: string;
124
125
  COMPUTE_FUNC_ENTRY: string;
125
126
  COMPUTE_V1_DEBUG_TRACE_TITLE: string;
@@ -1,7 +1,7 @@
1
1
  import * as Blockly from 'blockly/core';
2
2
  import { ComputeSpace } from 'x-state-lib';
3
3
  type Filter = 'func' | 'flow';
4
- export declare function getAllSpaceInfos(filter?: Filter): ComputeSpace[];
4
+ export declare function getAllSpaceInfos(filter: Filter): ComputeSpace[];
5
5
  export declare function getSpaceInfo(id: string): ComputeSpace | undefined;
6
- export declare function genSpaceOpts(): Blockly.MenuOption[];
6
+ export declare function genSpaceOpts(filter: Filter): Blockly.MenuOption[];
7
7
  export {};