@phillips/seldon 1.131.0 → 1.132.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/icons.d.ts +1 -0
- package/dist/assets/menu.svg.js +5 -0
- package/dist/components/TextArea/TextArea.d.ts +26 -0
- package/dist/components/TextArea/TextArea.js +43 -0
- package/dist/components/TextArea/TextArea.stories.d.ts +44 -0
- package/dist/components/TextArea/TextArea.test.d.ts +1 -0
- package/dist/components/TextArea/index.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +199 -195
- 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/componentStyles.scss +1 -0
- package/dist/scss/components/TextArea/_textArea.scss +67 -0
- package/package.json +1 -1
package/dist/assets/icons.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ export { default as Reddit } from './icon-footer-red.svg?react';
|
|
|
18
18
|
export { default as FooterWeChat } from './icon-footer-wechat.svg?react';
|
|
19
19
|
export { default as Instagram } from './instagram.svg?react';
|
|
20
20
|
export { default as Lock } from './lock.svg?react';
|
|
21
|
+
export { default as Menu } from './menu.svg?react';
|
|
21
22
|
export { default as Minus } from './minus.svg?react';
|
|
22
23
|
export { default as PhillipsLogo } from './PhillipsLogo.svg?react';
|
|
23
24
|
export { default as Plus } from './plus.svg?react';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as e from "react";
|
|
2
|
+
const o = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M2 8H22M2 16H22", stroke: "black", strokeWidth: 2 }));
|
|
3
|
+
export {
|
|
4
|
+
o as default
|
|
5
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { ComponentProps } from 'react';
|
|
2
|
+
export interface TextAreaProps extends ComponentProps<'textarea'> {
|
|
3
|
+
/**
|
|
4
|
+
* Optional classnane
|
|
5
|
+
*/
|
|
6
|
+
className?: string;
|
|
7
|
+
/**
|
|
8
|
+
* Boolean to specify whether we need to display skeleton loader
|
|
9
|
+
*/
|
|
10
|
+
isSkeletonLoading?: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* Text that will be read by a screen reader when visiting this control
|
|
13
|
+
*/
|
|
14
|
+
labelText: React.ReactNode;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* ## Overview
|
|
18
|
+
*
|
|
19
|
+
* Overview of this widget
|
|
20
|
+
*
|
|
21
|
+
* [Figma Link](https://www.figma.com/design/hMu9IWH5N3KamJy8tLFdyV/EASEL-Compendium%3A-Tokens%2C-Components-%26-Patterns?node-id=11973-9589&m=dev)
|
|
22
|
+
*
|
|
23
|
+
* [Storybook Link](https://phillips-seldon.netlify.app/?path=/docs/components-textarea--overview)
|
|
24
|
+
*/
|
|
25
|
+
declare const TextArea: import('react').ForwardRefExoticComponent<Omit<TextAreaProps, "ref"> & import('react').RefAttributes<HTMLTextAreaElement>>;
|
|
26
|
+
export default TextArea;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { jsxs as f, jsx as t } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef as $, useId as u } from "react";
|
|
3
|
+
import l from "../../node_modules/classnames/index.js";
|
|
4
|
+
import { px as r } from "../../utils/index.js";
|
|
5
|
+
import N from "../../assets/menu.svg.js";
|
|
6
|
+
const _ = $(
|
|
7
|
+
({ className: o, id: e, isSkeletonLoading: m, labelText: i, maxLength: n = 3e3, name: c, rows: d = 2, ...p }, x) => {
|
|
8
|
+
const s = `${r}-text-area`, a = u();
|
|
9
|
+
return /* @__PURE__ */ f("div", { className: l(`${s}__wrapper`), children: [
|
|
10
|
+
/* @__PURE__ */ t(
|
|
11
|
+
"label",
|
|
12
|
+
{
|
|
13
|
+
"data-testid": `text-area-${e ?? a}-label`,
|
|
14
|
+
htmlFor: e ?? a,
|
|
15
|
+
className: l(`${r}-input__label`, {
|
|
16
|
+
[`${r}-skeleton`]: m
|
|
17
|
+
}),
|
|
18
|
+
children: i
|
|
19
|
+
}
|
|
20
|
+
),
|
|
21
|
+
/* @__PURE__ */ t(
|
|
22
|
+
"textarea",
|
|
23
|
+
{
|
|
24
|
+
...p,
|
|
25
|
+
className: l(s, o, {
|
|
26
|
+
[`${r}-skeleton`]: m
|
|
27
|
+
}),
|
|
28
|
+
id: e ?? a,
|
|
29
|
+
rows: d,
|
|
30
|
+
maxLength: n,
|
|
31
|
+
name: c,
|
|
32
|
+
ref: x,
|
|
33
|
+
"data-testid": `text-area-${e ?? a}-input`
|
|
34
|
+
}
|
|
35
|
+
),
|
|
36
|
+
/* @__PURE__ */ t("div", { className: `${s}-resizer__icon`, children: /* @__PURE__ */ t(N, {}) })
|
|
37
|
+
] });
|
|
38
|
+
}
|
|
39
|
+
);
|
|
40
|
+
_.displayName = "TextArea";
|
|
41
|
+
export {
|
|
42
|
+
_ as default
|
|
43
|
+
};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { TextAreaProps } from './TextArea';
|
|
2
|
+
declare const meta: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: import('react').ForwardRefExoticComponent<Omit<TextAreaProps, "ref"> & import('react').RefAttributes<HTMLTextAreaElement>>;
|
|
5
|
+
};
|
|
6
|
+
export default meta;
|
|
7
|
+
export declare const Playground: {
|
|
8
|
+
(props: TextAreaProps): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
args: {
|
|
10
|
+
children: string;
|
|
11
|
+
labelText: string;
|
|
12
|
+
rows: number;
|
|
13
|
+
isSkeletonLoading: boolean;
|
|
14
|
+
name: string;
|
|
15
|
+
maxLength: number;
|
|
16
|
+
};
|
|
17
|
+
argTypes: {
|
|
18
|
+
labelText: {
|
|
19
|
+
control: {
|
|
20
|
+
type: string;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
rows: {
|
|
24
|
+
control: {
|
|
25
|
+
type: string;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
isSkeletonLoading: {
|
|
29
|
+
control: {
|
|
30
|
+
type: string;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
maxLength: {
|
|
34
|
+
control: {
|
|
35
|
+
type: string;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
name: {
|
|
39
|
+
control: {
|
|
40
|
+
type: string;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as TextArea, type TextAreaProps } from './TextArea';
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { BreakpointTokens as f, PaddingTokens as s, SpacingTokens as l, defaultYear as d, emailValidation as m, encodeURLSearchParams as p, findChildrenExcludingTypes as u, findChildrenOfType as x, generatePaddingClassName as n, getCommonProps as i, noOp as g, px as c, useNormalizedInputProps as C } from "./utils/index.js";
|
|
2
2
|
import { default as h } from "./assets/account_circle.svg.js";
|
|
3
|
-
import { default as
|
|
3
|
+
import { default as L } from "./assets/arrowPrev.svg.js";
|
|
4
4
|
import { default as T } from "./assets/calendar.svg.js";
|
|
5
5
|
import { default as I } from "./assets/calendarAlt.svg.js";
|
|
6
6
|
import { default as B } from "./assets/CarouselArrowNext.svg.js";
|
|
@@ -18,223 +18,227 @@ import { default as J } from "./assets/icon-footer-linkedin.svg.js";
|
|
|
18
18
|
import { default as X } from "./assets/icon-footer-red.svg.js";
|
|
19
19
|
import { default as $ } from "./assets/icon-footer-wechat.svg.js";
|
|
20
20
|
import { default as te } from "./assets/instagram.svg.js";
|
|
21
|
-
import { default as
|
|
22
|
-
import { default as fe } from "./assets/
|
|
23
|
-
import { default as le } from "./assets/
|
|
24
|
-
import { default as me } from "./assets/
|
|
25
|
-
import { default as ue } from "./assets/
|
|
21
|
+
import { default as oe } from "./assets/lock.svg.js";
|
|
22
|
+
import { default as fe } from "./assets/menu.svg.js";
|
|
23
|
+
import { default as le } from "./assets/minus.svg.js";
|
|
24
|
+
import { default as me } from "./assets/PhillipsLogo.svg.js";
|
|
25
|
+
import { default as ue } from "./assets/plus.svg.js";
|
|
26
|
+
import { default as ne } from "./assets/react.svg.js";
|
|
26
27
|
import "react";
|
|
27
|
-
import { default as
|
|
28
|
-
import { default as
|
|
29
|
-
import { default as
|
|
30
|
-
import { default as
|
|
31
|
-
import { default as
|
|
32
|
-
import { default as
|
|
33
|
-
import { default as
|
|
34
|
-
import { usePendingState as
|
|
35
|
-
import { SSRMediaQuery as
|
|
36
|
-
import { AuctionStatus as
|
|
37
|
-
import { default as
|
|
38
|
-
import { ButtonVariants as
|
|
39
|
-
import { default as
|
|
40
|
-
import { default as
|
|
41
|
-
import { default as
|
|
42
|
-
import { Grid 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 { default as
|
|
50
|
-
import { default as
|
|
51
|
-
import { LinkVariants as
|
|
52
|
-
import { default as
|
|
53
|
-
import { default as
|
|
54
|
-
import { default as
|
|
55
|
-
import { default as
|
|
56
|
-
import { GridItemAlign as
|
|
57
|
-
import { default as
|
|
58
|
-
import { default as
|
|
59
|
-
import { SelectVariants as
|
|
60
|
-
import { default as
|
|
61
|
-
import { default as
|
|
62
|
-
import { SubscriptionState as
|
|
63
|
-
import { default as
|
|
64
|
-
import { default as
|
|
65
|
-
import { default as
|
|
66
|
-
import { default as
|
|
67
|
-
import { default as
|
|
68
|
-
import { Tag as
|
|
69
|
-
import { default as
|
|
70
|
-
import { TextAlignments as
|
|
71
|
-
import { default as
|
|
72
|
-
import { TextSymbolVariants as
|
|
73
|
-
import { default as
|
|
74
|
-
import { default as
|
|
75
|
-
import { default as
|
|
76
|
-
import { AccordionItemVariant as
|
|
77
|
-
import { default as
|
|
78
|
-
import { AuthState as
|
|
79
|
-
import { default as
|
|
28
|
+
import { default as ge } from "./assets/share.svg.js";
|
|
29
|
+
import { default as Ce } from "./assets/spotify.svg.js";
|
|
30
|
+
import { default as he } from "./assets/wechat.svg.js";
|
|
31
|
+
import { default as Le } from "./assets/youtube.svg.js";
|
|
32
|
+
import { default as Te } from "./assets/icon-green-circle.svg.js";
|
|
33
|
+
import { default as Ie } from "./assets/icon-red-circle.svg.js";
|
|
34
|
+
import { default as Be } from "./pages/Page.js";
|
|
35
|
+
import { usePendingState as Ve } from "./utils/hooks.js";
|
|
36
|
+
import { SSRMediaQuery as Fe, ssrMediaQueryStyle as ye } from "./providers/SeldonProvider/utils.js";
|
|
37
|
+
import { AuctionStatus as Ne, LotStatus as De, SupportedLanguages as He } from "./types/commonTypes.js";
|
|
38
|
+
import { default as Ge } from "./components/Button/Button.js";
|
|
39
|
+
import { ButtonVariants as Ue } from "./components/Button/types.js";
|
|
40
|
+
import { default as We } from "./components/IconButton/IconButton.js";
|
|
41
|
+
import { default as Ye } from "./components/ErrorBoundary/ErrorBoundary.js";
|
|
42
|
+
import { default as ze } from "./site-furniture/Footer/Footer.js";
|
|
43
|
+
import { Grid as qe } from "./components/Grid/Grid.js";
|
|
44
|
+
import { default as Ke } from "./site-furniture/Header/Header.js";
|
|
45
|
+
import { default as _e } from "./components/Navigation/Navigation.js";
|
|
46
|
+
import { default as et } from "./components/Navigation/NavigationItem/NavigationItem.js";
|
|
47
|
+
import { default as rt } from "./components/Navigation/NavigationItemTrigger/NavigationItemTrigger.js";
|
|
48
|
+
import { default as at } from "./components/Navigation/NavigationList/NavigationList.js";
|
|
49
|
+
import { default as st } from "./patterns/HeroBanner/HeroBanner.js";
|
|
50
|
+
import { default as dt } from "./components/Input/Input.js";
|
|
51
|
+
import { default as pt } from "./components/Link/Link.js";
|
|
52
|
+
import { LinkVariants as xt } from "./components/Link/types.js";
|
|
53
|
+
import { default as it } from "./components/LinkBlock/LinkBlock.js";
|
|
54
|
+
import { default as ct } from "./components/LinkList/LinkList.js";
|
|
55
|
+
import { default as St } from "./components/Row/Row.js";
|
|
56
|
+
import { default as At } from "./components/GridItem/GridItem.js";
|
|
57
|
+
import { GridItemAlign as Pt } from "./components/GridItem/types.js";
|
|
58
|
+
import { default as kt } from "./components/Search/Search.js";
|
|
59
|
+
import { default as bt } from "./components/Select/Select.js";
|
|
60
|
+
import { SelectVariants as wt } from "./components/Select/types.js";
|
|
61
|
+
import { default as vt } from "./components/SplitPanel/SplitPanel.js";
|
|
62
|
+
import { default as yt } from "./patterns/Subscribe/Subscribe.js";
|
|
63
|
+
import { SubscriptionState as Nt } from "./patterns/Subscribe/types.js";
|
|
64
|
+
import { default as Ht } from "./patterns/Social/Social.js";
|
|
65
|
+
import { default as Gt } from "./patterns/ViewingsList/ViewingsList.js";
|
|
66
|
+
import { default as Ut } from "./components/Modal/Modal.js";
|
|
67
|
+
import { default as Wt } from "./components/Drawer/Drawer.js";
|
|
68
|
+
import { default as Yt } from "./components/Pagination/Pagination.js";
|
|
69
|
+
import { Tag as zt, default as Zt } from "./components/Tags/Tags.js";
|
|
70
|
+
import { default as Jt } from "./patterns/ViewingsList/StatefulViewingsList.js";
|
|
71
|
+
import { TextAlignments as Xt, TextVariants as _t } from "./components/Text/types.js";
|
|
72
|
+
import { default as er } from "./components/Text/Text.js";
|
|
73
|
+
import { TextSymbolVariants as rr } from "./components/TextSymbol/types.js";
|
|
74
|
+
import { default as ar } from "./components/TextSymbol/TextSymbol.js";
|
|
75
|
+
import { default as sr } from "./components/Accordion/Accordion.js";
|
|
76
|
+
import { default as dr } from "./components/Accordion/AccordionItem.js";
|
|
77
|
+
import { AccordionItemVariant as pr, AccordionVariants as ur } from "./components/Accordion/types.js";
|
|
78
|
+
import { default as nr } from "./patterns/UserManagement/UserManagement.js";
|
|
79
|
+
import { AuthState as gr } from "./patterns/UserManagement/types.js";
|
|
80
|
+
import { default as Cr } from "./components/Breadcrumb/Breadcrumb.js";
|
|
80
81
|
import "react/jsx-runtime";
|
|
81
82
|
import "./node_modules/classnames/index.js";
|
|
82
|
-
import { default as
|
|
83
|
-
import { default as
|
|
84
|
-
import { default as
|
|
85
|
-
import { default as
|
|
86
|
-
import { HeightUnits as
|
|
87
|
-
import { default as
|
|
88
|
-
import { default as
|
|
89
|
-
import { default as
|
|
90
|
-
import { SeldonProvider as
|
|
91
|
-
import { default as
|
|
92
|
-
import { default as
|
|
93
|
-
import { default as
|
|
94
|
-
import { default as
|
|
95
|
-
import { default as
|
|
96
|
-
import { default as
|
|
97
|
-
import { default as
|
|
98
|
-
import { default as
|
|
99
|
-
import { DetailListAlignment 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 { default as
|
|
109
|
-
import { default as
|
|
110
|
-
import { default as
|
|
111
|
-
import { CountdownVariants as
|
|
112
|
-
import { default as
|
|
113
|
-
import { default as
|
|
114
|
-
import { default as
|
|
115
|
-
import { BidMessageVariants as
|
|
116
|
-
import { default as
|
|
83
|
+
import { default as hr } from "./components/Dropdown/Dropdown.js";
|
|
84
|
+
import { default as Lr } from "./components/Video/Video.js";
|
|
85
|
+
import { default as Tr } from "./patterns/LanguageSelector/LanguageSelector.js";
|
|
86
|
+
import { default as Ir } from "./components/ContentPeek/ContentPeek.js";
|
|
87
|
+
import { HeightUnits as Br } from "./components/ContentPeek/utils.js";
|
|
88
|
+
import { default as Vr } from "./components/Collapsible/Collapsible.js";
|
|
89
|
+
import { default as Fr } from "./components/Collapsible/CollapsibleContent.js";
|
|
90
|
+
import { default as Mr } from "./components/Collapsible/CollapsibleTrigger.js";
|
|
91
|
+
import { SeldonProvider as Dr } from "./providers/SeldonProvider/SeldonProvider.js";
|
|
92
|
+
import { default as Rr } from "./components/PageContentWrapper/PageContentWrapper.js";
|
|
93
|
+
import { default as Or } from "./components/Carousel/Carousel.js";
|
|
94
|
+
import { default as Er } from "./components/Carousel/CarouselArrows.js";
|
|
95
|
+
import { default as Qr } from "./components/Carousel/CarouselContent.js";
|
|
96
|
+
import { default as jr } from "./components/Carousel/CarouselItem.js";
|
|
97
|
+
import { default as Zr } from "./components/Carousel/CarouselDots.js";
|
|
98
|
+
import { default as Jr } from "./components/Detail/Detail.js";
|
|
99
|
+
import { default as Xr } from "./patterns/DetailList/DetailList.js";
|
|
100
|
+
import { DetailListAlignment as $r } from "./patterns/DetailList/types.js";
|
|
101
|
+
import { default as to } from "./components/PinchZoom/PinchZoom.js";
|
|
102
|
+
import { default as oo } from "./components/Tabs/TabsContainer.js";
|
|
103
|
+
import { default as fo } from "./components/Tabs/TabsContent.js";
|
|
104
|
+
import { default as lo } from "./components/SeldonImage/SeldonImage.js";
|
|
105
|
+
import { default as po } from "./patterns/SaleHeaderBanner/SaleHeaderBanner.js";
|
|
106
|
+
import { default as xo } from "./patterns/SaleHeaderBanner/SaleHeaderBrowseAuctions.js";
|
|
107
|
+
import { default as io } from "./patterns/FilterMenu/FilterMenu.js";
|
|
108
|
+
import { default as co } from "./components/Filter/Filter.js";
|
|
109
|
+
import { default as So } from "./components/Filter/FilterInput.js";
|
|
110
|
+
import { default as Ao } from "./components/Filter/FilterHeader.js";
|
|
111
|
+
import { default as Po } from "./components/Countdown/Countdown.js";
|
|
112
|
+
import { CountdownVariants as ko } from "./components/Countdown/types.js";
|
|
113
|
+
import { default as bo } from "./patterns/ObjectTile/ObjectTile.js";
|
|
114
|
+
import { default as wo } from "./patterns/BidSnapshot/BidSnapshot.js";
|
|
115
|
+
import { default as vo } from "./patterns/BidSnapshot/BidMessage.js";
|
|
116
|
+
import { BidMessageVariants as yo, BidStatusEnum as Mo } from "./patterns/BidSnapshot/types.js";
|
|
117
|
+
import { default as Do } from "./components/Article/Article.js";
|
|
118
|
+
import { default as Ro } from "./components/TextArea/TextArea.js";
|
|
117
119
|
export {
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
120
|
+
sr as Accordion,
|
|
121
|
+
dr as AccordionItem,
|
|
122
|
+
pr as AccordionItemVariant,
|
|
123
|
+
ur as AccordionVariants,
|
|
122
124
|
h as AccountCircle,
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
125
|
+
L as ArrowPrev,
|
|
126
|
+
Do as Article,
|
|
127
|
+
Ne as AuctionStatus,
|
|
128
|
+
gr as AuthState,
|
|
129
|
+
vo as BidMessage,
|
|
130
|
+
yo as BidMessageVariants,
|
|
131
|
+
wo as BidSnapshot,
|
|
132
|
+
Mo as BidStatusEnum,
|
|
133
|
+
Cr as Breadcrumb,
|
|
132
134
|
f as BreakpointTokens,
|
|
133
|
-
|
|
134
|
-
|
|
135
|
+
Ge as Button,
|
|
136
|
+
Ue as ButtonVariants,
|
|
135
137
|
T as Calendar,
|
|
136
138
|
I as CalendarAlt,
|
|
137
|
-
|
|
139
|
+
Or as Carousel,
|
|
138
140
|
B as CarouselArrowNext,
|
|
139
141
|
V as CarouselArrowPrev,
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
142
|
+
Er as CarouselArrows,
|
|
143
|
+
Qr as CarouselContent,
|
|
144
|
+
Zr as CarouselDots,
|
|
145
|
+
jr as CarouselItem,
|
|
144
146
|
F as Checkmark,
|
|
145
147
|
M as ChevronDown,
|
|
146
148
|
D as ChevronNext,
|
|
147
149
|
R as ChevronRight,
|
|
148
150
|
O as Close,
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
151
|
+
Vr as Collapsible,
|
|
152
|
+
Fr as CollapsibleContent,
|
|
153
|
+
Mr as CollapsibleTrigger,
|
|
154
|
+
Ir as ContentPeek,
|
|
155
|
+
Br as ContentPeekHeightUnits,
|
|
156
|
+
Po as Countdown,
|
|
157
|
+
ko as CountdownVariants,
|
|
158
|
+
Jr as Detail,
|
|
159
|
+
Xr as DetailList,
|
|
160
|
+
$r as DetailListAlignment,
|
|
161
|
+
Wt as Drawer,
|
|
162
|
+
hr as Dropdown,
|
|
163
|
+
Ye as ErrorBoundary,
|
|
162
164
|
j as Facebook,
|
|
163
165
|
E as Favorite,
|
|
164
166
|
Q as FavoriteOutline,
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
167
|
+
co as Filter,
|
|
168
|
+
Ao as FilterHeader,
|
|
169
|
+
So as FilterInput,
|
|
170
|
+
io as FilterMenu,
|
|
171
|
+
ze as Footer,
|
|
170
172
|
Z as FooterInstagram,
|
|
171
173
|
$ as FooterWeChat,
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
174
|
+
Te as GreenCircle,
|
|
175
|
+
qe as Grid,
|
|
176
|
+
At as GridItem,
|
|
177
|
+
Pt as GridItemAlign,
|
|
178
|
+
Ke as Header,
|
|
179
|
+
st as HeroBanner,
|
|
180
|
+
We as IconButton,
|
|
181
|
+
dt as Input,
|
|
180
182
|
te as Instagram,
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
183
|
+
Tr as LanguageSelector,
|
|
184
|
+
pt as Link,
|
|
185
|
+
it as LinkBlock,
|
|
186
|
+
ct as LinkList,
|
|
187
|
+
xt as LinkVariants,
|
|
186
188
|
J as LinkedIn,
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
fe as
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
_e as
|
|
193
|
-
et as
|
|
194
|
-
|
|
195
|
-
|
|
189
|
+
oe as Lock,
|
|
190
|
+
De as LotStatus,
|
|
191
|
+
fe as Menu,
|
|
192
|
+
le as Minus,
|
|
193
|
+
Ut as Modal,
|
|
194
|
+
_e as Navigation,
|
|
195
|
+
et as NavigationItem,
|
|
196
|
+
rt as NavigationItemTrigger,
|
|
197
|
+
at as NavigationList,
|
|
198
|
+
bo as ObjectTile,
|
|
196
199
|
s as PaddingTokens,
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
200
|
+
Be as Page,
|
|
201
|
+
Rr as PageContentWrapper,
|
|
202
|
+
Yt as Pagination,
|
|
203
|
+
me as PhillipsLogo,
|
|
204
|
+
to as PinchZoom,
|
|
205
|
+
ue as Plus,
|
|
206
|
+
ne as React,
|
|
207
|
+
Ie as RedCircle,
|
|
205
208
|
X as Reddit,
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
209
|
+
St as Row,
|
|
210
|
+
Fe as SSRMediaQuery,
|
|
211
|
+
po as SaleHeaderBanner,
|
|
212
|
+
xo as SaleHeaderBrowseAuctions,
|
|
213
|
+
kt as Search,
|
|
214
|
+
lo as SeldonImage,
|
|
215
|
+
Dr as SeldonProvider,
|
|
216
|
+
bt as Select,
|
|
217
|
+
wt as SelectVariants,
|
|
218
|
+
ge as Share,
|
|
219
|
+
Ht as Social,
|
|
217
220
|
l as SpacingTokens,
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
he as
|
|
221
|
+
vt as SplitPanel,
|
|
222
|
+
Ce as Spotify,
|
|
223
|
+
Jt as StatefulViewingsList,
|
|
224
|
+
yt as Subscribe,
|
|
225
|
+
Nt as SubscriptionState,
|
|
226
|
+
He as SupportedLanguages,
|
|
227
|
+
oo as TabsContainer,
|
|
228
|
+
fo as TabsContent,
|
|
229
|
+
zt as Tag,
|
|
230
|
+
Zt as TagsList,
|
|
231
|
+
er as Text,
|
|
232
|
+
Xt as TextAlignments,
|
|
233
|
+
Ro as TextArea,
|
|
234
|
+
rr as TextSymbolVariants,
|
|
235
|
+
ar as TextSymbols,
|
|
236
|
+
_t as TextVariants,
|
|
237
|
+
nr as UserManagement,
|
|
238
|
+
Lr as Video,
|
|
239
|
+
Gt as ViewingsList,
|
|
240
|
+
he as WeChat,
|
|
241
|
+
Le as Youtube,
|
|
238
242
|
d as defaultYear,
|
|
239
243
|
m as emailValidation,
|
|
240
244
|
p as encodeURLSearchParams,
|
|
@@ -244,7 +248,7 @@ export {
|
|
|
244
248
|
i as getCommonProps,
|
|
245
249
|
g as noOp,
|
|
246
250
|
c as px,
|
|
247
|
-
|
|
251
|
+
ye as ssrMediaQueryStyle,
|
|
248
252
|
C as useNormalizedInputProps,
|
|
249
|
-
|
|
253
|
+
Ve as usePendingState
|
|
250
254
|
};
|
|
@@ -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;
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
@use '../../allPartials' as *;
|
|
2
|
+
|
|
3
|
+
.#{$px}-text-area {
|
|
4
|
+
@include text($string2);
|
|
5
|
+
|
|
6
|
+
accent-color: $soft-black;
|
|
7
|
+
border: 1px solid $keyline-gray;
|
|
8
|
+
border-radius: 0.1875rem;
|
|
9
|
+
min-height: 50px; // 50px is the height of 2 rows
|
|
10
|
+
padding: $padding-xsm;
|
|
11
|
+
resize: vertical;
|
|
12
|
+
width: 100%;
|
|
13
|
+
|
|
14
|
+
&__wrapper {
|
|
15
|
+
display: flex;
|
|
16
|
+
flex-direction: column;
|
|
17
|
+
font-variation-settings: 'wght' 600;
|
|
18
|
+
margin-bottom: 0.25rem;
|
|
19
|
+
position: relative;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&-resizer__icon {
|
|
23
|
+
bottom: $padding-xsm;
|
|
24
|
+
height: 0.75rem;
|
|
25
|
+
pointer-events: none;
|
|
26
|
+
position: absolute;
|
|
27
|
+
right: $padding-xsm;
|
|
28
|
+
width: 0.75rem;
|
|
29
|
+
|
|
30
|
+
svg {
|
|
31
|
+
height: 100%;
|
|
32
|
+
width: 100%;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
&:focus-visible {
|
|
37
|
+
outline: 1px solid $pure-black;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
&__label {
|
|
41
|
+
@include text($string2);
|
|
42
|
+
|
|
43
|
+
color: $pure-black;
|
|
44
|
+
font-variation-settings: 'wght' 600;
|
|
45
|
+
margin-bottom: 0.5rem;
|
|
46
|
+
width: fit-content;
|
|
47
|
+
word-break: break-word;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
&::-webkit-resizer {
|
|
51
|
+
bottom: 0;
|
|
52
|
+
height: 28px;
|
|
53
|
+
opacity: 0;
|
|
54
|
+
position: absolute;
|
|
55
|
+
right: 0;
|
|
56
|
+
width: 28px;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
&::-moz-resizer {
|
|
60
|
+
bottom: 0;
|
|
61
|
+
height: 28px;
|
|
62
|
+
opacity: 0;
|
|
63
|
+
position: absolute;
|
|
64
|
+
right: 0;
|
|
65
|
+
width: 28px;
|
|
66
|
+
}
|
|
67
|
+
}
|