x-block-lib 0.4.36 → 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.
- package/dist/{blockly-3pjknyf9.js → blockly-n2nno6aq.js} +2 -2
- package/dist/core/blocks/data/index.d.ts +2 -0
- package/dist/core/blocks/data/selectColumn/v1/index.d.ts +1 -0
- package/dist/core/blocks/data/selectTable/v1/index.d.ts +1 -0
- package/dist/core/blocks/index.d.ts +1 -0
- package/dist/core/locale/msg/en.d.ts +9 -0
- package/dist/core/locale/msg/zhHans.d.ts +9 -0
- package/dist/core/utils/data/index.d.ts +2 -2
- package/dist/index.js +2413 -2042
- package/dist/{msg-en-kqhn7gr4.js → msg-en-bh6yikwe.js} +10 -0
- package/dist/{msg-zhHans-l9gdu4vx.js → msg-zhHans-mwdm0igs.js} +10 -0
- package/dist/state/index.d.ts +19 -19
- package/package.json +1 -1
- package/dist/core/utils/common/state.d.ts +0 -148
|
@@ -15866,8 +15866,8 @@ export {
|
|
|
15866
15866
|
q_ as V,
|
|
15867
15867
|
nb as X,
|
|
15868
15868
|
Ib as a,
|
|
15869
|
-
|
|
15870
|
-
|
|
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 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -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
|
|
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 {};
|