@wavy/react-ui 0.0.53 → 0.0.54
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/main.d.ts +1 -0
- package/dist/main.js +5 -5
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -3362,6 +3362,7 @@ declare function useStore<T extends NonFunction<any>>(options: {
|
|
|
3362
3362
|
*/
|
|
3363
3363
|
onValidationFail?: (value: T) => void;
|
|
3364
3364
|
onChange?: (currentValue: T, previousValue: T) => void;
|
|
3365
|
+
onDelete?: (deletedValue: T, previousValue: T) => void;
|
|
3365
3366
|
/** Transform the updated value before the onChange method is called*/
|
|
3366
3367
|
transform?: (value: T) => T;
|
|
3367
3368
|
}): {
|