@ttkj/avue 2.11.0 → 2.11.1
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/avue.js +2 -2
- package/lib/avue.min.js +2 -2
- package/package.json +1 -1
- package/types/crud/column.d.ts +1 -1
package/package.json
CHANGED
package/types/crud/column.d.ts
CHANGED
@@ -333,7 +333,7 @@ export interface CrudFormColumnEvent<T = Obj> {
|
|
333
333
|
* @example https://avuejs.com/form/form-control.html
|
334
334
|
* @since 2.8.6
|
335
335
|
*/
|
336
|
-
control: (value: any, form: T) => Record<string, Partial<AvueFormColumn>>;
|
336
|
+
control: (value: any, form: T, tableData: Omit<CrudColumnEventParams<T> | FormColumnEventParams<T>, 'event'>) => Record<string, Partial<AvueFormColumn>>;
|
337
337
|
/**
|
338
338
|
* 点击事件
|
339
339
|
* @description 当且仅当列为行编辑模式时为CrudColumnEventParams<T>
|