@dazhicheng/ui 1.5.78 → 1.5.79

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.
@@ -124,7 +124,7 @@ export declare class FormApi {
124
124
  * 子类(如分组表单)可覆盖以同步清理虚拟校验缓存等。
125
125
  * @param {string[]} removedFieldNames 已从 schema 中移除的字段名
126
126
  */
127
- protected onRemovedSchemaFields(_removedFieldNames: string[]): void;
127
+ protected onRemovedSchemaFields(fieldNames: string[]): void;
128
128
  /**
129
129
  * store 更新后对比前后 `schema` 的 fieldName 集合,对已从 schema 中移除的字段清空 vee-validate 值与错误,
130
130
  * 避免 `removeFields` / 删项后 `getValues` 仍带出旧字段。