@phillips/seldon 1.53.1 → 1.54.0

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 (38) hide show
  1. package/dist/_virtual/Breakpoints.js +4 -0
  2. package/dist/_virtual/DynamicResponsive.js +4 -0
  3. package/dist/_virtual/Interactions.js +4 -0
  4. package/dist/_virtual/Media.js +4 -0
  5. package/dist/_virtual/MediaQueries.js +4 -0
  6. package/dist/_virtual/Utils.js +4 -0
  7. package/dist/_virtual/index2.js +2 -2
  8. package/dist/_virtual/index3.js +2 -2
  9. package/dist/_virtual/index4.js +2 -2
  10. package/dist/_virtual/index6.js +4 -0
  11. package/dist/components/Header/Header.d.ts +1 -1
  12. package/dist/components/Header/Header.js +20 -20
  13. package/dist/components/LanguageSelector/LanguageSelector.js +38 -37
  14. package/dist/components/Navigation/Navigation.d.ts +1 -1
  15. package/dist/components/Navigation/Navigation.js +23 -23
  16. package/dist/index.d.ts +1 -0
  17. package/dist/index.js +27 -25
  18. package/dist/node_modules/@artsy/fresnel/dist/Breakpoints.js +281 -0
  19. package/dist/node_modules/@artsy/fresnel/dist/DynamicResponsive.js +151 -0
  20. package/dist/node_modules/@artsy/fresnel/dist/Interactions.js +138 -0
  21. package/dist/node_modules/@artsy/fresnel/dist/Media.js +167 -0
  22. package/dist/node_modules/@artsy/fresnel/dist/MediaQueries.js +130 -0
  23. package/dist/node_modules/@artsy/fresnel/dist/Utils.js +94 -0
  24. package/dist/node_modules/@artsy/fresnel/dist/index.js +21 -0
  25. package/dist/node_modules/exenv/index.js +1 -1
  26. package/dist/node_modules/prop-types/index.js +1 -1
  27. package/dist/node_modules/prop-types/node_modules/react-is/index.js +1 -1
  28. package/dist/node_modules/react-modal/lib/index.js +1 -1
  29. package/dist/providers/SeldonProvider.d.ts +7 -0
  30. package/dist/providers/SeldonProvider.js +9 -0
  31. package/dist/providers/utils.d.ts +5 -0
  32. package/dist/providers/utils.js +8 -0
  33. package/dist/scss/_vars.scss +1 -1
  34. package/dist/scss/components/Header/_header.scss +0 -9
  35. package/dist/scss/components/LanguageSelector/_languageSelector.scss +5 -22
  36. package/dist/utils/constants.d.ts +8 -0
  37. package/dist/utils/constants.js +10 -0
  38. package/package.json +2 -1
@@ -0,0 +1,4 @@
1
+ var r = {};
2
+ export {
3
+ r as __exports
4
+ };
@@ -0,0 +1,4 @@
1
+ var e = {};
2
+ export {
3
+ e as __exports
4
+ };
@@ -0,0 +1,4 @@
1
+ var r = {};
2
+ export {
3
+ r as __exports
4
+ };
@@ -0,0 +1,4 @@
1
+ var a = {};
2
+ export {
3
+ a as __exports
4
+ };
@@ -0,0 +1,4 @@
1
+ var e = {};
2
+ export {
3
+ e as __exports
4
+ };
@@ -0,0 +1,4 @@
1
+ var r = {};
2
+ export {
3
+ r as __exports
4
+ };
@@ -1,4 +1,4 @@
1
- var e = { exports: {} };
1
+ var r = {};
2
2
  export {
3
- e as __module
3
+ r as __exports
4
4
  };
@@ -1,4 +1,4 @@
1
- var p = { exports: {} };
1
+ var e = { exports: {} };
2
2
  export {
3
- p as __module
3
+ e as __module
4
4
  };
@@ -1,4 +1,4 @@
1
- var e = { exports: {} };
1
+ var p = { exports: {} };
2
2
  export {
3
- e as __module
3
+ p as __module
4
4
  };
@@ -0,0 +1,4 @@
1
+ var e = { exports: {} };
2
+ export {
3
+ e as __module
4
+ };
@@ -36,7 +36,7 @@ export declare const HeaderContext: React.Context<HeaderContextType>;
36
36
  /**
37
37
  * ## Overview
38
38
  *
39
- * This component allows navigation, search, login/logout, and language selection and supports desktop and mobile layouts
39
+ * This component allows navigation, search, login/logout, and language selection and supports desktop and mobile layouts. It requires the <SeldonProvider> to be wrapped around it to support SSR Media Queries.
40
40
  *
41
41
  * [Figma Link Mobile](https://www.figma.com/design/hMu9IWH5N3KamJy8tLFdyV/EASEL-Compendium%3A-Tokens%2C-Components-%26-Patterns?node-id=10877-33417&node-type=INSTANCE&m=dev)
42
42
  *
@@ -1,29 +1,29 @@
1
1
  import { jsxs as o, jsx as a } from "react/jsx-runtime";
2
- import l, { createContext as O, forwardRef as P, useState as h } from "react";
3
- import s from "../../node_modules/classnames/index.js";
4
- import { findChildrenOfType as i, findChildrenExcludingTypes as T, px as e } from "../../utils/index.js";
2
+ import l, { createContext as O, forwardRef as T, useState as h } from "react";
3
+ import d from "../../node_modules/classnames/index.js";
4
+ import { findChildrenOfType as s, findChildrenExcludingTypes as P, px as e } from "../../utils/index.js";
5
5
  import j from "../../assets/PhillipsLogo.svg.js";
6
6
  import p from "../UserManagement/UserManagement.js";
7
7
  import g from "../LanguageSelector/LanguageSelector.js";
8
8
  import f from "../Navigation/Navigation.js";
9
- import { defaultHeaderContext as w } from "./utils.js";
10
- const I = O(w), L = P(
9
+ import { defaultHeaderContext as R } from "./utils.js";
10
+ import { SSRMediaQuery as w } from "../../providers/utils.js";
11
+ const I = O(R), L = T(
11
12
  ({
12
- logo: d = /* @__PURE__ */ a(j, {}),
13
+ logo: i = /* @__PURE__ */ a(j, {}),
13
14
  className: u,
14
15
  children: r,
15
16
  toggleOpenText: _ = "Open Menu",
16
17
  toggleCloseText: v = "Close Menu",
17
18
  logoText: x = "Home Page",
18
19
  ...C
19
- }, $) => {
20
- const b = i(r, p), m = i(r, g), [c, y] = h(!1), E = i(r, f), N = T(r, [f, p, g]), [n, M] = h(!1), S = n ? v : _, H = function() {
21
- M((t) => !t);
20
+ }, y) => {
21
+ const E = s(r, p), m = s(r, g), [c, M] = h(!1), $ = s(r, f), b = P(r, [f, p, g]), [n, N] = h(!1), S = n ? v : _, H = function() {
22
+ N((t) => !t);
22
23
  };
23
- return /* @__PURE__ */ o("header", { ...C, className: s(`${e}-header`, u), ref: $, children: [
24
+ return /* @__PURE__ */ o("header", { ...C, className: d(`${e}-header`, u), ref: y, children: [
24
25
  /* @__PURE__ */ o("div", { className: `${e}-header__top-row`, children: [
25
- m,
26
- " ",
26
+ /* @__PURE__ */ a(w.Media, { greaterThanOrEqual: "md", children: m }),
27
27
  /* @__PURE__ */ o(
28
28
  "button",
29
29
  {
@@ -31,7 +31,7 @@ const I = O(w), L = P(
31
31
  "data-testid": "mobile-menu-toggle",
32
32
  type: "button",
33
33
  onClick: H,
34
- className: s(`${e}-header__toggle-btn`, {
34
+ className: d(`${e}-header__toggle-btn`, {
35
35
  [`${e}-header__toggle-btn--open`]: n
36
36
  }),
37
37
  children: [
@@ -40,20 +40,20 @@ const I = O(w), L = P(
40
40
  ]
41
41
  }
42
42
  ),
43
- /* @__PURE__ */ a("h1", { "data-testid": "header-logo", className: `${e}-header__logo`, children: /* @__PURE__ */ a("a", { href: "/", "aria-label": x, children: typeof d == "object" ? d : /* @__PURE__ */ a("img", { alt: "Phillips", "data-testid": "header-logo-img", src: d, height: "14" }) }) }),
44
- b
43
+ /* @__PURE__ */ a("h1", { "data-testid": "header-logo", className: `${e}-header__logo`, children: /* @__PURE__ */ a("a", { href: "/", "aria-label": x, children: typeof i == "object" ? i : /* @__PURE__ */ a("img", { alt: "Phillips", "data-testid": "header-logo-img", src: i, height: "14" }) }) }),
44
+ E
45
45
  ] }),
46
- /* @__PURE__ */ a("div", { className: s(`${e}-header__nav`, { [`${e}-header__nav--closed`]: !n }), children: /* @__PURE__ */ o(
46
+ /* @__PURE__ */ a("div", { className: d(`${e}-header__nav`, { [`${e}-header__nav--closed`]: !n }), children: /* @__PURE__ */ o(
47
47
  I.Provider,
48
48
  {
49
49
  value: {
50
50
  isMenuOpen: n,
51
51
  isSearchExpanded: c,
52
- setIsSearchExpanded: y
52
+ setIsSearchExpanded: M
53
53
  },
54
54
  children: [
55
55
  l.Children.map(
56
- E,
56
+ $,
57
57
  (t) => l.isValidElement(t) ? l.cloneElement(t, {
58
58
  children: [
59
59
  ...l.Children.toArray(t.props.children),
@@ -61,11 +61,11 @@ const I = O(w), L = P(
61
61
  ]
62
62
  }) : t
63
63
  ),
64
- N
64
+ b
65
65
  ]
66
66
  }
67
67
  ) }),
68
- /* @__PURE__ */ a("div", { className: s(`${e}-header__overlay`, { [`${e}-header__overlay--active`]: c }) })
68
+ /* @__PURE__ */ a("div", { className: d(`${e}-header__overlay`, { [`${e}-header__overlay--active`]: c }) })
69
69
  ] });
70
70
  }
71
71
  );
@@ -1,73 +1,74 @@
1
- import { jsxs as b, Fragment as h, jsx as e } from "react/jsx-runtime";
2
- import { forwardRef as L } from "react";
1
+ import { jsxs as b, Fragment as L, jsx as e } from "react/jsx-runtime";
2
+ import { forwardRef as S } from "react";
3
3
  import { getCommonProps as N, noOp as x } from "../../utils/index.js";
4
4
  import C from "../../node_modules/classnames/index.js";
5
5
  import { SupportedLanguages as s } from "../../types/commonTypes.js";
6
- import S from "../Dropdown/Dropdown.js";
6
+ import T from "../Dropdown/Dropdown.js";
7
7
  import k from "../Accordion/Accordion.js";
8
8
  import w from "../Accordion/AccordionItem.js";
9
9
  import y from "../Navigation/NavigationItem/NavigationItem.js";
10
- import { LinkVariants as P } from "../Link/types.js";
11
- import { TextVariants as T } from "../Text/types.js";
12
- import V from "../Text/Text.js";
13
- import j from "../Navigation/NavigationList/NavigationList.js";
14
- const A = ({
15
- id: o,
10
+ import { LinkVariants as M } from "../Link/types.js";
11
+ import { TextVariants as E } from "../Text/types.js";
12
+ import P from "../Text/Text.js";
13
+ import V from "../Navigation/NavigationList/NavigationList.js";
14
+ import { SSRMediaQuery as f } from "../../providers/utils.js";
15
+ const j = ({
16
+ id: a,
16
17
  value: n,
17
18
  // can't be passed to the accordion
18
19
  onValueChange: r,
19
- label: t,
20
+ label: m,
20
21
  options: l,
21
- ...m
22
- }) => /* @__PURE__ */ e(k, { ...m, children: /* @__PURE__ */ e(
22
+ ...t
23
+ }) => /* @__PURE__ */ e(k, { ...t, children: /* @__PURE__ */ e(
23
24
  w,
24
25
  {
25
26
  variation: "sm",
26
- id: o != null ? o : "language-selector-accordion",
27
- label: /* @__PURE__ */ e(V, { variant: T.snwHeaderLink, children: t }),
28
- children: /* @__PURE__ */ e(j, { id: `${o}-navlist`, children: l.map((a) => /* @__PURE__ */ e(
27
+ id: a != null ? a : "language-selector-accordion",
28
+ label: /* @__PURE__ */ e(P, { variant: E.snwHeaderLink, children: m }),
29
+ children: /* @__PURE__ */ e(V, { id: `${a}-navlist`, children: l.map((o) => /* @__PURE__ */ e(
29
30
  y,
30
31
  {
31
- label: a.label,
32
- onClick: () => r(a.value),
33
- navType: P.snwFlyoutLink
32
+ label: o.label,
33
+ onClick: () => r(o.value),
34
+ navType: M.snwFlyoutLink
34
35
  },
35
- a.value
36
+ o.value
36
37
  )) })
37
38
  }
38
- ) }), E = L(
39
+ ) }), A = S(
39
40
  ({
40
- className: o,
41
+ className: a,
41
42
  currentLanguage: n = s.en,
42
43
  languageOptions: r = [
43
44
  { label: "English", value: s.en },
44
45
  { label: "中文", value: s.zh }
45
46
  ],
46
- onLanguageChange: t = x,
47
+ onLanguageChange: m = x,
47
48
  id: l,
48
- isHidden: m,
49
- ...a
49
+ isHidden: t,
50
+ ...o
50
51
  }, c) => {
51
- var g, f;
52
- const { className: p, ...v } = N({ id: l }, "LanguageSelector"), d = (f = (g = r.find((i) => i.value === n)) == null ? void 0 : g.label) != null ? f : "English", u = {
53
- ...v,
54
- ...a,
52
+ var u, g;
53
+ const { className: p, ...h } = N({ id: l }, "LanguageSelector"), v = (g = (u = r.find((i) => i.value === n)) == null ? void 0 : u.label) != null ? g : "English", d = {
54
+ ...h,
55
+ ...o,
55
56
  id: l,
56
- className: C(p, o, {
57
- [`${p}--hidden`]: m
57
+ className: C(p, a, {
58
+ [`${p}--hidden`]: t
58
59
  }),
59
60
  options: r,
60
61
  value: n,
61
- onValueChange: (i) => t(i),
62
- label: d
62
+ onValueChange: (i) => m(i),
63
+ label: v
63
64
  };
64
- return /* @__PURE__ */ b(h, { children: [
65
- /* @__PURE__ */ e(S, { ...u, ref: c }),
66
- /* @__PURE__ */ e(A, { ...u, ref: c })
65
+ return /* @__PURE__ */ b(L, { children: [
66
+ /* @__PURE__ */ e(f.Media, { greaterThanOrEqual: "md", children: /* @__PURE__ */ e(T, { ...d, ref: c }) }),
67
+ /* @__PURE__ */ e(f.Media, { lessThan: "md", children: /* @__PURE__ */ e(j, { ...d, ref: c }) })
67
68
  ] });
68
69
  }
69
70
  );
70
- E.displayName = "LanguageSelector";
71
+ A.displayName = "LanguageSelector";
71
72
  export {
72
- E as default
73
+ A as default
73
74
  };
@@ -8,7 +8,7 @@ export interface NavigationProps extends ComponentProps<'nav'> {
8
8
  /**
9
9
  * ## Overview
10
10
  *
11
- * This is used within the Header component and displays the site navigation links. It support both mobile and desktop.
11
+ * This is used within the Header component and displays the site navigation links. It supports both mobile and desktop. It requires the <SeldonProvider> to be wrapped around it to support SSR Media Queries.
12
12
  *
13
13
  * [Figma Link](https://www.figma.com/design/hMu9IWH5N3KamJy8tLFdyV/EASEL-Compendium%3A-Tokens%2C-Components-%26-Patterns?node-id=10570-5784&m=dev)
14
14
  *
@@ -1,37 +1,37 @@
1
- import { jsx as x, jsxs as h } from "react/jsx-runtime";
1
+ import { jsx as l, jsxs as x } from "react/jsx-runtime";
2
2
  import e, { forwardRef as E } from "react";
3
- import { findChildrenOfType as l, findChildrenExcludingTypes as N, px as d } from "../../utils/index.js";
4
- import C from "../../node_modules/classnames/index.js";
3
+ import { findChildrenOfType as d, findChildrenExcludingTypes as N, px as m } from "../../utils/index.js";
4
+ import S from "../../node_modules/classnames/index.js";
5
5
  import { HeaderContext as y } from "../Header/Header.js";
6
- import m from "./NavigationList/NavigationList.js";
7
- import c from "../LanguageSelector/LanguageSelector.js";
8
- const S = E(
9
- ({ children: i, className: f, id: n, visible: p = !0, ...v }, g) => {
6
+ import c from "./NavigationList/NavigationList.js";
7
+ import f from "../LanguageSelector/LanguageSelector.js";
8
+ import { SSRMediaQuery as C } from "../../providers/utils.js";
9
+ const _ = E(
10
+ ({ children: i, className: p, id: a, visible: v = !0, ...g }, h) => {
10
11
  var r, s;
11
- const { isSearchExpanded: a } = e.useContext(y), o = (r = l(i, m)) == null ? void 0 : r[0], u = N(i, [m, c]), t = (s = l(i, c)) == null ? void 0 : s[0];
12
- return /* @__PURE__ */ x(
12
+ const { isSearchExpanded: n } = e.useContext(y), o = (r = d(i, c)) == null ? void 0 : r[0], u = N(i, [c, f]), t = (s = d(i, f)) == null ? void 0 : s[0];
13
+ return /* @__PURE__ */ l(
13
14
  "nav",
14
15
  {
15
16
  role: "navigation",
16
- "data-testid": n,
17
- id: n,
18
- style: { "--visible": p ? "visible" : "hidden" },
19
- className: C(`${d}-nav`, f),
20
- ...v,
21
- ref: g,
22
- children: /* @__PURE__ */ h("div", { className: `${d}-nav__list-container`, children: [
17
+ "data-testid": a,
18
+ id: a,
19
+ style: { "--visible": v ? "visible" : "hidden" },
20
+ className: S(`${m}-nav`, p),
21
+ ...g,
22
+ ref: h,
23
+ children: /* @__PURE__ */ x("div", { className: `${m}-nav__list-container`, children: [
23
24
  u,
24
- e.isValidElement(o) ? e.cloneElement(o, { isOffScreen: a }) : void 0,
25
- /* This is not visible through css when in desktop breakpoint */
26
- e.isValidElement(t) && t ? e.cloneElement(t, {
27
- isHidden: a
28
- }) : void 0
25
+ e.isValidElement(o) ? e.cloneElement(o, { isOffScreen: n }) : void 0,
26
+ /* @__PURE__ */ l(C.Media, { lessThan: "md", children: e.isValidElement(t) && t ? e.cloneElement(t, {
27
+ isHidden: n
28
+ }) : void 0 })
29
29
  ] })
30
30
  }
31
31
  );
32
32
  }
33
33
  );
34
- S.displayName = "Navigation";
34
+ _.displayName = "Navigation";
35
35
  export {
36
- S as default
36
+ _ as default
37
37
  };
package/dist/index.d.ts CHANGED
@@ -41,3 +41,4 @@ export { default as Video, type VideoProps } from './components/Video/Video';
41
41
  export * from './components/LanguageSelector';
42
42
  export * from './components/ReadMore';
43
43
  export * from './components/Collapsible';
44
+ export * from './providers/SeldonProvider';
package/dist/index.js CHANGED
@@ -1,11 +1,11 @@
1
- import { PaddingTokens as a, SpacingTokens as f, defaultYear as p, emailValidation as d, encodeURLSearchParams as l, findChildrenExcludingTypes as s, findChildrenOfType as m, generatePaddingClassName as u, getCommonProps as i, noOp as x, px as n, useNormalizedInputProps as g } from "./utils/index.js";
1
+ import { PaddingTokens as a, SpacingTokens as f, defaultYear as p, emailValidation as d, encodeURLSearchParams as l, findChildrenExcludingTypes as m, findChildrenOfType as s, generatePaddingClassName as i, getCommonProps as u, noOp as x, px as n, useNormalizedInputProps as g } from "./utils/index.js";
2
2
  import { default as S } from "./pages/Page.js";
3
3
  import { default as C } from "./components/Button/Button.js";
4
- import { ButtonVariants as T } from "./components/Button/types.js";
5
- import { default as k } from "./components/IconButton/IconButton.js";
6
- import { default as P } from "./components/ErrorBoundary/ErrorBoundary.js";
4
+ import { ButtonVariants as P } from "./components/Button/types.js";
5
+ import { default as b } from "./components/IconButton/IconButton.js";
6
+ import { default as B } from "./components/ErrorBoundary/ErrorBoundary.js";
7
7
  import { default as N } from "./components/Footer/Footer.js";
8
- import { Grid as w } from "./components/Grid/Grid.js";
8
+ import { Grid as v } from "./components/Grid/Grid.js";
9
9
  import { default as A } from "./components/Header/Header.js";
10
10
  import { default as G } from "./components/Navigation/Navigation.js";
11
11
  import { default as R } from "./components/Navigation/NavigationItem/NavigationItem.js";
@@ -22,17 +22,17 @@ import { default as oe } from "./components/GridItem/GridItem.js";
22
22
  import { GridItemAlign as te } from "./components/GridItem/types.js";
23
23
  import { default as fe } from "./components/Search/Search.js";
24
24
  import { default as de } from "./components/Select/Select.js";
25
- import { default as se } from "./components/SplitPanel/SplitPanel.js";
26
- import { default as ue } from "./components/Subscribe/Subscribe.js";
25
+ import { default as me } from "./components/SplitPanel/SplitPanel.js";
26
+ import { default as ie } from "./components/Subscribe/Subscribe.js";
27
27
  import { SubscriptionState as xe } from "./components/Subscribe/types.js";
28
28
  import { default as ge } from "./components/Social/Social.js";
29
29
  import { default as Se } from "./components/ViewingsList/ViewingsList.js";
30
30
  import { default as Ce } from "./components/Modal/Modal.js";
31
- import { default as Te } from "./components/Drawer/Drawer.js";
32
- import { default as ke } from "./components/ViewingsList/StatefulViewingsList.js";
33
- import { TextVariants as Pe } from "./components/Text/types.js";
31
+ import { default as Pe } from "./components/Drawer/Drawer.js";
32
+ import { default as be } from "./components/ViewingsList/StatefulViewingsList.js";
33
+ import { TextVariants as Be } from "./components/Text/types.js";
34
34
  import { default as Ne } from "./components/Text/Text.js";
35
- import { default as we } from "./components/Accordion/Accordion.js";
35
+ import { default as ve } from "./components/Accordion/Accordion.js";
36
36
  import { default as Ae } from "./components/Accordion/AccordionItem.js";
37
37
  import { default as Ge } from "./components/UserManagement/UserManagement.js";
38
38
  import { AuthState as Re } from "./components/UserManagement/types.js";
@@ -47,26 +47,27 @@ import { default as Ke } from "./components/ReadMore/ReadMore.js";
47
47
  import { default as We } from "./components/Collapsible/Collapsible.js";
48
48
  import { default as Ze } from "./components/Collapsible/CollapsibleContent.js";
49
49
  import { default as $e } from "./components/Collapsible/CollapsibleTrigger.js";
50
+ import { SeldonProvider as oo } from "./providers/SeldonProvider.js";
50
51
  export {
51
- we as Accordion,
52
+ ve as Accordion,
52
53
  Ae as AccordionItem,
53
54
  Re as AuthState,
54
55
  Oe as Breadcrumb,
55
56
  C as Button,
56
- T as ButtonVariants,
57
+ P as ButtonVariants,
57
58
  We as Collapsible,
58
59
  Ze as CollapsibleContent,
59
60
  $e as CollapsibleTrigger,
60
- Te as Drawer,
61
+ Pe as Drawer,
61
62
  ze as Dropdown,
62
- P as ErrorBoundary,
63
+ B as ErrorBoundary,
63
64
  N as Footer,
64
- w as Grid,
65
+ v as Grid,
65
66
  oe as GridItem,
66
67
  te as GridItemAlign,
67
68
  A as Header,
68
69
  z as HeroBanner,
69
- k as IconButton,
70
+ b as IconButton,
70
71
  Y as Input,
71
72
  qe as LanguageSelector,
72
73
  q as Link,
@@ -83,26 +84,27 @@ export {
83
84
  Ke as ReadMore,
84
85
  $ as Row,
85
86
  fe as Search,
87
+ oo as SeldonProvider,
86
88
  de as Select,
87
89
  ge as Social,
88
90
  f as SpacingTokens,
89
- se as SplitPanel,
90
- ke as StatefulViewingsList,
91
- ue as Subscribe,
91
+ me as SplitPanel,
92
+ be as StatefulViewingsList,
93
+ ie as Subscribe,
92
94
  xe as SubscriptionState,
93
95
  Ee as SupportedLanguages,
94
96
  Ne as Text,
95
- Pe as TextVariants,
97
+ Be as TextVariants,
96
98
  Ge as UserManagement,
97
99
  Ye as Video,
98
100
  Se as ViewingsList,
99
101
  p as defaultYear,
100
102
  d as emailValidation,
101
103
  l as encodeURLSearchParams,
102
- s as findChildrenExcludingTypes,
103
- m as findChildrenOfType,
104
- u as generatePaddingClassName,
105
- i as getCommonProps,
104
+ m as findChildrenExcludingTypes,
105
+ s as findChildrenOfType,
106
+ i as generatePaddingClassName,
107
+ u as getCommonProps,
106
108
  x as noOp,
107
109
  n as px,
108
110
  g as useNormalizedInputProps