@tactics/lokaal-loket 0.0.397 → 0.0.399
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/build/index.cjs +2 -2
- package/build/index.d.cts +1 -1
- package/build/index.d.ts +1 -1
- package/build/index.js +2 -2
- package/package.json +1 -1
package/build/index.d.cts
CHANGED
@@ -1661,7 +1661,7 @@ interface IBottomNavigationBase {
|
|
1661
1661
|
declare const BottomNavigation: ({ children }: IBottomNavigation) => react_jsx_runtime.JSX.Element;
|
1662
1662
|
|
1663
1663
|
interface IForm extends PropsWithChildren {
|
1664
|
-
onSubmit: (data: FormData) => void;
|
1664
|
+
onSubmit: (data: FormData, event?: React__default.FormEvent<HTMLFormElement>) => void;
|
1665
1665
|
autocomplete?: boolean;
|
1666
1666
|
novalidate?: boolean;
|
1667
1667
|
}
|
package/build/index.d.ts
CHANGED
@@ -1661,7 +1661,7 @@ interface IBottomNavigationBase {
|
|
1661
1661
|
declare const BottomNavigation: ({ children }: IBottomNavigation) => react_jsx_runtime.JSX.Element;
|
1662
1662
|
|
1663
1663
|
interface IForm extends PropsWithChildren {
|
1664
|
-
onSubmit: (data: FormData) => void;
|
1664
|
+
onSubmit: (data: FormData, event?: React__default.FormEvent<HTMLFormElement>) => void;
|
1665
1665
|
autocomplete?: boolean;
|
1666
1666
|
novalidate?: boolean;
|
1667
1667
|
}
|