@economic/taco 2.49.0 → 2.49.1
Sign up to get free protection for your applications and to get access to all the features.
@@ -7,7 +7,7 @@ export declare type Table3Ref = TableRef & {
|
|
7
7
|
};
|
8
8
|
export declare type Table3EditingChangeHandler<TType = unknown> = (accessor: string, value: unknown, row: TType, prevRow: TType) => Promise<Partial<TType>> | undefined;
|
9
9
|
export declare type Table3EditingCreateHandler<TType = unknown> = () => Partial<TType>;
|
10
|
-
export declare type Table3EditingDiscardHandler = () =>
|
10
|
+
export declare type Table3EditingDiscardHandler = () => void;
|
11
11
|
export declare type Table3EditingSaveHandler<TType = unknown> = (row: TType) => Promise<void>;
|
12
12
|
export declare type Table3EditingValidatorFn<TType = unknown> = (row: TType) => Promise<Partial<Record<keyof TType, string>> | undefined> | Partial<Record<keyof TType, string>> | undefined;
|
13
13
|
export interface Table3FeatureProps<TType = unknown> extends TableFeatureProps<TType> {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@economic/taco",
|
3
|
-
"version": "2.49.
|
3
|
+
"version": "2.49.1",
|
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": "3c1eb44c8343c2a55971737457839e8f677be431"
|
134
134
|
}
|