@a2simcode/ui 0.0.293 → 0.0.294

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.
@@ -3,8 +3,8 @@ export default {
3
3
  {
4
4
  "name": "modelValue",
5
5
  "description": "输入值",
6
- "type": "string | number | boolean | any[] | Record<string, any>",
7
- "default": "undefined"
6
+ "type": "string | number | boolean | any[] | Record<string, any> | symbol",
7
+ "default": "MODEL_VALUE_UNSET"
8
8
  },
9
9
  {
10
10
  "name": "id",
@@ -157,7 +157,7 @@ export default {
157
157
  {
158
158
  "name": "actionFilter",
159
159
  "description": "行内操作按钮过滤方法",
160
- "type": "(params: {\r\n action: ButtonCompType\r\n record: Record<string, any>\r\n recordIndex: number\r\n col: number\r\n row: number\r\n table: any\r\n}) =>\r\n | boolean\r\n | {\r\n display?: boolean\r\n disabled?: boolean\r\n }\r\n | null\r\n | undefined",
160
+ "type": "(params: {\n action: ButtonCompType\n record: Record<string, any>\n recordIndex: number\n col: number\n row: number\n table: any\n}) =>\n | boolean\n | {\n display?: boolean\n disabled?: boolean\n }\n | null\n | undefined",
161
161
  "default": "null"
162
162
  },
163
163
  {
@@ -37,7 +37,7 @@ export default {
37
37
  "name": "props",
38
38
  "description": "配置选项,定义树形节点的相关字段,如 children、label、value 等",
39
39
  "type": "Record",
40
- "default": "() => ({\r\n children: 'children',\r\n label: 'label',\r\n value: 'value',\r\n})"
40
+ "default": "() => ({\n children: 'children',\n label: 'label',\n value: 'value',\n})"
41
41
  },
42
42
  {
43
43
  "name": "size",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@a2simcode/ui",
3
- "version": "0.0.293",
3
+ "version": "0.0.294",
4
4
  "description": "A Vue 3 UI Component Library",
5
5
  "type": "module",
6
6
  "main": "./dist/simcode-ui.umd.js",