@ttkj/avue 2.11.5 → 2.11.6

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttkj/avue",
3
- "version": "2.11.5",
3
+ "version": "2.11.6",
4
4
  "description": "A Magic Configurable Web Framework",
5
5
  "main": "lib/avue.min.js",
6
6
  "unpkg": "lib/avue.min.js",
@@ -12,9 +12,9 @@ export type ComponentType = 'layout' | 'basic' | 'form';
12
12
 
13
13
  /**
14
14
  * 组件数据类型
15
- * @description 字符串(string) 数值(number) 数组(array) 对象(object)
15
+ * @description 字符串(string) 数值(number) 数组(array) JSON字符串(json) 对象(object)
16
16
  */
17
- export type ComponentDataType = 'string' | 'number' | 'array' | 'object';
17
+ export type ComponentDataType = 'string' | 'number' | 'array' | 'json' | 'object';
18
18
 
19
19
  /** 表单项数据模拟配置 */
20
20
  export type ColumnMock =