@phillips/seldon 1.116.0 → 1.117.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.
- package/dist/assets/CarouselArrowNext.svg.js +5 -0
- package/dist/assets/CarouselArrowPrev.svg.js +5 -0
- package/dist/assets/icons.d.ts +2 -0
- package/dist/components/Carousel/Carousel.d.ts +4 -0
- package/dist/components/Carousel/Carousel.js +22 -20
- package/dist/components/Carousel/Carousel.stories.d.ts +12 -0
- package/dist/components/Carousel/CarouselArrows.d.ts +10 -0
- package/dist/components/Carousel/CarouselArrows.js +32 -0
- package/dist/components/Carousel/index.d.ts +1 -0
- package/dist/index.js +227 -221
- package/dist/scss/components/Carousel/_carousel.scss +58 -0
- package/package.json +1 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const o = (t) => /* @__PURE__ */ e.createElement("svg", { width: 16, height: 32, viewBox: "0 0 16 32", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { id: "Chevron Vector", d: "M1.58325 1.08191L14.4166 15.7486L1.58325 30.4152", stroke: "black", strokeWidth: 2 }));
|
|
3
|
+
export {
|
|
4
|
+
o as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const r = (t) => /* @__PURE__ */ e.createElement("svg", { width: 16, height: 32, viewBox: "0 0 16 32", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { id: "Chevron Vector", d: "M14.4167 1.08191L1.58337 15.7486L14.4167 30.4152", stroke: "black", strokeWidth: 2 }));
|
|
3
|
+
export {
|
|
4
|
+
r as default
|
|
5
|
+
};
|
package/dist/assets/icons.d.ts
CHANGED
|
@@ -2,6 +2,8 @@ export { default as AccountCircle } from './account_circle.svg?react';
|
|
|
2
2
|
export { default as ArrowPrev } from './arrowPrev.svg?react';
|
|
3
3
|
export { default as Calendar } from './calendar.svg?react';
|
|
4
4
|
export { default as CalendarAlt } from './calendarAlt.svg?react';
|
|
5
|
+
export { default as CarouselArrowNext } from './CarouselArrowNext.svg?react';
|
|
6
|
+
export { default as CarouselArrowPrev } from './CarouselArrowPrev.svg?react';
|
|
5
7
|
export { default as Checkmark } from './checkmark.svg?react';
|
|
6
8
|
export { default as ChevronDown } from './chevronDown.svg?react';
|
|
7
9
|
export { default as ChevronNext } from './chevronNext.svg?react';
|
|
@@ -27,6 +27,10 @@ export interface CarouselProps extends ComponentProps<'div'> {
|
|
|
27
27
|
* Whether the carousel should disable dragging.
|
|
28
28
|
*/
|
|
29
29
|
disableDrag?: boolean;
|
|
30
|
+
/**
|
|
31
|
+
* The threshold for slides to be considered in view. A value of 0.1 means that 10% of the slide must be in view for it to be considered in view.
|
|
32
|
+
*/
|
|
33
|
+
inViewThreshold?: number;
|
|
30
34
|
}
|
|
31
35
|
type CarouselContextProps = {
|
|
32
36
|
carouselRef: ReturnType<typeof useEmblaCarousel>[0];
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { jsx as m } from "react/jsx-runtime";
|
|
2
|
-
import { createContext as
|
|
2
|
+
import { createContext as b, forwardRef as h, useEffect as u, useCallback as i } from "react";
|
|
3
3
|
import { getCommonProps as A } from "../../utils/index.js";
|
|
4
4
|
import R from "../../node_modules/classnames/index.js";
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import { WheelGesturesPlugin as
|
|
8
|
-
const
|
|
5
|
+
import E from "../../node_modules/embla-carousel-class-names/esm/embla-carousel-class-names.esm.js";
|
|
6
|
+
import K from "../../node_modules/embla-carousel-react/esm/embla-carousel-react.esm.js";
|
|
7
|
+
import { WheelGesturesPlugin as W } from "../../node_modules/embla-carousel-wheel-gestures/dist/embla-carousel-wheel-gestures.esm.js";
|
|
8
|
+
const j = b(null), p = h(
|
|
9
9
|
({
|
|
10
10
|
loop: w = !1,
|
|
11
11
|
startIndex: x = 0,
|
|
@@ -15,22 +15,24 @@ const W = h(null), j = k(
|
|
|
15
15
|
columnGap: v,
|
|
16
16
|
useWheelGestures: P = !1,
|
|
17
17
|
disableDrag: l = !1,
|
|
18
|
+
inViewThreshold: I = 0.99,
|
|
18
19
|
...t
|
|
19
|
-
},
|
|
20
|
+
}, C) => {
|
|
20
21
|
var c, f;
|
|
21
|
-
const { className:
|
|
22
|
+
const { className: D, ...y } = A(t, "Carousel"), [k, e] = K(
|
|
22
23
|
{
|
|
23
24
|
loop: w,
|
|
24
25
|
startIndex: x,
|
|
25
|
-
inViewThreshold:
|
|
26
|
+
inViewThreshold: I,
|
|
27
|
+
breakpoints: { "(min-width: 961px)": { watchDrag: !1 } }
|
|
26
28
|
},
|
|
27
29
|
[
|
|
28
30
|
...P ? [
|
|
29
|
-
|
|
31
|
+
W({
|
|
30
32
|
forceWheelAxis: "x"
|
|
31
33
|
})
|
|
32
34
|
] : [],
|
|
33
|
-
|
|
35
|
+
E({
|
|
34
36
|
snapped: "carousel-item-in-view"
|
|
35
37
|
})
|
|
36
38
|
]
|
|
@@ -49,11 +51,11 @@ const W = h(null), j = k(
|
|
|
49
51
|
[e]
|
|
50
52
|
), o = i(
|
|
51
53
|
(r) => {
|
|
52
|
-
var
|
|
54
|
+
var n;
|
|
53
55
|
if (!r)
|
|
54
56
|
return;
|
|
55
|
-
const
|
|
56
|
-
|
|
57
|
+
const a = (n = r.slidesInView()) == null ? void 0 : n[0];
|
|
58
|
+
a !== void 0 && (s == null || s(a));
|
|
57
59
|
},
|
|
58
60
|
[s]
|
|
59
61
|
);
|
|
@@ -63,10 +65,10 @@ const W = h(null), j = k(
|
|
|
63
65
|
e.off("slidesInView", o);
|
|
64
66
|
};
|
|
65
67
|
}, [e, o]), /* @__PURE__ */ m(
|
|
66
|
-
|
|
68
|
+
j.Provider,
|
|
67
69
|
{
|
|
68
70
|
value: {
|
|
69
|
-
carouselRef:
|
|
71
|
+
carouselRef: k,
|
|
70
72
|
api: e,
|
|
71
73
|
scrollPrev: () => e == null ? void 0 : e.scrollPrev(),
|
|
72
74
|
scrollNext: () => e == null ? void 0 : e.scrollNext(),
|
|
@@ -78,9 +80,9 @@ const W = h(null), j = k(
|
|
|
78
80
|
children: /* @__PURE__ */ m(
|
|
79
81
|
"div",
|
|
80
82
|
{
|
|
81
|
-
ref:
|
|
83
|
+
ref: C,
|
|
82
84
|
onKeyDownCapture: V,
|
|
83
|
-
className: R(
|
|
85
|
+
className: R(D, d),
|
|
84
86
|
role: "region",
|
|
85
87
|
"aria-roledescription": "carousel",
|
|
86
88
|
...t,
|
|
@@ -92,8 +94,8 @@ const W = h(null), j = k(
|
|
|
92
94
|
);
|
|
93
95
|
}
|
|
94
96
|
);
|
|
95
|
-
|
|
97
|
+
p.displayName = "Carousel";
|
|
96
98
|
export {
|
|
97
|
-
|
|
98
|
-
|
|
99
|
+
j as CarouselContext,
|
|
100
|
+
p as default
|
|
99
101
|
};
|
|
@@ -10,6 +10,11 @@ export declare const Playground: {
|
|
|
10
10
|
args: {};
|
|
11
11
|
argTypes: {};
|
|
12
12
|
};
|
|
13
|
+
export declare const CarouselWithArrows: {
|
|
14
|
+
(props: CarouselProps): import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
args: {};
|
|
16
|
+
argTypes: {};
|
|
17
|
+
};
|
|
13
18
|
export declare const CarouselWithDots: {
|
|
14
19
|
(props: CarouselProps & CarouselDotsProps): import("react/jsx-runtime").JSX.Element;
|
|
15
20
|
args: {
|
|
@@ -19,6 +24,13 @@ export declare const CarouselWithDots: {
|
|
|
19
24
|
};
|
|
20
25
|
argTypes: {};
|
|
21
26
|
};
|
|
27
|
+
export declare const CarouselWithDotsAndArrows: {
|
|
28
|
+
(props: CarouselProps & CarouselDotsProps): import("react/jsx-runtime").JSX.Element;
|
|
29
|
+
args: {
|
|
30
|
+
maxDots: number;
|
|
31
|
+
};
|
|
32
|
+
argTypes: {};
|
|
33
|
+
};
|
|
22
34
|
export declare const CarouselWithDotsOverflow: {
|
|
23
35
|
(props: CarouselProps & CarouselDotsProps): import("react/jsx-runtime").JSX.Element;
|
|
24
36
|
args: {
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ComponentProps } from 'react';
|
|
2
|
+
export type CarouselArrowsProps = ComponentProps<'div'>;
|
|
3
|
+
/**
|
|
4
|
+
* ## Overview
|
|
5
|
+
*
|
|
6
|
+
* Arrow naivigation for the carousel.
|
|
7
|
+
*
|
|
8
|
+
*/
|
|
9
|
+
declare const CarouselArrows: import('react').ForwardRefExoticComponent<Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & import('react').RefAttributes<HTMLDivElement>>;
|
|
10
|
+
export default CarouselArrows;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { jsxs as m, jsx as o } from "react/jsx-runtime";
|
|
2
|
+
import u from "../../node_modules/classnames/index.js";
|
|
3
|
+
import { forwardRef as p, useCallback as a } from "react";
|
|
4
|
+
import { getCommonProps as C } from "../../utils/index.js";
|
|
5
|
+
import { useCarousel as d } from "./utils.js";
|
|
6
|
+
import f from "../../assets/CarouselArrowNext.svg.js";
|
|
7
|
+
import v from "../../assets/CarouselArrowPrev.svg.js";
|
|
8
|
+
const N = p(({ className: t, ...s }, l) => {
|
|
9
|
+
const { className: e, ...n } = C(s, "CarouselArrows"), { api: r } = d(), i = a(() => {
|
|
10
|
+
r && r.scrollPrev(!0);
|
|
11
|
+
}, [r]), c = a(() => {
|
|
12
|
+
r && r.scrollNext(!0);
|
|
13
|
+
}, [r]);
|
|
14
|
+
return /* @__PURE__ */ m(
|
|
15
|
+
"div",
|
|
16
|
+
{
|
|
17
|
+
ref: l,
|
|
18
|
+
"aria-roledescription": "carousel-arrow-navigation",
|
|
19
|
+
className: u(`${e}`, t),
|
|
20
|
+
...s,
|
|
21
|
+
...n,
|
|
22
|
+
children: [
|
|
23
|
+
/* @__PURE__ */ o("button", { className: `${e}-prev-btn`, onClick: () => i(), children: /* @__PURE__ */ o("div", { className: `${e}-prev-btn__icon`, children: /* @__PURE__ */ o(v, {}) }) }),
|
|
24
|
+
/* @__PURE__ */ o("button", { className: `${e}-next-btn`, onClick: () => c(), children: /* @__PURE__ */ o("div", { className: `${e}-next-btn__icon`, children: /* @__PURE__ */ o(f, {}) }) })
|
|
25
|
+
]
|
|
26
|
+
}
|
|
27
|
+
);
|
|
28
|
+
});
|
|
29
|
+
N.displayName = "CarouselArrows";
|
|
30
|
+
export {
|
|
31
|
+
N as default
|
|
32
|
+
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { default as Carousel, type CarouselProps, type CarouselApi } from './Carousel';
|
|
2
|
+
export { default as CarouselArrows, type CarouselArrowsProps } from './CarouselArrows';
|
|
2
3
|
export { default as CarouselContent, type CarouselContentProps } from './CarouselContent';
|
|
3
4
|
export { default as CarouselItem, type CarouselItemProps } from './CarouselItem';
|
|
4
5
|
export { default as CarouselDots, type CarouselDotsProps } from './CarouselDots';
|
package/dist/index.js
CHANGED
|
@@ -1,233 +1,239 @@
|
|
|
1
1
|
import { PaddingTokens as f, SpacingTokens as s, defaultYear as l, emailValidation as d, encodeURLSearchParams as m, findChildrenExcludingTypes as p, findChildrenOfType as u, generatePaddingClassName as x, getCommonProps as i, noOp as n, px as g, useNormalizedInputProps as c } from "./utils/index.js";
|
|
2
2
|
import { default as S } from "./assets/account_circle.svg.js";
|
|
3
3
|
import { default as L } from "./assets/arrowPrev.svg.js";
|
|
4
|
-
import { default as
|
|
5
|
-
import { default as
|
|
6
|
-
import { default as
|
|
7
|
-
import { default as
|
|
8
|
-
import { default as
|
|
9
|
-
import { default as y } from "./assets/
|
|
10
|
-
import { default as
|
|
11
|
-
import { default as
|
|
12
|
-
import { default as G } from "./assets/
|
|
13
|
-
import { default as U } from "./assets/
|
|
14
|
-
import { default as W } from "./assets/
|
|
15
|
-
import { default as Y } from "./assets/icon-footer-
|
|
16
|
-
import { default as z } from "./assets/icon-footer-
|
|
17
|
-
import { default as q } from "./assets/icon-footer-
|
|
18
|
-
import { default as K } from "./assets/
|
|
19
|
-
import { default as _ } from "./assets/
|
|
20
|
-
import { default as ee } from "./assets/
|
|
21
|
-
import { default as
|
|
22
|
-
import { default as ae } from "./assets/
|
|
23
|
-
import { default as se } from "./assets/
|
|
4
|
+
import { default as A } from "./assets/calendar.svg.js";
|
|
5
|
+
import { default as I } from "./assets/calendarAlt.svg.js";
|
|
6
|
+
import { default as k } from "./assets/CarouselArrowNext.svg.js";
|
|
7
|
+
import { default as B } from "./assets/CarouselArrowPrev.svg.js";
|
|
8
|
+
import { default as v } from "./assets/checkmark.svg.js";
|
|
9
|
+
import { default as y } from "./assets/chevronDown.svg.js";
|
|
10
|
+
import { default as N } from "./assets/chevronNext.svg.js";
|
|
11
|
+
import { default as H } from "./assets/chevronRight.svg.js";
|
|
12
|
+
import { default as G } from "./assets/close.svg.js";
|
|
13
|
+
import { default as U } from "./assets/favorite.svg.js";
|
|
14
|
+
import { default as W } from "./assets/favoriteOutline.svg.js";
|
|
15
|
+
import { default as Y } from "./assets/icon-footer-facebook.svg.js";
|
|
16
|
+
import { default as z } from "./assets/icon-footer-instagram.svg.js";
|
|
17
|
+
import { default as q } from "./assets/icon-footer-linkedin.svg.js";
|
|
18
|
+
import { default as K } from "./assets/icon-footer-red.svg.js";
|
|
19
|
+
import { default as _ } from "./assets/icon-footer-wechat.svg.js";
|
|
20
|
+
import { default as ee } from "./assets/instagram.svg.js";
|
|
21
|
+
import { default as re } from "./assets/lock.svg.js";
|
|
22
|
+
import { default as ae } from "./assets/minus.svg.js";
|
|
23
|
+
import { default as se } from "./assets/PhillipsLogo.svg.js";
|
|
24
|
+
import { default as de } from "./assets/plus.svg.js";
|
|
25
|
+
import { default as pe } from "./assets/react.svg.js";
|
|
24
26
|
import "react";
|
|
25
|
-
import { default as
|
|
26
|
-
import { default as
|
|
27
|
-
import { default as
|
|
28
|
-
import { default as
|
|
29
|
-
import { default as
|
|
30
|
-
import { default as
|
|
31
|
-
import { default as
|
|
32
|
-
import { usePendingState as
|
|
33
|
-
import { SSRMediaQuery as
|
|
34
|
-
import { AuctionStatus as
|
|
35
|
-
import { default as
|
|
36
|
-
import { ButtonVariants as
|
|
37
|
-
import { default as
|
|
38
|
-
import { default as
|
|
39
|
-
import { default as
|
|
40
|
-
import { Grid as
|
|
41
|
-
import { default as
|
|
42
|
-
import { default as
|
|
43
|
-
import { default as
|
|
44
|
-
import { default as
|
|
45
|
-
import { default as
|
|
46
|
-
import { default as
|
|
47
|
-
import { default as
|
|
48
|
-
import { default as
|
|
49
|
-
import { LinkVariants as
|
|
50
|
-
import { default as
|
|
51
|
-
import { default as
|
|
52
|
-
import { default as
|
|
53
|
-
import { default as
|
|
54
|
-
import { GridItemAlign as
|
|
55
|
-
import { default as
|
|
56
|
-
import { default as
|
|
57
|
-
import { SelectVariants as
|
|
58
|
-
import { default as
|
|
59
|
-
import { default as
|
|
60
|
-
import { SubscriptionState as
|
|
61
|
-
import { default as
|
|
62
|
-
import { default as
|
|
63
|
-
import { default as
|
|
64
|
-
import { default as
|
|
65
|
-
import { default as
|
|
66
|
-
import { Tag as
|
|
67
|
-
import { default as
|
|
68
|
-
import { TextAlignments as
|
|
69
|
-
import { default as
|
|
70
|
-
import { TextSymbolVariants as
|
|
71
|
-
import { default as
|
|
72
|
-
import { default as
|
|
73
|
-
import { default as
|
|
74
|
-
import { AccordionItemVariant as
|
|
75
|
-
import { default as
|
|
76
|
-
import { AuthState as
|
|
77
|
-
import { default as
|
|
27
|
+
import { default as xe } from "./assets/share.svg.js";
|
|
28
|
+
import { default as ne } from "./assets/spotify.svg.js";
|
|
29
|
+
import { default as ce } from "./assets/wechat.svg.js";
|
|
30
|
+
import { default as Se } from "./assets/youtube.svg.js";
|
|
31
|
+
import { default as Le } from "./assets/icon-green-circle.svg.js";
|
|
32
|
+
import { default as Ae } from "./assets/icon-red-circle.svg.js";
|
|
33
|
+
import { default as Ie } from "./pages/Page.js";
|
|
34
|
+
import { usePendingState as ke } from "./utils/hooks.js";
|
|
35
|
+
import { SSRMediaQuery as Be, ssrMediaQueryStyle as Ve } from "./providers/SeldonProvider/utils.js";
|
|
36
|
+
import { AuctionStatus as Fe, LotStatus as ye, SupportedLanguages as Me } from "./types/commonTypes.js";
|
|
37
|
+
import { default as De } from "./components/Button/Button.js";
|
|
38
|
+
import { ButtonVariants as Re } from "./components/Button/types.js";
|
|
39
|
+
import { default as Oe } from "./components/IconButton/IconButton.js";
|
|
40
|
+
import { default as Ee } from "./components/ErrorBoundary/ErrorBoundary.js";
|
|
41
|
+
import { default as Qe } from "./site-furniture/Footer/Footer.js";
|
|
42
|
+
import { Grid as je } from "./components/Grid/Grid.js";
|
|
43
|
+
import { default as Ze } from "./site-furniture/Header/Header.js";
|
|
44
|
+
import { default as Je } from "./components/Navigation/Navigation.js";
|
|
45
|
+
import { default as Xe } from "./components/Navigation/NavigationItem/NavigationItem.js";
|
|
46
|
+
import { default as $e } from "./components/Navigation/NavigationItemTrigger/NavigationItemTrigger.js";
|
|
47
|
+
import { default as tt } from "./components/Navigation/NavigationList/NavigationList.js";
|
|
48
|
+
import { default as ot } from "./patterns/HeroBanner/HeroBanner.js";
|
|
49
|
+
import { default as ft } from "./components/Input/Input.js";
|
|
50
|
+
import { default as lt } from "./components/Link/Link.js";
|
|
51
|
+
import { LinkVariants as mt } from "./components/Link/types.js";
|
|
52
|
+
import { default as ut } from "./components/LinkBlock/LinkBlock.js";
|
|
53
|
+
import { default as it } from "./components/LinkList/LinkList.js";
|
|
54
|
+
import { default as gt } from "./components/Row/Row.js";
|
|
55
|
+
import { default as Ct } from "./components/GridItem/GridItem.js";
|
|
56
|
+
import { GridItemAlign as ht } from "./components/GridItem/types.js";
|
|
57
|
+
import { default as Pt } from "./components/Search/Search.js";
|
|
58
|
+
import { default as Tt } from "./components/Select/Select.js";
|
|
59
|
+
import { SelectVariants as bt } from "./components/Select/types.js";
|
|
60
|
+
import { default as wt } from "./components/SplitPanel/SplitPanel.js";
|
|
61
|
+
import { default as Vt } from "./patterns/Subscribe/Subscribe.js";
|
|
62
|
+
import { SubscriptionState as Ft } from "./patterns/Subscribe/types.js";
|
|
63
|
+
import { default as Mt } from "./patterns/Social/Social.js";
|
|
64
|
+
import { default as Dt } from "./patterns/ViewingsList/ViewingsList.js";
|
|
65
|
+
import { default as Rt } from "./components/Modal/Modal.js";
|
|
66
|
+
import { default as Ot } from "./components/Drawer/Drawer.js";
|
|
67
|
+
import { default as Et } from "./components/Pagination/Pagination.js";
|
|
68
|
+
import { Tag as Qt, default as Yt } from "./components/Tags/Tags.js";
|
|
69
|
+
import { default as zt } from "./patterns/ViewingsList/StatefulViewingsList.js";
|
|
70
|
+
import { TextAlignments as qt, TextVariants as Jt } from "./components/Text/types.js";
|
|
71
|
+
import { default as Xt } from "./components/Text/Text.js";
|
|
72
|
+
import { TextSymbolVariants as $t } from "./components/TextSymbol/types.js";
|
|
73
|
+
import { default as tr } from "./components/TextSymbol/TextSymbol.js";
|
|
74
|
+
import { default as or } from "./components/Accordion/Accordion.js";
|
|
75
|
+
import { default as fr } from "./components/Accordion/AccordionItem.js";
|
|
76
|
+
import { AccordionItemVariant as lr, AccordionVariants as dr } from "./components/Accordion/types.js";
|
|
77
|
+
import { default as pr } from "./patterns/UserManagement/UserManagement.js";
|
|
78
|
+
import { AuthState as xr } from "./patterns/UserManagement/types.js";
|
|
79
|
+
import { default as nr } from "./components/Breadcrumb/Breadcrumb.js";
|
|
78
80
|
import "react/jsx-runtime";
|
|
79
81
|
import "./node_modules/classnames/index.js";
|
|
80
|
-
import { default as
|
|
81
|
-
import { default as
|
|
82
|
-
import { default as
|
|
83
|
-
import { default as
|
|
84
|
-
import { HeightUnits as
|
|
85
|
-
import { default as
|
|
86
|
-
import { default as
|
|
87
|
-
import { default as
|
|
88
|
-
import { SeldonProvider as
|
|
89
|
-
import { default as
|
|
90
|
-
import { default as
|
|
91
|
-
import { default as
|
|
92
|
-
import { default as
|
|
93
|
-
import { default as
|
|
94
|
-
import { default as
|
|
95
|
-
import { default as
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import { default as
|
|
99
|
-
import { default as
|
|
100
|
-
import { default as
|
|
101
|
-
import { default as
|
|
102
|
-
import { default as
|
|
103
|
-
import { default as
|
|
104
|
-
import { default as
|
|
105
|
-
import { default as
|
|
106
|
-
import { default as
|
|
107
|
-
import { default as
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import { default as
|
|
111
|
-
import { default as
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
82
|
+
import { default as cr } from "./components/Dropdown/Dropdown.js";
|
|
83
|
+
import { default as Sr } from "./components/Video/Video.js";
|
|
84
|
+
import { default as Lr } from "./patterns/LanguageSelector/LanguageSelector.js";
|
|
85
|
+
import { default as Ar } from "./components/ContentPeek/ContentPeek.js";
|
|
86
|
+
import { HeightUnits as Ir } from "./components/ContentPeek/utils.js";
|
|
87
|
+
import { default as kr } from "./components/Collapsible/Collapsible.js";
|
|
88
|
+
import { default as Br } from "./components/Collapsible/CollapsibleContent.js";
|
|
89
|
+
import { default as vr } from "./components/Collapsible/CollapsibleTrigger.js";
|
|
90
|
+
import { SeldonProvider as yr } from "./providers/SeldonProvider/SeldonProvider.js";
|
|
91
|
+
import { default as Nr } from "./components/PageContentWrapper/PageContentWrapper.js";
|
|
92
|
+
import { default as Hr } from "./components/Carousel/Carousel.js";
|
|
93
|
+
import { default as Gr } from "./components/Carousel/CarouselArrows.js";
|
|
94
|
+
import { default as Ur } from "./components/Carousel/CarouselContent.js";
|
|
95
|
+
import { default as Wr } from "./components/Carousel/CarouselItem.js";
|
|
96
|
+
import { default as Yr } from "./components/Carousel/CarouselDots.js";
|
|
97
|
+
import { default as zr } from "./components/Detail/Detail.js";
|
|
98
|
+
import { default as qr } from "./patterns/DetailList/DetailList.js";
|
|
99
|
+
import { DetailListAlignment as Kr } from "./patterns/DetailList/types.js";
|
|
100
|
+
import { default as _r } from "./components/PinchZoom/PinchZoom.js";
|
|
101
|
+
import { default as eo } from "./components/Tabs/TabsContainer.js";
|
|
102
|
+
import { default as ro } from "./components/Tabs/TabsContent.js";
|
|
103
|
+
import { default as ao } from "./components/SeldonImage/SeldonImage.js";
|
|
104
|
+
import { default as so } from "./patterns/SaleHeaderBanner/SaleHeaderBanner.js";
|
|
105
|
+
import { default as mo } from "./patterns/SaleHeaderBanner/SaleHeaderBrowseAuctions.js";
|
|
106
|
+
import { default as uo } from "./patterns/FilterMenu/FilterMenu.js";
|
|
107
|
+
import { default as io } from "./components/Filter/Filter.js";
|
|
108
|
+
import { default as go } from "./components/Filter/FilterInput.js";
|
|
109
|
+
import { default as Co } from "./components/Filter/FilterHeader.js";
|
|
110
|
+
import { default as ho } from "./components/Countdown/Countdown.js";
|
|
111
|
+
import { CountdownVariants as Po } from "./components/Countdown/types.js";
|
|
112
|
+
import { default as To } from "./patterns/ObjectTile/ObjectTile.js";
|
|
113
|
+
import { default as bo } from "./patterns/BidSnapshot/BidSnapshot.js";
|
|
114
|
+
import { default as wo } from "./patterns/BidSnapshot/BidMessage.js";
|
|
115
|
+
import { BidMessageVariants as Vo, BidStatusEnum as vo } from "./patterns/BidSnapshot/types.js";
|
|
116
|
+
import { default as yo } from "./components/Article/Article.js";
|
|
114
117
|
export {
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
118
|
+
or as Accordion,
|
|
119
|
+
fr as AccordionItem,
|
|
120
|
+
lr as AccordionItemVariant,
|
|
121
|
+
dr as AccordionVariants,
|
|
119
122
|
S as AccountCircle,
|
|
120
123
|
L as ArrowPrev,
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
124
|
+
yo as Article,
|
|
125
|
+
Fe as AuctionStatus,
|
|
126
|
+
xr as AuthState,
|
|
127
|
+
wo as BidMessage,
|
|
128
|
+
Vo as BidMessageVariants,
|
|
129
|
+
bo as BidSnapshot,
|
|
130
|
+
vo as BidStatusEnum,
|
|
131
|
+
nr as Breadcrumb,
|
|
132
|
+
De as Button,
|
|
133
|
+
Re as ButtonVariants,
|
|
134
|
+
A as Calendar,
|
|
135
|
+
I as CalendarAlt,
|
|
136
|
+
Hr as Carousel,
|
|
137
|
+
k as CarouselArrowNext,
|
|
138
|
+
B as CarouselArrowPrev,
|
|
139
|
+
Gr as CarouselArrows,
|
|
140
|
+
Ur as CarouselContent,
|
|
141
|
+
Yr as CarouselDots,
|
|
142
|
+
Wr as CarouselItem,
|
|
143
|
+
v as Checkmark,
|
|
144
|
+
y as ChevronDown,
|
|
145
|
+
N as ChevronNext,
|
|
146
|
+
H as ChevronRight,
|
|
147
|
+
G as Close,
|
|
148
|
+
kr as Collapsible,
|
|
149
|
+
Br as CollapsibleContent,
|
|
150
|
+
vr as CollapsibleTrigger,
|
|
151
|
+
Ar as ContentPeek,
|
|
152
|
+
Ir as ContentPeekHeightUnits,
|
|
153
|
+
ho as Countdown,
|
|
154
|
+
Po as CountdownVariants,
|
|
155
|
+
zr as Detail,
|
|
156
|
+
qr as DetailList,
|
|
157
|
+
Kr as DetailListAlignment,
|
|
158
|
+
Ot as Drawer,
|
|
159
|
+
cr as Dropdown,
|
|
160
|
+
Ee as ErrorBoundary,
|
|
161
|
+
Y as Facebook,
|
|
162
|
+
U as Favorite,
|
|
163
|
+
W as FavoriteOutline,
|
|
164
|
+
io as Filter,
|
|
165
|
+
Co as FilterHeader,
|
|
166
|
+
go as FilterInput,
|
|
167
|
+
uo as FilterMenu,
|
|
168
|
+
Qe as Footer,
|
|
169
|
+
z as FooterInstagram,
|
|
170
|
+
_ as FooterWeChat,
|
|
171
|
+
Le as GreenCircle,
|
|
172
|
+
je as Grid,
|
|
173
|
+
Ct as GridItem,
|
|
174
|
+
ht as GridItemAlign,
|
|
175
|
+
Ze as Header,
|
|
176
|
+
ot as HeroBanner,
|
|
177
|
+
Oe as IconButton,
|
|
178
|
+
ft as Input,
|
|
179
|
+
ee as Instagram,
|
|
180
|
+
Lr as LanguageSelector,
|
|
181
|
+
lt as Link,
|
|
182
|
+
ut as LinkBlock,
|
|
183
|
+
it as LinkList,
|
|
184
|
+
mt as LinkVariants,
|
|
185
|
+
q as LinkedIn,
|
|
186
|
+
re as Lock,
|
|
187
|
+
ye as LotStatus,
|
|
188
|
+
ae as Minus,
|
|
189
|
+
Rt as Modal,
|
|
190
|
+
Je as Navigation,
|
|
191
|
+
Xe as NavigationItem,
|
|
192
|
+
$e as NavigationItemTrigger,
|
|
193
|
+
tt as NavigationList,
|
|
194
|
+
To as ObjectTile,
|
|
189
195
|
f as PaddingTokens,
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
196
|
+
Ie as Page,
|
|
197
|
+
Nr as PageContentWrapper,
|
|
198
|
+
Et as Pagination,
|
|
199
|
+
se as PhillipsLogo,
|
|
200
|
+
_r as PinchZoom,
|
|
201
|
+
de as Plus,
|
|
202
|
+
pe as React,
|
|
203
|
+
Ae as RedCircle,
|
|
204
|
+
K as Reddit,
|
|
205
|
+
gt as Row,
|
|
206
|
+
Be as SSRMediaQuery,
|
|
207
|
+
so as SaleHeaderBanner,
|
|
208
|
+
mo as SaleHeaderBrowseAuctions,
|
|
209
|
+
Pt as Search,
|
|
210
|
+
ao as SeldonImage,
|
|
211
|
+
yr as SeldonProvider,
|
|
212
|
+
Tt as Select,
|
|
213
|
+
bt as SelectVariants,
|
|
214
|
+
xe as Share,
|
|
215
|
+
Mt as Social,
|
|
210
216
|
s as SpacingTokens,
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
217
|
+
wt as SplitPanel,
|
|
218
|
+
ne as Spotify,
|
|
219
|
+
zt as StatefulViewingsList,
|
|
220
|
+
Vt as Subscribe,
|
|
221
|
+
Ft as SubscriptionState,
|
|
222
|
+
Me as SupportedLanguages,
|
|
223
|
+
eo as TabsContainer,
|
|
224
|
+
ro as TabsContent,
|
|
225
|
+
Qt as Tag,
|
|
226
|
+
Yt as TagsList,
|
|
227
|
+
Xt as Text,
|
|
228
|
+
qt as TextAlignments,
|
|
229
|
+
$t as TextSymbolVariants,
|
|
230
|
+
tr as TextSymbols,
|
|
231
|
+
Jt as TextVariants,
|
|
232
|
+
pr as UserManagement,
|
|
233
|
+
Sr as Video,
|
|
234
|
+
Dt as ViewingsList,
|
|
235
|
+
ce as WeChat,
|
|
236
|
+
Se as Youtube,
|
|
231
237
|
l as defaultYear,
|
|
232
238
|
d as emailValidation,
|
|
233
239
|
m as encodeURLSearchParams,
|
|
@@ -237,7 +243,7 @@ export {
|
|
|
237
243
|
i as getCommonProps,
|
|
238
244
|
n as noOp,
|
|
239
245
|
g as px,
|
|
240
|
-
|
|
246
|
+
Ve as ssrMediaQueryStyle,
|
|
241
247
|
c as useNormalizedInputProps,
|
|
242
|
-
|
|
248
|
+
ke as usePendingState
|
|
243
249
|
};
|
|
@@ -3,6 +3,58 @@
|
|
|
3
3
|
.#{$px}-carousel {
|
|
4
4
|
position: relative;
|
|
5
5
|
|
|
6
|
+
&-arrows-prev-btn,
|
|
7
|
+
&-arrows-next-btn {
|
|
8
|
+
background: transparent;
|
|
9
|
+
border: none;
|
|
10
|
+
cursor: pointer;
|
|
11
|
+
display: flex;
|
|
12
|
+
flex-flow: column wrap;
|
|
13
|
+
height: 100%;
|
|
14
|
+
justify-content: center;
|
|
15
|
+
opacity: 0;
|
|
16
|
+
position: absolute;
|
|
17
|
+
top: 0;
|
|
18
|
+
width: 33.3%;
|
|
19
|
+
|
|
20
|
+
&:hover {
|
|
21
|
+
opacity: 1;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
&__icon {
|
|
25
|
+
background-color: $pure-white;
|
|
26
|
+
border-radius: 50%;
|
|
27
|
+
display: flex;
|
|
28
|
+
flex-wrap: wrap;
|
|
29
|
+
height: 3.25rem;
|
|
30
|
+
place-content: center center;
|
|
31
|
+
width: 3.25rem;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
@media (max-width: $breakpoint-md) {
|
|
35
|
+
display: none;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
&-dots + &-arrows &-arrows-prev-btn,
|
|
40
|
+
&-dots + &-arrows &-arrows-next-btn {
|
|
41
|
+
height: calc(100% - 1.5rem);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
&-arrows-prev-btn {
|
|
45
|
+
align-content: flex-start;
|
|
46
|
+
flex-wrap: wrap;
|
|
47
|
+
left: 0;
|
|
48
|
+
padding-left: $spacing-sm;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
&-arrows-next-btn {
|
|
52
|
+
align-content: flex-end;
|
|
53
|
+
flex-wrap: wrap;
|
|
54
|
+
padding-right: $spacing-sm;
|
|
55
|
+
right: 0;
|
|
56
|
+
}
|
|
57
|
+
|
|
6
58
|
&-content {
|
|
7
59
|
overflow: hidden;
|
|
8
60
|
}
|
|
@@ -10,6 +62,12 @@
|
|
|
10
62
|
&-content-inner {
|
|
11
63
|
display: flex;
|
|
12
64
|
|
|
65
|
+
&:hover {
|
|
66
|
+
.vjs-big-play-button {
|
|
67
|
+
display: block;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
13
71
|
@each $spacing-size in $spacing-sizes {
|
|
14
72
|
&--gap-#{$spacing-size} {
|
|
15
73
|
margin-left: calc(-1 * var(--spacing-#{$spacing-size}));
|