@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.
- package/dist/cjs/core/TableForm/TableFormBodyCell.js +7 -15
- package/dist/cjs/core/TableForm/TableFormBodyRows.js +2 -2
- package/dist/cjs/core/TableForm/index.js +3 -3
- package/dist/cjs/stats1.html +1 -1
- package/dist/components.css +1675 -1675
- package/dist/esm/core/TableForm/TableFormBodyCell.js +8 -16
- package/dist/esm/core/TableForm/TableFormBodyRows.js +2 -2
- package/dist/esm/core/TableForm/index.js +3 -3
- package/dist/esm/stats1.html +1 -1
- package/dist/linaria.merged.scss +3379 -3379
- package/dist/src/core/TableForm/types.d.ts +2 -2
- package/dist/style.css +1675 -1675
- package/package.json +4 -4
|
@@ -116,7 +116,7 @@ export interface ColumnBodyCellProps {
|
|
|
116
116
|
validateTriggerType: ValidateTriggerType;
|
|
117
117
|
isRowError: boolean;
|
|
118
118
|
getRowValidateResult: (rowData: DataType) => string | undefined;
|
|
119
|
-
|
|
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
|
-
|
|
144
|
+
validateAllCount: number;
|
|
145
145
|
draggable?: boolean;
|
|
146
146
|
rowSplitType?: TableFormRowSplitType;
|
|
147
147
|
onValidate?: (id: string, isValid: boolean) => void;
|