@ttkj/avue 2.10.21 → 2.10.22

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttkj/avue",
3
- "version": "2.10.21",
3
+ "version": "2.10.22",
4
4
  "description": "A Magic Configurable Web Framework",
5
5
  "main": "lib/avue.min.js",
6
6
  "unpkg": "lib/avue.min.js",
@@ -70,10 +70,14 @@ export declare class AvueForm<T = Obj> extends AvueComponent {
70
70
  export interface FormNormalScope<T = any, D = Obj> {
71
71
  /** 表单值 */
72
72
  value: T;
73
+ /** 选中值,仅适用于涉及字典的组件 */
74
+ label?: string;
73
75
  /** 列配置 */
74
76
  column: AvueCrudColumn;
75
77
  /** 大小 */
76
78
  size: AvueComponentSize;
79
+ /** 是否只读 */
80
+ readonly?: boolean;
77
81
  /** 是否禁用 */
78
82
  disabled: boolean;
79
83
  /** 表单数据 */