@cloudtower/eagle 490.0.2 → 490.0.4

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.
@@ -116,7 +116,7 @@ export interface ColumnBodyCellProps {
116
116
  validateTriggerType: ValidateTriggerType;
117
117
  isRowError: boolean;
118
118
  getRowValidateResult: (rowData: DataType) => string | undefined;
119
- validateAll: boolean;
119
+ validateAllCount: number;
120
120
  error?: string | null;
121
121
  onValidate?: (id: string, isValid: boolean) => void;
122
122
  }
@@ -141,7 +141,7 @@ export interface TableFormRowsProps extends Pick<TableFormProps, "columns" | "di
141
141
  latestData: DataType[];
142
142
  updateData: (data: DataType[]) => void;
143
143
  passwordVisible: boolean;
144
- validateAll: boolean;
144
+ validateAllCount: number;
145
145
  draggable?: boolean;
146
146
  rowSplitType?: TableFormRowSplitType;
147
147
  onValidate?: (id: string, isValid: boolean) => void;