@tactics/lokaal-loket 0.0.117 → 0.0.120
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.cjs +614 -608
- package/build/index.d.cts +3 -2
- package/build/index.d.ts +3 -2
- package/build/index.js +439 -433
- package/package.json +19 -19
package/build/index.d.cts
CHANGED
@@ -934,7 +934,6 @@ interface INavigationBase {
|
|
934
934
|
}
|
935
935
|
interface INavigationItem {
|
936
936
|
label: string;
|
937
|
-
icon: IconType;
|
938
937
|
href: string;
|
939
938
|
onClick?: React$1.MouseEventHandler<HTMLAnchorElement>;
|
940
939
|
isActive?: boolean;
|
@@ -942,7 +941,7 @@ interface INavigationItem {
|
|
942
941
|
|
943
942
|
declare const Navigation: {
|
944
943
|
({ children, logo }: INavigation): react_jsx_runtime.JSX.Element;
|
945
|
-
Item: ({ label,
|
944
|
+
Item: ({ label, onClick, isActive, href }: INavigationItem) => react_jsx_runtime.JSX.Element;
|
946
945
|
};
|
947
946
|
|
948
947
|
declare enum ItemType {
|
@@ -1183,6 +1182,7 @@ interface ISearchBase {
|
|
1183
1182
|
}
|
1184
1183
|
interface ISearch extends ISearchBase {
|
1185
1184
|
mobileLabel: string;
|
1185
|
+
mobileSubline: string;
|
1186
1186
|
}
|
1187
1187
|
interface ISearchStep {
|
1188
1188
|
label: string;
|
@@ -1196,6 +1196,7 @@ interface ISearchAutocomplete<T> {
|
|
1196
1196
|
interface ISearchStepAutocomplete<T> extends AutocompleteI<T> {
|
1197
1197
|
withFigure: ReactElement<IFigure>;
|
1198
1198
|
label: string;
|
1199
|
+
subline: string;
|
1199
1200
|
}
|
1200
1201
|
interface ISearchStepAutocomplete<T> {
|
1201
1202
|
options: T[];
|
package/build/index.d.ts
CHANGED
@@ -934,7 +934,6 @@ interface INavigationBase {
|
|
934
934
|
}
|
935
935
|
interface INavigationItem {
|
936
936
|
label: string;
|
937
|
-
icon: IconType;
|
938
937
|
href: string;
|
939
938
|
onClick?: React$1.MouseEventHandler<HTMLAnchorElement>;
|
940
939
|
isActive?: boolean;
|
@@ -942,7 +941,7 @@ interface INavigationItem {
|
|
942
941
|
|
943
942
|
declare const Navigation: {
|
944
943
|
({ children, logo }: INavigation): react_jsx_runtime.JSX.Element;
|
945
|
-
Item: ({ label,
|
944
|
+
Item: ({ label, onClick, isActive, href }: INavigationItem) => react_jsx_runtime.JSX.Element;
|
946
945
|
};
|
947
946
|
|
948
947
|
declare enum ItemType {
|
@@ -1183,6 +1182,7 @@ interface ISearchBase {
|
|
1183
1182
|
}
|
1184
1183
|
interface ISearch extends ISearchBase {
|
1185
1184
|
mobileLabel: string;
|
1185
|
+
mobileSubline: string;
|
1186
1186
|
}
|
1187
1187
|
interface ISearchStep {
|
1188
1188
|
label: string;
|
@@ -1196,6 +1196,7 @@ interface ISearchAutocomplete<T> {
|
|
1196
1196
|
interface ISearchStepAutocomplete<T> extends AutocompleteI<T> {
|
1197
1197
|
withFigure: ReactElement<IFigure>;
|
1198
1198
|
label: string;
|
1199
|
+
subline: string;
|
1199
1200
|
}
|
1200
1201
|
interface ISearchStepAutocomplete<T> {
|
1201
1202
|
options: T[];
|