x-block-lib 0.6.37 → 0.6.39

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.
@@ -16316,12 +16316,13 @@ export {
16316
16316
  Cb as A,
16317
16317
  df as B,
16318
16318
  yf as C,
16319
- Pb as D,
16319
+ Ub as D,
16320
16320
  Of as E,
16321
16321
  Mf as F,
16322
16322
  Jf as G,
16323
- Hb as H,
16324
- Qg as I,
16323
+ Pb as H,
16324
+ Hb as I,
16325
+ Qg as J,
16325
16326
  h_ as M,
16326
16327
  a_ as N,
16327
16328
  jb as O,
@@ -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 {};