@phillips/seldon 1.65.0 → 1.67.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/_virtual/attributes-to-props.js +4 -0
- package/dist/_virtual/constants.js +4 -0
- package/dist/_virtual/dom-to-react.js +4 -0
- package/dist/_virtual/domparser.js +4 -0
- package/dist/_virtual/html-to-dom.js +4 -0
- package/dist/_virtual/index10.js +4 -0
- package/dist/_virtual/index11.js +4 -0
- package/dist/_virtual/index7.js +4 -0
- package/dist/_virtual/index8.js +4 -0
- package/dist/_virtual/index9.js +4 -0
- package/dist/_virtual/node.js +4 -0
- package/dist/_virtual/possibleStandardNamesOptimized.js +4 -0
- package/dist/_virtual/utilities.js +4 -0
- package/dist/_virtual/utilities2.js +4 -0
- package/dist/_virtual/utilities3.js +4 -0
- package/dist/components/HTMLParser/HTMLParser.d.ts +24 -0
- package/dist/components/HTMLParser/HTMLParser.js +21 -0
- package/dist/components/HTMLParser/index.d.ts +1 -0
- package/dist/components/HTMLParser/utils.d.ts +7 -0
- package/dist/components/HTMLParser/utils.js +31 -0
- package/dist/components/Search/Search.js +23 -22
- package/dist/components/Search/SearchResults/SearchResults.d.ts +2 -1
- package/dist/components/Search/SearchResults/SearchResults.js +26 -16
- package/dist/components/Text/Text.d.ts +1 -2
- package/dist/components/Text/Text.js +13 -23
- package/dist/components/TextSymbol/TextSymbol.d.ts +9 -0
- package/dist/components/TextSymbol/TextSymbol.js +11 -0
- package/dist/components/TextSymbol/index.d.ts +2 -0
- package/dist/components/TextSymbol/types.d.ts +4 -0
- package/dist/components/TextSymbol/types.js +4 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +76 -72
- package/dist/node_modules/domelementtype/lib/index.js +12 -0
- package/dist/node_modules/domhandler/lib/index.js +84 -0
- package/dist/node_modules/domhandler/lib/node.js +356 -0
- package/dist/node_modules/dompurify/dist/purify.es.js +522 -0
- package/dist/node_modules/html-dom-parser/lib/client/constants.js +38 -0
- package/dist/node_modules/html-dom-parser/lib/client/domparser.js +56 -0
- package/dist/node_modules/html-dom-parser/lib/client/html-to-dom.js +20 -0
- package/dist/node_modules/html-dom-parser/lib/client/utilities.js +55 -0
- package/dist/node_modules/html-react-parser/esm/index.js +7 -0
- package/dist/node_modules/html-react-parser/lib/attributes-to-props.js +40 -0
- package/dist/node_modules/html-react-parser/lib/dom-to-react.js +60 -0
- package/dist/node_modules/html-react-parser/lib/index.js +42 -0
- package/dist/node_modules/html-react-parser/lib/utilities.js +58 -0
- package/dist/node_modules/inline-style-parser/index.js +86 -0
- package/dist/node_modules/react-property/lib/index.js +440 -0
- package/dist/node_modules/react-property/lib/possibleStandardNamesOptimized.js +493 -0
- package/dist/node_modules/style-to-js/cjs/index.js +19 -0
- package/dist/node_modules/style-to-js/cjs/utilities.js +16 -0
- package/dist/node_modules/style-to-object/cjs/index.js +21 -0
- package/dist/patterns/Subscribe/Subscribe.d.ts +1 -1
- package/dist/patterns/Subscribe/Subscribe.js +40 -38
- package/dist/scss/componentStyles.scss +1 -0
- package/dist/scss/components/Dropdown/_dropdown.scss +2 -1
- package/dist/scss/components/Input/_input.scss +3 -1
- package/dist/scss/components/Search/SearchResults/_searchResults.scss +4 -0
- package/dist/scss/components/Search/_search.scss +17 -2
- package/dist/scss/components/Search/_searchButton.scss +15 -5
- package/dist/scss/components/Text/_text.scss +0 -5
- package/dist/scss/components/TextSymbol/_textSymbol.scss +14 -0
- package/dist/scss/site-furniture/Header/_header.scss +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export interface HTMLParserProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
2
|
+
/**
|
|
3
|
+
* Rich Text content to be displayed
|
|
4
|
+
*/
|
|
5
|
+
html: string;
|
|
6
|
+
/**
|
|
7
|
+
* Optional flag to only sanitize the content and bypass the transforms to our components
|
|
8
|
+
*/
|
|
9
|
+
isOnlySanitize?: boolean;
|
|
10
|
+
/**
|
|
11
|
+
* Optional class name to add to the component
|
|
12
|
+
*/
|
|
13
|
+
className?: string;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* ## Overview
|
|
17
|
+
*
|
|
18
|
+
* A component for taking in rich text content from CMS and safely rendering the content in a consistent manner.
|
|
19
|
+
*
|
|
20
|
+
*
|
|
21
|
+
* [Storybook Link](https://phillips-seldon.netlify.app/?path=/docs/components-htmlparser--overview)
|
|
22
|
+
*/
|
|
23
|
+
declare const HTMLParser: ({ className, html, isOnlySanitize, ...props }: HTMLParserProps) => import("react/jsx-runtime").JSX.Element;
|
|
24
|
+
export default HTMLParser;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { jsx as o, Fragment as c } from "react/jsx-runtime";
|
|
2
|
+
import n from "../../node_modules/classnames/index.js";
|
|
3
|
+
import f from "../../node_modules/dompurify/dist/purify.es.js";
|
|
4
|
+
import p from "../../node_modules/html-react-parser/esm/index.js";
|
|
5
|
+
import { getCommonProps as d } from "../../utils/index.js";
|
|
6
|
+
import { options as g } from "./utils.js";
|
|
7
|
+
const M = ({ className: s, html: r, isOnlySanitize: i = !1, ...e }) => {
|
|
8
|
+
const { className: t, ...a } = d(e, "HTMLParser"), m = f.sanitize(r), l = p(m, g);
|
|
9
|
+
return /* @__PURE__ */ o(c, { children: typeof r == "string" && r.length > 0 ? i ? /* @__PURE__ */ o(
|
|
10
|
+
"div",
|
|
11
|
+
{
|
|
12
|
+
...a,
|
|
13
|
+
className: n(`${t}`, s),
|
|
14
|
+
...e,
|
|
15
|
+
dangerouslySetInnerHTML: { __html: m }
|
|
16
|
+
}
|
|
17
|
+
) : /* @__PURE__ */ o("div", { ...a, className: n(`${t}`, s), ...e, children: l }) : null });
|
|
18
|
+
};
|
|
19
|
+
export {
|
|
20
|
+
M as default
|
|
21
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as HTMLParser, type HTMLParserProps } from './HTMLParser';
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { jsx as i } from "react/jsx-runtime";
|
|
2
|
+
import "../../node_modules/html-react-parser/esm/index.js";
|
|
3
|
+
import { TextVariants as e } from "../Text/types.js";
|
|
4
|
+
import n from "../Text/Text.js";
|
|
5
|
+
import { LinkVariants as p } from "../Link/types.js";
|
|
6
|
+
import d from "../Link/Link.js";
|
|
7
|
+
import "../../node_modules/html-react-parser/lib/index.js";
|
|
8
|
+
import { __exports as r } from "../../_virtual/index7.js";
|
|
9
|
+
const a = {
|
|
10
|
+
replace({ attribs: s, children: t, name: o }) {
|
|
11
|
+
if (o === "h1")
|
|
12
|
+
return /* @__PURE__ */ i(n, { variant: e.heading1, children: r.domToReact(t, a) });
|
|
13
|
+
if (o === "h2")
|
|
14
|
+
return /* @__PURE__ */ i(n, { variant: e.heading2, children: r.domToReact(t, a) });
|
|
15
|
+
if (o === "h3")
|
|
16
|
+
return /* @__PURE__ */ i(n, { variant: e.heading3, children: r.domToReact(t, a) });
|
|
17
|
+
if (o === "h4")
|
|
18
|
+
return /* @__PURE__ */ i(n, { variant: e.heading4, children: r.domToReact(t, a) });
|
|
19
|
+
if (o === "blockquote")
|
|
20
|
+
return /* @__PURE__ */ i(n, { variant: e.blockquote, children: r.domToReact(t, a) });
|
|
21
|
+
if (o === "p")
|
|
22
|
+
return /* @__PURE__ */ i(n, { variant: e.body1, children: r.domToReact(t, a) });
|
|
23
|
+
if (o === "a") {
|
|
24
|
+
const { class: f, ...c } = s, m = r.attributesToProps(c);
|
|
25
|
+
return /* @__PURE__ */ i(d, { variant: p.link, ...m, children: r.domToReact(t, a) });
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
};
|
|
29
|
+
export {
|
|
30
|
+
a as options
|
|
31
|
+
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { jsx as a, jsxs as
|
|
1
|
+
import { jsx as a, jsxs as u } from "react/jsx-runtime";
|
|
2
2
|
import i, { useEffect as y } from "react";
|
|
3
|
-
import { getCommonProps as
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
3
|
+
import { getCommonProps as V, px as j, encodeURLSearchParams as g } from "../../utils/index.js";
|
|
4
|
+
import f from "../../node_modules/classnames/index.js";
|
|
5
|
+
import D from "../Input/Input.js";
|
|
6
|
+
import H from "../Link/Link.js";
|
|
7
|
+
import O from "./SearchResults/SearchResults.js";
|
|
8
8
|
import { TextVariants as A } from "../Text/types.js";
|
|
9
9
|
import F from "../Text/Text.js";
|
|
10
10
|
import { useOnClickOutside as K } from "../../node_modules/usehooks-ts/dist/index.js";
|
|
@@ -12,11 +12,11 @@ import { HeaderContext as M } from "../../site-furniture/Header/Header.js";
|
|
|
12
12
|
import { SearchButton as U } from "./SearchButton.js";
|
|
13
13
|
import q from "../../node_modules/react-transition-group/esm/CSSTransition.js";
|
|
14
14
|
const ne = ({
|
|
15
|
-
onSearch:
|
|
15
|
+
onSearch: p,
|
|
16
16
|
searchResults: C = [],
|
|
17
17
|
state: c = "idle",
|
|
18
|
-
defaultValue:
|
|
19
|
-
className:
|
|
18
|
+
defaultValue: I = "",
|
|
19
|
+
className: E,
|
|
20
20
|
placeholder: R = "",
|
|
21
21
|
searchButtonText: l = "Search",
|
|
22
22
|
loadingText: b = "Search In Progress...",
|
|
@@ -26,8 +26,8 @@ const ne = ({
|
|
|
26
26
|
...S
|
|
27
27
|
}) => {
|
|
28
28
|
var N;
|
|
29
|
-
const { className: e, "data-testid": d, ...L } =
|
|
30
|
-
|
|
29
|
+
const { className: e, "data-testid": d, ...L } = V(S, "Search"), o = i.useContext(M), m = i.useRef(null), h = i.useRef(null), v = i.useRef(null), t = o.isSearchExpanded, n = (N = m.current) == null ? void 0 : N.value, T = p ? (r) => {
|
|
30
|
+
p(r.target.value);
|
|
31
31
|
} : void 0;
|
|
32
32
|
K(v, () => $(!1));
|
|
33
33
|
const x = (r) => {
|
|
@@ -52,7 +52,7 @@ const ne = ({
|
|
|
52
52
|
var s;
|
|
53
53
|
o.setIsSearchExpanded(r), (s = h.current) == null || s.reset();
|
|
54
54
|
};
|
|
55
|
-
return /* @__PURE__ */ a("div", { className: `${e}__container`, children: /* @__PURE__ */
|
|
55
|
+
return /* @__PURE__ */ a("div", { className: `${e}__container`, children: /* @__PURE__ */ u(
|
|
56
56
|
"div",
|
|
57
57
|
{
|
|
58
58
|
onClick: () => o.setIsSearchExpanded(!0),
|
|
@@ -64,23 +64,23 @@ const ne = ({
|
|
|
64
64
|
"div",
|
|
65
65
|
{
|
|
66
66
|
...L,
|
|
67
|
-
className:
|
|
67
|
+
className: f(e, E, { [`${e}--active`]: t }),
|
|
68
68
|
"data-testid": d,
|
|
69
69
|
role: "search",
|
|
70
70
|
...S,
|
|
71
|
-
children: /* @__PURE__ */
|
|
71
|
+
children: /* @__PURE__ */ u(
|
|
72
72
|
"form",
|
|
73
73
|
{
|
|
74
74
|
"data-testid": `${d}-form`,
|
|
75
|
-
className:
|
|
75
|
+
className: f(`${e}__form`, {
|
|
76
76
|
[`${e}__form--active`]: t
|
|
77
77
|
}),
|
|
78
78
|
ref: h,
|
|
79
79
|
children: [
|
|
80
|
-
/* @__PURE__ */
|
|
80
|
+
/* @__PURE__ */ u(
|
|
81
81
|
"div",
|
|
82
82
|
{
|
|
83
|
-
className:
|
|
83
|
+
className: f(`${e}__content-wrapper`, {
|
|
84
84
|
[`${e}__content-wrapper--active`]: t
|
|
85
85
|
}),
|
|
86
86
|
role: "combobox",
|
|
@@ -90,11 +90,11 @@ const ne = ({
|
|
|
90
90
|
q,
|
|
91
91
|
{
|
|
92
92
|
in: t,
|
|
93
|
-
classNames: `${
|
|
93
|
+
classNames: `${j}-input`,
|
|
94
94
|
addEndListener: () => {
|
|
95
95
|
},
|
|
96
96
|
children: /* @__PURE__ */ a(
|
|
97
|
-
|
|
97
|
+
D,
|
|
98
98
|
{
|
|
99
99
|
"aria-hidden": !t,
|
|
100
100
|
className: `${e}__input`,
|
|
@@ -103,7 +103,7 @@ const ne = ({
|
|
|
103
103
|
labelText: l,
|
|
104
104
|
placeholder: t ? R : "",
|
|
105
105
|
type: "text",
|
|
106
|
-
defaultValue:
|
|
106
|
+
defaultValue: I,
|
|
107
107
|
invalid: c === "invalid",
|
|
108
108
|
invalidText: w,
|
|
109
109
|
onKeyDown: x,
|
|
@@ -128,14 +128,15 @@ const ne = ({
|
|
|
128
128
|
}
|
|
129
129
|
),
|
|
130
130
|
n && n.length > 2 ? /* @__PURE__ */ a(
|
|
131
|
-
|
|
131
|
+
O,
|
|
132
132
|
{
|
|
133
133
|
autoCompleteResults: C,
|
|
134
134
|
isLoading: c === "loading",
|
|
135
135
|
loadingText: b,
|
|
136
136
|
onKeyDown: x,
|
|
137
|
+
userInputValue: n,
|
|
137
138
|
children: /* @__PURE__ */ a("li", { className: `${e}__result`, children: /* @__PURE__ */ a(
|
|
138
|
-
|
|
139
|
+
H,
|
|
139
140
|
{
|
|
140
141
|
href: ((r) => g(_(r)))(n),
|
|
141
142
|
children: /* @__PURE__ */ a("p", { children: k(n) })
|
|
@@ -10,6 +10,7 @@ export interface SearchResultsProps extends React.HTMLAttributes<HTMLElement> {
|
|
|
10
10
|
children?: React.ReactNode;
|
|
11
11
|
loadingText?: string;
|
|
12
12
|
onKeyDown?: (event: React.KeyboardEvent<HTMLAnchorElement>) => void;
|
|
13
|
+
userInputValue?: string;
|
|
13
14
|
}
|
|
14
|
-
declare const SearchResults: ({ autoCompleteResults, isLoading, children, loadingText, onKeyDown, }: React.PropsWithChildren<SearchResultsProps>) => import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
declare const SearchResults: ({ autoCompleteResults, isLoading, children, loadingText, onKeyDown, userInputValue, }: React.PropsWithChildren<SearchResultsProps>) => import("react/jsx-runtime").JSX.Element;
|
|
15
16
|
export default SearchResults;
|
|
@@ -1,21 +1,31 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { px as
|
|
3
|
-
import
|
|
4
|
-
import { LinkVariants as
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
import { jsx as s, jsxs as d } from "react/jsx-runtime";
|
|
2
|
+
import { px as a } from "../../../utils/index.js";
|
|
3
|
+
import u from "../../Link/Link.js";
|
|
4
|
+
import { LinkVariants as p } from "../../Link/types.js";
|
|
5
|
+
import f from "../../HTMLParser/HTMLParser.js";
|
|
6
|
+
const b = ({
|
|
7
|
+
autoCompleteResults: e = [],
|
|
8
|
+
isLoading: l,
|
|
9
|
+
children: n,
|
|
10
|
+
loadingText: i = "Loading...",
|
|
11
|
+
onKeyDown: t,
|
|
12
|
+
userInputValue: c = ""
|
|
11
13
|
}) => {
|
|
12
|
-
const
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
const h = Array.isArray(e) && e.length > 0;
|
|
15
|
+
function o(r, m) {
|
|
16
|
+
return /* @__PURE__ */ s(
|
|
17
|
+
f,
|
|
18
|
+
{
|
|
19
|
+
html: `<span class='${a}-search__result__label'>${r.replace(new RegExp(m, "gi"), (_) => `<strong>${_}</strong>`)}</span>`
|
|
20
|
+
}
|
|
21
|
+
);
|
|
22
|
+
}
|
|
23
|
+
return /* @__PURE__ */ s("div", { className: `${a}-search__results`, children: /* @__PURE__ */ d("ul", { "data-testid": "search-results", className: `${a}-search__results-container`, children: [
|
|
24
|
+
l ? /* @__PURE__ */ s("li", { className: `${a}-search__result`, children: i }) : null,
|
|
25
|
+
h && e.map((r) => /* @__PURE__ */ s("li", { className: `${a}-search__result`, children: /* @__PURE__ */ s(u, { href: r.url, onKeyDown: t, variant: p.snwFlyoutLink, children: o(r.label, c) }) }, r.id)),
|
|
26
|
+
n
|
|
17
27
|
] }) });
|
|
18
28
|
};
|
|
19
29
|
export {
|
|
20
|
-
|
|
30
|
+
b as default
|
|
21
31
|
};
|
|
@@ -9,7 +9,6 @@ export interface TextProps extends React.HTMLAttributes<HTMLElement> {
|
|
|
9
9
|
* The OOTB style to apply to the text
|
|
10
10
|
*/
|
|
11
11
|
variant?: TextVariants;
|
|
12
|
-
superScript?: string;
|
|
13
12
|
}
|
|
14
13
|
/**
|
|
15
14
|
* ## Overview
|
|
@@ -20,5 +19,5 @@ export interface TextProps extends React.HTMLAttributes<HTMLElement> {
|
|
|
20
19
|
*
|
|
21
20
|
* [Storybook Link](https://phillips-seldon.netlify.app/?path=/docs/components-text--overview)
|
|
22
21
|
*/
|
|
23
|
-
declare const Text: ({ children, className, element: CustomElement, variant,
|
|
22
|
+
declare const Text: ({ children, className, element: CustomElement, variant, ...props }: TextProps) => import("react/jsx-runtime").JSX.Element;
|
|
24
23
|
export default Text;
|
|
@@ -1,30 +1,20 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getCommonProps as
|
|
1
|
+
import { jsx as l } from "react/jsx-runtime";
|
|
2
|
+
import { getCommonProps as c } from "../../utils/index.js";
|
|
3
3
|
import { TextVariants as f } from "./types.js";
|
|
4
|
-
import { determineDefaultTextElement as
|
|
5
|
-
import
|
|
6
|
-
const
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
variant: e = f.body2,
|
|
11
|
-
superScript: m = "",
|
|
12
|
-
...s
|
|
13
|
-
}) => {
|
|
14
|
-
const l = n || d(e), { className: t, ...c } = x(s, "Text");
|
|
15
|
-
return /* @__PURE__ */ i(
|
|
16
|
-
l,
|
|
4
|
+
import { determineDefaultTextElement as i, determineTextClassName as p } from "./utils.js";
|
|
5
|
+
import x from "../../node_modules/classnames/index.js";
|
|
6
|
+
const b = ({ children: t, className: o, element: s, variant: e = f.body2, ...m }) => {
|
|
7
|
+
const r = s || i(e), { className: a, ...n } = c(m, "Text");
|
|
8
|
+
return /* @__PURE__ */ l(
|
|
9
|
+
r,
|
|
17
10
|
{
|
|
18
|
-
...
|
|
19
|
-
className:
|
|
20
|
-
...
|
|
21
|
-
children:
|
|
22
|
-
r,
|
|
23
|
-
m ? /* @__PURE__ */ p("span", { className: o(`${t}--super-script`), children: m }) : null
|
|
24
|
-
]
|
|
11
|
+
...n,
|
|
12
|
+
className: x(a, o, p(e)),
|
|
13
|
+
...m,
|
|
14
|
+
children: t
|
|
25
15
|
}
|
|
26
16
|
);
|
|
27
17
|
};
|
|
28
18
|
export {
|
|
29
|
-
|
|
19
|
+
b as default
|
|
30
20
|
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { TextSymbolVariants } from './types';
|
|
2
|
+
export interface TextSymbolProps extends React.HTMLAttributes<HTMLElement> {
|
|
3
|
+
/**
|
|
4
|
+
* The varian of the text symbol which will determine the position and spacing
|
|
5
|
+
*/
|
|
6
|
+
variant?: TextSymbolVariants;
|
|
7
|
+
}
|
|
8
|
+
declare const TextSymbol: ({ children, variant, className, ...props }: TextSymbolProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export default TextSymbol;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import l from "../../node_modules/classnames/index.js";
|
|
3
|
+
import { getCommonProps as n } from "../../utils/index.js";
|
|
4
|
+
import { TextSymbolVariants as c } from "./types.js";
|
|
5
|
+
const x = ({ children: s, variant: t = c.lotNumber, className: a, ...m }) => {
|
|
6
|
+
const { className: o, ...r } = n(m, "TextSymbol");
|
|
7
|
+
return /* @__PURE__ */ e("span", { ...r, className: l(o, a, `${o}--${t}`), ...m, children: s });
|
|
8
|
+
};
|
|
9
|
+
export {
|
|
10
|
+
x as default
|
|
11
|
+
};
|
package/dist/index.d.ts
CHANGED
|
@@ -32,6 +32,7 @@ export { default as Drawer } from './components/Drawer/Drawer';
|
|
|
32
32
|
export { default as Pagination, type PaginationProps } from './components/Pagination/Pagination';
|
|
33
33
|
export { default as StatefulViewingsList, type StatefulViewingsListProps, } from './patterns/ViewingsList/StatefulViewingsList';
|
|
34
34
|
export * from './components/Text';
|
|
35
|
+
export * from './components/TextSymbol';
|
|
35
36
|
export * from './components/Accordion';
|
|
36
37
|
export { default as UserManagement, type UserManagementProps } from './patterns/UserManagement/UserManagement';
|
|
37
38
|
export { AuthState } from './patterns/UserManagement/types';
|