@selfdecode/sd-component-library 2.43.5 → 2.43.9

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.
Files changed (44) hide show
  1. package/lib/c801ade937bddadb73cb5b241c151ab6.svg +13 -0
  2. package/lib/components/complex/navbar/index.d.ts +1 -1
  3. package/lib/components/complex/navbar/presentational/constants-v3.d.ts +1 -1
  4. package/lib/components/complex/navbar/presentational/index.d.ts +1 -0
  5. package/lib/components/complex/navbar/presentational/interfaces.d.ts +0 -1
  6. package/lib/components/containers/grid-containers/grid-container-v2/grid-container-v2.d.ts +3 -0
  7. package/lib/components/containers/grid-containers/grid-container-v2/index.d.ts +1 -0
  8. package/lib/components/containers/grid-containers/grid-container-v2/interfaces.d.ts +15 -0
  9. package/lib/components/meters/outline-meter/partials/base-meter-label-box/interfaces.d.ts +1 -1
  10. package/lib/components/meters/outline-meter/partials/outline-meter-label-box/interfaces.d.ts +1 -1
  11. package/lib/components/meters/outline-meter/partials/outline-meter-range/interfaces.d.ts +2 -1
  12. package/lib/components/meters/outline-meter/utils.d.ts +2 -1
  13. package/lib/components/meters/smiley-meter-v2/assets/index.d.ts +1 -0
  14. package/lib/components/meters/smiley-meter-v2/assets/neutral-smiley.svg +13 -0
  15. package/lib/components/meters/smiley-meter-v2/interfaces.d.ts +3 -3
  16. package/lib/components/meters/smiley-meter-v2/partials/smiley-meter-ranges/interfaces.d.ts +0 -1
  17. package/lib/components/selectors/primary-selector-v2/index.d.ts +1 -0
  18. package/lib/components/selectors/primary-selector-v2/interfaces.d.ts +2 -0
  19. package/lib/components/selectors/primary-selector-v2/primary-selector-v2.d.ts +3 -0
  20. package/lib/components/selectors/secondary-selector-v2/index.d.ts +1 -0
  21. package/lib/components/selectors/secondary-selector-v2/interfaces.d.ts +2 -0
  22. package/lib/components/selectors/secondary-selector-v2/secondary-selector-v2.d.ts +3 -0
  23. package/lib/components/selectors/selector/interfaces.d.ts +2 -2
  24. package/lib/components/selectors/selector-v2/interfaces.d.ts +4 -0
  25. package/lib/components/selectors/selector-v2/partials/base-selector-v2/interfaces.d.ts +4 -0
  26. package/lib/components/tabs/tab-bar/interfaces.d.ts +1 -1
  27. package/lib/components/tabs/tab-bar/partials/tab/interfaces.d.ts +4 -0
  28. package/lib/components/tabs/tab-bar/partials/tab/tab.d.ts +3 -2
  29. package/lib/components/tabs/tab-bar-v2/interfaces.d.ts +0 -4
  30. package/lib/components/tabs/tab-bar-v2/partials/tab-v2/interfaces.d.ts +1 -0
  31. package/lib/components/tabs/tabbed-view/assets/index.d.ts +1 -0
  32. package/lib/components/tabs/tabbed-view/assets/instagram.svg +3 -0
  33. package/lib/components/texts/base-text-v2/base-text-v2.d.ts +3 -0
  34. package/lib/components/texts/base-text-v2/index.d.ts +2 -0
  35. package/lib/components/texts/base-text-v2/interfaces.d.ts +2 -0
  36. package/lib/components/texts/responsive-text/interfaces.d.ts +1 -1
  37. package/lib/components/texts/responsive-text-v2/index.d.ts +2 -0
  38. package/lib/components/texts/responsive-text-v2/interfaces.d.ts +5 -0
  39. package/lib/components/texts/responsive-text-v2/responsive-text-v2.d.ts +3 -0
  40. package/lib/core/custom-hooks.d.ts +8 -0
  41. package/lib/core/theme.d.ts +56 -0
  42. package/lib/index.d.ts +6 -1
  43. package/lib/index.js +1 -1
  44. package/package.json +1 -1
@@ -0,0 +1,13 @@
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ viewBox="0 0 27 27"
4
+ >
5
+ <g >
6
+ <path
7
+ d="M391,292.419H368a2.089,2.089,0,1,0,0,4.178h23a2.089,2.089,0,0,0,0-4.178Z"
8
+ transform="translate(-365.884 -271.09)"
9
+ />
10
+ <circle cx="3.758" cy="3.758" r="3.758" transform="translate(19.728 0.06)" />
11
+ <circle cx="3.758" cy="3.758" r="3.758" />
12
+ </g>
13
+ </svg>
@@ -1 +1 @@
1
- export { NavbarPresentational as Navbar } from "./presentational";
1
+ export { NavbarPresentational as Navbar, getLabShopsUrlProps, } from "./presentational";
@@ -1,5 +1,5 @@
1
1
  import { NavItem } from "../partials/navbar-v2/partials/interfaces";
2
- export declare const geneticsNavItem: NavItem;
2
+ export declare const getgeneticsNavItem: (isPractitioner: boolean) => NavItem;
3
3
  export declare const labsNavItem: NavItem;
4
4
  export declare const getMyAccountNavItem: (isPractitioner: boolean, onLogout?: (() => void) | undefined) => NavItem;
5
5
  export declare const getLanguageNavItem: (selectedLangCode: string, langCodes: string[], onLanguageSwitch: (langCode: string) => void) => NavItem;
@@ -1 +1,2 @@
1
1
  export { NavbarPresentational } from "./navbar-presentational";
2
+ export { getLabShopsUrlProps } from "./url-utils";
@@ -82,7 +82,6 @@ export declare type NavbarProps = {
82
82
  * What to do when the logout button has been pressed.
83
83
  *
84
84
  * Default value: () => {
85
- * window.localStorage.setItem("hideDecody", "false");
86
85
  * window.location.href = "/account/logout";
87
86
  * }
88
87
  */
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ import { GridContainerV2Props as Props } from "./interfaces";
3
+ export declare const GridContainerV2: React.FC<Props>;
@@ -0,0 +1 @@
1
+ export { GridContainerV2 } from "./grid-container-v2";
@@ -0,0 +1,15 @@
1
+ import { BoxProps } from "rebass";
2
+ export interface GridContainerV2Props extends Omit<BoxProps, "display"> {
3
+ /**
4
+ * Grid columns template.
5
+ */
6
+ gridTemplateColumns?: string | string[];
7
+ /**
8
+ * Grid rows template.
9
+ */
10
+ gridTemplateRows?: string | string[];
11
+ /**
12
+ * Gap between elements.
13
+ */
14
+ gap?: string | string[];
15
+ }
@@ -1,6 +1,6 @@
1
1
  import { OutlineMeterLabelBoxProps } from "../outline-meter-label-box/interfaces";
2
2
  import { OutlineMeterLabelPosition } from "../../interfaces";
3
- export interface BaseMeterLabelBoxProps extends Required<Omit<OutlineMeterLabelBoxProps, "value" | "start" | "end" | "idx" | "totalRanges">> {
3
+ export interface BaseMeterLabelBoxProps extends Required<Omit<OutlineMeterLabelBoxProps, "value" | "start" | "end" | "idx" | "totalRanges" | "bounds">> {
4
4
  /**
5
5
  * Whether value is in the range to which label corresponds.
6
6
  */
@@ -1,4 +1,4 @@
1
1
  import { OutlineMeterRangeProps } from "../outline-meter-range/interfaces";
2
- export interface OutlineMeterLabelBoxProps extends Required<Pick<OutlineMeterRangeProps, "diameter" | "label" | "color" | "idx" | "value" | "start" | "end" | "totalRanges">> {
2
+ export interface OutlineMeterLabelBoxProps extends Required<Pick<OutlineMeterRangeProps, "diameter" | "label" | "color" | "idx" | "value" | "start" | "end" | "totalRanges" | "bounds">> {
3
3
  distanceFromLabelToRanges: number;
4
4
  }
@@ -1,7 +1,8 @@
1
1
  import { OutlineMeterLabelPosition, OutlineMeterProps, OutlineMeterRangeConfig } from "../../interfaces";
2
2
  import { OutlineMeterLabelPointerProps } from "../outline-meter-label-pointer/interfaces";
3
- export interface OutlineMeterRangeProps extends Required<Pick<OutlineMeterProps, "value" | "arc" | "distanceBetweenRanges" | "gaugeWidth" | "innerPointRadius" | "pointStrokeWidth" | "hideLabels" | "counterClockWise">>, OutlineMeterRangeConfig, Pick<OutlineMeterLabelPointerProps, "distanceFromRanges"> {
3
+ export interface OutlineMeterRangeProps extends Required<Pick<OutlineMeterProps, "value" | "arc" | "distanceBetweenRanges" | "gaugeWidth" | "innerPointRadius" | "pointStrokeWidth" | "hideLabels">>, OutlineMeterRangeConfig, Pick<OutlineMeterLabelPointerProps, "distanceFromRanges"> {
4
4
  segmented?: boolean;
5
+ connected?: boolean;
5
6
  /**
6
7
  * Meter diameter.
7
8
  */
@@ -23,5 +23,6 @@ export declare const getInnerX: (x: number, alpha: number, delta: number) => num
23
23
  * @param delta Distance between points
24
24
  */
25
25
  export declare const getInnerY: (y: number, alpha: number, delta: number) => number;
26
- export declare const isValueInRange: (value: number, start: number, end: number, bounds: Bounds, ccw?: boolean | undefined) => boolean;
26
+ export declare const isValueInRange: (value: number, start: number, end: number, bounds: Bounds) => boolean;
27
+ export declare const inValueHigherThanRange: (value: number, end: number, bounds: Bounds) => boolean;
27
28
  export declare const flipBounds: (bounds: Bounds) => Bounds;
@@ -1,2 +1,3 @@
1
1
  export { ReactComponent as HappySmileyIcon } from "./happy-smiley.svg";
2
2
  export { ReactComponent as SadSmileyIcon } from "./sad-smiley.svg";
3
+ export { ReactComponent as NeutralSmileyIcon } from "./neutral-smiley.svg";
@@ -0,0 +1,13 @@
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ viewBox="0 0 27 27"
4
+ >
5
+ <g >
6
+ <path
7
+ d="M391,292.419H368a2.089,2.089,0,1,0,0,4.178h23a2.089,2.089,0,0,0,0-4.178Z"
8
+ transform="translate(-365.884 -271.09)"
9
+ />
10
+ <circle cx="3.758" cy="3.758" r="3.758" transform="translate(19.728 0.06)" />
11
+ <circle cx="3.758" cy="3.758" r="3.758" />
12
+ </g>
13
+ </svg>
@@ -3,11 +3,11 @@ export interface SmileyMeterV2Props extends Pick<OutlineMeterProps, "width" | "h
3
3
  /**
4
4
  * Colors for smiley corresponding to state.
5
5
  */
6
- colorsMap?: [string, string];
6
+ colorsMap?: [string, string, string];
7
7
  /**
8
8
  * Colors for labels.
9
9
  */
10
- labelsMap?: [string, string];
10
+ labelsMap?: [string, string, string];
11
11
  /**
12
12
  * Whether to hide labels.
13
13
  */
@@ -15,7 +15,7 @@ export interface SmileyMeterV2Props extends Pick<OutlineMeterProps, "width" | "h
15
15
  /**
16
16
  * Value that splits smiley meter outline.
17
17
  */
18
- splitValue?: number;
18
+ splitValues?: [number, number];
19
19
  /**
20
20
  * Smiley width.
21
21
  */
@@ -2,5 +2,4 @@ import { OutlineMeterRangeConfig } from "../../../outline-meter";
2
2
  import { OutlineMeterRangeProps } from "../../../outline-meter/partials/outline-meter-range/interfaces";
3
3
  export interface SmileyMeterRangesProps extends Pick<OutlineMeterRangeProps, "value" | "diameter" | "innerPointRadius" | "pointStrokeWidth" | "distanceFromRanges" | "arc" | "gaugeWidth" | "distanceBetweenRanges" | "hideLabels"> {
4
4
  ranges: OutlineMeterRangeConfig[];
5
- counterClockWise: boolean;
6
5
  }
@@ -0,0 +1 @@
1
+ export { PrimarySelectorV2 } from "./primary-selector-v2";
@@ -0,0 +1,2 @@
1
+ import { SelectorV2Props } from "../selector-v2";
2
+ export declare type PrimarySelectorV2Props = Omit<SelectorV2Props, "variant">;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ import { PrimarySelectorV2Props as Props } from "./interfaces";
3
+ export declare const PrimarySelectorV2: React.FC<Props>;
@@ -0,0 +1 @@
1
+ export { SecondarySelectorV2 } from "./secondary-selector-v2";
@@ -0,0 +1,2 @@
1
+ import { SelectorV2Props } from "../selector-v2";
2
+ export declare type SecondarySelectorV2Props = Omit<SelectorV2Props, "variant" | "labelContainerAlignItems">;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ import { SecondarySelectorV2Props as Props } from "./interfaces";
3
+ export declare const SecondarySelectorV2: React.FC<Props>;
@@ -17,7 +17,7 @@ export declare type SelectorProps<T extends string = string> = BaseComponentProp
17
17
  /**
18
18
  * this is the width of the component
19
19
  */
20
- width?: Array<string>;
20
+ width?: string | string[];
21
21
  /**
22
22
  * this is the name prop which we use as a form of an id for this selector. It needs to be unique, given more name based form components in the same app.
23
23
  */
@@ -40,7 +40,7 @@ export declare type SelectorProps<T extends string = string> = BaseComponentProp
40
40
  * this is an optional amount of spacing between the
41
41
  * selectorLabel and the selectInput. Default value: ["20px"]
42
42
  */
43
- gap?: string[];
43
+ gap?: string | string[];
44
44
  /**
45
45
  * text to be shown inside the selector when no options are provided
46
46
  * Default value: 'No options'
@@ -24,4 +24,8 @@ export interface SelectorV2Props<T extends string = string> extends Omit<Selecto
24
24
  * List of available selector's options.
25
25
  */
26
26
  options: SelectorOptionV2<T>[];
27
+ /**
28
+ * How to align items in label container.
29
+ */
30
+ labelContainerAlignItems?: string;
27
31
  }
@@ -18,4 +18,8 @@ export interface BaseSelectorV2Props<T extends string = string> extends Omit<Sel
18
18
  * List of available selector's options.
19
19
  */
20
20
  options: SelectorOptionV2<T | null>[];
21
+ /**
22
+ * How to align items in label container.
23
+ */
24
+ labelContainerAlignItems?: string;
21
25
  }
@@ -2,7 +2,7 @@ import { TabProps } from "./partials/tab/interfaces";
2
2
  /**
3
3
  * Configuration describing each tab
4
4
  */
5
- export declare type TabConfig<T> = Pick<TabProps<T>, "id" | "label" | "secondaryText" | "icon" | "bg" | "activeBg">;
5
+ export declare type TabConfig<T> = Pick<TabProps<T>, "id" | "label" | "secondaryText" | "icon" | "bg" | "activeBg" | "elementId">;
6
6
  /**
7
7
  * Props for TabBar
8
8
  */
@@ -60,4 +60,8 @@ export interface TabProps<T> {
60
60
  * Provide a custom component to render instead of label/icon
61
61
  */
62
62
  tabHeaderComponent?: React.ReactNode;
63
+ /**
64
+ * Optional string to be used as `id` on the tab's html element
65
+ */
66
+ elementId?: string;
63
67
  }
@@ -1,7 +1,8 @@
1
1
  /// <reference types="react" />
2
2
  import { TabProps } from "./interfaces";
3
- export declare const Ribbon: ({ active, activeColor }: {
3
+ export declare const Ribbon: ({ active, activeColor, color, }: {
4
4
  active?: boolean | undefined;
5
5
  activeColor?: string | undefined;
6
+ color?: string | undefined;
6
7
  }) => JSX.Element;
7
- export declare function Tab<T>({ width, label, secondaryText, icon, id, onClick, selected, activeColor, color, tabPadding, bg, activeBg, activeRibbonColor, borderRadius, tabHeaderComponent, }: TabProps<T>): JSX.Element;
8
+ export declare function Tab<T>({ width, label, secondaryText, icon, id, onClick, selected, activeColor, color, tabPadding, bg, activeBg, activeRibbonColor, borderRadius, tabHeaderComponent, elementId, }: TabProps<T>): JSX.Element;
@@ -31,10 +31,6 @@ export interface TabBarV2Props {
31
31
  * Border radius of the tab bar (in px).
32
32
  */
33
33
  borderRadius?: number;
34
- /**
35
- * Side padding of the tab bar.
36
- */
37
- paddingX?: string;
38
34
  /**
39
35
  * Side padding of the tab.
40
36
  */
@@ -20,4 +20,5 @@ export interface TabV2Props extends TabV2Config, Required<Omit<TabBarV2Props, "t
20
20
  * Side padding of the tab
21
21
  */
22
22
  px?: string | string[];
23
+ observer?: IntersectionObserver;
23
24
  }
@@ -0,0 +1 @@
1
+ export { ReactComponent as InstagramIcon } from "./instagram.svg";
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 23">
2
+ <path d="M3060.99,3222.39a2.661,2.661,0,0,0-2.66-2.39h-17.66a2.592,2.592,0,0,0-.48.04,2.649,2.649,0,0,0-2.19,2.66v17.59a3.4,3.4,0,0,0,.03.45,2.643,2.643,0,0,0,2.59,2.26h17.76c0.1,0,.2-0.01.31-0.02a2.641,2.641,0,0,0,2.31-2.6v-17.76A1.848,1.848,0,0,0,3060.99,3222.39Zm-11.49,4.69a4.42,4.42,0,1,1-4.42,4.42A4.415,4.415,0,0,1,3049.5,3227.08Zm8.85,2.77v9.53a0.891,0.891,0,0,1-.96.97h-15.8a0.882,0.882,0,0,1-.93-0.93c-0.01-3.19,0-6.39,0-9.58v-0.1h1.99a7.072,7.072,0,0,0,3.39,7.94,7.059,7.059,0,0,0,7.44-.33,7.064,7.064,0,0,0,2.87-7.61h2v0.11Zm0-3.68a0.883,0.883,0,0,1-.91.91h-2.61a0.873,0.873,0,0,1-.9-0.88c-0.01-.89-0.01-1.78,0-2.66a0.868,0.868,0,0,1,.9-0.88c0.87-.01,1.75-0.01,2.62,0a0.878,0.878,0,0,1,.9.9v2.61Z" transform="translate(-3038 -3220)"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ import { BaseTextV2Props as Props } from "./interfaces";
3
+ export declare const BaseTextV2: React.FC<Props>;
@@ -0,0 +1,2 @@
1
+ export { BaseTextV2 } from "./base-text-v2";
2
+ export type { BaseTextV2Props } from "./interfaces";
@@ -0,0 +1,2 @@
1
+ import { TextProps } from "rebass";
2
+ export declare type BaseTextV2Props = TextProps;
@@ -6,7 +6,7 @@ declare type PropsFromBaseText = Pick<BaseTextProps, "children" | "color" | "dis
6
6
  /**
7
7
  * SelfDecode's combinations of fontSize and fontWeight.
8
8
  */
9
- declare type SDFontSizeWeight = [number, "semi-bold" | "regular" | "bold"];
9
+ export declare type SDFontSizeWeight = [number, "semi-bold" | "regular" | "bold"];
10
10
  export interface ResponsiveTextProps extends PropsFromBaseText {
11
11
  fontSizeWeight: SDFontSizeWeight[];
12
12
  /**
@@ -0,0 +1,2 @@
1
+ export { ResponsiveTextV2 } from "./responsive-text-v2";
2
+ export type { ResponsiveTextV2Props } from "./interfaces";
@@ -0,0 +1,5 @@
1
+ import { BaseTextV2Props } from "../base-text-v2";
2
+ import { SDFontSizeWeight } from "../responsive-text/interfaces";
3
+ export interface ResponsiveTextV2Props extends Omit<BaseTextV2Props, "variant"> {
4
+ fontSizeWeight: SDFontSizeWeight[];
5
+ }
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ import { ResponsiveTextV2Props as Props } from "./interfaces";
3
+ export declare const ResponsiveTextV2: React.FC<Props>;
@@ -41,3 +41,11 @@ export declare function useBreakPoints(): {
41
41
  isTab: boolean;
42
42
  isDesktop: boolean;
43
43
  };
44
+ /**
45
+ * Provided intersection observer for the specified elements.
46
+ *
47
+ * @param rootRef Ref for the root element.
48
+ * @param rootMargin Margin for the root element area.
49
+ * @param callback Function to process intersection changes.
50
+ */
51
+ export declare function useIntersectionObserver(rootRef: RefObject<HTMLElement>, rootMargin: string, callback: IntersectionObserverCallback): IntersectionObserver | undefined;
@@ -53,6 +53,11 @@ declare const _default: {
53
53
  gridTemplateColumns: string;
54
54
  alignItems: string;
55
55
  };
56
+ secondaryV2: {
57
+ display: string;
58
+ gridTemplateColumns: string;
59
+ alignItems: string;
60
+ };
56
61
  };
57
62
  };
58
63
  _dropdowns: {
@@ -299,6 +304,26 @@ declare const _default: {
299
304
  color: string;
300
305
  fontSize: string[];
301
306
  };
307
+ secondaryV2: {
308
+ fontFamily: string;
309
+ color: string;
310
+ fontSize: string;
311
+ };
312
+ primaryV2: {
313
+ position: string;
314
+ left: string;
315
+ top: string;
316
+ height: string;
317
+ fontFamily: string;
318
+ fontWeight: number;
319
+ color: string;
320
+ fontSize: string;
321
+ letterSpacing: string;
322
+ textTransform: string;
323
+ width: string;
324
+ bg: string;
325
+ px: string;
326
+ };
302
327
  };
303
328
  iconButton: {
304
329
  marginRight: string;
@@ -402,6 +427,37 @@ declare const _default: {
402
427
  transform: string;
403
428
  };
404
429
  };
430
+ secondaryV2: {
431
+ fontFamily: string;
432
+ fontWeight: string;
433
+ fontSize: string;
434
+ letterSpacing: number;
435
+ color: string;
436
+ outline: string;
437
+ border: string;
438
+ borderRadius: number;
439
+ borderBottomColor: string;
440
+ borderBottomStyle: string;
441
+ borderBottomWidth: number;
442
+ pb: string;
443
+ pl: number;
444
+ pt: number;
445
+ pr: string;
446
+ "& + svg": {
447
+ fill: string;
448
+ transform: string;
449
+ };
450
+ };
451
+ primaryV2: {
452
+ fontFamily: string;
453
+ fontSize: string;
454
+ color: string;
455
+ px: string;
456
+ py: string;
457
+ borderRadius: string;
458
+ borderColor: string;
459
+ outline: string;
460
+ };
405
461
  };
406
462
  };
407
463
  text: {
package/lib/index.d.ts CHANGED
@@ -53,6 +53,7 @@ export { MaxFrContainer } from "./components/containers/grid-containers/max-fr-c
53
53
  export { MaxMaxContainer } from "./components/containers/grid-containers/max-max-container";
54
54
  export { SectionContainer } from "./components/containers/section-container";
55
55
  export { MaxWidthContainer } from "./components/containers/max-width-container";
56
+ export { GridContainerV2 as Grid } from "./components/containers/grid-containers/grid-container-v2";
56
57
  export { CarouselSectionContainer } from "./components/carousels/carousel-section-container";
57
58
  export { ResponsiveGridContainerT1 } from "./components/containers/responsive-containers/responsive-container-t1";
58
59
  export { ResponsiveGridContainerT2 } from "./components/containers/responsive-containers/responsive-container-t2";
@@ -134,6 +135,8 @@ export { CustomSelector } from "./components/selectors/custom-selector";
134
135
  export { SelectorV2 } from "./components/selectors/selector-v2";
135
136
  export type { SelectorV2Props, SelectorOptionV2, } from "./components/selectors/selector-v2";
136
137
  export { TertiarySelectorV2 } from "./components/selectors/tertiary-selector-v2";
138
+ export { SecondarySelectorV2 } from "./components/selectors/secondary-selector-v2";
139
+ export { PrimarySelectorV2 } from "./components/selectors/primary-selector-v2";
137
140
  export { Slider } from "./components/slider";
138
141
  export declare type SlideSettings = SlideSettingsType;
139
142
  export { TextSwitch } from "./components/switches/text-switch";
@@ -149,6 +152,8 @@ export { BaseText } from "./components/texts/base-text";
149
152
  export declare type BaseTextProps = BaseTextPropsInterface;
150
153
  export { ResponsiveText } from "./components/texts/responsive-text";
151
154
  export declare type ResponsiveTextProps = BaseResponsiveTextProps;
155
+ export { BaseTextV2 } from "./components/texts/base-text-v2";
156
+ export { ResponsiveTextV2 } from "./components/texts/responsive-text-v2";
152
157
  export { TenSb } from "./components/texts/ten-sb";
153
158
  export { TwelveRegular } from "./components/texts/twelve-regular";
154
159
  export { TwelveSb } from "./components/texts/twelve-sb";
@@ -177,7 +182,7 @@ export { StarTooltip } from "./components/tooltips/star-tooltip";
177
182
  export { RadioInfoButtonTooltip } from "./components/tooltips/radio-info-button-tooltip";
178
183
  export { ReactElementTooltip } from "./components/tooltips/react-element-tooltip";
179
184
  export { Footer } from "./components/complex/footer";
180
- export { Navbar } from "./components/complex/navbar";
185
+ export { Navbar, getLabShopsUrlProps } from "./components/complex/navbar";
181
186
  export { Anchor } from "./components/utils/anchor";
182
187
  export { PageTracker } from "./components/utils/page-tracker";
183
188
  export { ScrollToTop } from "./components/utils/scroll-to-top";