@phillips/seldon 1.82.1 → 1.83.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/AccordionItem.d.ts +1 -1
- package/dist/components/Accordion/AccordionItem.js +73 -68
- package/dist/components/Button/Button.d.ts +10 -2
- package/dist/components/Button/Button.js +44 -29
- package/dist/components/Button/Button.stories.d.ts +8 -1
- package/dist/components/Button/types.d.ts +2 -1
- package/dist/components/Button/types.js +1 -1
- package/dist/components/Input/Input.stories.d.ts +93 -0
- 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/components/Button/_button.scss +18 -0
- package/dist/scss/site-furniture/Header/_header.scss +2 -6
- package/package.json +1 -1
|
@@ -30,5 +30,5 @@ export interface AccordionItemProps extends React.HTMLAttributes<HTMLDivElement>
|
|
|
30
30
|
*/
|
|
31
31
|
hasTransition?: boolean;
|
|
32
32
|
}
|
|
33
|
-
declare const AccordionItem:
|
|
33
|
+
declare const AccordionItem: React.ForwardRefExoticComponent<AccordionItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
34
34
|
export default AccordionItem;
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import { jsxs as h, jsx as t } from "react/jsx-runtime";
|
|
2
|
-
import {
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import _ from "../../assets/
|
|
6
|
-
import
|
|
7
|
-
import
|
|
2
|
+
import { forwardRef as g } from "react";
|
|
3
|
+
import { getCommonProps as v } from "../../utils/index.js";
|
|
4
|
+
import I from "../../assets/plus.svg.js";
|
|
5
|
+
import _ from "../../assets/minus.svg.js";
|
|
6
|
+
import x from "../../assets/lock.svg.js";
|
|
7
|
+
import s from "../../node_modules/classnames/index.js";
|
|
8
|
+
import { Item as A, Trigger as N, Content as k } from "../../node_modules/@radix-ui/react-accordion/dist/index.js";
|
|
8
9
|
import { AccordionItemVariant as $ } from "./types.js";
|
|
9
10
|
import { getIconClasses as u } from "./utils.js";
|
|
10
|
-
const
|
|
11
|
+
const C = ({
|
|
11
12
|
children: n,
|
|
12
13
|
className: r,
|
|
13
14
|
baseClassName: o,
|
|
@@ -15,22 +16,22 @@ const k = ({
|
|
|
15
16
|
isLargeVariation: c,
|
|
16
17
|
id: e
|
|
17
18
|
}) => {
|
|
18
|
-
const
|
|
19
|
-
|
|
19
|
+
const i = d, l = /* @__PURE__ */ t("div", { children: /* @__PURE__ */ t(
|
|
20
|
+
x,
|
|
20
21
|
{
|
|
21
22
|
className: u(o, c, "lock"),
|
|
22
23
|
"data-testid": `${e}-lockedIcon`,
|
|
23
24
|
"aria-hidden": !0
|
|
24
25
|
}
|
|
25
|
-
) }),
|
|
26
|
-
|
|
26
|
+
) }), a = /* @__PURE__ */ t("div", { children: /* @__PURE__ */ t(
|
|
27
|
+
I,
|
|
27
28
|
{
|
|
28
29
|
className: u(o, c, "plus"),
|
|
29
30
|
"data-testid": `${e}-plusIcon`,
|
|
30
31
|
"aria-hidden": !0
|
|
31
32
|
}
|
|
32
|
-
) }),
|
|
33
|
-
|
|
33
|
+
) }), p = /* @__PURE__ */ t("div", { children: /* @__PURE__ */ t(
|
|
34
|
+
_,
|
|
34
35
|
{
|
|
35
36
|
className: u(o, c, "minus"),
|
|
36
37
|
"data-testid": `${e}-minusIcon`,
|
|
@@ -38,25 +39,25 @@ const k = ({
|
|
|
38
39
|
}
|
|
39
40
|
) });
|
|
40
41
|
return /* @__PURE__ */ t(
|
|
41
|
-
|
|
42
|
+
N,
|
|
42
43
|
{
|
|
43
44
|
"data-disabled": d,
|
|
44
45
|
asChild: !0,
|
|
45
|
-
className:
|
|
46
|
+
className: s(
|
|
46
47
|
o,
|
|
47
48
|
{ [`${o}--large`]: c },
|
|
48
49
|
{ [`${o}--hoverable`]: !d },
|
|
49
50
|
r
|
|
50
51
|
),
|
|
51
52
|
children: /* @__PURE__ */ h("div", { "data-testid": `${e}-trigger`, children: [
|
|
52
|
-
/* @__PURE__ */ t("div", { className:
|
|
53
|
-
|
|
54
|
-
!
|
|
55
|
-
!
|
|
53
|
+
/* @__PURE__ */ t("div", { className: s(`${o}__text`, { [`${o}__text--lg`]: c }), children: n }),
|
|
54
|
+
i && l,
|
|
55
|
+
!i && a,
|
|
56
|
+
!i && p
|
|
56
57
|
] })
|
|
57
58
|
}
|
|
58
59
|
);
|
|
59
|
-
},
|
|
60
|
+
}, S = ({
|
|
60
61
|
children: n,
|
|
61
62
|
baseClassName: r,
|
|
62
63
|
disable: o,
|
|
@@ -64,10 +65,10 @@ const k = ({
|
|
|
64
65
|
isLargeVariation: c,
|
|
65
66
|
className: e
|
|
66
67
|
}) => o && n ? /* @__PURE__ */ t("div", { className: `${r}__content--locked`, children: n }) : /* @__PURE__ */ t(
|
|
67
|
-
|
|
68
|
+
k,
|
|
68
69
|
{
|
|
69
70
|
asChild: !0,
|
|
70
|
-
className:
|
|
71
|
+
className: s(
|
|
71
72
|
`${r}__content`,
|
|
72
73
|
{ [`${r}__content--lg`]: c },
|
|
73
74
|
{ [`${r}--transition`]: d },
|
|
@@ -75,51 +76,55 @@ const k = ({
|
|
|
75
76
|
),
|
|
76
77
|
children: n
|
|
77
78
|
}
|
|
78
|
-
),
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
}
|
|
79
|
+
), j = g(
|
|
80
|
+
({
|
|
81
|
+
isLocked: n = !1,
|
|
82
|
+
variant: r = $.sm,
|
|
83
|
+
id: o,
|
|
84
|
+
label: d,
|
|
85
|
+
isLastItem: c,
|
|
86
|
+
hasTransition: e = !1,
|
|
87
|
+
children: i,
|
|
88
|
+
...l
|
|
89
|
+
}, a) => {
|
|
90
|
+
const { className: p } = v({ id: o }, "Accordion"), f = r === $.lg, m = `${p}-item`;
|
|
91
|
+
return /* @__PURE__ */ h(
|
|
92
|
+
A,
|
|
93
|
+
{
|
|
94
|
+
disabled: n,
|
|
95
|
+
value: o,
|
|
96
|
+
className: s(m, {
|
|
97
|
+
[`${m}__border-bottom`]: !c
|
|
98
|
+
}),
|
|
99
|
+
ref: a,
|
|
100
|
+
...l,
|
|
101
|
+
children: [
|
|
102
|
+
/* @__PURE__ */ t(
|
|
103
|
+
C,
|
|
104
|
+
{
|
|
105
|
+
disable: n,
|
|
106
|
+
isLargeVariation: f,
|
|
107
|
+
id: o,
|
|
108
|
+
baseClassName: `${m}-label`,
|
|
109
|
+
children: d
|
|
110
|
+
}
|
|
111
|
+
),
|
|
112
|
+
/* @__PURE__ */ t(
|
|
113
|
+
S,
|
|
114
|
+
{
|
|
115
|
+
disable: n,
|
|
116
|
+
hasTransition: e,
|
|
117
|
+
isLargeVariation: f,
|
|
118
|
+
baseClassName: m,
|
|
119
|
+
children: /* @__PURE__ */ t("div", { className: "radix-accordion-content", children: i })
|
|
120
|
+
}
|
|
121
|
+
)
|
|
122
|
+
]
|
|
123
|
+
}
|
|
124
|
+
);
|
|
125
|
+
}
|
|
126
|
+
);
|
|
127
|
+
j.displayName = "AccordionItem";
|
|
123
128
|
export {
|
|
124
|
-
|
|
129
|
+
j as default
|
|
125
130
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ButtonVariants } from './types';
|
|
2
|
-
export interface ButtonProps extends React.HTMLAttributes<HTMLButtonElement> {
|
|
2
|
+
export interface ButtonProps extends React.HTMLAttributes<HTMLButtonElement | HTMLAnchorElement> {
|
|
3
3
|
/**
|
|
4
4
|
* Button contents
|
|
5
5
|
*/
|
|
@@ -28,6 +28,14 @@ export interface ButtonProps extends React.HTMLAttributes<HTMLButtonElement> {
|
|
|
28
28
|
* Should the button be disabled?
|
|
29
29
|
*/
|
|
30
30
|
isDisabled?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
* The href of the button. This will make the button render as an anchor tag.
|
|
33
|
+
*/
|
|
34
|
+
href?: string;
|
|
35
|
+
/**
|
|
36
|
+
* The target of the link (e.g. _blank). To be combined with href.
|
|
37
|
+
*/
|
|
38
|
+
target?: string;
|
|
31
39
|
}
|
|
32
40
|
/**
|
|
33
41
|
* ## Overview
|
|
@@ -38,5 +46,5 @@ export interface ButtonProps extends React.HTMLAttributes<HTMLButtonElement> {
|
|
|
38
46
|
*
|
|
39
47
|
* [Storybook Link](https://phillips-seldon.netlify.app/?path=/docs/components-button--overview)
|
|
40
48
|
*/
|
|
41
|
-
declare const Button: import('react').ForwardRefExoticComponent<ButtonProps & import('react').RefAttributes<HTMLButtonElement>>;
|
|
49
|
+
declare const Button: import('react').ForwardRefExoticComponent<ButtonProps & import('react').RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
42
50
|
export default Button;
|
|
@@ -1,43 +1,58 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import
|
|
3
|
-
import { getCommonProps as
|
|
4
|
-
import { ButtonVariants as
|
|
5
|
-
import { forwardRef as
|
|
6
|
-
const
|
|
1
|
+
import { jsx as f } from "react/jsx-runtime";
|
|
2
|
+
import i from "../../node_modules/classnames/index.js";
|
|
3
|
+
import { getCommonProps as d } from "../../utils/index.js";
|
|
4
|
+
import { ButtonVariants as b } from "./types.js";
|
|
5
|
+
import { forwardRef as N } from "react";
|
|
6
|
+
const B = N(
|
|
7
7
|
({
|
|
8
|
-
variant: s =
|
|
9
|
-
size:
|
|
10
|
-
children:
|
|
11
|
-
className:
|
|
12
|
-
isIconLast:
|
|
13
|
-
type:
|
|
14
|
-
isDisabled:
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
8
|
+
variant: s = b.primary,
|
|
9
|
+
size: t = "md",
|
|
10
|
+
children: a,
|
|
11
|
+
className: p,
|
|
12
|
+
isIconLast: m = !1,
|
|
13
|
+
type: u = "button",
|
|
14
|
+
isDisabled: c = !1,
|
|
15
|
+
href: r,
|
|
16
|
+
target: e,
|
|
17
|
+
...n
|
|
18
|
+
}, l) => {
|
|
19
|
+
const { className: o, ...$ } = d(n, "Button");
|
|
20
|
+
return r ? /* @__PURE__ */ f(
|
|
21
|
+
"a",
|
|
22
|
+
{
|
|
23
|
+
...$,
|
|
24
|
+
ref: l,
|
|
25
|
+
href: r,
|
|
26
|
+
className: i(`${o}`, `${o}--${t}`, `${o}--${s}`, {
|
|
27
|
+
[`${o}--icon-last`]: m
|
|
28
|
+
}),
|
|
29
|
+
target: e,
|
|
30
|
+
rel: e === "_blank" ? "noopener noreferrer" : void 0,
|
|
31
|
+
children: a
|
|
32
|
+
}
|
|
33
|
+
) : /* @__PURE__ */ f(
|
|
19
34
|
"button",
|
|
20
35
|
{
|
|
21
|
-
|
|
22
|
-
ref:
|
|
23
|
-
type:
|
|
24
|
-
className:
|
|
36
|
+
...$,
|
|
37
|
+
ref: l,
|
|
38
|
+
type: u,
|
|
39
|
+
className: i(
|
|
25
40
|
`${o}`,
|
|
26
|
-
`${o}--${
|
|
41
|
+
`${o}--${t}`,
|
|
27
42
|
`${o}--${s}`,
|
|
28
43
|
{
|
|
29
|
-
[`${o}--icon-last`]:
|
|
44
|
+
[`${o}--icon-last`]: m
|
|
30
45
|
},
|
|
31
|
-
|
|
46
|
+
p
|
|
32
47
|
),
|
|
33
|
-
disabled:
|
|
34
|
-
...
|
|
35
|
-
children:
|
|
48
|
+
disabled: c,
|
|
49
|
+
...n,
|
|
50
|
+
children: a
|
|
36
51
|
}
|
|
37
52
|
);
|
|
38
53
|
}
|
|
39
54
|
);
|
|
40
|
-
|
|
55
|
+
B.displayName = "Button";
|
|
41
56
|
export {
|
|
42
|
-
|
|
57
|
+
B as default
|
|
43
58
|
};
|
|
@@ -2,7 +2,7 @@ import { ButtonProps } from './Button';
|
|
|
2
2
|
import { ButtonVariants } from './types';
|
|
3
3
|
declare const meta: {
|
|
4
4
|
title: string;
|
|
5
|
-
component: import('react').ForwardRefExoticComponent<ButtonProps & import('react').RefAttributes<HTMLButtonElement>>;
|
|
5
|
+
component: import('react').ForwardRefExoticComponent<ButtonProps & import('react').RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
6
6
|
argTypes: {
|
|
7
7
|
size: {
|
|
8
8
|
options: string[];
|
|
@@ -23,6 +23,13 @@ declare const meta: {
|
|
|
23
23
|
};
|
|
24
24
|
export default meta;
|
|
25
25
|
export declare const ButtonWithIcon: (props: ButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
26
|
+
export declare const ButtonAsLink: {
|
|
27
|
+
(props: ButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
28
|
+
args: {
|
|
29
|
+
variant: ButtonVariants;
|
|
30
|
+
size: string;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
26
33
|
export declare const Playground: {
|
|
27
34
|
args: {
|
|
28
35
|
children: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
var e = /* @__PURE__ */ ((r) => (r.primary = "primary", r.secondary = "secondary", r.ghost = "ghost", r.tertiary = "tertiary", r))(e || {});
|
|
1
|
+
var e = /* @__PURE__ */ ((r) => (r.primary = "primary", r.secondary = "secondary", r.ghost = "ghost", r.tertiary = "tertiary", r.link = "link", r))(e || {});
|
|
2
2
|
export {
|
|
3
3
|
e as ButtonVariants
|
|
4
4
|
};
|
|
@@ -229,6 +229,99 @@ export declare const RangeInput: {
|
|
|
229
229
|
};
|
|
230
230
|
};
|
|
231
231
|
};
|
|
232
|
+
export declare const ControlledInput: {
|
|
233
|
+
({ playgroundWidth, ...args }: StoryProps): import("react/jsx-runtime").JSX.Element;
|
|
234
|
+
args: {
|
|
235
|
+
playgroundWidth: number;
|
|
236
|
+
className: string;
|
|
237
|
+
placeholder: string;
|
|
238
|
+
invalid: boolean;
|
|
239
|
+
invalidText: string;
|
|
240
|
+
disabled: boolean;
|
|
241
|
+
defaultValue: string;
|
|
242
|
+
labelText: string;
|
|
243
|
+
warn: boolean;
|
|
244
|
+
warnText: string;
|
|
245
|
+
size: string;
|
|
246
|
+
};
|
|
247
|
+
argTypes: {
|
|
248
|
+
className: {
|
|
249
|
+
control: {
|
|
250
|
+
type: string;
|
|
251
|
+
};
|
|
252
|
+
};
|
|
253
|
+
defaultValue: {
|
|
254
|
+
control: {
|
|
255
|
+
type: string;
|
|
256
|
+
};
|
|
257
|
+
};
|
|
258
|
+
disabled: {
|
|
259
|
+
control: {
|
|
260
|
+
type: string;
|
|
261
|
+
};
|
|
262
|
+
};
|
|
263
|
+
invalid: {
|
|
264
|
+
control: {
|
|
265
|
+
type: string;
|
|
266
|
+
};
|
|
267
|
+
};
|
|
268
|
+
invalidText: {
|
|
269
|
+
control: {
|
|
270
|
+
type: string;
|
|
271
|
+
};
|
|
272
|
+
};
|
|
273
|
+
labelText: {
|
|
274
|
+
control: {
|
|
275
|
+
type: string;
|
|
276
|
+
};
|
|
277
|
+
};
|
|
278
|
+
onChange: {
|
|
279
|
+
action: string;
|
|
280
|
+
};
|
|
281
|
+
onClick: {
|
|
282
|
+
action: string;
|
|
283
|
+
};
|
|
284
|
+
placeholder: {
|
|
285
|
+
control: {
|
|
286
|
+
type: string;
|
|
287
|
+
};
|
|
288
|
+
};
|
|
289
|
+
playgroundWidth: {
|
|
290
|
+
control: {
|
|
291
|
+
type: string;
|
|
292
|
+
min: number;
|
|
293
|
+
max: number;
|
|
294
|
+
step: number;
|
|
295
|
+
};
|
|
296
|
+
};
|
|
297
|
+
size: {
|
|
298
|
+
options: string[];
|
|
299
|
+
control: {
|
|
300
|
+
type: string;
|
|
301
|
+
};
|
|
302
|
+
};
|
|
303
|
+
type: {
|
|
304
|
+
control: {
|
|
305
|
+
type: string;
|
|
306
|
+
};
|
|
307
|
+
};
|
|
308
|
+
value: {
|
|
309
|
+
control: {
|
|
310
|
+
type: string;
|
|
311
|
+
};
|
|
312
|
+
};
|
|
313
|
+
warn: {
|
|
314
|
+
control: {
|
|
315
|
+
type: string;
|
|
316
|
+
};
|
|
317
|
+
};
|
|
318
|
+
warnText: {
|
|
319
|
+
control: {
|
|
320
|
+
type: string;
|
|
321
|
+
};
|
|
322
|
+
};
|
|
323
|
+
};
|
|
324
|
+
};
|
|
232
325
|
export declare const Playground: {
|
|
233
326
|
({ playgroundWidth, ...args }: StoryProps): import("react/jsx-runtime").JSX.Element;
|
|
234
327
|
args: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __module as e } from "../../../../_virtual/
|
|
1
|
+
import { __module as e } from "../../../../_virtual/index6.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;
|
|
@@ -66,6 +66,20 @@
|
|
|
66
66
|
}
|
|
67
67
|
}
|
|
68
68
|
|
|
69
|
+
&--link {
|
|
70
|
+
background-color: transparent;
|
|
71
|
+
border: 0;
|
|
72
|
+
color: $pure-black;
|
|
73
|
+
height: auto;
|
|
74
|
+
padding: 0;
|
|
75
|
+
text-decoration: underline;
|
|
76
|
+
|
|
77
|
+
&:hover {
|
|
78
|
+
background-color: transparent;
|
|
79
|
+
color: $pure-black;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
69
83
|
&--secondary,
|
|
70
84
|
&--ghost {
|
|
71
85
|
background-color: $pure-white;
|
|
@@ -191,6 +205,10 @@
|
|
|
191
205
|
border-color: transparent;
|
|
192
206
|
}
|
|
193
207
|
|
|
208
|
+
&--link:disabled {
|
|
209
|
+
border: 0;
|
|
210
|
+
}
|
|
211
|
+
|
|
194
212
|
* {
|
|
195
213
|
margin: 0;
|
|
196
214
|
}
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
|
|
106
106
|
&__nav {
|
|
107
107
|
background-color: $pure-white;
|
|
108
|
-
height: calc(
|
|
108
|
+
height: calc(100dvh - $header-height);
|
|
109
109
|
overflow-y: auto;
|
|
110
110
|
position: relative;
|
|
111
111
|
z-index: 10;
|
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
|
|
120
120
|
@include isHeaderMobile {
|
|
121
121
|
flex-direction: column;
|
|
122
|
-
height: calc(
|
|
122
|
+
height: calc(100dvh - var(--header-height) - 1px);
|
|
123
123
|
justify-content: flex-start;
|
|
124
124
|
padding: 0 $spacing-md;
|
|
125
125
|
}
|
|
@@ -143,10 +143,6 @@
|
|
|
143
143
|
display: unset;
|
|
144
144
|
left: -100%;
|
|
145
145
|
}
|
|
146
|
-
|
|
147
|
-
.#{$px}-nav__list {
|
|
148
|
-
padding-top: $spacing-md;
|
|
149
|
-
}
|
|
150
146
|
}
|
|
151
147
|
|
|
152
148
|
@include isHeaderDesktop {
|