@a2simcode/ui 0.0.77 → 0.0.79

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.
@@ -92,7 +92,6 @@ export type { ButtonCompActionType, ButtonCompType, ButtonClickScope, } from './
92
92
  export type { LayerParamType } from './dynamic-layer/src/interface';
93
93
  export type { SchemaConfig } from './comp/src/interface';
94
94
  export type { FormSchemaCompConfig, FormSchemaConfig, RuleType } from './form/src/interface';
95
- export type { PageSchemaConfig } from './page/src/interface';
96
95
  export type { ColumnSchemaConfig } from './table/src/interface';
97
96
  export type { TableColumnCompConfig } from './table/src/interface';
98
97
  export { useLayer } from './dynamic-layer';
@@ -1,7 +1,7 @@
1
1
  export declare const JPage: {
2
2
  new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
3
3
  schema: {
4
- type: import('vue').PropType<import('..').PageSchemaConfig[]>;
4
+ type: import('vue').PropType<import('..').SchemaConfig[]>;
5
5
  default: () => never[];
6
6
  };
7
7
  noPadding: {
@@ -13,7 +13,7 @@ export declare const JPage: {
13
13
  default: () => {};
14
14
  };
15
15
  }>> & Readonly<{}>, {
16
- init: (schema: import('..').PageSchemaConfig[]) => void;
16
+ init: (schema: import('..').SchemaConfig[]) => void;
17
17
  call: (id: string, method: string, options: {
18
18
  immediate?: boolean;
19
19
  } | null, ...args: any[]) => any;
@@ -22,7 +22,7 @@ export declare const JPage: {
22
22
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
23
23
  actions: Record<string, any>;
24
24
  noPadding: boolean;
25
- schema: import('..').PageSchemaConfig[];
25
+ schema: import('..').SchemaConfig[];
26
26
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
27
27
  P: {};
28
28
  B: {};
@@ -32,7 +32,7 @@ export declare const JPage: {
32
32
  Defaults: {};
33
33
  }, Readonly<import('vue').ExtractPropTypes<{
34
34
  schema: {
35
- type: import('vue').PropType<import('..').PageSchemaConfig[]>;
35
+ type: import('vue').PropType<import('..').SchemaConfig[]>;
36
36
  default: () => never[];
37
37
  };
38
38
  noPadding: {
@@ -44,7 +44,7 @@ export declare const JPage: {
44
44
  default: () => {};
45
45
  };
46
46
  }>> & Readonly<{}>, {
47
- init: (schema: import('..').PageSchemaConfig[]) => void;
47
+ init: (schema: import('..').SchemaConfig[]) => void;
48
48
  call: (id: string, method: string, options: {
49
49
  immediate?: boolean;
50
50
  } | null, ...args: any[]) => any;
@@ -53,14 +53,14 @@ export declare const JPage: {
53
53
  }, {}, {}, {}, {
54
54
  actions: Record<string, any>;
55
55
  noPadding: boolean;
56
- schema: import('..').PageSchemaConfig[];
56
+ schema: import('..').SchemaConfig[];
57
57
  }>;
58
58
  __isFragment?: never;
59
59
  __isTeleport?: never;
60
60
  __isSuspense?: never;
61
61
  } & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
62
62
  schema: {
63
- type: import('vue').PropType<import('..').PageSchemaConfig[]>;
63
+ type: import('vue').PropType<import('..').SchemaConfig[]>;
64
64
  default: () => never[];
65
65
  };
66
66
  noPadding: {
@@ -72,7 +72,7 @@ export declare const JPage: {
72
72
  default: () => {};
73
73
  };
74
74
  }>> & Readonly<{}>, {
75
- init: (schema: import('..').PageSchemaConfig[]) => void;
75
+ init: (schema: import('..').SchemaConfig[]) => void;
76
76
  call: (id: string, method: string, options: {
77
77
  immediate?: boolean;
78
78
  } | null, ...args: any[]) => any;
@@ -81,7 +81,7 @@ export declare const JPage: {
81
81
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
82
82
  actions: Record<string, any>;
83
83
  noPadding: boolean;
84
- schema: import('..').PageSchemaConfig[];
84
+ schema: import('..').SchemaConfig[];
85
85
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
86
86
  install: (app: import('vue').App) => void;
87
87
  };
@@ -1,11 +1,11 @@
1
1
  import { PropType } from 'vue';
2
- import { PageSchemaConfig } from './interface';
2
+ import { SchemaConfig } from '../../comp/src/interface';
3
3
  declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4
4
  /**
5
5
  * @zh 模版
6
6
  */
7
7
  schema: {
8
- type: PropType<PageSchemaConfig[]>;
8
+ type: PropType<SchemaConfig[]>;
9
9
  default: () => never[];
10
10
  };
11
11
  /**
@@ -23,7 +23,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
23
23
  default: () => {};
24
24
  };
25
25
  }>, {
26
- init: (schema: PageSchemaConfig[]) => void;
26
+ init: (schema: SchemaConfig[]) => void;
27
27
  call: (id: string, method: string, options: {
28
28
  immediate?: boolean;
29
29
  } | null, ...args: any[]) => any;
@@ -34,7 +34,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
34
34
  * @zh 模版
35
35
  */
36
36
  schema: {
37
- type: PropType<PageSchemaConfig[]>;
37
+ type: PropType<SchemaConfig[]>;
38
38
  default: () => never[];
39
39
  };
40
40
  /**
@@ -54,6 +54,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
54
54
  }>> & Readonly<{}>, {
55
55
  actions: Record<string, any>;
56
56
  noPadding: boolean;
57
- schema: PageSchemaConfig[];
57
+ schema: SchemaConfig[];
58
58
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
59
59
  export default _default;