x-block-lib 0.4.35 → 0.4.37

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.
@@ -15866,8 +15866,8 @@ export {
15866
15866
  q_ as V,
15867
15867
  nb as X,
15868
15868
  Ib as a,
15869
- Wm as b,
15870
- qm as c,
15869
+ qm as b,
15870
+ Wm as c,
15871
15871
  bb as d,
15872
15872
  Xm as e,
15873
15873
  Z_ as f,
@@ -0,0 +1,6 @@
1
+ import 'highlight.js/styles/default.min.css';
2
+ interface Props {
3
+ code: string;
4
+ }
5
+ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ export default _default;
@@ -1,6 +1,2 @@
1
- import 'highlight.js/styles/default.min.css';
2
- interface Props {
3
- code: string;
4
- }
5
- declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
6
2
  export default _default;
@@ -0,0 +1,2 @@
1
+ import './selectColumn/v1';
2
+ import './selectTable/v1';
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -1,6 +1,7 @@
1
1
  import './color';
2
2
  import './common';
3
3
  import './compute';
4
+ import './data';
4
5
  import './list';
5
6
  import './logic';
6
7
  import './loop';
@@ -95,6 +95,15 @@ declare const _default: {
95
95
  COMPUTE_V1_SET_FUNC_OUTPUT_TITLE: string;
96
96
  COMPUTE_V1_SET_FUNC_OUTPUT_TOOLTIP: string;
97
97
  COMPUTE_V1_SET_FUNC_OUTPUT_HELPURL: string;
98
+ DATA_AS: string;
99
+ DATA_LIST: string;
100
+ DATA_ITEM: string;
101
+ DATA_V1_SELECT_COLUMN_TITLE: string;
102
+ DATA_V1_SELECT_COLUMN_TOOLTIP: string;
103
+ DATA_V1_SELECT_COLUMN_HELPURL: string;
104
+ DATA_V1_SELECT_TABLE_TITLE: string;
105
+ DATA_V1_SELECT_TABLE_TOOLTIP: string;
106
+ DATA_V1_SELECT_TABLE_HELPURL: string;
98
107
  LIST_V1_CREATE_CONTAINER_TITLE: string;
99
108
  LIST_V1_CREATE_ITEM_TITLE: string;
100
109
  LIST_V1_CREATE_TITLE: string;
@@ -95,6 +95,15 @@ declare const _default: {
95
95
  COMPUTE_V1_SET_FUNC_OUTPUT_TITLE: string;
96
96
  COMPUTE_V1_SET_FUNC_OUTPUT_TOOLTIP: string;
97
97
  COMPUTE_V1_SET_FUNC_OUTPUT_HELPURL: string;
98
+ DATA: string;
99
+ DATA_LIST: string;
100
+ DATA_ITEM: string;
101
+ DATA_V1_SELECT_COLUMN_TITLE: string;
102
+ DATA_V1_SELECT_COLUMN_TOOLTIP: string;
103
+ DATA_V1_SELECT_COLUMN_HELPURL: string;
104
+ DATA_V1_SELECT_TABLE_TITLE: string;
105
+ DATA_V1_SELECT_TABLE_TOOLTIP: string;
106
+ DATA_V1_SELECT_TABLE_HELPURL: string;
98
107
  LIST_V1_CREATE_CONTAINER_TITLE: string;
99
108
  LIST_V1_CREATE_ITEM_TITLE: string;
100
109
  LIST_V1_CREATE_TITLE: string;
@@ -2,7 +2,7 @@ import * as Blockly from 'blockly/core';
2
2
  interface SpaceInfo {
3
3
  id: string;
4
4
  name: string;
5
- sort?: number;
5
+ sort: number;
6
6
  }
7
7
  export declare function getAllSpaceInfos(): SpaceInfo[];
8
8
  export declare function getSpaceInfo(id: string): SpaceInfo | undefined;
@@ -24,6 +24,6 @@ interface TableInfo {
24
24
  sort?: number;
25
25
  }
26
26
  export declare function getAllTableInfos(spaceid: string): TableInfo[];
27
- export declare function getTableInfo(id: string): TableInfo | undefined;
27
+ export declare function getTableInfo(spaceid: string, id: string): TableInfo | undefined;
28
28
  export declare function genTableOpts(spaceid: string): Blockly.MenuOption[];
29
29
  export {};