x-block-lib 0.4.5 → 0.4.6

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,5 +1,5 @@
1
1
  interface Props {
2
- type: 'app';
2
+ type: 'app' | 'func' | 'flow';
3
3
  version: string;
4
4
  active: boolean;
5
5
  }
@@ -1,4 +1,4 @@
1
- declare const toolbox: {
1
+ export declare const appToolboxV1: {
2
2
  kind: string;
3
3
  contents: ({
4
4
  kind: string;
@@ -28,4 +28,3 @@ declare const toolbox: {
28
28
  custom: string;
29
29
  })[];
30
30
  };
31
- export default toolbox;
@@ -0,0 +1,30 @@
1
+ export declare const flowToolboxV1: {
2
+ kind: string;
3
+ contents: ({
4
+ kind: string;
5
+ name: string;
6
+ categorystyle: string;
7
+ contents: ({
8
+ kind: string;
9
+ text: string;
10
+ type?: undefined;
11
+ } | {
12
+ kind: string;
13
+ type: string;
14
+ text?: undefined;
15
+ })[];
16
+ } | {
17
+ kind: string;
18
+ name: string;
19
+ categorystyle: string;
20
+ contents: {
21
+ kind: string;
22
+ type: string;
23
+ }[];
24
+ } | {
25
+ kind: string;
26
+ name: string;
27
+ categorystyle: string;
28
+ custom: string;
29
+ })[];
30
+ };
@@ -0,0 +1,30 @@
1
+ export declare const funcToolboxV1: {
2
+ kind: string;
3
+ contents: ({
4
+ kind: string;
5
+ name: string;
6
+ categorystyle: string;
7
+ contents: ({
8
+ kind: string;
9
+ text: string;
10
+ type?: undefined;
11
+ } | {
12
+ kind: string;
13
+ type: string;
14
+ text?: undefined;
15
+ })[];
16
+ } | {
17
+ kind: string;
18
+ name: string;
19
+ categorystyle: string;
20
+ contents: {
21
+ kind: string;
22
+ type: string;
23
+ }[];
24
+ } | {
25
+ kind: string;
26
+ name: string;
27
+ categorystyle: string;
28
+ custom: string;
29
+ })[];
30
+ };
@@ -1,2 +1,3 @@
1
- import appToolboxV1 from './app/v1';
2
- export { appToolboxV1 };
1
+ export * from './app/v1';
2
+ export * from './flow/v1';
3
+ export * from './func/v1';