@socotra/ec-react-components 2.25.0-next.9 → 2.25.0
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/index.d.ts +2 -2
- package/dist/index.es.js +28496 -28705
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +94 -94
- package/dist/index.umd.js.map +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -290,13 +290,13 @@ declare type Props = (BaseProps & {
|
|
|
290
290
|
/**
|
|
291
291
|
* The function to call when the form is submitted. It will create an AccountUpdateRequest from the form data.
|
|
292
292
|
*/
|
|
293
|
-
handleSubmit: (data: AccountUpdateRequest) => void;
|
|
293
|
+
handleSubmit: (data: AccountUpdateRequest, partialUpdate?: boolean) => void;
|
|
294
294
|
}) | (BaseProps & {
|
|
295
295
|
/**
|
|
296
296
|
* The function to call when the form is submitted. It will create an AccountCreateRequest from the form data.
|
|
297
297
|
*/
|
|
298
298
|
account: undefined;
|
|
299
|
-
handleSubmit: (data: AccountCreateRequest) => void;
|
|
299
|
+
handleSubmit: (data: AccountCreateRequest, partialUpdate?: boolean) => void;
|
|
300
300
|
});
|
|
301
301
|
|
|
302
302
|
declare type Props_10 = {
|