@tactics/lokaal-loket 0.0.77 → 0.0.78
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +132 -132
- package/build/index.d.cts +7 -7
- package/build/index.d.ts +7 -7
- package/build/index.js +84 -84
- package/package.json +1 -1
package/build/index.d.cts
CHANGED
@@ -1073,27 +1073,27 @@ declare const Wizard: ({ children }: IWizard) => react_jsx_runtime.JSX.Element;
|
|
1073
1073
|
|
1074
1074
|
interface ISearch {
|
1075
1075
|
mobileLabel: string;
|
1076
|
-
children:
|
1076
|
+
children: ReactElement<ISearchStep> | ReactElement<ISearchStep>[];
|
1077
1077
|
}
|
1078
1078
|
interface ISearchAutocomplete {
|
1079
|
-
children:
|
1079
|
+
children: ReactElement<ISearchStepAutocomplete<any>>;
|
1080
1080
|
}
|
1081
1081
|
interface ISearchStep {
|
1082
1082
|
label: string;
|
1083
|
-
flyout:
|
1084
|
-
withFigure:
|
1083
|
+
flyout: ReactElement;
|
1084
|
+
withFigure: ReactElement<IFigure>;
|
1085
1085
|
}
|
1086
1086
|
interface ISearchStepAutocomplete<T> extends AutocompleteI<T> {
|
1087
|
-
withFigure:
|
1087
|
+
withFigure: ReactElement<IFigure>;
|
1088
1088
|
label: string;
|
1089
1089
|
}
|
1090
1090
|
interface ISearchStepAutocomplete<T> {
|
1091
1091
|
options: T[];
|
1092
|
-
optionToDisplay: (option: T) =>
|
1092
|
+
optionToDisplay: (option: T) => ReactNode;
|
1093
1093
|
optionToRawValue: (option: T) => string;
|
1094
1094
|
optionToLabel: (option: T) => string;
|
1095
1095
|
label: string;
|
1096
|
-
withFigure:
|
1096
|
+
withFigure: ReactElement<IFigure>;
|
1097
1097
|
defaultValue?: string;
|
1098
1098
|
onChange?: (e: AutocompleteChangeEvent) => void;
|
1099
1099
|
onFocus?: (e: AutocompleteFocusEvent) => void;
|
package/build/index.d.ts
CHANGED
@@ -1073,27 +1073,27 @@ declare const Wizard: ({ children }: IWizard) => react_jsx_runtime.JSX.Element;
|
|
1073
1073
|
|
1074
1074
|
interface ISearch {
|
1075
1075
|
mobileLabel: string;
|
1076
|
-
children:
|
1076
|
+
children: ReactElement<ISearchStep> | ReactElement<ISearchStep>[];
|
1077
1077
|
}
|
1078
1078
|
interface ISearchAutocomplete {
|
1079
|
-
children:
|
1079
|
+
children: ReactElement<ISearchStepAutocomplete<any>>;
|
1080
1080
|
}
|
1081
1081
|
interface ISearchStep {
|
1082
1082
|
label: string;
|
1083
|
-
flyout:
|
1084
|
-
withFigure:
|
1083
|
+
flyout: ReactElement;
|
1084
|
+
withFigure: ReactElement<IFigure>;
|
1085
1085
|
}
|
1086
1086
|
interface ISearchStepAutocomplete<T> extends AutocompleteI<T> {
|
1087
|
-
withFigure:
|
1087
|
+
withFigure: ReactElement<IFigure>;
|
1088
1088
|
label: string;
|
1089
1089
|
}
|
1090
1090
|
interface ISearchStepAutocomplete<T> {
|
1091
1091
|
options: T[];
|
1092
|
-
optionToDisplay: (option: T) =>
|
1092
|
+
optionToDisplay: (option: T) => ReactNode;
|
1093
1093
|
optionToRawValue: (option: T) => string;
|
1094
1094
|
optionToLabel: (option: T) => string;
|
1095
1095
|
label: string;
|
1096
|
-
withFigure:
|
1096
|
+
withFigure: ReactElement<IFigure>;
|
1097
1097
|
defaultValue?: string;
|
1098
1098
|
onChange?: (e: AutocompleteChangeEvent) => void;
|
1099
1099
|
onFocus?: (e: AutocompleteFocusEvent) => void;
|