x-block-lib 0.8.14 → 0.8.16

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,6 +1,7 @@
1
1
  interface Props {
2
2
  id: string;
3
3
  title: string;
4
+ desc: string;
4
5
  select: boolean;
5
6
  }
6
7
  declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -1,6 +1,5 @@
1
1
  import './blocks';
2
2
  export * from './category';
3
- import './custom';
4
3
  import './dialog';
5
4
  export * from './events';
6
5
  export * from './locale';
@@ -0,0 +1 @@
1
+ export {};
@@ -1 +1,2 @@
1
- export {};
1
+ import './fieldDropdown';
2
+ import './workspaceCleanUp';
@@ -0,0 +1 @@
1
+ export {};
@@ -2,24 +2,24 @@ import * as Blockly from 'blockly/core';
2
2
  export declare function getAllAppInfos(): import("x-state-lib").AppListEntry[];
3
3
  export declare function getAppInfo(id: string): import("x-state-lib").AppListEntry | undefined;
4
4
  export declare function genAppOpts(): Blockly.MenuOption[];
5
- export declare function getAllPageInfos(appid: string): {
5
+ export declare function getAllPageInfos(appId: string): {
6
6
  id: string;
7
7
  name: string;
8
8
  }[];
9
- export declare function getPageInfo(appid: string, pageid: string): {
9
+ export declare function getPageInfo(appId: string, pageId: string): {
10
10
  id: string;
11
11
  name: string;
12
12
  } | undefined;
13
- export declare function genPageOpts(appid: string): Blockly.MenuOption[];
13
+ export declare function genPageOpts(appId: string): Blockly.MenuOption[];
14
14
  export declare function getAllCompInfos(): {
15
15
  id: string;
16
- groupid: string;
16
+ groupId: string;
17
17
  name: string;
18
18
  position: number;
19
19
  }[];
20
- export declare function getCompInfo(compid: string): {
20
+ export declare function getCompInfo(compId: string): {
21
21
  id: string;
22
- groupid: string;
22
+ groupId: string;
23
23
  name: string;
24
24
  position: number;
25
25
  } | undefined;
@@ -1,7 +1,7 @@
1
1
  import * as Blockly from 'blockly/core';
2
- export declare function getAllFuncInfos(spaceid: string): import("x-state-lib").Func[];
3
- export declare function getFuncInfo(spaceid: string, funcid: string): import("x-state-lib").Func | undefined;
4
- export declare function genFuncOpts(spaceid: string): Blockly.MenuOption[];
2
+ export declare function getAllFuncInfos(spaceId: string): import("x-state-lib").Func[];
3
+ export declare function getFuncInfo(spaceId: string, funcId: string): import("x-state-lib").Func | undefined;
4
+ export declare function genFuncOpts(spaceId: string): Blockly.MenuOption[];
5
5
  export declare function getActiveFunc(): import("x-state-lib").ActiveFunc;
6
6
  export declare function getActiveFuncOutputInfo(id: string): {
7
7
  id: string;
@@ -1,17 +1,17 @@
1
1
  import * as Blockly from 'blockly/core';
2
- export declare function getAllTableInfos(spaceid: string): import("x-state-lib").Table[];
3
- export declare function getTableInfo(spaceid: string, tableid: string): import("x-state-lib").Table | undefined;
4
- export declare function genTableOpts(spaceid: string): Blockly.MenuOption[];
5
- export declare function getAllColumnInfos(spaceid: string, tableid: string): {
2
+ export declare function getAllTableInfos(spaceId: string): import("x-state-lib").Table[];
3
+ export declare function getTableInfo(spaceId: string, tableId: string): import("x-state-lib").Table | undefined;
4
+ export declare function genTableOpts(spaceId: string): Blockly.MenuOption[];
5
+ export declare function getAllColumnInfos(spaceId: string, tableId: string): {
6
6
  id: string;
7
7
  name: string;
8
8
  type: string;
9
9
  extend: string;
10
10
  }[];
11
- export declare function getColumnInfo(spaceid: string, tableid: string, columnid: string): {
11
+ export declare function getColumnInfo(spaceId: string, tableId: string, columnid: string): {
12
12
  id: string;
13
13
  name: string;
14
14
  type: string;
15
15
  extend: string;
16
16
  } | undefined;
17
- export declare function genColumnOpts(spaceid: string, tableid: string): Blockly.MenuOption[];
17
+ export declare function genColumnOpts(spaceId: string, tableId: string): Blockly.MenuOption[];
@@ -3,10 +3,10 @@ interface DirInfo {
3
3
  id: string;
4
4
  name: string;
5
5
  }
6
- export declare function getAllDirInfos(spaceid: string): DirInfo[];
7
- export declare function getDirInfo(spaceid: string, id: string): {
6
+ export declare function getAllDirInfos(spaceId: string): DirInfo[];
7
+ export declare function getDirInfo(spaceId: string, id: string): {
8
8
  id: string;
9
9
  name: string;
10
10
  } | undefined;
11
- export declare function genDirOpts(spaceid: string): Blockly.MenuOption[];
11
+ export declare function genDirOpts(spaceId: string): Blockly.MenuOption[];
12
12
  export {};
@@ -1,5 +1,5 @@
1
1
  import * as Blockly from 'blockly/core';
2
2
  import { ResourceEntry } from 'x-state-lib';
3
- export declare function getAllResourceInfos(spaceid: string, dirid: string): ResourceEntry[];
4
- export declare function getResourceInfo(spaceid: string, resourceid: string): ResourceEntry | undefined;
5
- export declare function genResourceOpts(spaceid: string, dirid: string): Blockly.MenuOption[];
3
+ export declare function getAllResourceInfos(spaceId: string, dirid: string): ResourceEntry[];
4
+ export declare function getResourceInfo(spaceId: string, resourceid: string): ResourceEntry | undefined;
5
+ export declare function genResourceOpts(spaceId: string, dirid: string): Blockly.MenuOption[];