@phillips/seldon 1.88.0 → 1.89.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/components/Accordion/Accordion.d.ts +11 -2
- package/dist/components/Accordion/Accordion.js +29 -19
- package/dist/components/Accordion/Accordion.stories.d.ts +4 -4
- package/dist/components/Accordion/types.d.ts +2 -5
- package/dist/components/Accordion/types.js +2 -3
- package/dist/components/Accordion/utils.d.ts +3 -2
- package/dist/components/Accordion/utils.js +8 -8
- package/dist/components/Tags/Tags.d.ts +55 -0
- package/dist/components/Tags/Tags.js +43 -0
- package/dist/components/Tags/Tags.stories.d.ts +27 -0
- package/dist/components/Tags/Tags.test.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +77 -75
- package/dist/node_modules/exenv/index.js +1 -1
- package/dist/node_modules/prop-types/node_modules/react-is/index.js +1 -1
- package/dist/scss/_vars.scss +2 -0
- package/dist/scss/componentStyles.scss +1 -0
- package/dist/scss/components/Input/_input.scss +3 -2
- package/dist/scss/components/Tags/_tags.scss +137 -0
- package/package.json +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AccordionVariantKey } from './types';
|
|
2
|
-
import { default as React } from 'react';
|
|
2
|
+
import { default as React, ComponentProps } from 'react';
|
|
3
|
+
import * as Accordion from '@radix-ui/react-accordion';
|
|
3
4
|
export interface AccordionProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
4
5
|
/**
|
|
5
6
|
* Unique id for component testing
|
|
@@ -16,6 +17,14 @@ export interface AccordionProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
16
17
|
* Child element pass in to display as item content.
|
|
17
18
|
*/
|
|
18
19
|
children?: React.ReactNode;
|
|
20
|
+
/**
|
|
21
|
+
* Optionally control the expanded state of the accordion items.
|
|
22
|
+
*/
|
|
23
|
+
value?: ComponentProps<typeof Accordion.Root>['value'];
|
|
24
|
+
/**
|
|
25
|
+
* Callback function to be called when the expanded state of the items change.
|
|
26
|
+
*/
|
|
27
|
+
onValueChanged?: ComponentProps<typeof Accordion.Root>['onValueChange'];
|
|
19
28
|
}
|
|
20
29
|
/**
|
|
21
30
|
* ## Overview
|
|
@@ -26,5 +35,5 @@ export interface AccordionProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
26
35
|
*
|
|
27
36
|
* [Storybook Link](https://phillips-seldon.netlify.app/?path=/docs/components-accordion--overview)
|
|
28
37
|
*/
|
|
29
|
-
declare const AccordionComponent:
|
|
38
|
+
declare const AccordionComponent: React.ForwardRefExoticComponent<AccordionProps & React.RefAttributes<HTMLDivElement>>;
|
|
30
39
|
export default AccordionComponent;
|
|
@@ -1,21 +1,31 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
e,
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
1
|
+
import { jsx as d } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef as f } from "react";
|
|
3
|
+
import l from "../../node_modules/classnames/index.js";
|
|
4
|
+
import { getCommonProps as A } from "../../utils/index.js";
|
|
5
|
+
import { Root as C } from "../../node_modules/@radix-ui/react-accordion/dist/index.js";
|
|
6
|
+
import { getAccordionVariantProps as N } from "./utils.js";
|
|
7
|
+
const P = f(
|
|
8
|
+
({ className: r, children: a, variant: t, value: m, onValueChanged: n, ...o }, s) => {
|
|
9
|
+
const { className: c, ...i } = A(o, "Accordion"), e = N(t, m);
|
|
10
|
+
return (
|
|
11
|
+
// @ts-expect-error radix-ui type checking is too aggressive ans we know the values are valid
|
|
12
|
+
/* @__PURE__ */ d(
|
|
13
|
+
C,
|
|
14
|
+
{
|
|
15
|
+
className: l(`${c}`, r),
|
|
16
|
+
...i,
|
|
17
|
+
...e,
|
|
18
|
+
id: o == null ? void 0 : o.id,
|
|
19
|
+
ref: s,
|
|
20
|
+
value: m,
|
|
21
|
+
onValueChange: n,
|
|
22
|
+
children: a
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
);
|
|
26
|
+
}
|
|
27
|
+
);
|
|
28
|
+
P.displayName = "Accordion";
|
|
19
29
|
export {
|
|
20
|
-
|
|
30
|
+
P as default
|
|
21
31
|
};
|
|
@@ -3,10 +3,7 @@ import { AccordionItemProps } from './AccordionItem';
|
|
|
3
3
|
import { AccordionVariants } from './types';
|
|
4
4
|
declare const meta: {
|
|
5
5
|
title: string;
|
|
6
|
-
component: (
|
|
7
|
-
args: {
|
|
8
|
-
transitionTimeInMs: number;
|
|
9
|
-
};
|
|
6
|
+
component: import('react').ForwardRefExoticComponent<AccordionProps & import('react').RefAttributes<HTMLDivElement>>;
|
|
10
7
|
argTypes: {
|
|
11
8
|
variant: {
|
|
12
9
|
options: AccordionVariants[];
|
|
@@ -20,3 +17,6 @@ export default meta;
|
|
|
20
17
|
export declare const AccordionLarge: ({ transitionTimeInMs, ...props }: AccordionProps & AccordionItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
21
18
|
export declare const AccordionSmall: ({ transitionTimeInMs, ...props }: AccordionProps & AccordionItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
22
19
|
export declare const AccordionSubmenu: ({ transitionTimeInMs, ...props }: AccordionProps & AccordionItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
export declare const ControlledAccordion: ({ items, ...props }: AccordionProps & {
|
|
21
|
+
items: AccordionItemProps[];
|
|
22
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AccordionMultipleProps, AccordionSingleProps } from '@radix-ui/react-accordion';
|
|
1
2
|
export interface AccordionHeaderType {
|
|
2
3
|
/**
|
|
3
4
|
* Child element pass in to display as header label.
|
|
@@ -52,15 +53,11 @@ export declare enum AccordionVariants {
|
|
|
52
53
|
singleNonCollapsible = "singleNonCollapsible"
|
|
53
54
|
}
|
|
54
55
|
export type AccordionVariantKey = keyof typeof AccordionVariants;
|
|
55
|
-
export declare enum AccordionType {
|
|
56
|
-
single = "single",
|
|
57
|
-
multiple = "multiple"
|
|
58
|
-
}
|
|
59
56
|
export interface AccordionVariantProps {
|
|
60
57
|
/**
|
|
61
58
|
* Determines whether multiple elements can be opened at the same time or not.
|
|
62
59
|
*/
|
|
63
|
-
type:
|
|
60
|
+
type: AccordionSingleProps['type'] | AccordionMultipleProps['type'];
|
|
64
61
|
/**
|
|
65
62
|
* Determines if an open element can be closed by clicking on it.
|
|
66
63
|
* Only applicable to the `single` variants.
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
var e = /* @__PURE__ */ ((l) => (l.multiple = "multiple", l.singleCollapsible = "singleCollapsible", l.singleNonCollapsible = "singleNonCollapsible", l))(e || {}), s = /* @__PURE__ */ ((l) => (l.
|
|
1
|
+
var e = /* @__PURE__ */ ((l) => (l.multiple = "multiple", l.singleCollapsible = "singleCollapsible", l.singleNonCollapsible = "singleNonCollapsible", l))(e || {}), s = /* @__PURE__ */ ((l) => (l.lg = "lg", l.sm = "sm", l))(s || {});
|
|
2
2
|
export {
|
|
3
|
-
|
|
4
|
-
s as AccordionType,
|
|
3
|
+
s as AccordionItemVariant,
|
|
5
4
|
e as AccordionVariants
|
|
6
5
|
};
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { AccordionVariantKey
|
|
1
|
+
import { AccordionVariantKey } from './types';
|
|
2
|
+
import { AccordionMultipleProps, AccordionSingleProps } from '@radix-ui/react-accordion';
|
|
2
3
|
/**
|
|
3
4
|
* Sets the type and collapsible props based on the variant prop
|
|
4
5
|
* The collapsible prop should only be passed when the variant is single
|
|
5
6
|
*/
|
|
6
|
-
export declare const getAccordionVariantProps: (variant?: AccordionVariantKey) =>
|
|
7
|
+
export declare const getAccordionVariantProps: (variant?: AccordionVariantKey, value?: string[] | string) => AccordionSingleProps | AccordionMultipleProps;
|
|
7
8
|
/**
|
|
8
9
|
* A helper for getting the classes of the Accordion icons
|
|
9
10
|
* @param className - The className of the component
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
3
|
-
const
|
|
4
|
-
const
|
|
5
|
-
return
|
|
6
|
-
}, p = (
|
|
7
|
-
[`${
|
|
1
|
+
import i from "../../node_modules/classnames/index.js";
|
|
2
|
+
import { AccordionVariants as n } from "./types.js";
|
|
3
|
+
const t = (o, e) => {
|
|
4
|
+
const r = { type: "multiple" };
|
|
5
|
+
return (o === n.singleCollapsible || o === n.singleNonCollapsible) && Array.isArray(e) && console.error("The value prop should not be an array when using a single variant"), o === n.singleCollapsible ? { type: "single" } : o === n.singleNonCollapsible ? { type: "single" } : r;
|
|
6
|
+
}, p = (o, e, r) => i(`${o}__icon`, `${o}-${r}__icon`, {
|
|
7
|
+
[`${o}__icon--lg`]: e
|
|
8
8
|
});
|
|
9
9
|
export {
|
|
10
|
-
|
|
10
|
+
t as getAccordionVariantProps,
|
|
11
11
|
p as getIconClasses
|
|
12
12
|
};
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
export interface I18nObject {
|
|
2
|
+
clearAllLabel?: string;
|
|
3
|
+
}
|
|
4
|
+
export interface TagsListProps {
|
|
5
|
+
/**
|
|
6
|
+
* Unique id for component testing
|
|
7
|
+
*/
|
|
8
|
+
id: string;
|
|
9
|
+
/**
|
|
10
|
+
* Base class for TagsList component.
|
|
11
|
+
*/
|
|
12
|
+
className?: string;
|
|
13
|
+
/**
|
|
14
|
+
* Child element pass in to display as item content.
|
|
15
|
+
*/
|
|
16
|
+
children?: React.ReactNode;
|
|
17
|
+
/**
|
|
18
|
+
* `onRemove` callback provides the tag that is to be removed as a string
|
|
19
|
+
*/
|
|
20
|
+
onClear: () => void;
|
|
21
|
+
/**
|
|
22
|
+
* Clear All label is translatable
|
|
23
|
+
*/
|
|
24
|
+
clearAllLabel?: string;
|
|
25
|
+
}
|
|
26
|
+
export interface TagProps {
|
|
27
|
+
/**
|
|
28
|
+
* Unique id for component testing
|
|
29
|
+
*/
|
|
30
|
+
id: string;
|
|
31
|
+
/**
|
|
32
|
+
* Base class for TagsList component.
|
|
33
|
+
*/
|
|
34
|
+
className?: string;
|
|
35
|
+
/**
|
|
36
|
+
* `onRemove` callback provides the tag that is to be removed as a string
|
|
37
|
+
*/
|
|
38
|
+
onRemove: (tag: string) => void;
|
|
39
|
+
/**
|
|
40
|
+
* Tag item label.
|
|
41
|
+
*/
|
|
42
|
+
label: string;
|
|
43
|
+
}
|
|
44
|
+
export declare const Tag: ({ id, className, onRemove, label }: TagProps) => import("react/jsx-runtime").JSX.Element;
|
|
45
|
+
/**
|
|
46
|
+
* ## Overview
|
|
47
|
+
*
|
|
48
|
+
* Overview of Tags component
|
|
49
|
+
*
|
|
50
|
+
* [Figma Link](https://www.figma.com/design/hMu9IWH5N3KamJy8tLFdyV/EASEL-Compendium%3A-Tokens%2C-Components-%26-Patterns?node-id=11648-3225&node-type=canvas&m=dev)
|
|
51
|
+
*
|
|
52
|
+
* [Storybook Link](https://phillips-seldon.netlify.app/?path=/docs/components-tags--overview)
|
|
53
|
+
*/
|
|
54
|
+
declare const TagsList: import('react').ForwardRefExoticComponent<TagsListProps & import('react').RefAttributes<HTMLDivElement>>;
|
|
55
|
+
export default TagsList;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { jsxs as m, jsx as o } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef as p } from "react";
|
|
3
|
+
import $ from "../../node_modules/classnames/index.js";
|
|
4
|
+
import { getCommonProps as g, px as a } from "../../utils/index.js";
|
|
5
|
+
import N from "../Button/Button.js";
|
|
6
|
+
import { ButtonVariants as v } from "../Button/types.js";
|
|
7
|
+
import h from "../../assets/chevronRight.svg.js";
|
|
8
|
+
const u = p(
|
|
9
|
+
({ className: l, children: t, clearAllLabel: e = "Clear All", onClear: n, ...s }, c) => {
|
|
10
|
+
const r = "tags-list", { className: d, ...f } = g(s, "TagsList"), { id: i } = s;
|
|
11
|
+
return /* @__PURE__ */ m(
|
|
12
|
+
"div",
|
|
13
|
+
{
|
|
14
|
+
className: $(`${a}-${r}`, d, l),
|
|
15
|
+
...f,
|
|
16
|
+
...s,
|
|
17
|
+
"data-testid": `${r}-${i}`,
|
|
18
|
+
ref: c,
|
|
19
|
+
children: [
|
|
20
|
+
t,
|
|
21
|
+
Array.isArray(t) && t.length > 0 && /* @__PURE__ */ m(
|
|
22
|
+
N,
|
|
23
|
+
{
|
|
24
|
+
onClick: n,
|
|
25
|
+
"data-testid": `${i}-clear-all-button`,
|
|
26
|
+
className: `${a}-${r}--clear`,
|
|
27
|
+
"aria-label": e,
|
|
28
|
+
variant: v.tertiary,
|
|
29
|
+
children: [
|
|
30
|
+
/* @__PURE__ */ o("div", { className: `${a}-left-arrow`, children: /* @__PURE__ */ o(h, {}) }),
|
|
31
|
+
/* @__PURE__ */ o("div", { className: `${a}-label`, children: e })
|
|
32
|
+
]
|
|
33
|
+
}
|
|
34
|
+
)
|
|
35
|
+
]
|
|
36
|
+
}
|
|
37
|
+
);
|
|
38
|
+
}
|
|
39
|
+
);
|
|
40
|
+
u.displayName = "Tags";
|
|
41
|
+
export {
|
|
42
|
+
u as default
|
|
43
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { TagsListProps } from './Tags';
|
|
2
|
+
declare const meta: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: import('react').ForwardRefExoticComponent<TagsListProps & import('react').RefAttributes<HTMLDivElement>>;
|
|
5
|
+
};
|
|
6
|
+
export default meta;
|
|
7
|
+
interface StoryProps extends TagsListProps {
|
|
8
|
+
playgroundWidth: string;
|
|
9
|
+
}
|
|
10
|
+
export declare const Playground: {
|
|
11
|
+
({ playgroundWidth, ...args }: StoryProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
args: {
|
|
13
|
+
playgroundWidth: number;
|
|
14
|
+
className: string;
|
|
15
|
+
};
|
|
16
|
+
argTypes: {
|
|
17
|
+
onClear: {
|
|
18
|
+
action: string;
|
|
19
|
+
};
|
|
20
|
+
playgroundWidth: {
|
|
21
|
+
control: {
|
|
22
|
+
type: string;
|
|
23
|
+
min: number;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/index.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ export { default as ViewingsList, type ViewingsListProps } from './patterns/View
|
|
|
33
33
|
export { default as Modal, type ModalProps } from './components/Modal/Modal';
|
|
34
34
|
export { default as Drawer } from './components/Drawer/Drawer';
|
|
35
35
|
export { default as Pagination, type PaginationProps, type PaginationOption, type PaginationOptionValue, } from './components/Pagination/Pagination';
|
|
36
|
+
export { default as TagsList } from './components/Tags/Tags';
|
|
36
37
|
export { default as StatefulViewingsList, type StatefulViewingsListProps, } from './patterns/ViewingsList/StatefulViewingsList';
|
|
37
38
|
export * from './components/Text';
|
|
38
39
|
export * from './components/TextSymbol';
|
package/dist/index.js
CHANGED
|
@@ -56,77 +56,78 @@ import { default as co } from "./patterns/ViewingsList/ViewingsList.js";
|
|
|
56
56
|
import { default as So } from "./components/Modal/Modal.js";
|
|
57
57
|
import { default as Po } from "./components/Drawer/Drawer.js";
|
|
58
58
|
import { default as Io } from "./components/Pagination/Pagination.js";
|
|
59
|
-
import { default as To } from "./
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import { default as Ro } from "./components/
|
|
65
|
-
import { default as Mo } from "./components/Accordion/
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
59
|
+
import { default as To } from "./components/Tags/Tags.js";
|
|
60
|
+
import { default as Ao } from "./patterns/ViewingsList/StatefulViewingsList.js";
|
|
61
|
+
import { TextVariants as vo } from "./components/Text/types.js";
|
|
62
|
+
import { default as yo } from "./components/Text/Text.js";
|
|
63
|
+
import { TextSymbolVariants as Do } from "./components/TextSymbol/types.js";
|
|
64
|
+
import { default as Ro } from "./components/TextSymbol/TextSymbol.js";
|
|
65
|
+
import { default as Mo } from "./components/Accordion/Accordion.js";
|
|
66
|
+
import { default as Go } from "./components/Accordion/AccordionItem.js";
|
|
67
|
+
import { AccordionItemVariant as Wo, AccordionVariants as Eo } from "./components/Accordion/types.js";
|
|
68
|
+
import { default as Uo } from "./patterns/UserManagement/UserManagement.js";
|
|
69
|
+
import { AuthState as zo } from "./patterns/UserManagement/types.js";
|
|
70
|
+
import { SupportedLanguages as jo } from "./types/commonTypes.js";
|
|
71
|
+
import { default as Jo } from "./components/Breadcrumb/Breadcrumb.js";
|
|
71
72
|
import "react/jsx-runtime";
|
|
72
73
|
import "./node_modules/classnames/index.js";
|
|
73
|
-
import { default as
|
|
74
|
-
import { default as
|
|
75
|
-
import { default as
|
|
76
|
-
import { default as
|
|
77
|
-
import { default as
|
|
78
|
-
import { default as
|
|
79
|
-
import { default as
|
|
80
|
-
import { SeldonProvider as
|
|
81
|
-
import { default as
|
|
82
|
-
import { default as
|
|
83
|
-
import { default as
|
|
84
|
-
import { default as
|
|
85
|
-
import { default as
|
|
86
|
-
import { default as
|
|
87
|
-
import { default as
|
|
88
|
-
import { DetailListAlignment 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 { AuctionState as
|
|
96
|
-
import { default as
|
|
97
|
-
import { CountdownVariants as
|
|
74
|
+
import { default as Xo } from "./components/Dropdown/Dropdown.js";
|
|
75
|
+
import { default as $o } from "./components/Video/Video.js";
|
|
76
|
+
import { default as ot } from "./patterns/LanguageSelector/LanguageSelector.js";
|
|
77
|
+
import { default as rt } from "./components/ContentPeek/ContentPeek.js";
|
|
78
|
+
import { default as ft } from "./components/Collapsible/Collapsible.js";
|
|
79
|
+
import { default as lt } from "./components/Collapsible/CollapsibleContent.js";
|
|
80
|
+
import { default as dt } from "./components/Collapsible/CollapsibleTrigger.js";
|
|
81
|
+
import { SeldonProvider as ut } from "./providers/SeldonProvider/SeldonProvider.js";
|
|
82
|
+
import { default as nt } from "./components/PageContentWrapper/PageContentWrapper.js";
|
|
83
|
+
import { default as gt } from "./components/Carousel/Carousel.js";
|
|
84
|
+
import { default as Ct } from "./components/Carousel/CarouselContent.js";
|
|
85
|
+
import { default as Lt } from "./components/Carousel/CarouselItem.js";
|
|
86
|
+
import { default as ht } from "./components/Carousel/CarouselDots.js";
|
|
87
|
+
import { default as bt } from "./components/Detail/Detail.js";
|
|
88
|
+
import { default as kt } from "./patterns/DetailList/DetailList.js";
|
|
89
|
+
import { DetailListAlignment as Vt } from "./patterns/DetailList/types.js";
|
|
90
|
+
import { default as wt } from "./components/PinchZoom/PinchZoom.js";
|
|
91
|
+
import { default as Bt } from "./components/Tabs/TabsContainer.js";
|
|
92
|
+
import { default as Nt } from "./components/Tabs/TabsContent.js";
|
|
93
|
+
import { default as Ft } from "./components/SeldonImage/SeldonImage.js";
|
|
94
|
+
import { default as Ht } from "./patterns/SaleHeaderBanner/SaleHeaderBanner.js";
|
|
95
|
+
import { default as Ot } from "./patterns/SaleHeaderBanner/SaleHeaderBrowseAuctions.js";
|
|
96
|
+
import { AuctionState as Et } from "./patterns/SaleHeaderBanner/types.js";
|
|
97
|
+
import { default as Ut } from "./components/Countdown/Countdown.js";
|
|
98
|
+
import { CountdownVariants as zt } from "./components/Countdown/types.js";
|
|
98
99
|
export {
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
100
|
+
Mo as Accordion,
|
|
101
|
+
Go as AccordionItem,
|
|
102
|
+
Wo as AccordionItemVariant,
|
|
103
|
+
Eo as AccordionVariants,
|
|
103
104
|
S as AccountCircle,
|
|
104
105
|
P as ArrowPrev,
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
106
|
+
Et as AuctionState,
|
|
107
|
+
zo as AuthState,
|
|
108
|
+
Jo as Breadcrumb,
|
|
108
109
|
Ce as Button,
|
|
109
110
|
Le as ButtonVariants,
|
|
110
111
|
I as Calendar,
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
112
|
+
gt as Carousel,
|
|
113
|
+
Ct as CarouselContent,
|
|
114
|
+
ht as CarouselDots,
|
|
115
|
+
Lt as CarouselItem,
|
|
115
116
|
T as ChevronDown,
|
|
116
117
|
A as ChevronNext,
|
|
117
118
|
v as ChevronRight,
|
|
118
119
|
y as Close,
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
120
|
+
ft as Collapsible,
|
|
121
|
+
lt as CollapsibleContent,
|
|
122
|
+
dt as CollapsibleTrigger,
|
|
123
|
+
rt as ContentPeek,
|
|
124
|
+
Ut as Countdown,
|
|
125
|
+
zt as CountdownVariants,
|
|
126
|
+
bt as Detail,
|
|
127
|
+
kt as DetailList,
|
|
128
|
+
Vt as DetailListAlignment,
|
|
128
129
|
Po as Drawer,
|
|
129
|
-
|
|
130
|
+
Xo as Dropdown,
|
|
130
131
|
be as ErrorBoundary,
|
|
131
132
|
R as Facebook,
|
|
132
133
|
D as FavoriteOutline,
|
|
@@ -141,7 +142,7 @@ export {
|
|
|
141
142
|
he as IconButton,
|
|
142
143
|
Ee as Input,
|
|
143
144
|
Y as Instagram,
|
|
144
|
-
|
|
145
|
+
ot as LanguageSelector,
|
|
145
146
|
Ue as Link,
|
|
146
147
|
je as LinkBlock,
|
|
147
148
|
Je as LinkList,
|
|
@@ -156,38 +157,39 @@ export {
|
|
|
156
157
|
He as NavigationList,
|
|
157
158
|
f as PaddingTokens,
|
|
158
159
|
pe as Page,
|
|
159
|
-
|
|
160
|
+
nt as PageContentWrapper,
|
|
160
161
|
Io as Pagination,
|
|
161
162
|
K as PhillipsLogo,
|
|
162
|
-
|
|
163
|
+
wt as PinchZoom,
|
|
163
164
|
_ as Plus,
|
|
164
165
|
ee as React,
|
|
165
166
|
W as Reddit,
|
|
166
167
|
Xe as Row,
|
|
167
168
|
ie as SSRMediaQuery,
|
|
168
|
-
|
|
169
|
-
|
|
169
|
+
Ht as SaleHeaderBanner,
|
|
170
|
+
Ot as SaleHeaderBrowseAuctions,
|
|
170
171
|
ro as Search,
|
|
171
|
-
|
|
172
|
-
|
|
172
|
+
Ft as SeldonImage,
|
|
173
|
+
ut as SeldonProvider,
|
|
173
174
|
fo as Select,
|
|
174
175
|
te as Share,
|
|
175
176
|
io as Social,
|
|
176
177
|
s as SpacingTokens,
|
|
177
178
|
lo as SplitPanel,
|
|
178
179
|
ae as Spotify,
|
|
179
|
-
|
|
180
|
+
Ao as StatefulViewingsList,
|
|
180
181
|
po as Subscribe,
|
|
181
182
|
xo as SubscriptionState,
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
yo as
|
|
187
|
-
Do as
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
183
|
+
jo as SupportedLanguages,
|
|
184
|
+
Bt as TabsContainer,
|
|
185
|
+
Nt as TabsContent,
|
|
186
|
+
To as TagsList,
|
|
187
|
+
yo as Text,
|
|
188
|
+
Do as TextSymbolVariants,
|
|
189
|
+
Ro as TextSymbols,
|
|
190
|
+
vo as TextVariants,
|
|
191
|
+
Uo as UserManagement,
|
|
192
|
+
$o as Video,
|
|
191
193
|
co as ViewingsList,
|
|
192
194
|
se as WeChat,
|
|
193
195
|
me as Youtube,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __module as e } from "../../../../_virtual/
|
|
1
|
+
import { __module as e } from "../../../../_virtual/index5.js";
|
|
2
2
|
import { __require as o } from "./cjs/react-is.production.min.js";
|
|
3
3
|
import { __require as t } from "./cjs/react-is.development.js";
|
|
4
4
|
var r;
|
package/dist/scss/_vars.scss
CHANGED
|
@@ -149,6 +149,7 @@ $breakpoint-xl: 1801px;
|
|
|
149
149
|
--link-label-line-height: 0.75rem;
|
|
150
150
|
--button-label-size: 0.75rem;
|
|
151
151
|
--button-label-line-height: 1rem;
|
|
152
|
+
--button-tertiary-height: 1.75rem;
|
|
152
153
|
--badge-label-size: 0.5rem;
|
|
153
154
|
--badge-label-line-height: 0.67rem;
|
|
154
155
|
--snw-header-link-size: 1rem;
|
|
@@ -290,6 +291,7 @@ $link-label-size: var(--link-label-size);
|
|
|
290
291
|
$button-label-size: var(--button-label-size);
|
|
291
292
|
$link-label-line-height: var(--link-label-line-height);
|
|
292
293
|
$button-label-line-height: var(--button-label-line-height);
|
|
294
|
+
$button-tertiary-height: var(--button-tertiary-height);
|
|
293
295
|
$badge-label-size: var(--badge-label-size);
|
|
294
296
|
$badge-label-line-height: var(--badge-label-line-height);
|
|
295
297
|
$snw-header-link-size: var(--snw-header-link-size);
|
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
@use 'components/ContentPeek/contentPeek';
|
|
37
37
|
@use 'components/PageContentWrapper/pageContentWrapper';
|
|
38
38
|
@use 'components/Carousel/carousel';
|
|
39
|
+
@use 'components/Tags/tags';
|
|
39
40
|
@use 'components/Countdown/countdown';
|
|
40
41
|
@use 'components/Countdown/duration';
|
|
41
42
|
|
|
@@ -14,8 +14,9 @@ $lg: #{$px}-input--lg;
|
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
&__label {
|
|
17
|
+
@include text($string2);
|
|
18
|
+
|
|
17
19
|
color: $pure-black;
|
|
18
|
-
font-size: 0.75rem;
|
|
19
20
|
font-variation-settings: 'wght' 600;
|
|
20
21
|
margin-bottom: 0.5rem;
|
|
21
22
|
word-break: break-word;
|
|
@@ -47,7 +48,7 @@ $lg: #{$px}-input--lg;
|
|
|
47
48
|
-webkit-box-orient: vertical;
|
|
48
49
|
display: -webkit-box;
|
|
49
50
|
-webkit-line-clamp: 2;
|
|
50
|
-
line-height:
|
|
51
|
+
line-height: $spacing-md;
|
|
51
52
|
overflow: hidden;
|
|
52
53
|
}
|
|
53
54
|
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
@use '../../allPartials' as *;
|
|
2
|
+
|
|
3
|
+
.#{$px}-tags-list {
|
|
4
|
+
align-items: center;
|
|
5
|
+
display: flex;
|
|
6
|
+
flex-flow: row wrap;
|
|
7
|
+
gap: $spacing-sm;
|
|
8
|
+
|
|
9
|
+
.#{$px}-tag {
|
|
10
|
+
align-items: center;
|
|
11
|
+
background-color: $pure-white;
|
|
12
|
+
border: 1px solid $button-hover;
|
|
13
|
+
border-radius: 6.25rem;
|
|
14
|
+
cursor: default;
|
|
15
|
+
display: flex;
|
|
16
|
+
gap: 0;
|
|
17
|
+
height: $button-tertiary-height;
|
|
18
|
+
justify-content: center;
|
|
19
|
+
padding: 0 $spacing-xsm 0 $spacing-sm;
|
|
20
|
+
|
|
21
|
+
&__label {
|
|
22
|
+
color: $button-hover;
|
|
23
|
+
font-size: 0.75rem;
|
|
24
|
+
font-variation-settings: 'wght' 600;
|
|
25
|
+
text-align: center;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
&__button {
|
|
29
|
+
align-items: center;
|
|
30
|
+
display: flex;
|
|
31
|
+
gap: $spacing-micro;
|
|
32
|
+
height: $button-tertiary-height;
|
|
33
|
+
justify-content: center;
|
|
34
|
+
padding: 0;
|
|
35
|
+
|
|
36
|
+
&--close {
|
|
37
|
+
height: 1.25rem;
|
|
38
|
+
width: 1.25rem;
|
|
39
|
+
|
|
40
|
+
svg {
|
|
41
|
+
height: 1rem;
|
|
42
|
+
width: 1rem;
|
|
43
|
+
|
|
44
|
+
path {
|
|
45
|
+
fill: $button-hover;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
&:focus {
|
|
49
|
+
fill: $pure-black;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
&:hover {
|
|
54
|
+
background-color: $pure-white;
|
|
55
|
+
|
|
56
|
+
svg {
|
|
57
|
+
path {
|
|
58
|
+
fill: $pure-black;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
&:focus {
|
|
64
|
+
svg {
|
|
65
|
+
path {
|
|
66
|
+
fill: $pure-black;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
&--clear {
|
|
75
|
+
align-items: center;
|
|
76
|
+
border-color: $pure-white;
|
|
77
|
+
display: flex;
|
|
78
|
+
gap: 0;
|
|
79
|
+
height: 2rem;
|
|
80
|
+
|
|
81
|
+
&:hover {
|
|
82
|
+
cursor: pointer;
|
|
83
|
+
|
|
84
|
+
.#{$px}-left-arrow {
|
|
85
|
+
svg {
|
|
86
|
+
fill: $pure-black;
|
|
87
|
+
|
|
88
|
+
path {
|
|
89
|
+
fill: $pure-black;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
&:focus-visible {
|
|
96
|
+
border-color: $button-hover;
|
|
97
|
+
border-radius: 6.25rem;
|
|
98
|
+
gap: 0;
|
|
99
|
+
outline-offset: 0;
|
|
100
|
+
padding: 0;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.#{$px}-left-arrow {
|
|
104
|
+
transform: rotateX(-1);
|
|
105
|
+
|
|
106
|
+
svg {
|
|
107
|
+
height: 1rem;
|
|
108
|
+
width: 1rem;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
&:hover {
|
|
112
|
+
background: $pure-white;
|
|
113
|
+
|
|
114
|
+
svg {
|
|
115
|
+
fill: $pure-black;
|
|
116
|
+
|
|
117
|
+
path {
|
|
118
|
+
fill: $pure-black;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
&:focus-visible {
|
|
124
|
+
&:focus-visible {
|
|
125
|
+
outline: none;
|
|
126
|
+
outline-offset: none;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.#{$px}-label {
|
|
132
|
+
color: $pure-black;
|
|
133
|
+
font-size: 0.875rem;
|
|
134
|
+
font-variation-settings: 'wght' 600;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|