@tactics/lokaal-loket 0.0.164 → 0.0.166
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +508 -508
- package/build/index.d.cts +2 -0
- package/build/index.d.ts +2 -0
- package/build/index.js +412 -412
- package/package.json +1 -1
package/build/index.d.cts
CHANGED
@@ -1212,6 +1212,7 @@ declare const Wizard: ({ children }: IWizard) => react_jsx_runtime.JSX.Element;
|
|
1212
1212
|
|
1213
1213
|
interface ISearchBase {
|
1214
1214
|
children: ReactElement<ISearchStep> | ReactElement<ISearchStep>[];
|
1215
|
+
onSubmit?: (e: React$1.MouseEvent<HTMLDivElement, MouseEvent>) => void;
|
1215
1216
|
}
|
1216
1217
|
interface ISearch extends ISearchBase {
|
1217
1218
|
mobileLabel: string;
|
@@ -1225,6 +1226,7 @@ interface ISearchStep {
|
|
1225
1226
|
}
|
1226
1227
|
interface ISearchAutocomplete<T> {
|
1227
1228
|
children: ReactElement<ISearchStepAutocomplete<T>>;
|
1229
|
+
onSubmit?: (e: React$1.MouseEvent<HTMLDivElement, MouseEvent>, value: string) => void;
|
1228
1230
|
}
|
1229
1231
|
interface ISearchStepAutocomplete<T> extends AutocompleteI<T> {
|
1230
1232
|
withFigure: ReactElement<IFigure>;
|
package/build/index.d.ts
CHANGED
@@ -1212,6 +1212,7 @@ declare const Wizard: ({ children }: IWizard) => react_jsx_runtime.JSX.Element;
|
|
1212
1212
|
|
1213
1213
|
interface ISearchBase {
|
1214
1214
|
children: ReactElement<ISearchStep> | ReactElement<ISearchStep>[];
|
1215
|
+
onSubmit?: (e: React$1.MouseEvent<HTMLDivElement, MouseEvent>) => void;
|
1215
1216
|
}
|
1216
1217
|
interface ISearch extends ISearchBase {
|
1217
1218
|
mobileLabel: string;
|
@@ -1225,6 +1226,7 @@ interface ISearchStep {
|
|
1225
1226
|
}
|
1226
1227
|
interface ISearchAutocomplete<T> {
|
1227
1228
|
children: ReactElement<ISearchStepAutocomplete<T>>;
|
1229
|
+
onSubmit?: (e: React$1.MouseEvent<HTMLDivElement, MouseEvent>, value: string) => void;
|
1228
1230
|
}
|
1229
1231
|
interface ISearchStepAutocomplete<T> extends AutocompleteI<T> {
|
1230
1232
|
withFigure: ReactElement<IFigure>;
|