@ttkj/avue 2.11.29 → 2.12.1

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.11.29",
3
+ "version": "2.12.1",
4
4
  "description": "A Magic Configurable Web Framework",
5
5
  "main": "lib/avue.min.js",
6
6
  "unpkg": "lib/avue.min.js",
package/types/avue.d.ts CHANGED
@@ -17,8 +17,6 @@ export interface InstallationOptions {
17
17
  * @since 2.11.12
18
18
  */
19
19
  detailPriority: 'global' | 'column';
20
- /** 表单项默认值是否触发change事件 */
21
- initValChange: boolean;
22
20
  /**
23
21
  * crud弹窗是否显示全屏切换按钮, 默认: true
24
22
  * @since 2.11.29
@@ -244,8 +244,6 @@ export interface FormBaseColumn {
244
244
  cascaderIndex?: number;
245
245
  /** 表单项数据模拟 */
246
246
  mock?: ColumnMock;
247
- /** 是否在创建完成时执行表单项组件的change事件 */
248
- initializedChange?: boolean;
249
247
  }
250
248
 
251
249
  /** 表单项列宽配置 */
@@ -30,10 +30,6 @@ export declare class AvueForm<T = Obj> extends AvueComponent {
30
30
  readonly option: FormOption<T>;
31
31
  /** 表单值 */
32
32
  readonly value: Obj;
33
- /** 是否在创建完成时执行表单项组件的change事件, 默认: true */
34
- initializedChange: boolean;
35
- /** 表单项默认值是否触发change事件, 默认: false */
36
- initValChange: boolean;
37
33
  /** 表单dic数据 */
38
34
  DIC: Record<string, Obj[]>;
39
35
  /**
@@ -52,8 +52,6 @@ export interface FormBaseOption {
52
52
  validateEvent: boolean;
53
53
  /** 默认的接口请求配置 */
54
54
  propsHttp: DicHttpProps;
55
- /** 是否在创建完成时执行表单项组件的change事件 */
56
- initializedChange?: boolean;
57
55
  }
58
56
 
59
57
  /** 表单组件菜单栏配置属性 */
package/types/global.d.ts CHANGED
@@ -181,7 +181,7 @@ declare module 'vue/types/vue' {
181
181
  */
182
182
  vaildData: <T = boolean>(valid?: T, defaultValid?: boolean) => boolean;
183
183
  /**
184
- * 将表单项所层列表转换为一层列
184
+ * 将所层列表转换为一层列
185
185
  * @since 2.10.10
186
186
  */
187
187
  flattenColumns: <T = AvueCrudColumn | AvueFormColumn>(list: T[]) => T[];