@selfdecode/sd-component-library 2.46.5 → 2.46.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,2 +1,2 @@
1
- export { NavbarPresentational as Navbar, getLabShopsUrlProps, } from "./presentational";
1
+ export * from "./presentational";
2
2
  export * from "./partials";
@@ -1 +1,2 @@
1
1
  export * from "./navbar-v1";
2
+ export * from "./navbar-v2";
@@ -1 +1,2 @@
1
1
  export { NavbarV2Presentational as NavbarV2 } from "./presentational";
2
+ export * from "./partials";
@@ -0,0 +1 @@
1
+ export type { NavItem as NavItemConfig } from "./interfaces";
@@ -1,4 +1,4 @@
1
- import { NavbarProps } from "../../../presentational/interfaces";
1
+ import { NavbarProps } from "../../../presentational";
2
2
  import { NavItem } from "../partials/interfaces";
3
3
  export declare type NavbarV2PresentationalProps = Pick<NavbarProps, "history" | "unsubscribedUser" | "onSearch" | "searchResults" | "itemsInCart" | "onClickCartIcon" | "isLegacy" | "borderBottomColor" | "onClickSearch" | "useRouterLinks" | "hideSearch" | "searchValue"> & {
4
4
  /**
@@ -1,2 +1,4 @@
1
- export { NavbarPresentational } from "./navbar-presentational";
1
+ export { NavbarPresentational as Navbar } from "./navbar-presentational";
2
2
  export { getLabShopsUrlProps } from "./url-utils";
3
+ export type { NavbarProps } from "./interfaces";
4
+ export { getNativeLanguageName } from "./language-mapping";
package/lib/index.d.ts CHANGED
@@ -43,6 +43,7 @@ export { PoweredByGreyLogoButton } from "./components/buttons/logos/powered-by-g
43
43
  export { PoweredByWhiteLogoButton } from "./components/buttons/logos/powered-by-white-logo";
44
44
  export { RadioInfoButton } from "./components/buttons/radio-info-button";
45
45
  export { RoundIconButton } from "./components/buttons/round-icon-button";
46
+ export { NavbarLogoButton } from "./components/buttons/logos/navbar-logo";
46
47
  export { RoundCard } from "./components/cards/round-card";
47
48
  export { Checkbox } from "./components/checkboxes/checkbox";
48
49
  export { PartialCheckbox } from "./components/checkboxes/partial-checkbox";