@a2simcode/ui 0.0.39 → 0.0.40

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,8 +1,4 @@
1
1
  export interface BaseSchemaConfig {
2
- /**
3
- * @zh id
4
- */
5
- id: string;
6
2
  /**
7
3
  * @zh 插槽名称
8
4
  */
@@ -35,6 +31,10 @@ export interface BaseCompConfig {
35
31
  [propName: string]: any;
36
32
  }
37
33
  export interface TabsSchemaConfig extends BaseSchemaConfig {
34
+ /**
35
+ * @zh id
36
+ */
37
+ id: string;
38
38
  /**
39
39
  * @zh 组件类型
40
40
  */
@@ -45,6 +45,10 @@ export interface TabsSchemaConfig extends BaseSchemaConfig {
45
45
  children?: TabPaneSchemaConfig[];
46
46
  }
47
47
  export interface TabPaneSchemaConfig extends BaseSchemaConfig {
48
+ /**
49
+ * @zh id
50
+ */
51
+ id: string;
48
52
  /**
49
53
  * @zh 组件类型
50
54
  */
@@ -62,6 +66,10 @@ export interface TabPaneSchemaConfig extends BaseSchemaConfig {
62
66
  children?: SchemaConfig[];
63
67
  }
64
68
  export interface GeneralSchemaConfig extends BaseSchemaConfig {
69
+ /**
70
+ * @zh id
71
+ */
72
+ id: string;
65
73
  /**
66
74
  * @zh 组件类型
67
75
  */
@@ -72,6 +80,10 @@ export interface GeneralSchemaConfig extends BaseSchemaConfig {
72
80
  children?: SchemaConfig[];
73
81
  }
74
82
  export interface CollapseSchemaConfig extends BaseSchemaConfig {
83
+ /**
84
+ * @zh id
85
+ */
86
+ id: string;
75
87
  /**
76
88
  * @zh 组件类型
77
89
  */
@@ -82,6 +94,10 @@ export interface CollapseSchemaConfig extends BaseSchemaConfig {
82
94
  children?: CollapseItemSchemaConfig[];
83
95
  }
84
96
  export interface CollapseItemSchemaConfig extends BaseSchemaConfig {
97
+ /**
98
+ * @zh id
99
+ */
100
+ id: string;
85
101
  /**
86
102
  * @zh 组件类型
87
103
  */
@@ -1,5 +1,9 @@
1
1
  import { BaseSchemaConfig, BaseCompConfig } from '../../comp/src/interface';
2
2
  export interface FormSchemaConfig extends BaseSchemaConfig {
3
+ /**
4
+ * @zh id
5
+ */
6
+ id?: string;
3
7
  /**
4
8
  * @zh 组件类型
5
9
  */
@@ -1,5 +1,9 @@
1
1
  import { BaseSchemaConfig } from '../../comp/src/interface';
2
2
  export interface PageSchemaConfig extends BaseSchemaConfig {
3
+ /**
4
+ * @zh id
5
+ */
6
+ id?: string;
3
7
  /**
4
8
  * @zh 类型
5
9
  */
@@ -66,6 +66,10 @@ export interface TableColumnSorter {
66
66
  isNot?: boolean;
67
67
  }
68
68
  export interface ColumnSchemaConfig extends BaseSchemaConfig {
69
+ /**
70
+ * @zh id
71
+ */
72
+ id: string;
69
73
  /**
70
74
  * @zh 类型
71
75
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@a2simcode/ui",
3
- "version": "0.0.39",
3
+ "version": "0.0.40",
4
4
  "description": "A Vue 3 UI Component Library",
5
5
  "type": "module",
6
6
  "main": "./dist/simcode-ui.umd.js",