@tactics/lokaal-loket 0.0.92 → 0.0.93

Sign up to get free protection for your applications and to get access to all the features.
package/build/index.d.cts CHANGED
@@ -1016,6 +1016,7 @@ interface IHeaderTop {
1016
1016
  interface IHeaderBottom extends IHeaderMobile {
1017
1017
  navigation: React$1.ReactNode;
1018
1018
  brand: React$1.ReactNode;
1019
+ stickOnScroll: boolean;
1019
1020
  }
1020
1021
  interface IHeaderAlternate extends IHeaderMobile {
1021
1022
  navigation: React$1.ReactNode;
@@ -1025,6 +1026,8 @@ interface IHeaderAlternate extends IHeaderMobile {
1025
1026
  interface HeaderContextType {
1026
1027
  isSticky: boolean;
1027
1028
  setIsSticky: React$1.Dispatch<React$1.SetStateAction<boolean>>;
1029
+ showLogo: boolean;
1030
+ setShowLogo: React$1.Dispatch<React$1.SetStateAction<boolean>>;
1028
1031
  }
1029
1032
  declare const HeaderContext: React$1.Context<HeaderContextType>;
1030
1033
 
package/build/index.d.ts CHANGED
@@ -1016,6 +1016,7 @@ interface IHeaderTop {
1016
1016
  interface IHeaderBottom extends IHeaderMobile {
1017
1017
  navigation: React$1.ReactNode;
1018
1018
  brand: React$1.ReactNode;
1019
+ stickOnScroll: boolean;
1019
1020
  }
1020
1021
  interface IHeaderAlternate extends IHeaderMobile {
1021
1022
  navigation: React$1.ReactNode;
@@ -1025,6 +1026,8 @@ interface IHeaderAlternate extends IHeaderMobile {
1025
1026
  interface HeaderContextType {
1026
1027
  isSticky: boolean;
1027
1028
  setIsSticky: React$1.Dispatch<React$1.SetStateAction<boolean>>;
1029
+ showLogo: boolean;
1030
+ setShowLogo: React$1.Dispatch<React$1.SetStateAction<boolean>>;
1028
1031
  }
1029
1032
  declare const HeaderContext: React$1.Context<HeaderContextType>;
1030
1033