@a2simcode/ui 0.0.37 → 0.0.39

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.
Files changed (34) hide show
  1. package/dist/components/buttons/src/interface.d.ts +2 -2
  2. package/dist/components/comp/index.d.ts +6 -6
  3. package/dist/components/comp/src/comp.vue.d.ts +4 -4
  4. package/dist/components/comp/src/interface.d.ts +14 -14
  5. package/dist/components/dynamic-layer/index.d.ts +3 -3
  6. package/dist/components/dynamic-layer/src/dynamic-layer.vue.d.ts +2 -2
  7. package/dist/components/dynamic-layer/src/interface.d.ts +1 -1
  8. package/dist/components/dynamic-layer/src/useLayer.d.ts +2 -2
  9. package/dist/components/form/src/form.vue.d.ts +1 -1
  10. package/dist/components/form/src/interface.d.ts +4 -23
  11. package/dist/components/form-item/index.d.ts +6 -6
  12. package/dist/components/form-item/src/form-item.vue.d.ts +4 -4
  13. package/dist/components/guid/index.d.ts +3 -3
  14. package/dist/components/guid/src/guid.vue.d.ts +2 -7
  15. package/dist/components/index.d.ts +7 -7
  16. package/dist/components/input-layer/index.d.ts +20 -20
  17. package/dist/components/input-layer/src/input-layer.vue.d.ts +20 -20
  18. package/dist/components/input-rows/index.d.ts +6 -6
  19. package/dist/components/input-rows/src/input-rows.vue.d.ts +4 -4
  20. package/dist/components/layer-form/index.d.ts +6 -6
  21. package/dist/components/layer-form/src/layer-form.vue.d.ts +4 -4
  22. package/dist/components/page/src/interface.d.ts +2 -13
  23. package/dist/components/table/index.d.ts +6 -6
  24. package/dist/components/table/src/interface.d.ts +81 -0
  25. package/dist/components/table/src/table.vue.d.ts +5 -79
  26. package/dist/components/table-panel/index.d.ts +22 -22
  27. package/dist/components/table-panel/src/column-panel.vue.d.ts +4 -4
  28. package/dist/components/table-panel/src/filter-panel.vue.d.ts +4 -4
  29. package/dist/components/table-panel/src/keyword-panel.vue.d.ts +4 -4
  30. package/dist/components/table-panel/src/order-panel.vue.d.ts +4 -4
  31. package/dist/components/table-panel/src/table-panel.vue.d.ts +20 -20
  32. package/dist/index.d.ts +1 -3
  33. package/dist/ui.css +1 -1
  34. package/package.json +2 -2
@@ -1,4 +1,4 @@
1
- import { FormLayerParamType } from '../../dynamic-layer/src/interface';
1
+ import { LayerParamType } from '../../dynamic-layer/src/interface';
2
2
  export interface ButtonCompType {
3
3
  /**
4
4
  * @zh 按钮ID
@@ -17,7 +17,7 @@ export interface ButtonCompType {
17
17
  */
18
18
  click?: (scope: {
19
19
  data?: Record<string, any>;
20
- openLayer: (options: FormLayerParamType) => void;
20
+ openLayer: (options: LayerParamType) => void;
21
21
  }) => void;
22
22
  /**
23
23
  * @zh 按钮子集
@@ -25,7 +25,7 @@ declare const JComp: {
25
25
  default: undefined;
26
26
  };
27
27
  children: {
28
- type: import('vue').PropType<import('..').SchemaRuntimeConfig[]>;
28
+ type: import('vue').PropType<import('..').SchemaConfig[]>;
29
29
  default: () => never[];
30
30
  };
31
31
  row: {
@@ -45,7 +45,7 @@ declare const JComp: {
45
45
  }, import('vue').PublicProps, {
46
46
  type: string;
47
47
  id: string;
48
- children: import('..').SchemaRuntimeConfig[];
48
+ children: import('..').SchemaConfig[];
49
49
  modelValue: string | number | boolean | any[] | Record<string, any>;
50
50
  getCompType: Function;
51
51
  config: Record<string, any>;
@@ -87,7 +87,7 @@ declare const JComp: {
87
87
  default: undefined;
88
88
  };
89
89
  children: {
90
- type: import('vue').PropType<import('..').SchemaRuntimeConfig[]>;
90
+ type: import('vue').PropType<import('..').SchemaConfig[]>;
91
91
  default: () => never[];
92
92
  };
93
93
  row: {
@@ -104,7 +104,7 @@ declare const JComp: {
104
104
  }>, {}, {}, {}, {}, {
105
105
  type: string;
106
106
  id: string;
107
- children: import('..').SchemaRuntimeConfig[];
107
+ children: import('..').SchemaConfig[];
108
108
  modelValue: string | number | boolean | any[] | Record<string, any>;
109
109
  getCompType: Function;
110
110
  config: Record<string, any>;
@@ -141,7 +141,7 @@ declare const JComp: {
141
141
  default: undefined;
142
142
  };
143
143
  children: {
144
- type: import('vue').PropType<import('..').SchemaRuntimeConfig[]>;
144
+ type: import('vue').PropType<import('..').SchemaConfig[]>;
145
145
  default: () => never[];
146
146
  };
147
147
  row: {
@@ -161,7 +161,7 @@ declare const JComp: {
161
161
  }, string, {
162
162
  type: string;
163
163
  id: string;
164
- children: import('..').SchemaRuntimeConfig[];
164
+ children: import('..').SchemaConfig[];
165
165
  modelValue: string | number | boolean | any[] | Record<string, any>;
166
166
  getCompType: Function;
167
167
  config: Record<string, any>;
@@ -1,5 +1,5 @@
1
1
  import { PropType } from 'vue';
2
- import { SchemaRuntimeConfig } from './interface';
2
+ import { SchemaConfig } from './interface';
3
3
  declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4
4
  /**
5
5
  * @zh 输入值
@@ -48,7 +48,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
48
48
  * @zh 子集
49
49
  */
50
50
  children: {
51
- type: PropType<SchemaRuntimeConfig[]>;
51
+ type: PropType<SchemaConfig[]>;
52
52
  default: () => never[];
53
53
  };
54
54
  /**
@@ -116,7 +116,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
116
116
  * @zh 子集
117
117
  */
118
118
  children: {
119
- type: PropType<SchemaRuntimeConfig[]>;
119
+ type: PropType<SchemaConfig[]>;
120
120
  default: () => never[];
121
121
  };
122
122
  /**
@@ -139,7 +139,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
139
139
  }>, {
140
140
  type: string;
141
141
  id: string;
142
- children: SchemaRuntimeConfig[];
142
+ children: SchemaConfig[];
143
143
  modelValue: string | number | boolean | any[] | Record<string, any>;
144
144
  getCompType: Function;
145
145
  config: Record<string, any>;
@@ -1,4 +1,4 @@
1
- export interface BaseSchemaRuntimeConfig {
1
+ export interface BaseSchemaConfig {
2
2
  /**
3
3
  * @zh id
4
4
  */
@@ -30,11 +30,11 @@ export interface BaseCompConfig {
30
30
  */
31
31
  defaultValue?: any;
32
32
  /**
33
- * @zh 其他属性
33
+ * @zh 其它属性
34
34
  */
35
- [str: string]: any;
35
+ [propName: string]: any;
36
36
  }
37
- export interface TabsSchemaRuntimeConfig extends BaseSchemaRuntimeConfig {
37
+ export interface TabsSchemaConfig extends BaseSchemaConfig {
38
38
  /**
39
39
  * @zh 组件类型
40
40
  */
@@ -42,9 +42,9 @@ export interface TabsSchemaRuntimeConfig extends BaseSchemaRuntimeConfig {
42
42
  /**
43
43
  * @zh 子集
44
44
  */
45
- children?: TabPaneSchemaRuntimeConfig[];
45
+ children?: TabPaneSchemaConfig[];
46
46
  }
47
- export interface TabPaneSchemaRuntimeConfig extends BaseSchemaRuntimeConfig {
47
+ export interface TabPaneSchemaConfig extends BaseSchemaConfig {
48
48
  /**
49
49
  * @zh 组件类型
50
50
  */
@@ -59,9 +59,9 @@ export interface TabPaneSchemaRuntimeConfig extends BaseSchemaRuntimeConfig {
59
59
  /**
60
60
  * @zh 子集
61
61
  */
62
- children?: SchemaRuntimeConfig[];
62
+ children?: SchemaConfig[];
63
63
  }
64
- export interface GeneralSchemaRuntimeConfig extends BaseSchemaRuntimeConfig {
64
+ export interface GeneralSchemaConfig extends BaseSchemaConfig {
65
65
  /**
66
66
  * @zh 组件类型
67
67
  */
@@ -69,9 +69,9 @@ export interface GeneralSchemaRuntimeConfig extends BaseSchemaRuntimeConfig {
69
69
  /**
70
70
  * @zh 子集
71
71
  */
72
- children?: SchemaRuntimeConfig[];
72
+ children?: SchemaConfig[];
73
73
  }
74
- export interface CollapseSchemaRuntimeConfig extends BaseSchemaRuntimeConfig {
74
+ export interface CollapseSchemaConfig extends BaseSchemaConfig {
75
75
  /**
76
76
  * @zh 组件类型
77
77
  */
@@ -79,9 +79,9 @@ export interface CollapseSchemaRuntimeConfig extends BaseSchemaRuntimeConfig {
79
79
  /**
80
80
  * @zh 子集
81
81
  */
82
- children?: CollapseItemSchemaRuntimeConfig[];
82
+ children?: CollapseItemSchemaConfig[];
83
83
  }
84
- export interface CollapseItemSchemaRuntimeConfig extends BaseSchemaRuntimeConfig {
84
+ export interface CollapseItemSchemaConfig extends BaseSchemaConfig {
85
85
  /**
86
86
  * @zh 组件类型
87
87
  */
@@ -96,6 +96,6 @@ export interface CollapseItemSchemaRuntimeConfig extends BaseSchemaRuntimeConfig
96
96
  /**
97
97
  * @zh 子集
98
98
  */
99
- children?: SchemaRuntimeConfig[];
99
+ children?: SchemaConfig[];
100
100
  }
101
- export type SchemaRuntimeConfig = GeneralSchemaRuntimeConfig | TabsSchemaRuntimeConfig | TabPaneSchemaRuntimeConfig | CollapseSchemaRuntimeConfig | CollapseItemSchemaRuntimeConfig;
101
+ export type SchemaConfig = GeneralSchemaConfig | TabsSchemaConfig | TabPaneSchemaConfig | CollapseSchemaConfig | CollapseItemSchemaConfig;
@@ -1,7 +1,7 @@
1
1
  export * from './src/useLayer';
2
2
  export declare const JDynamicLayer: {
3
3
  new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
4
- open: (data: import('..').FormLayerParamType) => void;
4
+ open: (data: import('..').LayerParamType) => void;
5
5
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
6
6
  layerRef: unknown;
7
7
  componentRef: unknown;
@@ -13,13 +13,13 @@ export declare const JDynamicLayer: {
13
13
  M: {};
14
14
  Defaults: {};
15
15
  }, Readonly<{}> & Readonly<{}>, {
16
- open: (data: import('..').FormLayerParamType) => void;
16
+ open: (data: import('..').LayerParamType) => void;
17
17
  }, {}, {}, {}, {}>;
18
18
  __isFragment?: never;
19
19
  __isTeleport?: never;
20
20
  __isSuspense?: never;
21
21
  } & import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
22
- open: (data: import('..').FormLayerParamType) => void;
22
+ open: (data: import('..').LayerParamType) => void;
23
23
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
24
24
  install: (app: import('vue').App) => void;
25
25
  };
@@ -1,6 +1,6 @@
1
- import { FormLayerParamType } from './interface';
1
+ import { LayerParamType } from './interface';
2
2
  declare const _default: import('vue').DefineComponent<{}, {
3
- open: (data: FormLayerParamType) => void;
3
+ open: (data: LayerParamType) => void;
4
4
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
5
5
  layerRef: unknown;
6
6
  componentRef: unknown;
@@ -1,4 +1,4 @@
1
- export interface FormLayerParamType {
1
+ export interface LayerParamType {
2
2
  /**
3
3
  * 表单标题
4
4
  */
@@ -1,4 +1,4 @@
1
- import { FormLayerParamType } from './interface';
1
+ import { LayerParamType } from './interface';
2
2
  export declare function useLayer(): {
3
- openLayer: (data: FormLayerParamType) => void;
3
+ openLayer: (data: LayerParamType) => void;
4
4
  };
@@ -1,5 +1,5 @@
1
- import { PropType } from 'vue';
2
1
  import { FormSchemaConfig } from './interface';
2
+ import { PropType } from 'vue';
3
3
  declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4
4
  /**
5
5
  * @zh 表单配置
@@ -1,20 +1,9 @@
1
- export interface FormSchemaConfig {
1
+ import { BaseSchemaConfig, BaseCompConfig } from '../../comp/src/interface';
2
+ export interface FormSchemaConfig extends BaseSchemaConfig {
2
3
  /**
3
- * @zh ID
4
- */
5
- id?: string;
6
- /**
7
- * @zh 插槽名称
8
- */
9
- slot?: string;
10
- /**
11
- * @zh 类型
4
+ * @zh 组件类型
12
5
  */
13
6
  type: string;
14
- /**
15
- * @zh 获取组件类型
16
- */
17
- getCompType?: any;
18
7
  /**
19
8
  * @zh 配置信息
20
9
  */
@@ -83,15 +72,7 @@ export interface FormSchemaConfig {
83
72
  * @zh 校验规则
84
73
  */
85
74
  rule?: RuleType[];
86
- /**
87
- * @zh 其它属性
88
- */
89
- [propName: string]: any;
90
- };
91
- /**
92
- * @zh 获取组件配置
93
- */
94
- getCompConfig?: any;
75
+ } & BaseCompConfig;
95
76
  /**
96
77
  * @zh 子集
97
78
  */
@@ -21,7 +21,7 @@ export declare const JFormItem: {
21
21
  default: undefined;
22
22
  };
23
23
  children: {
24
- type: import('vue').PropType<import('..').SchemaRuntimeConfig[]>;
24
+ type: import('vue').PropType<import('..').SchemaConfig[]>;
25
25
  default: () => never[];
26
26
  };
27
27
  isNotCol: {
@@ -31,7 +31,7 @@ export declare const JFormItem: {
31
31
  }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
32
32
  type: string;
33
33
  id: string;
34
- children: import('..').SchemaRuntimeConfig[];
34
+ children: import('..').SchemaConfig[];
35
35
  getCompType: Function;
36
36
  config: Record<string, any>;
37
37
  getCompConfig: Function;
@@ -65,7 +65,7 @@ export declare const JFormItem: {
65
65
  default: undefined;
66
66
  };
67
67
  children: {
68
- type: import('vue').PropType<import('..').SchemaRuntimeConfig[]>;
68
+ type: import('vue').PropType<import('..').SchemaConfig[]>;
69
69
  default: () => never[];
70
70
  };
71
71
  isNotCol: {
@@ -75,7 +75,7 @@ export declare const JFormItem: {
75
75
  }>> & Readonly<{}>, {}, {}, {}, {}, {
76
76
  type: string;
77
77
  id: string;
78
- children: import('..').SchemaRuntimeConfig[];
78
+ children: import('..').SchemaConfig[];
79
79
  getCompType: Function;
80
80
  config: Record<string, any>;
81
81
  getCompConfig: Function;
@@ -106,7 +106,7 @@ export declare const JFormItem: {
106
106
  default: undefined;
107
107
  };
108
108
  children: {
109
- type: import('vue').PropType<import('..').SchemaRuntimeConfig[]>;
109
+ type: import('vue').PropType<import('..').SchemaConfig[]>;
110
110
  default: () => never[];
111
111
  };
112
112
  isNotCol: {
@@ -116,7 +116,7 @@ export declare const JFormItem: {
116
116
  }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
117
117
  type: string;
118
118
  id: string;
119
- children: import('..').SchemaRuntimeConfig[];
119
+ children: import('..').SchemaConfig[];
120
120
  getCompType: Function;
121
121
  config: Record<string, any>;
122
122
  getCompConfig: Function;
@@ -1,5 +1,5 @@
1
1
  import { PropType } from 'vue';
2
- import { SchemaRuntimeConfig } from '../../comp/src/interface';
2
+ import { SchemaConfig } from '../../comp/src/interface';
3
3
  declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4
4
  /**
5
5
  * @zh 组件 id
@@ -40,7 +40,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
40
40
  * @zh 子集
41
41
  */
42
42
  children: {
43
- type: PropType<SchemaRuntimeConfig[]>;
43
+ type: PropType<SchemaConfig[]>;
44
44
  default: () => never[];
45
45
  };
46
46
  isNotCol: {
@@ -87,7 +87,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
87
87
  * @zh 子集
88
88
  */
89
89
  children: {
90
- type: PropType<SchemaRuntimeConfig[]>;
90
+ type: PropType<SchemaConfig[]>;
91
91
  default: () => never[];
92
92
  };
93
93
  isNotCol: {
@@ -97,7 +97,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
97
97
  }>> & Readonly<{}>, {
98
98
  type: string;
99
99
  id: string;
100
- children: SchemaRuntimeConfig[];
100
+ children: SchemaConfig[];
101
101
  getCompType: Function;
102
102
  config: Record<string, any>;
103
103
  getCompConfig: Function;
@@ -4,7 +4,7 @@ declare const JGuid: {
4
4
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
5
5
  "update:modelValue": (value: string) => any;
6
6
  }, import('vue').PublicProps, {
7
- size: import('..').GuidSizeType;
7
+ size: "large" | "default" | "small";
8
8
  modelValue: string;
9
9
  }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
10
10
  P: {};
@@ -16,7 +16,7 @@ declare const JGuid: {
16
16
  }, Readonly<import('..').GuidProps> & Readonly<{
17
17
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
18
18
  }>, {}, {}, {}, {}, {
19
- size: import('..').GuidSizeType;
19
+ size: "large" | "default" | "small";
20
20
  modelValue: string;
21
21
  }>;
22
22
  __isFragment?: never;
@@ -27,7 +27,7 @@ declare const JGuid: {
27
27
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
28
28
  "update:modelValue": (value: string) => any;
29
29
  }, string, {
30
- size: import('..').GuidSizeType;
30
+ size: "large" | "default" | "small";
31
31
  modelValue: string;
32
32
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
33
33
  install: (app: import('vue').App) => void;
@@ -1,8 +1,3 @@
1
- /**
2
- * GUID (Globally Unique Identifier) 组件
3
- * 用于生成和展示全局唯一标识符
4
- */
5
- export type GuidSizeType = 'large' | 'default' | 'small';
6
1
  export interface GuidProps {
7
2
  /**
8
3
  * @zh 绑定值,当为空时会自动生成UUID
@@ -15,14 +10,14 @@ export interface GuidProps {
15
10
  * @en Input size
16
11
  * @default 'default'
17
12
  */
18
- size?: GuidSizeType;
13
+ size?: 'large' | 'default' | 'small';
19
14
  }
20
15
  declare const _default: import('vue').DefineComponent<GuidProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
21
16
  "update:modelValue": (value: string) => any;
22
17
  }, string, import('vue').PublicProps, Readonly<GuidProps> & Readonly<{
23
18
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
24
19
  }>, {
25
- size: GuidSizeType;
20
+ size: "large" | "default" | "small";
26
21
  modelValue: string;
27
22
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
28
23
  export default _default;
@@ -69,22 +69,22 @@ export type { InputLayerProps } from './input-layer/src/input-layer.vue';
69
69
  export type { CountProps } from './count/src/count.vue';
70
70
  export type { CountUpProps } from './count-up/src/count-up.vue';
71
71
  export type { DataPanelProps } from './data-panel/src/data-panel.vue';
72
- export type { SchemaRuntimeConfig } from './comp/src/interface';
73
- export type { ButtonCompType } from './buttons/src/interface';
74
- export type { FormLayerParamType } from './dynamic-layer/src/interface';
75
- export type { FormSchemaConfig, RuleType } from './form/src/interface';
76
- export type { PageSchemaConfig } from './page/src/interface';
77
- export type { GuidProps, GuidSizeType } from './guid/src/guid.vue';
72
+ export type { GuidProps } from './guid/src/guid.vue';
78
73
  export type { InputButtonProps } from './input-button/src/input-button.vue';
79
74
  export type { InputCodeProps } from './input-code/src/input-code.vue';
80
75
  export type { InputColorProps } from './input-color/src/input-color.vue';
81
76
  export type { TitleProps } from './title/src/title.vue';
82
77
  export type { ButtonSelectProps, ButtonSelectOption } from './button-select/src/button-select.vue';
83
78
  export type { EditConfigType } from './input-rows/src/interface';
84
- export type { TableColumnConfig } from './table/src/table.vue';
85
79
  export type { TabsProps } from './tabs/src/tabs.vue';
86
80
  export type { CollapseProps } from './collapse/src/collapse.vue';
87
81
  export type { WorkflowViewerProps } from './workflow-viewer/src/workflow-viewer.vue';
82
+ export type { ButtonCompType } from './buttons/src/interface';
83
+ export type { LayerParamType } from './dynamic-layer/src/interface';
84
+ export type { SchemaConfig } from './comp/src/interface';
85
+ export type { FormSchemaConfig, RuleType } from './form/src/interface';
86
+ export type { PageSchemaConfig } from './page/src/interface';
87
+ export type { ColumnSchemaConfig } from './table/src/interface';
88
88
  declare const _default: {
89
89
  install: (app: App) => void;
90
90
  };
@@ -284,7 +284,7 @@ export declare const JInputLayer: {
284
284
  }) | null;
285
285
  tableRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
286
286
  columns: {
287
- type: import('vue').PropType<import('..').SchemaRuntimeConfig[]>;
287
+ type: import('vue').PropType<import('..').SchemaConfig[]>;
288
288
  required: true;
289
289
  default: () => never[];
290
290
  };
@@ -360,7 +360,7 @@ export declare const JInputLayer: {
360
360
  }, import('vue').PublicProps, {
361
361
  immediate: boolean;
362
362
  buttons: import('..').ButtonCompType[];
363
- columns: import('..').SchemaRuntimeConfig[];
363
+ columns: import('..').SchemaConfig[];
364
364
  isTree: boolean;
365
365
  isShowNumber: boolean;
366
366
  isMultiple: boolean;
@@ -376,7 +376,7 @@ export declare const JInputLayer: {
376
376
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
377
377
  keywordPanelRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
378
378
  columns: {
379
- type: import('vue').PropType<import('..').SchemaRuntimeConfig[]>;
379
+ type: import('vue').PropType<import('..').SchemaConfig[]>;
380
380
  default: () => never[];
381
381
  };
382
382
  checkAll: {
@@ -394,7 +394,7 @@ export declare const JInputLayer: {
394
394
  "update:checkAll": (value: boolean) => any;
395
395
  "update:checkFields": (value: string[]) => any;
396
396
  }, import('vue').PublicProps, {
397
- columns: import('..').SchemaRuntimeConfig[];
397
+ columns: import('..').SchemaConfig[];
398
398
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
399
399
  P: {};
400
400
  B: {};
@@ -404,7 +404,7 @@ export declare const JInputLayer: {
404
404
  Defaults: {};
405
405
  }, Readonly<import('vue').ExtractPropTypes<{
406
406
  columns: {
407
- type: import('vue').PropType<import('..').SchemaRuntimeConfig[]>;
407
+ type: import('vue').PropType<import('..').SchemaConfig[]>;
408
408
  default: () => never[];
409
409
  };
410
410
  checkAll: {
@@ -419,11 +419,11 @@ export declare const JInputLayer: {
419
419
  }>, {
420
420
  init: () => void;
421
421
  }, {}, {}, {}, {
422
- columns: import('..').SchemaRuntimeConfig[];
422
+ columns: import('..').SchemaConfig[];
423
423
  }> | null;
424
424
  filterPanelRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
425
425
  columns: {
426
- type: import('vue').PropType<import('..').SchemaRuntimeConfig[]>;
426
+ type: import('vue').PropType<import('..').SchemaConfig[]>;
427
427
  default: () => never[];
428
428
  };
429
429
  searchFieldList: {
@@ -449,7 +449,7 @@ export declare const JInputLayer: {
449
449
  "update:relation": (value: string) => void;
450
450
  "update:isPin": (value: boolean) => void;
451
451
  }, import('vue').PublicProps, {
452
- columns: import('..').SchemaRuntimeConfig[];
452
+ columns: import('..').SchemaConfig[];
453
453
  searchFieldList: Record<string, any>[];
454
454
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
455
455
  P: {};
@@ -460,7 +460,7 @@ export declare const JInputLayer: {
460
460
  Defaults: {};
461
461
  }, Readonly<import('vue').ExtractPropTypes<{
462
462
  columns: {
463
- type: import('vue').PropType<import('..').SchemaRuntimeConfig[]>;
463
+ type: import('vue').PropType<import('..').SchemaConfig[]>;
464
464
  default: () => never[];
465
465
  };
466
466
  searchFieldList: {
@@ -481,12 +481,12 @@ export declare const JInputLayer: {
481
481
  }>, {
482
482
  getSearchFields: () => Record<string, any>[];
483
483
  }, {}, {}, {}, {
484
- columns: import('..').SchemaRuntimeConfig[];
484
+ columns: import('..').SchemaConfig[];
485
485
  searchFieldList: Record<string, any>[];
486
486
  }> | null;
487
487
  orderPanelRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
488
488
  columns: {
489
- type: import('vue').PropType<import('..').SchemaRuntimeConfig[]>;
489
+ type: import('vue').PropType<import('..').SchemaConfig[]>;
490
490
  default: () => never[];
491
491
  };
492
492
  }>> & Readonly<{
@@ -498,7 +498,7 @@ export declare const JInputLayer: {
498
498
  clear: (...args: any[]) => void;
499
499
  save: (...args: any[]) => void;
500
500
  }, import('vue').PublicProps, {
501
- columns: import('..').SchemaRuntimeConfig[];
501
+ columns: import('..').SchemaConfig[];
502
502
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
503
503
  P: {};
504
504
  B: {};
@@ -508,7 +508,7 @@ export declare const JInputLayer: {
508
508
  Defaults: {};
509
509
  }, Readonly<import('vue').ExtractPropTypes<{
510
510
  columns: {
511
- type: import('vue').PropType<import('..').SchemaRuntimeConfig[]>;
511
+ type: import('vue').PropType<import('..').SchemaConfig[]>;
512
512
  default: () => never[];
513
513
  };
514
514
  }>> & Readonly<{
@@ -517,11 +517,11 @@ export declare const JInputLayer: {
517
517
  }>, {
518
518
  init: (data: Record<string, any>[]) => void;
519
519
  }, {}, {}, {}, {
520
- columns: import('..').SchemaRuntimeConfig[];
520
+ columns: import('..').SchemaConfig[];
521
521
  }> | null;
522
522
  columnPanelRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
523
523
  columns: {
524
- type: import('vue').PropType<import('..').SchemaRuntimeConfig[]>;
524
+ type: import('vue').PropType<import('..').SchemaConfig[]>;
525
525
  default: () => never[];
526
526
  };
527
527
  columnConfig: {
@@ -534,7 +534,7 @@ export declare const JInputLayer: {
534
534
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
535
535
  save: (...args: any[]) => void;
536
536
  }, import('vue').PublicProps, {
537
- columns: import('..').SchemaRuntimeConfig[];
537
+ columns: import('..').SchemaConfig[];
538
538
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
539
539
  treeRef: unknown;
540
540
  }, HTMLDivElement, import('vue').ComponentProvideOptions, {
@@ -546,7 +546,7 @@ export declare const JInputLayer: {
546
546
  Defaults: {};
547
547
  }, Readonly<import('vue').ExtractPropTypes<{
548
548
  columns: {
549
- type: import('vue').PropType<import('..').SchemaRuntimeConfig[]>;
549
+ type: import('vue').PropType<import('..').SchemaConfig[]>;
550
550
  default: () => never[];
551
551
  };
552
552
  columnConfig: {
@@ -557,7 +557,7 @@ export declare const JInputLayer: {
557
557
  }>, {
558
558
  init: () => void;
559
559
  }, {}, {}, {}, {
560
- columns: import('..').SchemaRuntimeConfig[];
560
+ columns: import('..').SchemaConfig[];
561
561
  }> | null;
562
562
  tableRef: unknown;
563
563
  }, HTMLDivElement, import('vue').ComponentProvideOptions, {
@@ -569,7 +569,7 @@ export declare const JInputLayer: {
569
569
  Defaults: {};
570
570
  }, Readonly<import('vue').ExtractPropTypes<{
571
571
  columns: {
572
- type: import('vue').PropType<import('..').SchemaRuntimeConfig[]>;
572
+ type: import('vue').PropType<import('..').SchemaConfig[]>;
573
573
  required: true;
574
574
  default: () => never[];
575
575
  };
@@ -642,7 +642,7 @@ export declare const JInputLayer: {
642
642
  }, {}, {}, {}, {
643
643
  immediate: boolean;
644
644
  buttons: import('..').ButtonCompType[];
645
- columns: import('..').SchemaRuntimeConfig[];
645
+ columns: import('..').SchemaConfig[];
646
646
  isTree: boolean;
647
647
  isShowNumber: boolean;
648
648
  isMultiple: boolean;