@tactics/lokaal-loket 0.0.309 → 0.0.311
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +657 -644
- package/build/index.d.cts +3 -1
- package/build/index.d.ts +3 -1
- package/build/index.js +657 -644
- package/package.json +1 -1
package/build/index.d.cts
CHANGED
@@ -1474,7 +1474,9 @@ interface IBottomNavigationBase {
|
|
1474
1474
|
declare const BottomNavigation: ({ children }: IBottomNavigation) => react_jsx_runtime.JSX.Element;
|
1475
1475
|
|
1476
1476
|
interface IForm extends PropsWithChildren {
|
1477
|
-
onSubmit: (
|
1477
|
+
onSubmit: (data: FormData) => void;
|
1478
|
+
autocomplete?: boolean;
|
1479
|
+
novalidate?: boolean;
|
1478
1480
|
}
|
1479
1481
|
|
1480
1482
|
interface FormHandle {
|
package/build/index.d.ts
CHANGED
@@ -1474,7 +1474,9 @@ interface IBottomNavigationBase {
|
|
1474
1474
|
declare const BottomNavigation: ({ children }: IBottomNavigation) => react_jsx_runtime.JSX.Element;
|
1475
1475
|
|
1476
1476
|
interface IForm extends PropsWithChildren {
|
1477
|
-
onSubmit: (
|
1477
|
+
onSubmit: (data: FormData) => void;
|
1478
|
+
autocomplete?: boolean;
|
1479
|
+
novalidate?: boolean;
|
1478
1480
|
}
|
1479
1481
|
|
1480
1482
|
interface FormHandle {
|