@economic/taco 2.31.0 → 2.32.0
Sign up to get free protection for your applications and to get access to all the features.
@@ -13,15 +13,15 @@ declare type TableWithEditingProps<TType> = TableProps<TType> & {
|
|
13
13
|
enableEditing?: boolean;
|
14
14
|
onSave?: Table3EditingSaveHandler<TType>;
|
15
15
|
};
|
16
|
-
declare type
|
16
|
+
export declare type Table3WithValidationProps<TType> = TableWithEditingProps<TType> & {
|
17
17
|
validator: Table3EditingValidatorFn<TType>;
|
18
18
|
rowIdentityColumnId: Required<TableProps<TType>['rowIdentityColumnId']>;
|
19
19
|
};
|
20
|
-
declare type
|
20
|
+
export declare type Table3WithoutValidationProps<TType> = TableWithEditingProps<TType> & {
|
21
21
|
validator?: never;
|
22
22
|
rowIdentityColumnId?: never;
|
23
23
|
};
|
24
|
-
export declare type Table3Props<TType = unknown> =
|
24
|
+
export declare type Table3Props<TType = unknown> = Table3WithValidationProps<TType> | Table3WithoutValidationProps<TType>;
|
25
25
|
export declare type Table3ColumnProps<TType = unknown> = TableColumnProps<TType>;
|
26
26
|
export declare type Table3GroupProps = TableGroupProps;
|
27
27
|
export declare type Table3Texts = {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@economic/taco",
|
3
|
-
"version": "2.
|
3
|
+
"version": "2.32.0",
|
4
4
|
"description": "> TODO: description",
|
5
5
|
"author": "Matt Daly <matthew.daly@visma.com>",
|
6
6
|
"homepage": "https://github.com/e-conomic/taco#readme",
|
@@ -130,5 +130,5 @@
|
|
130
130
|
"not ie < 11"
|
131
131
|
]
|
132
132
|
},
|
133
|
-
"gitHead": "
|
133
|
+
"gitHead": "a201289aabed861d31780a8f13ce49972b7837f5"
|
134
134
|
}
|