@phillips/seldon 1.205.2 → 1.206.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/index.d.ts +1 -0
- package/dist/index.js +88 -79
- package/dist/patterns/CountryPicker/CountryPickerTrigger.js +39 -33
- package/dist/patterns/PhoneNumberInput/PhoneNumberInput.js +51 -47
- package/dist/patterns/PhoneNumberInput/PhoneNumberInput.stories.d.ts +1 -1
- package/dist/patterns/ProgressWizard/ProgressWizard.d.ts +25 -0
- package/dist/patterns/ProgressWizard/ProgressWizard.js +78 -0
- package/dist/patterns/ProgressWizard/ProgressWizard.stories.d.ts +469 -0
- package/dist/patterns/ProgressWizard/ProgressWizard.test.d.ts +1 -0
- package/dist/patterns/ProgressWizard/components/ProgressWizardFooter.d.ts +35 -0
- package/dist/patterns/ProgressWizard/components/ProgressWizardFooter.js +56 -0
- package/dist/patterns/ProgressWizard/components/ProgressWizardFooter.test.d.ts +1 -0
- package/dist/patterns/ProgressWizard/hooks/useHistoryManagement.d.ts +28 -0
- package/dist/patterns/ProgressWizard/hooks/useHistoryManagement.js +24 -0
- package/dist/patterns/ProgressWizard/hooks/useHistoryManagement.test.d.ts +1 -0
- package/dist/patterns/ProgressWizard/index.d.ts +4 -0
- package/dist/patterns/ProgressWizard/types.d.ts +133 -0
- package/dist/patterns/ProgressWizard/types.js +17 -0
- package/dist/patterns/ProgressWizard/utils.d.ts +6 -0
- package/dist/patterns/ProgressWizard/utils.js +16 -0
- package/dist/patterns/ProgressWizard/utils.test.d.ts +1 -0
- package/dist/providers/SeldonProvider/utils.d.ts +1 -1
- package/dist/scss/componentStyles.scss +1 -0
- package/dist/scss/components/ComboBox/_combobox.scss +2 -2
- package/dist/scss/components/ProgressIndicator/_progressIndicator.scss +4 -0
- package/dist/scss/components/TextArea/_textArea.scss +2 -2
- package/dist/scss/patterns/CountryPicker/_countryPickerTrigger.scss +14 -13
- package/dist/scss/patterns/PhoneNumberInput/_phoneNumberInput.scss +19 -24
- package/dist/scss/patterns/ProgressWizard/_progressWizard.scss +83 -0
- package/dist/utils/index.d.ts +1 -1
- package/dist/utils/index.js +1 -1
- package/dist/utils/staticContent.test.d.ts +1 -0
- package/package.json +1 -2
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { default as ProgressWizard, type ProgressWizardProps } from './ProgressWizard';
|
|
2
|
+
export { default as ProgressWizardFooter, type ProgressWizardFooterProps } from './components/ProgressWizardFooter';
|
|
3
|
+
export { useHistoryManagement } from './hooks/useHistoryManagement';
|
|
4
|
+
export * from './types';
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
import { MouseEvent, ReactNode, Dispatch, SetStateAction } from 'react';
|
|
2
|
+
/**
|
|
3
|
+
* Describes the loading state of the ProgressWizard. Used to control UI feedback and button states. Mimics remix fetcher state.
|
|
4
|
+
* - 'idle': No loading or submission in progress
|
|
5
|
+
* - 'loading': Data is being loaded (e.g., async validation)
|
|
6
|
+
* - 'submitting': Form is being submitted
|
|
7
|
+
*/
|
|
8
|
+
export declare enum LoadingState {
|
|
9
|
+
Idle = "idle",
|
|
10
|
+
Loading = "loading",
|
|
11
|
+
Submitting = "submitting"
|
|
12
|
+
}
|
|
13
|
+
type StrictLowercase<K> = K extends string ? Lowercase<K> : never;
|
|
14
|
+
type CapitalizationInsensitiveObject<T> = T & {
|
|
15
|
+
[K in keyof T as StrictLowercase<K>]: T[K];
|
|
16
|
+
};
|
|
17
|
+
export declare const DefaultButtonLabels: Readonly<CapitalizationInsensitiveObject<{
|
|
18
|
+
readonly Start: "Start";
|
|
19
|
+
readonly Cancel: "Cancel";
|
|
20
|
+
readonly Back: "Back";
|
|
21
|
+
readonly Continue: "Continue";
|
|
22
|
+
readonly Submit: "Submit";
|
|
23
|
+
}>>;
|
|
24
|
+
export type SetCurrentStepIndex = Dispatch<SetStateAction<number>>;
|
|
25
|
+
/**
|
|
26
|
+
* Customizable button labels for ProgressWizard navigation and actions.
|
|
27
|
+
* @property startLabel - Label for the start button (primary, first step)
|
|
28
|
+
* @property cancelLabel - Label for the cancel button (secondary, first step)
|
|
29
|
+
* @property continueLabel - Label for the continue button (primary, middle step)
|
|
30
|
+
* @property backLabel - Label for the back button (secondary, middle step)
|
|
31
|
+
* @property submitLabel - Label for the submit button (primary, last step)
|
|
32
|
+
*/
|
|
33
|
+
export type ButtonLabels = {
|
|
34
|
+
/**
|
|
35
|
+
* Label for the start button (primary, first step)
|
|
36
|
+
*/
|
|
37
|
+
start?: string;
|
|
38
|
+
/**
|
|
39
|
+
* Label for the cancel button (secondary, first step)
|
|
40
|
+
*/
|
|
41
|
+
cancel?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Label for the back button (secondary, middle step)
|
|
44
|
+
*/
|
|
45
|
+
back?: string;
|
|
46
|
+
/**
|
|
47
|
+
* Label for the continue button (primary, middle step)
|
|
48
|
+
*/
|
|
49
|
+
continue?: string;
|
|
50
|
+
/**
|
|
51
|
+
* Label for the submit button (primary, last step)
|
|
52
|
+
*/
|
|
53
|
+
submit?: string;
|
|
54
|
+
};
|
|
55
|
+
/**
|
|
56
|
+
* Base props for the ProgressWizard component.
|
|
57
|
+
*
|
|
58
|
+
* @property customHeader - Optional custom header ReactNode rendered above the progress indicator (e.g. logo or contextual banner)
|
|
59
|
+
* @property hideNavigation - If true, hides the default footer navigation (consumer is responsible for changing steps)
|
|
60
|
+
* @property hideProgressIndicator - If true, hides the progress indicator bar entirely
|
|
61
|
+
* @property isEnableHistoryManagement - If true (default) advancing steps pushes a browser history state so back/forward navigates steps
|
|
62
|
+
* @property continueLabel - Label for the primary button on middle steps.
|
|
63
|
+
* @property currentStepIndex - Controlled current step index (0‑based). When provided internal step state will not auto‑advance
|
|
64
|
+
* @property defaultStepIndex - Default step index (0‑based). Used to initialize the internal step state.
|
|
65
|
+
* @property shouldAllowContinue - If true, allows advancing to the next step.
|
|
66
|
+
* @property loadingState - Current loading state (see LoadingState) used to show loading UI / disable buttons
|
|
67
|
+
* @property buttonLabels - Button labels for the footer navigation buttons (start/cancel/back/continue/submit)
|
|
68
|
+
*/
|
|
69
|
+
export type ProgressWizardBaseProps = {
|
|
70
|
+
/**
|
|
71
|
+
* Optional custom header ReactNode (renders above progress indicator)
|
|
72
|
+
*/
|
|
73
|
+
customHeader?: ReactNode;
|
|
74
|
+
/**
|
|
75
|
+
* If true, hides the default footer navigation (so you can implement your own)
|
|
76
|
+
*/
|
|
77
|
+
hideNavigation?: boolean;
|
|
78
|
+
/**
|
|
79
|
+
* If true, hides the progress indicator bar.
|
|
80
|
+
*/
|
|
81
|
+
hideProgressIndicator?: boolean;
|
|
82
|
+
/**
|
|
83
|
+
* If true, the wizard will push history states on step changes, allowing the browser back/forward buttons to navigate between steps. Default is true.
|
|
84
|
+
*/
|
|
85
|
+
isEnableHistoryManagement?: boolean;
|
|
86
|
+
/**
|
|
87
|
+
* Set the current step index manually. If provided, the footer buttons will not automatically switch steps.
|
|
88
|
+
*/
|
|
89
|
+
currentStepIndex?: number;
|
|
90
|
+
/**
|
|
91
|
+
* Default step index (0‑based). Used to initialize the internal step state.
|
|
92
|
+
*/
|
|
93
|
+
defaultStepIndex?: number;
|
|
94
|
+
/**
|
|
95
|
+
* Set false to disable continue/submit buttons
|
|
96
|
+
*/
|
|
97
|
+
shouldAllowContinue?: boolean;
|
|
98
|
+
/**
|
|
99
|
+
* Current loading state (see LoadingState)
|
|
100
|
+
*/
|
|
101
|
+
loadingState?: LoadingState;
|
|
102
|
+
/**
|
|
103
|
+
* Button labels for the footer navigation buttons (start/cancel/back/continue/submit)
|
|
104
|
+
*/
|
|
105
|
+
buttonLabels?: ButtonLabels;
|
|
106
|
+
};
|
|
107
|
+
/**
|
|
108
|
+
* Callback props for ProgressWizard navigation lifecycle.
|
|
109
|
+
* @property onContinue - Called before advancing to the next step (async supported). Return false (or a Promise resolving to false) to block navigation.
|
|
110
|
+
* @property onBack - Called before going back a step. Return false to block navigation.
|
|
111
|
+
* @property onFormSubmit - Called when the last step primary button is clicked (async supported). Return false to block submission.
|
|
112
|
+
* @property onCancel - Called when cancelling from the first step.
|
|
113
|
+
*/
|
|
114
|
+
export type OnClick = (event: MouseEvent<HTMLButtonElement | HTMLAnchorElement>) => void | false | Promise<void | false>;
|
|
115
|
+
export type CallbackProps = {
|
|
116
|
+
/**
|
|
117
|
+
* Called when going back to a previous step. Receives the click event.
|
|
118
|
+
*/
|
|
119
|
+
onBack?: OnClick;
|
|
120
|
+
/**
|
|
121
|
+
* Called when cancelling the wizard. Receives the click event.
|
|
122
|
+
*/
|
|
123
|
+
onCancel?: OnClick;
|
|
124
|
+
/**
|
|
125
|
+
* Called when continuing to next step. Receives the click event.
|
|
126
|
+
*/
|
|
127
|
+
onContinue?: OnClick;
|
|
128
|
+
/**
|
|
129
|
+
* Called on final submit (receives the click event and a function that returns a promise resolving to whether the current step is valid).
|
|
130
|
+
*/
|
|
131
|
+
onFormSubmit?: OnClick;
|
|
132
|
+
};
|
|
133
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
var n = /* @__PURE__ */ ((t) => (t.Idle = "idle", t.Loading = "loading", t.Submitting = "submitting", t))(n || {});
|
|
2
|
+
const i = (t) => Object.fromEntries(
|
|
3
|
+
Object.keys(t).flatMap((e) => [
|
|
4
|
+
[e, e],
|
|
5
|
+
[e.toLowerCase(), e]
|
|
6
|
+
])
|
|
7
|
+
), a = i({
|
|
8
|
+
Start: "Start",
|
|
9
|
+
Cancel: "Cancel",
|
|
10
|
+
Back: "Back",
|
|
11
|
+
Continue: "Continue",
|
|
12
|
+
Submit: "Submit"
|
|
13
|
+
});
|
|
14
|
+
export {
|
|
15
|
+
a as DefaultButtonLabels,
|
|
16
|
+
n as LoadingState
|
|
17
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { default as React, ReactNode } from 'react';
|
|
2
|
+
export declare const generateStepId: (index: number) => string;
|
|
3
|
+
export declare const wrapChild: (child: ReactNode, childIndex: number, currentIndex: number, baseClassName: string) => string | number | boolean | Iterable<React.ReactNode> | import("react/jsx-runtime").JSX.Element | null | undefined;
|
|
4
|
+
export declare const wrapChildren: (children: ReactNode[], currentIndex: number, baseClassName: string) => (string | number | boolean | Iterable<React.ReactNode> | import("react/jsx-runtime").JSX.Element | null | undefined)[];
|
|
5
|
+
export declare const getLabelsFromChildren: (children: ReactNode[]) => string[];
|
|
6
|
+
export declare const isControlled: (currentStepIndex: number | undefined) => currentStepIndex is number;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx as s } from "react/jsx-runtime";
|
|
2
|
+
import n from "react";
|
|
3
|
+
const p = (e) => `wizard-step-${e}`, i = (e, r, t, a) => n.isValidElement(e) ? /* @__PURE__ */ s("div", { className: r !== t ? `${a}-hidden` : "", children: e }, p(r)) : e, d = (e, r, t) => e.map((a, o) => i(a, o, r, t)), f = (e) => e.map((r, t) => {
|
|
4
|
+
if (n.isValidElement(r)) {
|
|
5
|
+
const a = r.props ?? {};
|
|
6
|
+
return typeof a["aria-label"] == "string" && a["aria-label"] || `Step ${t + 1}`;
|
|
7
|
+
}
|
|
8
|
+
return `Step ${t + 1}`;
|
|
9
|
+
}), c = (e) => e !== void 0;
|
|
10
|
+
export {
|
|
11
|
+
p as generateStepId,
|
|
12
|
+
f as getLabelsFromChildren,
|
|
13
|
+
c as isControlled,
|
|
14
|
+
i as wrapChild,
|
|
15
|
+
d as wrapChildren
|
|
16
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Used to hide or show components based on the current breakpoint in a SSR friendly way
|
|
3
3
|
*/
|
|
4
|
-
export declare const SSRMediaQuery: import('@artsy/fresnel/dist/Media').CreateMediaResults<"sm" | "md" | "lg" | "xl" | "
|
|
4
|
+
export declare const SSRMediaQuery: import('@artsy/fresnel/dist/Media').CreateMediaResults<"sm" | "md" | "lg" | "xl" | "xsm" | "snw-mobile", never>;
|
|
5
5
|
export declare const ssrMediaQueryStyle: string;
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
&__input {
|
|
26
26
|
@include text($string2);
|
|
27
27
|
|
|
28
|
-
accent-color: $
|
|
29
|
-
border: 1px solid $
|
|
28
|
+
accent-color: $black-100;
|
|
29
|
+
border: 1px solid $black-100;
|
|
30
30
|
border-radius: 0.1875rem;
|
|
31
31
|
font-variation-settings: 'wght' 600;
|
|
32
32
|
outline: none;
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
.#{$px}-text-area {
|
|
4
4
|
@include text($string2);
|
|
5
5
|
|
|
6
|
-
accent-color: $
|
|
7
|
-
border: 1px solid $
|
|
6
|
+
accent-color: $black-100;
|
|
7
|
+
border: 1px solid $black-100;
|
|
8
8
|
border-radius: 0.1875rem;
|
|
9
9
|
min-height: 50px; // 50px is the height of 2 rows
|
|
10
10
|
padding: $padding-xsm;
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
flex-direction: row;
|
|
33
33
|
font-variation-settings: 'wght' 600;
|
|
34
34
|
justify-content: space-between;
|
|
35
|
+
margin-bottom: $spacing-micro;
|
|
35
36
|
padding: $spacing-xsm;
|
|
36
37
|
width: 100%;
|
|
37
38
|
|
|
@@ -72,22 +73,22 @@
|
|
|
72
73
|
}
|
|
73
74
|
}
|
|
74
75
|
|
|
75
|
-
&-error-msg {
|
|
76
|
-
animation: reveal 0.45s linear forwards;
|
|
77
|
-
margin-top: $spacing-micro;
|
|
78
|
-
|
|
79
|
-
// Reveal animation (match Input)
|
|
80
|
-
max-height: 2em;
|
|
81
|
-
opacity: 1;
|
|
82
|
-
transition: opacity 0.2s;
|
|
83
|
-
visibility: visible;
|
|
84
|
-
white-space: nowrap;
|
|
85
|
-
will-change: opacity, max-height;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
76
|
&-flag {
|
|
89
77
|
height: 1rem;
|
|
90
78
|
margin-right: $spacing-sm;
|
|
91
79
|
}
|
|
92
80
|
}
|
|
93
81
|
}
|
|
82
|
+
.#{$px}-input__validation {
|
|
83
|
+
animation: reveal 0.45s linear forwards;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
@keyframes reveal {
|
|
87
|
+
0% {
|
|
88
|
+
opacity: 0;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
100% {
|
|
92
|
+
opacity: 1;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
@@ -13,30 +13,6 @@
|
|
|
13
13
|
width: 100%;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
&__error {
|
|
17
|
-
-webkit-box-orient: vertical;
|
|
18
|
-
display: -webkit-box;
|
|
19
|
-
-webkit-line-clamp: 2;
|
|
20
|
-
line-height: $spacing-md;
|
|
21
|
-
|
|
22
|
-
&-msg {
|
|
23
|
-
animation: reveal 0.45s linear forwards;
|
|
24
|
-
|
|
25
|
-
// Reveal animation (match Input)
|
|
26
|
-
max-height: 2em;
|
|
27
|
-
opacity: 1;
|
|
28
|
-
overflow: hidden;
|
|
29
|
-
transition: opacity 0.2s;
|
|
30
|
-
visibility: visible;
|
|
31
|
-
will-change: opacity, max-height;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
// Hide the validation from the Input component
|
|
36
|
-
.#{$px}-input__validation {
|
|
37
|
-
display: none;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
16
|
&__country-picker {
|
|
41
17
|
flex: 0 0 25%;
|
|
42
18
|
margin-right: $spacing-xsm;
|
|
@@ -47,6 +23,11 @@
|
|
|
47
23
|
flex: 1 1 75%;
|
|
48
24
|
flex-grow: 1;
|
|
49
25
|
margin-top: calc(var(--string-line-height-size2) + 0.5rem);
|
|
26
|
+
|
|
27
|
+
// Hide input validation inside phone number input, we use a shared one
|
|
28
|
+
.#{$px}-input__validation {
|
|
29
|
+
display: none;
|
|
30
|
+
}
|
|
50
31
|
}
|
|
51
32
|
|
|
52
33
|
@media screen and (min-width: $breakpoint-xl) {
|
|
@@ -66,3 +47,17 @@
|
|
|
66
47
|
}
|
|
67
48
|
}
|
|
68
49
|
}
|
|
50
|
+
|
|
51
|
+
.#{$px}-input__validation {
|
|
52
|
+
animation: reveal 0.45s linear forwards;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
@keyframes reveal {
|
|
56
|
+
0% {
|
|
57
|
+
opacity: 0;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
100% {
|
|
61
|
+
opacity: 1;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
@use '../../allPartials' as *;
|
|
2
|
+
|
|
3
|
+
.#{$px}-progress-wizard {
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: column;
|
|
6
|
+
z-index: 100;
|
|
7
|
+
|
|
8
|
+
&__logo {
|
|
9
|
+
align-items: center;
|
|
10
|
+
border-bottom: 1px solid $light-gray;
|
|
11
|
+
display: flex;
|
|
12
|
+
justify-content: center;
|
|
13
|
+
margin-bottom: $spacing-md;
|
|
14
|
+
padding: $spacing-sm;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
&__content {
|
|
18
|
+
flex: 1 1 auto;
|
|
19
|
+
margin-top: $spacing-md;
|
|
20
|
+
overflow-y: auto;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&__footer {
|
|
24
|
+
align-items: stretch;
|
|
25
|
+
background-color: $white;
|
|
26
|
+
border-top: 1px solid $light-gray;
|
|
27
|
+
display: flex;
|
|
28
|
+
flex-shrink: 0;
|
|
29
|
+
gap: $spacing-sm;
|
|
30
|
+
justify-content: stretch;
|
|
31
|
+
padding: $spacing-sm 0;
|
|
32
|
+
width: 100%;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
&__btn {
|
|
36
|
+
flex: 1 1 0;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
&-hidden {
|
|
40
|
+
display: none;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
// Mobile: sticky footer, only content scrolls
|
|
44
|
+
@media (max-width: $breakpoint-md) {
|
|
45
|
+
display: flex;
|
|
46
|
+
flex-direction: column;
|
|
47
|
+
min-height: 0;
|
|
48
|
+
overflow: visible;
|
|
49
|
+
|
|
50
|
+
&__content {
|
|
51
|
+
flex: 1 1 auto;
|
|
52
|
+
height: auto;
|
|
53
|
+
min-height: 0;
|
|
54
|
+
overflow-y: auto;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
&__footer {
|
|
58
|
+
bottom: 0;
|
|
59
|
+
left: 0;
|
|
60
|
+
position: sticky;
|
|
61
|
+
right: 0;
|
|
62
|
+
z-index: 10;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
// Desktop: footer at bottom if content is short, scrolls if content is long
|
|
67
|
+
@media (min-width: $breakpoint-md) {
|
|
68
|
+
display: flex;
|
|
69
|
+
flex-direction: column;
|
|
70
|
+
|
|
71
|
+
&__content {
|
|
72
|
+
flex: 1 1 auto;
|
|
73
|
+
overflow-y: auto;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
&__footer {
|
|
77
|
+
border-top: none;
|
|
78
|
+
box-shadow: none;
|
|
79
|
+
margin-top: auto;
|
|
80
|
+
position: static;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
package/dist/utils/index.d.ts
CHANGED
package/dist/utils/index.js
CHANGED
|
@@ -9,7 +9,7 @@ const s = "seldon", v = ({ id: e, ...r }, n) => {
|
|
|
9
9
|
className: `${s}-${t}`
|
|
10
10
|
};
|
|
11
11
|
};
|
|
12
|
-
var f = /* @__PURE__ */ ((e) => (e.xs = "xs", e.sm = "sm", e.md = "md", e.lg = "lg", e.xl = "xl", e.xxl = "xxl", e))(f || {}), x = /* @__PURE__ */ ((e) => (e.micro = "micro", e.
|
|
12
|
+
var f = /* @__PURE__ */ ((e) => (e.xs = "xs", e.sm = "sm", e.md = "md", e.lg = "lg", e.xl = "xl", e.xxl = "xxl", e))(f || {}), x = /* @__PURE__ */ ((e) => (e.micro = "micro", e.xsm = "xsm", e.sm = "sm", e.md = "md", e.lg = "lg", e.xl = "xl", e.xxl = "xxl", e))(x || {});
|
|
13
13
|
const C = () => {
|
|
14
14
|
};
|
|
15
15
|
function g({
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@phillips/seldon",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.206.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/PhillipsAuctionHouse/seldon"
|
|
@@ -125,7 +125,6 @@
|
|
|
125
125
|
"react": "^18.3.1",
|
|
126
126
|
"react-docgen-typescript": "^2.2.2",
|
|
127
127
|
"react-dom": "^18.2.0",
|
|
128
|
-
"react-hook-form": "^7.62.0",
|
|
129
128
|
"rimraf": "^6.0.1",
|
|
130
129
|
"rollup-plugin-copy": "^3.5.0",
|
|
131
130
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|