@selfdecode/sd-component-library 2.45.7 → 2.46.2

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 +1,2 @@
1
1
  export { NavbarPresentational as Navbar, getLabShopsUrlProps, } from "./presentational";
2
+ export * from "./partials";
@@ -0,0 +1 @@
1
+ export * from "./navbar-v1";
@@ -1 +1,2 @@
1
1
  export { NavbarV1Presentational as NavbarV1 } from "./presentational";
2
+ export * from "./partials";
@@ -0,0 +1 @@
1
+ export * from "./navbar-mobile-v1";
@@ -1 +1,2 @@
1
1
  export { NavbarMobileV1Presentational as NavbarMobileV1 } from "./presentational";
2
+ export * from "./partials";
@@ -1 +1,2 @@
1
1
  export { UpdatedNavbar } from "./updated-navbar";
2
+ export * from "./partials";
@@ -0,0 +1,2 @@
1
+ export * from "./updated-navbar-mobile";
2
+ export * from "./updated-navbar-desktop";
@@ -1 +1,2 @@
1
1
  export { UpdatedNavbarMobile } from "./updated-navbar-mobile";
2
+ export * from "./partials";
@@ -0,0 +1,4 @@
1
+ export * from "./unfolded-navbar-container";
2
+ export * from "./updated-navbar-folded";
3
+ export * from "./updated-navbar-search";
4
+ export * from "./updated-navbar-navigation";
@@ -1 +1,2 @@
1
1
  export { UpdatedNavbarNavigation } from "./updated-navbar-navigation";
2
+ export * from "./partials";
@@ -0,0 +1,5 @@
1
+ export { UnfoldedItemRow } from "./unfolded-item-row";
2
+ export { ItemRow } from "./item-row";
3
+ export { UnfoldedItem } from "./unfolded-item";
4
+ export { SecondaryFoldedItem } from "./secondary-folded-item";
5
+ export { PrimaryFoldedItem } from "./primary-folded-item";
@@ -5,4 +5,5 @@ export interface PrimaryFoldedItemProps {
5
5
  isInternal?: boolean;
6
6
  items?: UpdatedMenuRowProps[];
7
7
  onClick?: () => void;
8
+ active?: boolean;
8
9
  }
@@ -3,4 +3,5 @@ import { UpdatedNavbarProps } from "../../../../interfaces";
3
3
  export interface UpdatedNavbarSearchProps extends Pick<UpdatedNavbarProps, "searchResults" | "searchValue" | "onSearch">, Pick<UnfoldedNavbarContainerProps, "onMaskClick"> {
4
4
  hideSearch: () => void;
5
5
  showNavigation: () => void;
6
+ title?: string;
6
7
  }
package/lib/index.d.ts CHANGED
@@ -198,8 +198,8 @@ export { ReactElementTooltip } from "./components/tooltips/react-element-tooltip
198
198
  export { ActionsTooltip } from "./components/tooltips/actions-tooltip";
199
199
  export { TooltipWithPointer } from "./components/tooltips/tooltip-with-pointer";
200
200
  export { Footer } from "./components/complex/footer";
201
- export { Navbar, getLabShopsUrlProps } from "./components/complex/navbar";
202
- export { UpdatedNavbar } from "./components/complex/updated-navbar";
201
+ export * from "./components/complex/navbar";
202
+ export * from "./components/complex/updated-navbar";
203
203
  export { Anchor } from "./components/utils/anchor";
204
204
  export { PageTracker } from "./components/utils/page-tracker";
205
205
  export { ScrollToTop } from "./components/utils/scroll-to-top";