@phillips/seldon 1.145.1 → 1.146.1

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 (49) hide show
  1. package/dist/_virtual/index5.js +2 -2
  2. package/dist/_virtual/index6.js +2 -2
  3. package/dist/_virtual/index7.js +2 -2
  4. package/dist/_virtual/index8.js +2 -2
  5. package/dist/components/ComboBox/ComboBox.d.ts +8 -0
  6. package/dist/components/ComboBox/ComboBox.js +31 -29
  7. package/dist/components/ComboBox/ComboBox.stories.d.ts +1 -0
  8. package/dist/components/Loader/Loader.test.d.ts +1 -0
  9. package/dist/components/Toast/Toast.d.ts +39 -0
  10. package/dist/components/Toast/Toast.js +24 -0
  11. package/dist/components/Toast/Toast.stories.d.ts +16 -0
  12. package/dist/components/Toast/Toast.test.d.ts +1 -0
  13. package/dist/components/Toast/ToastContextProvider.d.ts +19 -0
  14. package/dist/components/Toast/ToastContextProvider.js +35 -0
  15. package/dist/components/Toast/ToastContextProvider.test.d.ts +1 -0
  16. package/dist/components/Toast/index.d.ts +3 -0
  17. package/dist/components/Toast/useToast.d.ts +3 -0
  18. package/dist/components/Toast/useToast.js +10 -0
  19. package/dist/components/Toast/useToast.test.d.ts +1 -0
  20. package/dist/components/Toast/useToastContext.d.ts +7 -0
  21. package/dist/components/Toast/useToastContext.js +16 -0
  22. package/dist/index.d.ts +1 -0
  23. package/dist/index.js +50 -44
  24. package/dist/node_modules/@radix-ui/react-toast/dist/index.js +447 -0
  25. package/dist/node_modules/@radix-ui/react-toast/node_modules/@radix-ui/primitive/dist/index.js +9 -0
  26. package/dist/node_modules/@radix-ui/react-toast/node_modules/@radix-ui/react-collection/dist/index.js +48 -0
  27. package/dist/node_modules/@radix-ui/react-toast/node_modules/@radix-ui/react-compose-refs/dist/index.js +29 -0
  28. package/dist/node_modules/@radix-ui/react-toast/node_modules/@radix-ui/react-context/dist/index.js +53 -0
  29. package/dist/node_modules/@radix-ui/react-toast/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +130 -0
  30. package/dist/node_modules/@radix-ui/react-toast/node_modules/@radix-ui/react-portal/dist/index.js +15 -0
  31. package/dist/node_modules/@radix-ui/react-toast/node_modules/@radix-ui/react-presence/dist/index.js +70 -0
  32. package/dist/node_modules/@radix-ui/react-toast/node_modules/@radix-ui/react-primitive/dist/index.js +36 -0
  33. package/dist/node_modules/@radix-ui/react-toast/node_modules/@radix-ui/react-slot/dist/index.js +48 -0
  34. package/dist/node_modules/@radix-ui/react-toast/node_modules/@radix-ui/react-use-callback-ref/dist/index.js +10 -0
  35. package/dist/node_modules/@radix-ui/react-toast/node_modules/@radix-ui/react-use-controllable-state/dist/index.js +52 -0
  36. package/dist/node_modules/@radix-ui/react-toast/node_modules/@radix-ui/react-use-escape-keydown/dist/index.js +14 -0
  37. package/dist/node_modules/@radix-ui/react-toast/node_modules/@radix-ui/react-use-layout-effect/dist/index.js +6 -0
  38. package/dist/node_modules/@radix-ui/react-toast/node_modules/@radix-ui/react-visually-hidden/dist/index.js +30 -0
  39. package/dist/node_modules/exenv/index.js +1 -1
  40. package/dist/node_modules/ics/dist/index.js +2 -2
  41. package/dist/node_modules/ics/dist/pipeline/index.js +1 -1
  42. package/dist/node_modules/prop-types/node_modules/react-is/index.js +1 -1
  43. package/dist/node_modules/uuid/dist/esm-browser/native.js +4 -0
  44. package/dist/node_modules/uuid/dist/esm-browser/rng.js +13 -0
  45. package/dist/node_modules/uuid/dist/esm-browser/stringify.js +9 -0
  46. package/dist/node_modules/uuid/dist/esm-browser/v4.js +15 -0
  47. package/dist/scss/componentStyles.scss +1 -0
  48. package/dist/scss/components/Toast/_toast.scss +95 -0
  49. package/package.json +5 -2
@@ -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 e = { exports: {} };
1
+ var e = {};
2
2
  export {
3
- e as __module
3
+ e as __exports
4
4
  };
@@ -1,4 +1,4 @@
1
- var r = {};
1
+ var e = { exports: {} };
2
2
  export {
3
- r as __exports
3
+ e as __module
4
4
  };
@@ -1,4 +1,4 @@
1
- var e = {};
1
+ var e = { exports: {} };
2
2
  export {
3
- e as __exports
3
+ e as __module
4
4
  };
@@ -55,6 +55,14 @@ export interface ComboBoxProps {
55
55
  * If true, the input will be cleared when the user clicks away when the input value is not in the options list.
56
56
  */
57
57
  autoClearInput?: boolean;
58
+ /**
59
+ * popoverContainer ref for the ComboBox
60
+ */
61
+ popoverContainerRef?: React.RefObject<HTMLElement>;
62
+ /**
63
+ * No options message translation
64
+ */
65
+ noOptionsMessage?: string;
58
66
  }
59
67
  /**
60
68
  * ## Overview
@@ -1,9 +1,9 @@
1
- import { jsx as t, jsxs as n } from "react/jsx-runtime";
2
- import { Root as D, Trigger as E, Portal as T, Content as j } from "../../node_modules/@radix-ui/react-popover/dist/index.js";
1
+ import { jsx as t, jsxs as c } from "react/jsx-runtime";
2
+ import { Root as T, Trigger as j, Portal as F, Content as K } from "../../node_modules/@radix-ui/react-popover/dist/index.js";
3
3
  import p from "../../node_modules/classnames/index.js";
4
- import { Command as w, CommandInput as F, CommandList as K, CommandGroup as G, CommandItem as X } from "../../node_modules/cmdk/dist/index.js";
4
+ import { Command as w, CommandInput as G, CommandList as X, CommandGroup as q, CommandItem as z } from "../../node_modules/cmdk/dist/index.js";
5
5
  import l from "react";
6
- import { useOnClickOutside as q } from "../../node_modules/usehooks-ts/dist/index.js";
6
+ import { useOnClickOutside as A } from "../../node_modules/usehooks-ts/dist/index.js";
7
7
  import "../../assets/formatted/AccountActive.js";
8
8
  import "../../assets/formatted/Account.js";
9
9
  import "../../assets/formatted/Add.js";
@@ -14,11 +14,11 @@ import "../../assets/formatted/ArrowRight.js";
14
14
  import "../../assets/formatted/ArrowUp.js";
15
15
  import "../../assets/formatted/Bag.js";
16
16
  import "../../assets/formatted/Calendar.js";
17
- import z from "../../assets/formatted/ChevronDown.js";
17
+ import H from "../../assets/formatted/ChevronDown.js";
18
18
  import "../../assets/formatted/ChevronLeft.js";
19
19
  import "../../assets/formatted/ChevronRight.js";
20
20
  import "../../assets/formatted/ChevronUp.js";
21
- import A from "../../assets/formatted/CloseX.js";
21
+ import J from "../../assets/formatted/CloseX.js";
22
22
  import "../../assets/formatted/ConditionReport.js";
23
23
  import "../../assets/formatted/Delete.js";
24
24
  import "../../assets/formatted/Download.js";
@@ -68,9 +68,9 @@ import "../../assets/formatted/VolumeMaximum.js";
68
68
  import "../../assets/formatted/VolumeMid.js";
69
69
  import "../../assets/formatted/VolumeMinimum.js";
70
70
  import "../../assets/formatted/WeChat.js";
71
- import { getCommonProps as H } from "../../utils/index.js";
71
+ import { getCommonProps as M } from "../../utils/index.js";
72
72
  import { getScssVar as v } from "../../utils/scssUtils.js";
73
- const J = l.forwardRef(function({
73
+ const Q = l.forwardRef(function({
74
74
  options: N = [],
75
75
  className: g,
76
76
  id: r,
@@ -84,18 +84,20 @@ const J = l.forwardRef(function({
84
84
  ariaLabelContent: _,
85
85
  hideLabel: R = !1,
86
86
  autoClearInput: O = !0,
87
- ...k
88
- }, y) {
89
- const { className: e, ...I } = H({ id: r }, "ComboBox"), [C, s] = l.useState(!1), $ = l.useRef(null), S = z, B = A, b = l.useRef(null), P = l.useRef({}), c = N.filter(
87
+ popoverContainerRef: k,
88
+ noOptionsMessage: y = "No Options.",
89
+ ...I
90
+ }, S) {
91
+ const { className: e, ...B } = M({ id: r }, "ComboBox"), [C, s] = l.useState(!1), $ = l.useRef(null), P = H, D = J, b = l.useRef(null), E = l.useRef({}), n = N.filter(
90
92
  (o) => o.value.toLowerCase().includes(m.toLowerCase()) || o.label && o.label.toLowerCase().includes(m.toLowerCase())
91
93
  );
92
- return q(b, (o) => {
94
+ return A(b, (o) => {
93
95
  if (o.target.closest(`.${e}__item`) || o.target.closest(`.${e}__content`))
94
96
  return;
95
- !c.some(
97
+ !n.some(
96
98
  (a) => a.value.toLowerCase() === m.toLowerCase()
97
99
  ) && O && i(""), s(!1), o.stopPropagation();
98
- }), /* @__PURE__ */ t("div", { ref: y, className: p(e, g), id: r, ...I, ...k, children: /* @__PURE__ */ n("div", { ref: b, children: [
100
+ }), /* @__PURE__ */ t("div", { ref: S, className: p(e, g), id: r, ...B, ...I, children: /* @__PURE__ */ c("div", { ref: b, children: [
99
101
  /* @__PURE__ */ t(
100
102
  "label",
101
103
  {
@@ -116,10 +118,10 @@ const J = l.forwardRef(function({
116
118
  o.key === "Escape" && s(!1);
117
119
  }, 0);
118
120
  },
119
- children: /* @__PURE__ */ n(D, { open: !0, children: [
120
- /* @__PURE__ */ n("div", { className: `${e}__input-wrapper`, children: [
121
- /* @__PURE__ */ t(E, { asChild: !0, children: /* @__PURE__ */ t(
122
- F,
121
+ children: /* @__PURE__ */ c(T, { open: !0, children: [
122
+ /* @__PURE__ */ c("div", { className: `${e}__input-wrapper`, children: [
123
+ /* @__PURE__ */ t(j, { asChild: !0, children: /* @__PURE__ */ t(
124
+ G,
123
125
  {
124
126
  ref: $,
125
127
  placeholder: x,
@@ -148,7 +150,7 @@ const J = l.forwardRef(function({
148
150
  "aria-label": u || `${r}-clear`,
149
151
  tabIndex: -1,
150
152
  children: /* @__PURE__ */ t("div", { className: `${e}__icon`, children: /* @__PURE__ */ t(
151
- B,
153
+ D,
152
154
  {
153
155
  color: v("", "$primary-black"),
154
156
  height: 18,
@@ -173,7 +175,7 @@ const J = l.forwardRef(function({
173
175
  [`${e}__icon--flipped`]: C
174
176
  }),
175
177
  children: /* @__PURE__ */ t(
176
- S,
178
+ P,
177
179
  {
178
180
  color: v("", "$pure-black"),
179
181
  height: 18,
@@ -186,20 +188,20 @@ const J = l.forwardRef(function({
186
188
  }
187
189
  )
188
190
  ] }),
189
- /* @__PURE__ */ t(T, { children: /* @__PURE__ */ t(
190
- j,
191
+ /* @__PURE__ */ t(F, { container: k?.current, children: /* @__PURE__ */ t(
192
+ K,
191
193
  {
192
194
  className: `${e}__content`,
193
195
  "aria-label": _ || `${r}-content`,
194
- children: C && /* @__PURE__ */ t(K, { className: `${e}__list`, children: c.some(
196
+ children: C && /* @__PURE__ */ t(X, { className: `${e}__list`, children: n.some(
195
197
  (o) => o.value.toLowerCase().includes(m.toLowerCase()) || o.label && o.label.toLowerCase().includes(m.toLowerCase())
196
- ) ? /* @__PURE__ */ t(G, { children: c.map(
198
+ ) ? /* @__PURE__ */ t(q, { children: n.map(
197
199
  (o, h) => (o.value.toLowerCase().includes(m.toLowerCase()) || o.label && o.label.toLowerCase().includes(m.toLowerCase())) && /* @__PURE__ */ t(
198
- X,
200
+ z,
199
201
  {
200
202
  className: `${e}__item`,
201
203
  value: o.label ? `${o.label} ${o.value}` : o.value,
202
- ref: (a) => P.current[o.value] = a,
204
+ ref: (a) => E.current[o.value] = a,
203
205
  onSelect: (a) => {
204
206
  i(a), s(!1);
205
207
  },
@@ -207,7 +209,7 @@ const J = l.forwardRef(function({
207
209
  },
208
210
  `${o.value}-${h}`
209
211
  )
210
- ) }) : /* @__PURE__ */ t(w.Empty, { children: "No Options." }) })
212
+ ) }) : /* @__PURE__ */ t(w.Empty, { children: y }) })
211
213
  }
212
214
  ) })
213
215
  ] })
@@ -215,7 +217,7 @@ const J = l.forwardRef(function({
215
217
  )
216
218
  ] }) });
217
219
  });
218
- J.displayName = "ComboBox";
220
+ Q.displayName = "ComboBox";
219
221
  export {
220
- J as default
222
+ Q as default
221
223
  };
@@ -16,3 +16,4 @@ export declare const Playground: {
16
16
  };
17
17
  argTypes: {};
18
18
  };
19
+ export declare const ComboBoxInDrawer: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,39 @@
1
+ import { ReactNode } from 'react';
2
+ import * as PrimitiveToast from '@radix-ui/react-toast';
3
+ export interface PrimitiveToastProps extends Omit<PrimitiveToast.ToastProps, 'title'> {
4
+ /**
5
+ * The content to display as the toast's title.
6
+ */
7
+ title: ReactNode;
8
+ /**
9
+ * Optional element to serve as an action within the toast.
10
+ */
11
+ actionElement?: ReactNode;
12
+ /**
13
+ * Alternative text for the action element for accessibility.
14
+ */
15
+ actionAltText?: string;
16
+ /**
17
+ * Title for the close button for accessibility.
18
+ */
19
+ closeButtonLabel?: string;
20
+ }
21
+ /**
22
+ * ## Overview
23
+ *
24
+ * Toast is a non-disruptive message component that appears temporarily to provide
25
+ * brief notifications to the user. It contains a title, a close button, and an optional action button or link.
26
+ *
27
+ * Use the `useToast` hook to trigger toast notifications programmatically from any component.
28
+ *
29
+ * This component requires a `ToastProvider` to be present in your application. Make sure to
30
+ * wrap your application or the relevant section with the `ToastProvider` component.
31
+ *
32
+ * [Figma Link](https://www.figma.com/design/f3vm6hItGjnsmkJxLLbe3P/MANAGE---MUI-v5.9.0--24?node-id=6586-47081&m=dev)
33
+ *
34
+ * [Storybook Link](https://phillips-seldon.netlify.app/?path=/docs/components-toast--overview)
35
+ *
36
+ * [Radix UI Toast Documentation](https://www.radix-ui.com/docs/primitives/components/toast)
37
+ */
38
+ declare const Toast: import('react').ForwardRefExoticComponent<PrimitiveToastProps & import('react').RefAttributes<HTMLLIElement>>;
39
+ export default Toast;
@@ -0,0 +1,24 @@
1
+ import { jsxs as e, jsx as o } from "react/jsx-runtime";
2
+ import { forwardRef as d } from "react";
3
+ import { getCommonProps as p } from "../../utils/index.js";
4
+ import f from "../../node_modules/classnames/index.js";
5
+ import { Root as h, Title as N, Action as u, Close as C } from "../../node_modules/@radix-ui/react-toast/dist/index.js";
6
+ import _ from "../Icon/Icon.js";
7
+ import T from "../IconButton/IconButton.js";
8
+ import { ButtonVariants as $ } from "../Button/types.js";
9
+ const x = d(
10
+ ({ className: i, title: m, actionElement: a, actionAltText: s, closeButtonLabel: t, ...l }, n) => {
11
+ const { className: r, ...c } = p(l, "Toast");
12
+ return /* @__PURE__ */ e(h, { ...c, className: f(r, i), ref: n, children: [
13
+ /* @__PURE__ */ e("div", { className: `${r}__content`, children: [
14
+ /* @__PURE__ */ o(N, { children: m }),
15
+ a && s && /* @__PURE__ */ o(u, { asChild: !0, altText: s, className: `${r}__action`, children: a })
16
+ ] }),
17
+ /* @__PURE__ */ o(C, { className: `${r}__close`, "aria-label": t, asChild: !0, children: /* @__PURE__ */ o(T, { variant: $.link, children: /* @__PURE__ */ o(_, { icon: "CloseX", title: t, color: "$white", "aria-hidden": !0 }) }) })
18
+ ] });
19
+ }
20
+ );
21
+ x.displayName = "Toast";
22
+ export {
23
+ x as default
24
+ };
@@ -0,0 +1,16 @@
1
+ declare const meta: {
2
+ title: string;
3
+ component: import('react').ForwardRefExoticComponent<import('./Toast').PrimitiveToastProps & import('react').RefAttributes<HTMLLIElement>>;
4
+ };
5
+ export default meta;
6
+ export declare const Playground: {
7
+ (): import("react/jsx-runtime").JSX.Element;
8
+ parameters: {
9
+ docs: {
10
+ description: {
11
+ story: string;
12
+ };
13
+ };
14
+ };
15
+ };
16
+ export declare const Interactive: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,19 @@
1
+ import { PropsWithChildren } from 'react';
2
+ import { default as Toast, PrimitiveToastProps } from './Toast';
3
+ interface Toast extends PrimitiveToastProps {
4
+ id: string;
5
+ }
6
+ export interface ToastContextType {
7
+ toasts: Toast[];
8
+ addToast: (toast: Omit<Toast, 'id'>) => void;
9
+ removeToast: (id: string) => void;
10
+ }
11
+ /**
12
+ * Context for managing toast notifications
13
+ */
14
+ export declare const ToastContext: import('react').Context<ToastContextType | undefined>;
15
+ /**
16
+ * Provider component that manages toast notifications state and operations
17
+ */
18
+ export declare const ToastProvider: ({ children }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element;
19
+ export {};
@@ -0,0 +1,35 @@
1
+ import { jsx as e, jsxs as p } from "react/jsx-runtime";
2
+ import { Provider as l, Viewport as v } from "../../node_modules/@radix-ui/react-toast/dist/index.js";
3
+ import { createContext as f, useState as x, useCallback as m } from "react";
4
+ import T from "./Toast.js";
5
+ import { px as u } from "../../utils/index.js";
6
+ import C from "../../node_modules/uuid/dist/esm-browser/v4.js";
7
+ const h = f(void 0), N = ({ children: n }) => {
8
+ const [s, i] = x([]), c = m((o) => {
9
+ const t = C();
10
+ i((r) => [...r, { ...o, id: t }]);
11
+ }, []), a = m((o) => {
12
+ i((t) => t.filter((r) => r.id !== o));
13
+ }, []), d = {
14
+ toasts: s,
15
+ addToast: c,
16
+ removeToast: a
17
+ };
18
+ return /* @__PURE__ */ e(h.Provider, { value: d, children: /* @__PURE__ */ p(l, { children: [
19
+ n,
20
+ /* @__PURE__ */ e(v, { className: `${u}-toast-viewport` }),
21
+ s.map((o) => /* @__PURE__ */ e(
22
+ T,
23
+ {
24
+ ...o,
25
+ onOpenChange: (t) => !t && a(o.id),
26
+ title: o.title ?? ""
27
+ },
28
+ o.id
29
+ ))
30
+ ] }) });
31
+ };
32
+ export {
33
+ h as ToastContext,
34
+ N as ToastProvider
35
+ };
@@ -0,0 +1,3 @@
1
+ export { default as Toast } from './Toast';
2
+ export { ToastProvider } from './ToastContextProvider';
3
+ export { useToast } from './useToast';
@@ -0,0 +1,3 @@
1
+ import { PrimitiveToastProps as ToastProps } from './Toast';
2
+ import { ReactNode } from 'react';
3
+ export declare const useToast: () => (options: ToastProps | ReactNode) => void;
@@ -0,0 +1,10 @@
1
+ import { useToastContext as s } from "./useToastContext.js";
2
+ const l = () => {
3
+ const { addToast: e } = s();
4
+ return (t) => {
5
+ typeof t == "object" && t !== null && "title" in t ? e(t) : e({ title: t });
6
+ };
7
+ };
8
+ export {
9
+ l as useToast
10
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,7 @@
1
+ import { ToastContextType } from './ToastContextProvider';
2
+ export declare const fallbackContext: ToastContextType;
3
+ /**
4
+ * Custom hook to access the toast context
5
+ * Returns fallback context if used outside provider
6
+ */
7
+ export declare const useToastContext: () => ToastContextType;
@@ -0,0 +1,16 @@
1
+ import { useContext as o } from "react";
2
+ import { ToastContext as e } from "./ToastContextProvider.js";
3
+ const s = {
4
+ toasts: [],
5
+ addToast: () => {
6
+ },
7
+ removeToast: () => {
8
+ }
9
+ }, a = () => {
10
+ const t = o(e);
11
+ return t === void 0 ? (console.warn("useToastContext must be used within a ToastProvider"), s) : t;
12
+ };
13
+ export {
14
+ s as fallbackContext,
15
+ a as useToastContext
16
+ };
package/dist/index.d.ts CHANGED
@@ -74,6 +74,7 @@ export * from './components/FavoritingTileButton';
74
74
  export * from './components/Filter';
75
75
  export * from './components/Icon';
76
76
  export * from './components/TextArea';
77
+ export * from './components/Toast';
77
78
  export * from './components/AddToCalendar';
78
79
  export * from './patterns/AccountPageHeader';
79
80
  export * from './patterns/BidSnapshot';
package/dist/index.js CHANGED
@@ -1,10 +1,10 @@
1
- import { PaddingTokens as a, SpacingTokens as f, defaultYear as s, emailValidation as l, encodeURLSearchParams as d, findChildrenExcludingTypes as m, findChildrenOfType as p, focusElementById as u, generatePaddingClassName as i, getCommonProps as n, noOp as x, px as g, useNormalizedInputProps as c } from "./utils/index.js";
1
+ import { PaddingTokens as a, SpacingTokens as f, defaultYear as s, emailValidation as l, encodeURLSearchParams as d, findChildrenExcludingTypes as m, findChildrenOfType as p, focusElementById as u, generatePaddingClassName as i, getCommonProps as x, noOp as n, px as g, useNormalizedInputProps as c } from "./utils/index.js";
2
2
  import { default as C } from "./pages/Page.js";
3
- import { SSRMediaQuery as B, ssrMediaQueryStyle as A } from "./providers/SeldonProvider/utils.js";
4
- import { usePendingState as P } from "./utils/hooks.js";
3
+ import { SSRMediaQuery as B, ssrMediaQueryStyle as P } from "./providers/SeldonProvider/utils.js";
4
+ import { usePendingState as L } from "./utils/hooks.js";
5
5
  import { AuctionStatus as b, LotStatus as V, SupportedLanguages as h } from "./types/commonTypes.js";
6
- import { default as w } from "./components/Button/Button.js";
7
- import { ButtonVariants as v } from "./components/Button/types.js";
6
+ import { default as v } from "./components/Button/Button.js";
7
+ import { ButtonVariants as y } from "./components/Button/types.js";
8
8
  import { default as D } from "./components/IconButton/IconButton.js";
9
9
  import { default as M } from "./components/Accordion/Accordion.js";
10
10
  import { default as E } from "./components/Accordion/AccordionItem.js";
@@ -24,15 +24,15 @@ import { default as se } from "./components/Collapsible/CollapsibleTrigger.js";
24
24
  import { default as de } from "./components/ContentPeek/ContentPeek.js";
25
25
  import { HeightUnits as pe } from "./components/ContentPeek/utils.js";
26
26
  import { default as ie } from "./components/Detail/Detail.js";
27
- import { default as xe } from "./components/Drawer/Drawer.js";
27
+ import { default as ne } from "./components/Drawer/Drawer.js";
28
28
  import { default as ce } from "./components/Dropdown/Dropdown.js";
29
29
  import { default as Ce } from "./components/ErrorBoundary/ErrorBoundary.js";
30
30
  import { Grid as Be } from "./components/Grid/Grid.js";
31
- import { default as Le } from "./components/GridItem/GridItem.js";
31
+ import { default as Ae } from "./components/GridItem/GridItem.js";
32
32
  import { GridItemAlign as Ie } from "./components/GridItem/types.js";
33
33
  import { default as Ve } from "./components/Input/Input.js";
34
34
  import { default as ke } from "./components/Link/Link.js";
35
- import { LinkVariants as ye } from "./components/Link/types.js";
35
+ import { LinkVariants as we } from "./components/Link/types.js";
36
36
  import { default as He } from "./components/LinkBlock/LinkBlock.js";
37
37
  import { default as Fe } from "./components/LinkList/LinkList.js";
38
38
  import { default as Ne } from "./components/Modal/Modal.js";
@@ -50,15 +50,15 @@ import { SelectVariants as at } from "./components/Select/types.js";
50
50
  import { default as st } from "./components/SplitPanel/SplitPanel.js";
51
51
  import { default as dt } from "./components/Tabs/TabsContainer.js";
52
52
  import { default as pt } from "./components/Tabs/TabsContent.js";
53
- import { Tag as it, default as nt } from "./components/Tags/Tags.js";
53
+ import { Tag as it, default as xt } from "./components/Tags/Tags.js";
54
54
  import { TextAlignments as gt, TextVariants as ct } from "./components/Text/types.js";
55
55
  import { default as Ct } from "./components/Text/Text.js";
56
56
  import { TextSymbolVariants as Bt } from "./components/TextSymbol/types.js";
57
- import { default as Lt } from "./components/TextSymbol/TextSymbol.js";
57
+ import { default as At } from "./components/TextSymbol/TextSymbol.js";
58
58
  import { default as It } from "./components/Video/Video.js";
59
59
  import { default as Vt } from "./patterns/DetailList/DetailList.js";
60
60
  import { DetailListAlignment as kt } from "./patterns/DetailList/types.js";
61
- import { default as yt } from "./patterns/FavoritesCollectionTile/FavoritesCollectionTile.js";
61
+ import { default as wt } from "./patterns/FavoritesCollectionTile/FavoritesCollectionTile.js";
62
62
  import { default as Ht } from "./patterns/HeroBanner/HeroBanner.js";
63
63
  import { default as Ft } from "./patterns/LanguageSelector/LanguageSelector.js";
64
64
  import { default as Nt } from "./patterns/SaleHeaderBanner/SaleHeaderBanner.js";
@@ -76,38 +76,41 @@ import { default as ao } from "./components/PageContentWrapper/PageContentWrappe
76
76
  import { default as so } from "./site-furniture/Footer/Footer.js";
77
77
  import { default as mo } from "./site-furniture/Header/Header.js";
78
78
  import { default as uo } from "./components/Article/Article.js";
79
- import { default as no } from "./components/Countdown/Countdown.js";
79
+ import { default as xo } from "./components/Countdown/Countdown.js";
80
80
  import { CountdownVariants as go } from "./components/Countdown/types.js";
81
81
  import { default as So } from "./components/Divider/Divider.js";
82
82
  import { default as To } from "./components/FavoritingTileButton/FavoritingTileButton.js";
83
- import { default as Ao } from "./components/Filter/Filter.js";
84
- import { default as Po } from "./components/Filter/FilterInput.js";
83
+ import { default as Po } from "./components/Filter/Filter.js";
84
+ import { default as Lo } from "./components/Filter/FilterInput.js";
85
85
  import { default as bo } from "./components/Filter/FilterHeader.js";
86
86
  import { default as ho } from "./components/TextArea/TextArea.js";
87
- import { default as wo } from "./components/AddToCalendar/AddToCalendar.js";
88
- import { default as vo } from "./patterns/AccountPageHeader/AccountPageHeader.js";
89
- import { default as Do } from "./patterns/BidSnapshot/BidSnapshot.js";
90
- import { default as Mo } from "./patterns/BidSnapshot/BidMessage.js";
91
- import { BidMessageVariants as Eo, BidStatusEnum as Uo } from "./patterns/BidSnapshot/types.js";
92
- import { default as Oo } from "./patterns/FilterMenu/FilterMenu.js";
93
- import { default as Qo } from "./patterns/ObjectTile/ObjectTile.js";
87
+ import { default as vo } from "./components/Toast/Toast.js";
88
+ import { ToastProvider as yo } from "./components/Toast/ToastContextProvider.js";
89
+ import { useToast as Do } from "./components/Toast/useToast.js";
90
+ import { default as Mo } from "./components/AddToCalendar/AddToCalendar.js";
91
+ import { default as Eo } from "./patterns/AccountPageHeader/AccountPageHeader.js";
92
+ import { default as Go } from "./patterns/BidSnapshot/BidSnapshot.js";
93
+ import { default as Ro } from "./patterns/BidSnapshot/BidMessage.js";
94
+ import { BidMessageVariants as jo, BidStatusEnum as zo } from "./patterns/BidSnapshot/types.js";
95
+ import { default as Yo } from "./patterns/FilterMenu/FilterMenu.js";
96
+ import { default as qo } from "./patterns/ObjectTile/ObjectTile.js";
94
97
  export {
95
98
  M as Accordion,
96
99
  E as AccordionItem,
97
100
  G as AccordionItemVariant,
98
101
  O as AccordionVariants,
99
- vo as AccountPageHeader,
100
- wo as AddToCalendar,
102
+ Eo as AccountPageHeader,
103
+ Mo as AddToCalendar,
101
104
  uo as Article,
102
105
  b as AuctionStatus,
103
106
  Yt as AuthState,
104
- Mo as BidMessage,
105
- Eo as BidMessageVariants,
106
- Do as BidSnapshot,
107
- Uo as BidStatusEnum,
107
+ Ro as BidMessage,
108
+ jo as BidMessageVariants,
109
+ Go as BidSnapshot,
110
+ zo as BidStatusEnum,
108
111
  Q as Breadcrumb,
109
- w as Button,
110
- v as ButtonVariants,
112
+ v as Button,
113
+ y as ButtonVariants,
111
114
  Y as Carousel,
112
115
  q as CarouselArrows,
113
116
  K as CarouselContent,
@@ -119,24 +122,24 @@ export {
119
122
  oo as ComboBox,
120
123
  de as ContentPeek,
121
124
  pe as ContentPeekHeightUnits,
122
- no as Countdown,
125
+ xo as Countdown,
123
126
  go as CountdownVariants,
124
127
  ie as Detail,
125
128
  Vt as DetailList,
126
129
  kt as DetailListAlignment,
127
130
  So as Divider,
128
- xe as Drawer,
131
+ ne as Drawer,
129
132
  ce as Dropdown,
130
133
  Ce as ErrorBoundary,
131
- yt as FavoritesCollectionTile,
134
+ wt as FavoritesCollectionTile,
132
135
  To as FavoritingTileButton,
133
- Ao as Filter,
136
+ Po as Filter,
134
137
  bo as FilterHeader,
135
- Po as FilterInput,
136
- Oo as FilterMenu,
138
+ Lo as FilterInput,
139
+ Yo as FilterMenu,
137
140
  so as Footer,
138
141
  Be as Grid,
139
- Le as GridItem,
142
+ Ae as GridItem,
140
143
  Ie as GridItemAlign,
141
144
  mo as Header,
142
145
  Ht as HeroBanner,
@@ -147,14 +150,14 @@ export {
147
150
  ke as Link,
148
151
  He as LinkBlock,
149
152
  Fe as LinkList,
150
- ye as LinkVariants,
153
+ we as LinkVariants,
151
154
  V as LotStatus,
152
155
  Ne as Modal,
153
156
  Ue as Navigation,
154
157
  Oe as NavigationItem,
155
158
  Qe as NavigationItemTrigger,
156
159
  ze as NavigationList,
157
- Qo as ObjectTile,
160
+ qo as ObjectTile,
158
161
  a as PaddingTokens,
159
162
  C as Page,
160
163
  ao as PageContentWrapper,
@@ -179,13 +182,15 @@ export {
179
182
  dt as TabsContainer,
180
183
  pt as TabsContent,
181
184
  it as Tag,
182
- nt as TagsList,
185
+ xt as TagsList,
183
186
  Ct as Text,
184
187
  gt as TextAlignments,
185
188
  ho as TextArea,
186
189
  Bt as TextSymbolVariants,
187
- Lt as TextSymbols,
190
+ At as TextSymbols,
188
191
  ct as TextVariants,
192
+ vo as Toast,
193
+ yo as ToastProvider,
189
194
  qt as UserManagement,
190
195
  It as Video,
191
196
  _t as ViewingsList,
@@ -196,10 +201,11 @@ export {
196
201
  p as findChildrenOfType,
197
202
  u as focusElementById,
198
203
  i as generatePaddingClassName,
199
- n as getCommonProps,
200
- x as noOp,
204
+ x as getCommonProps,
205
+ n as noOp,
201
206
  g as px,
202
- A as ssrMediaQueryStyle,
207
+ P as ssrMediaQueryStyle,
203
208
  c as useNormalizedInputProps,
204
- P as usePendingState
209
+ L as usePendingState,
210
+ Do as useToast
205
211
  };