x-block-lib 0.4.4 → 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,12 +1,12 @@
1
1
  interface Props {
2
- type: 'app';
3
- version: 'v1';
2
+ type: 'app' | 'func' | 'flow';
3
+ version: string;
4
4
  active: boolean;
5
- scale: number;
6
5
  }
7
6
  declare let __VLS_typeProps: Props;
8
7
  type __VLS_PublicProps = {
9
8
  'lock': boolean;
9
+ 'scale': number;
10
10
  } & typeof __VLS_typeProps;
11
11
  declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
12
12
  change: (...args: any[]) => void;
@@ -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';