@tactics/lokaal-loket 0.0.78 → 0.0.80
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +169 -169
- package/build/index.d.cts +9 -7
- package/build/index.d.ts +9 -7
- package/build/index.js +86 -86
- package/package.json +1 -1
package/build/index.d.cts
CHANGED
@@ -266,11 +266,11 @@ declare const AutocompleteInput: <T>(props: AutocompleteInputI<T> & {
|
|
266
266
|
ref?: Ref<HTMLInputElement>;
|
267
267
|
}) => JSX.Element;
|
268
268
|
|
269
|
+
declare const AutocompleteOptions: <T>(args: AutocompleteOptionsI<T>) => react_jsx_runtime.JSX.Element;
|
270
|
+
|
269
271
|
declare const AutocompleteOption: <T>(args: AutocompleteOptionI<T>) => react_jsx_runtime.JSX.Element;
|
270
272
|
declare const AutocompleteOptionSelected: <T>(args: AutocompleteOptionI<T>) => react_jsx_runtime.JSX.Element;
|
271
273
|
|
272
|
-
declare const AutocompleteOptions: <T>(args: AutocompleteOptionsI<T>) => react_jsx_runtime.JSX.Element;
|
273
|
-
|
274
274
|
interface IAutoCompleteBase<T> {
|
275
275
|
options: T[];
|
276
276
|
optionToDisplay: (option: T) => React$1.ReactNode;
|
@@ -1071,18 +1071,20 @@ declare const WizardControls: ({ next, back }: IWizardControls) => react_jsx_run
|
|
1071
1071
|
|
1072
1072
|
declare const Wizard: ({ children }: IWizard) => react_jsx_runtime.JSX.Element;
|
1073
1073
|
|
1074
|
-
interface
|
1075
|
-
mobileLabel: string;
|
1074
|
+
interface ISearchBase {
|
1076
1075
|
children: ReactElement<ISearchStep> | ReactElement<ISearchStep>[];
|
1077
1076
|
}
|
1078
|
-
interface
|
1079
|
-
|
1077
|
+
interface ISearch extends ISearchBase {
|
1078
|
+
mobileLabel: string;
|
1080
1079
|
}
|
1081
1080
|
interface ISearchStep {
|
1082
1081
|
label: string;
|
1083
1082
|
flyout: ReactElement;
|
1084
1083
|
withFigure: ReactElement<IFigure>;
|
1085
1084
|
}
|
1085
|
+
interface ISearchAutocomplete<T> {
|
1086
|
+
children: ReactElement<ISearchStepAutocomplete<T>>;
|
1087
|
+
}
|
1086
1088
|
interface ISearchStepAutocomplete<T> extends AutocompleteI<T> {
|
1087
1089
|
withFigure: ReactElement<IFigure>;
|
1088
1090
|
label: string;
|
@@ -1106,7 +1108,7 @@ declare const SearchStep: (props: ISearchStep) => null;
|
|
1106
1108
|
declare const SearchAutocompleteStep: (props: ISearchStepAutocomplete<any>) => null;
|
1107
1109
|
|
1108
1110
|
declare const Search: (props: ISearch) => react_jsx_runtime.JSX.Element;
|
1109
|
-
declare const SearchAutocomplete: (props: ISearchAutocomplete) => react_jsx_runtime.JSX.Element;
|
1111
|
+
declare const SearchAutocomplete: <T>(props: ISearchAutocomplete<T>) => react_jsx_runtime.JSX.Element;
|
1110
1112
|
|
1111
1113
|
interface IFlyoutArrangementSplit {
|
1112
1114
|
top?: React$1.ReactElement;
|
package/build/index.d.ts
CHANGED
@@ -266,11 +266,11 @@ declare const AutocompleteInput: <T>(props: AutocompleteInputI<T> & {
|
|
266
266
|
ref?: Ref<HTMLInputElement>;
|
267
267
|
}) => JSX.Element;
|
268
268
|
|
269
|
+
declare const AutocompleteOptions: <T>(args: AutocompleteOptionsI<T>) => react_jsx_runtime.JSX.Element;
|
270
|
+
|
269
271
|
declare const AutocompleteOption: <T>(args: AutocompleteOptionI<T>) => react_jsx_runtime.JSX.Element;
|
270
272
|
declare const AutocompleteOptionSelected: <T>(args: AutocompleteOptionI<T>) => react_jsx_runtime.JSX.Element;
|
271
273
|
|
272
|
-
declare const AutocompleteOptions: <T>(args: AutocompleteOptionsI<T>) => react_jsx_runtime.JSX.Element;
|
273
|
-
|
274
274
|
interface IAutoCompleteBase<T> {
|
275
275
|
options: T[];
|
276
276
|
optionToDisplay: (option: T) => React$1.ReactNode;
|
@@ -1071,18 +1071,20 @@ declare const WizardControls: ({ next, back }: IWizardControls) => react_jsx_run
|
|
1071
1071
|
|
1072
1072
|
declare const Wizard: ({ children }: IWizard) => react_jsx_runtime.JSX.Element;
|
1073
1073
|
|
1074
|
-
interface
|
1075
|
-
mobileLabel: string;
|
1074
|
+
interface ISearchBase {
|
1076
1075
|
children: ReactElement<ISearchStep> | ReactElement<ISearchStep>[];
|
1077
1076
|
}
|
1078
|
-
interface
|
1079
|
-
|
1077
|
+
interface ISearch extends ISearchBase {
|
1078
|
+
mobileLabel: string;
|
1080
1079
|
}
|
1081
1080
|
interface ISearchStep {
|
1082
1081
|
label: string;
|
1083
1082
|
flyout: ReactElement;
|
1084
1083
|
withFigure: ReactElement<IFigure>;
|
1085
1084
|
}
|
1085
|
+
interface ISearchAutocomplete<T> {
|
1086
|
+
children: ReactElement<ISearchStepAutocomplete<T>>;
|
1087
|
+
}
|
1086
1088
|
interface ISearchStepAutocomplete<T> extends AutocompleteI<T> {
|
1087
1089
|
withFigure: ReactElement<IFigure>;
|
1088
1090
|
label: string;
|
@@ -1106,7 +1108,7 @@ declare const SearchStep: (props: ISearchStep) => null;
|
|
1106
1108
|
declare const SearchAutocompleteStep: (props: ISearchStepAutocomplete<any>) => null;
|
1107
1109
|
|
1108
1110
|
declare const Search: (props: ISearch) => react_jsx_runtime.JSX.Element;
|
1109
|
-
declare const SearchAutocomplete: (props: ISearchAutocomplete) => react_jsx_runtime.JSX.Element;
|
1111
|
+
declare const SearchAutocomplete: <T>(props: ISearchAutocomplete<T>) => react_jsx_runtime.JSX.Element;
|
1110
1112
|
|
1111
1113
|
interface IFlyoutArrangementSplit {
|
1112
1114
|
top?: React$1.ReactElement;
|