@kaizen/components 1.58.0 → 1.58.2
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/codemods/updateGuidanceBlockVariantProp/index.ts +19 -0
- package/codemods/updateGuidanceBlockVariantProp/transformGuidanceBlockVariantProp.spec.ts +17 -0
- package/codemods/updateGuidanceBlockVariantProp/transformGuidanceBlockVariantProp.ts +13 -0
- package/dist/cjs/Icon/subcomponents/SVG/SVG.cjs +2 -3
- package/dist/cjs/Illustration/subcomponents/VideoPlayer/VideoPlayer.cjs +1 -1
- package/dist/esm/Icon/subcomponents/SVG/SVG.mjs +2 -3
- package/dist/esm/Illustration/subcomponents/VideoPlayer/VideoPlayer.mjs +1 -1
- package/dist/styles.css +4 -4
- package/dist/types/Icon/subcomponents/SVG/SVG.d.ts +1 -2
- package/package.json +13 -12
- package/src/Icon/subcomponents/SVG/SVG.tsx +1 -4
- package/src/Illustration/subcomponents/VideoPlayer/VideoPlayer.tsx +1 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { transformComponentsInDir } from "../utils"
|
|
2
|
+
import { transformGuidanceBlockVariantProp } from "./transformGuidanceBlockVariantProp"
|
|
3
|
+
/** This is here as a script runner that updates GuidanceBlock variants to v2 variants */
|
|
4
|
+
const updateGuidanceBlockVariantProp = (): void => {
|
|
5
|
+
// eslint-disable-next-line no-console
|
|
6
|
+
console.log(" ~(-_- ~) Running GuidanceBlock transformer (~ -_-)~")
|
|
7
|
+
const targetDir = process.argv[2]
|
|
8
|
+
if (!targetDir) {
|
|
9
|
+
process.exit(1)
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
transformComponentsInDir(
|
|
13
|
+
targetDir,
|
|
14
|
+
transformGuidanceBlockVariantProp,
|
|
15
|
+
"GuidanceBlock"
|
|
16
|
+
)
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
updateGuidanceBlockVariantProp()
|
|
@@ -3,6 +3,23 @@ import { transformSource, printAst } from "../utils"
|
|
|
3
3
|
import { transformGuidanceBlockVariantProp } from "./transformGuidanceBlockVariantProp"
|
|
4
4
|
|
|
5
5
|
describe("transformGuidanceBlockVariantProp", () => {
|
|
6
|
+
it("updates the import statement for GuidanceBlock to the new family version", () => {
|
|
7
|
+
const inputAst = parseJsx(`
|
|
8
|
+
import { GuidanceBlock } from "@kaizen/components"
|
|
9
|
+
import { Card } from "@kaizen/components"
|
|
10
|
+
`)
|
|
11
|
+
const outputAst = parseJsx(`
|
|
12
|
+
import { GuidanceBlock } from "@kaizen/components/v2/containers"
|
|
13
|
+
import { Card } from "@kaizen/components"
|
|
14
|
+
`)
|
|
15
|
+
const transformed = transformSource({
|
|
16
|
+
sourceFile: inputAst,
|
|
17
|
+
astTransformer: transformGuidanceBlockVariantProp,
|
|
18
|
+
tagName: "GuidanceBlock",
|
|
19
|
+
})
|
|
20
|
+
expect(transformed).toBe(printAst(outputAst))
|
|
21
|
+
})
|
|
22
|
+
|
|
6
23
|
it("removes all instances of `positive`, `negative`, `informative`, `cautionary`, `assertive`", () => {
|
|
7
24
|
const inputAst = parseJsx(`
|
|
8
25
|
const TestComponent = () => <GuidanceBlock variant="positive" />
|
|
@@ -6,6 +6,19 @@ export const transformGuidanceBlockVariantProp =
|
|
|
6
6
|
(context: ts.TransformationContext, tagName: string) =>
|
|
7
7
|
(rootNode: ts.Node): ts.Node => {
|
|
8
8
|
function visit(node: ts.Node): ts.Node {
|
|
9
|
+
if (ts.isImportDeclaration(node) && node.getText().includes(tagName)) {
|
|
10
|
+
const newModuleSpecifier = ts.factory.createStringLiteral(
|
|
11
|
+
"@kaizen/components/v2/containers"
|
|
12
|
+
)
|
|
13
|
+
return ts.factory.updateImportDeclaration(
|
|
14
|
+
node,
|
|
15
|
+
node.modifiers,
|
|
16
|
+
node.importClause,
|
|
17
|
+
newModuleSpecifier,
|
|
18
|
+
node.attributes
|
|
19
|
+
)
|
|
20
|
+
}
|
|
21
|
+
|
|
9
22
|
if (ts.isJsxSelfClosingElement(node)) {
|
|
10
23
|
if (node.tagName.getText() === tagName) {
|
|
11
24
|
const newAttributes = node.attributes.properties.reduce<
|
|
@@ -23,9 +23,8 @@ var SVG = function (_a) {
|
|
|
23
23
|
viewBox = _c === void 0 ? "0 0 20 20" : _c,
|
|
24
24
|
classNameOverride = _a.classNameOverride,
|
|
25
25
|
children = _a.children,
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
var classes = classnames__default.default(SVG_module.icon, classNameOverride, inheritSize && SVG_module.inheritSize, shouldFlipOnRtl && SVG_module.flipOnRtl);
|
|
26
|
+
restProps = tslib.__rest(_a, ["inheritSize", "role", "viewBox", "classNameOverride", "children"]);
|
|
27
|
+
var classes = classnames__default.default(SVG_module.icon, classNameOverride, inheritSize && SVG_module.inheritSize);
|
|
29
28
|
if (role === "presentation") {
|
|
30
29
|
return React__default.default.createElement("svg", tslib.__assign({
|
|
31
30
|
className: classes,
|
|
@@ -91,7 +91,7 @@ var VideoPlayer = function (_a) {
|
|
|
91
91
|
* https://developer.mozilla.org/en-US/docs/Web/Media/Autoplay_guide#autoplay_availability
|
|
92
92
|
*/
|
|
93
93
|
});
|
|
94
|
-
} catch (
|
|
94
|
+
} catch (_b) {
|
|
95
95
|
/**
|
|
96
96
|
* Older browsers will raise a synchronous error because their first implementation
|
|
97
97
|
* of `.play` was not a promise.
|
|
@@ -15,9 +15,8 @@ const SVG = /*#__PURE__*/function () {
|
|
|
15
15
|
viewBox = _c === void 0 ? "0 0 20 20" : _c,
|
|
16
16
|
classNameOverride = _a.classNameOverride,
|
|
17
17
|
children = _a.children,
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
var classes = classnames(styles.icon, classNameOverride, inheritSize && styles.inheritSize, shouldFlipOnRtl && styles.flipOnRtl);
|
|
18
|
+
restProps = __rest(_a, ["inheritSize", "role", "viewBox", "classNameOverride", "children"]);
|
|
19
|
+
var classes = classnames(styles.icon, classNameOverride, inheritSize && styles.inheritSize);
|
|
21
20
|
if (role === "presentation") {
|
|
22
21
|
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
22
|
className: classes,
|
|
@@ -82,7 +82,7 @@ var VideoPlayer = function (_a) {
|
|
|
82
82
|
* https://developer.mozilla.org/en-US/docs/Web/Media/Autoplay_guide#autoplay_availability
|
|
83
83
|
*/
|
|
84
84
|
});
|
|
85
|
-
} catch (
|
|
85
|
+
} catch (_b) {
|
|
86
86
|
/**
|
|
87
87
|
* Older browsers will raise a synchronous error because their first implementation
|
|
88
88
|
* of `.play` was not a promise.
|
package/dist/styles.css
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
@layer tokens, normalize, reset;@layer tokens{:root{--theme-key:heart;--animation-easing-function-ease-in-out:cubic-bezier(0.455,0.03,0.515,0.955);--animation-easing-function-ease-in:cubic-bezier(0.55,0.085,0.68,0.53);--animation-easing-function-ease-out:cubic-bezier(0.25,0.46,0.45,0.94);--animation-easing-function-linear:linear;--animation-easing-function-bounce-in:cubic-bezier(0.485,0.155,0.24,1.245);--animation-easing-function-bounce-out:cubic-bezier(0.485,0.155,0.515,0.845);--animation-easing-function-bounce-in-out:cubic-bezier(0.76,-0.245,0.24,1.245);--animation-duration-instant:0ms;--animation-duration-immediate:100ms;--animation-duration-rapid:200ms;--animation-duration-fast:300ms;--animation-duration-slow:400ms;--animation-duration-deliberate:700ms;--border-solid-border-width:2px;--border-solid-border-radius:7px;--border-solid-border-style:solid;--border-solid-border-color:#e1e2ea;--border-solid-border-color-rgb:225,226,234;--border-dashed-border-width:2px;--border-dashed-border-radius:7px;--border-dashed-border-style:dashed;--border-borderless-border-width:2px;--border-borderless-border-radius:7px;--border-borderless-border-style:solid;--border-borderless-border-color:transparent;--border-borderless-border-color-rgb:0,0,0;--border-focus-ring-border-width:2px;--border-focus-ring-border-radius:10px;--border-focus-ring-border-style:solid;--border-width-1:1px;--color-purple-100:#f4edf8;--color-purple-100-rgb:244,237,248;--color-purple-200:#dfc9ea;--color-purple-200-rgb:223,201,234;--color-purple-300:#c9a5dd;--color-purple-300-rgb:201,165,221;--color-purple-400:#ae67b1;--color-purple-400-rgb:174,103,177;--color-purple-500:#844587;--color-purple-500-rgb:132,69,135;--color-purple-600:#5f3361;--color-purple-600-rgb:95,51,97;--color-purple-700:#4a234d;--color-purple-700-rgb:74,35,77;--color-purple-800:#2f2438;--color-purple-800-rgb:47,36,56;--color-blue-100:#e6f6ff;--color-blue-100-rgb:230,246,255;--color-blue-200:#bde2f5;--color-blue-200-rgb:189,226,245;--color-blue-300:#73c0e8;--color-blue-300-rgb:115,192,232;--color-blue-400:#008bd6;--color-blue-400-rgb:0,139,214;--color-blue-500:#0168b3;--color-blue-500-rgb:1,104,179;--color-blue-600:#004970;--color-blue-600-rgb:0,73,112;--color-blue-700:#003157;--color-blue-700-rgb:0,49,87;--color-green-100:#e8f8f4;--color-green-100-rgb:232,248,244;--color-green-200:#c4ede2;--color-green-200-rgb:196,237,226;--color-green-300:#8fdbc7;--color-green-300-rgb:143,219,199;--color-green-400:#5dcaad;--color-green-400-rgb:93,202,173;--color-green-500:#3f9a86;--color-green-500-rgb:63,154,134;--color-green-600:#2c7d67;--color-green-600-rgb:44,125,103;--color-green-700:#22594a;--color-green-700-rgb:34,89,74;--color-yellow-100:#fff9e4;--color-yellow-100-rgb:255,249,228;--color-yellow-200:#ffeeb3;--color-yellow-200-rgb:255,238,179;--color-yellow-300:#ffe36e;--color-yellow-300-rgb:255,227,110;--color-yellow-400:#ffca4d;--color-yellow-400-rgb:255,202,77;--color-yellow-500:#ffb600;--color-yellow-500-rgb:255,182,0;--color-yellow-600:#c68600;--color-yellow-600-rgb:198,134,0;--color-yellow-700:#876400;--color-yellow-700-rgb:135,100,0;--color-red-100:#fdeaee;--color-red-100-rgb:253,234,238;--color-red-200:#f9c2cb;--color-red-200-rgb:249,194,203;--color-red-300:#f597a8;--color-red-300-rgb:245,151,168;--color-red-400:#e0707d;--color-red-400-rgb:224,112,125;--color-red-500:#c93b55;--color-red-500-rgb:201,59,85;--color-red-600:#a82433;--color-red-600-rgb:168,36,51;--color-red-700:#6c1e20;--color-red-700-rgb:108,30,32;--color-orange-100:#fff0e8;--color-orange-100-rgb:255,240,232;--color-orange-200:#ffd1b9;--color-orange-200-rgb:255,209,185;--color-orange-300:#ffb08a;--color-orange-300-rgb:255,176,138;--color-orange-400:#ff9461;--color-orange-400-rgb:255,148,97;--color-orange-500:#e96c2f;--color-orange-500-rgb:233,108,47;--color-orange-600:#b74302;--color-orange-600-rgb:183,67,2;--color-orange-700:#903c00;--color-orange-700-rgb:144,60,0;--color-gray-100:#f9f9f9;--color-gray-100-rgb:249,249,249;--color-gray-200:#f4f4f5;--color-gray-200-rgb:244,244,245;--color-gray-300:#eaeaec;--color-gray-300-rgb:234,234,236;--color-gray-400:#cdcdd0;--color-gray-400-rgb:205,205,208;--color-gray-500:#878792;--color-gray-500-rgb:135,135,146;--color-gray-600:#524e56;--color-gray-600-rgb:82,78,86;--color-white:#fff;--color-white-rgb:255,255,255;--data-viz-favorable:#7dd5bd;--data-viz-favorable-rgb:125,213,189;--data-viz-unfavorable:#e68d97;--data-viz-unfavorable-rgb:230,141,151;--layout-content-max-width:1392px;--layout-content-max-width-with-sidebar:1080px;--layout-content-side-margin:72px;--layout-mobile-actions-drawer-height:60px;--layout-navigation-bar-height:72px;--layout-breakpoints-medium:768px;--layout-breakpoints-large:1080px;--shadow-small-box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 3px 16px 0 rgba(0,0,0,.06);--shadow-large-box-shadow:0 3px 9px 0 rgba(0,0,0,.1),0 8px 40px 0 rgba(0,0,0,.08);--spacing-0:0;--spacing-1:.0625rem;--spacing-2:.125rem;--spacing-4:.25rem;--spacing-6:.375rem;--spacing-8:.5rem;--spacing-12:.75rem;--spacing-16:1rem;--spacing-24:1.5rem;--spacing-32:2rem;--spacing-40:2.5rem;--spacing-48:3rem;--spacing-56:3.5rem;--spacing-64:4rem;--spacing-72:4.5rem;--spacing-80:5rem;--spacing-96:6rem;--spacing-112:7rem;--spacing-128:8rem;--spacing-160:10rem;--spacing-200:12.5rem;--spacing-240:15rem;--spacing-280:17.5rem;--spacing-320:20rem;--spacing-xs:0.375rem;--spacing-sm:0.75rem;--spacing-md:1.5rem;--spacing-lg:2.25rem;--spacing-xl:3rem;--spacing-xxl:3.75rem;--spacing-xxxl:4.5rem;--spacing-xxxxl:5.25rem;--spacing-xxxxxl:6rem;--typography-data-large-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-large-font-weight:700;--typography-data-large-font-size:5.25rem;--typography-data-large-line-height:5.25rem;--typography-data-large-letter-spacing:normal;--typography-data-large-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-large-units-font-weight:700;--typography-data-large-units-font-size:2.625rem;--typography-data-large-units-line-height:5.25rem;--typography-data-large-units-letter-spacing:normal;--typography-data-medium-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-medium-font-weight:700;--typography-data-medium-font-size:3rem;--typography-data-medium-line-height:5rem;--typography-data-medium-letter-spacing:normal;--typography-data-medium-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-medium-units-font-weight:700;--typography-data-medium-units-font-size:1.5rem;--typography-data-medium-units-line-height:5rem;--typography-data-medium-units-letter-spacing:normal;--typography-data-small-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-small-font-weight:700;--typography-data-small-font-size:1.5rem;--typography-data-small-line-height:1.5rem;--typography-data-small-letter-spacing:normal;--typography-data-small-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-small-units-font-weight:700;--typography-data-small-units-font-size:1.125rem;--typography-data-small-units-line-height:1.5rem;--typography-data-small-units-letter-spacing:normal;--typography-display-0-font-family:"Tiempos Headline",Georgia,serif;--typography-display-0-font-weight:800;--typography-display-0-font-size:4.5rem;--typography-display-0-line-height:5.25rem;--typography-display-0-letter-spacing:0em;--typography-heading-1-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-1-font-weight:700;--typography-heading-1-font-size:2.125rem;--typography-heading-1-line-height:2.625rem;--typography-heading-1-letter-spacing:normal;--typography-heading-2-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-2-font-weight:700;--typography-heading-2-font-size:1.75rem;--typography-heading-2-line-height:2.25rem;--typography-heading-2-letter-spacing:normal;--typography-heading-3-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-3-font-weight:700;--typography-heading-3-font-size:1.375rem;--typography-heading-3-line-height:1.875rem;--typography-heading-3-letter-spacing:normal;--typography-heading-4-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-4-font-weight:600;--typography-heading-4-font-size:1.125rem;--typography-heading-4-line-height:1.5rem;--typography-heading-4-letter-spacing:normal;--typography-heading-5-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-5-font-weight:600;--typography-heading-5-font-size:1rem;--typography-heading-5-line-height:1.5rem;--typography-heading-5-letter-spacing:normal;--typography-heading-6-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-6-font-weight:700;--typography-heading-6-font-size:0.875rem;--typography-heading-6-line-height:1.5rem;--typography-heading-6-letter-spacing:normal;--typography-paragraph-intro-lede-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-intro-lede-font-weight:400;--typography-paragraph-intro-lede-font-size:1.25rem;--typography-paragraph-intro-lede-line-height:1.875rem;--typography-paragraph-intro-lede-letter-spacing:0;--typography-paragraph-intro-lede-max-width:975px;--typography-paragraph-body-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-body-font-weight:400;--typography-paragraph-body-font-size:1rem;--typography-paragraph-body-line-height:1.5rem;--typography-paragraph-body-letter-spacing:normal;--typography-paragraph-body-max-width:780px;--typography-paragraph-small-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-small-font-weight:400;--typography-paragraph-small-font-size:0.875rem;--typography-paragraph-small-line-height:1.125rem;--typography-paragraph-small-letter-spacing:normal;--typography-paragraph-small-max-width:680px;--typography-paragraph-extra-small-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-extra-small-font-weight:400;--typography-paragraph-extra-small-font-size:0.75rem;--typography-paragraph-extra-small-line-height:1.125rem;--typography-paragraph-extra-small-letter-spacing:normal;--typography-paragraph-extra-small-max-width:600px;--typography-paragraph-bold-font-weight:600;--typography-button-primary-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-button-primary-font-weight:700;--typography-button-primary-font-size:1.125rem;--typography-button-primary-line-height:1.5rem;--typography-button-primary-letter-spacing:normal;--typography-button-secondary-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-button-secondary-font-weight:500;--typography-button-secondary-font-size:1rem;--typography-button-secondary-line-height:1.5rem;--typography-button-secondary-letter-spacing:normal}}@layer normalize{html{-webkit-text-size-adjust:100%;line-height:1.15}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}}@layer reset{@font-face{font-family:Tiempos Headline;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-bold.woff)}@font-face{font-family:Tiempos Headline;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-medium.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-medium.woff)}@font-face{font-family:Greycliff CF;font-weight:300;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-light.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:400;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-regular.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-medium.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:600;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-demi-bold.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:700;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-bold.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-extra-bold.woff) format("woff")}@font-face{font-family:Inter;font-weight:300;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-light.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-light.woff)}@font-face{font-family:Inter;font-weight:400;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-regular.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-regular.woff)}@font-face{font-family:Inter;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-medium.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-medium.woff)}@font-face{font-family:Inter;font-weight:600;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-demi-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-demi-bold.woff)}@font-face{font-family:Inter;font-weight:700;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-bold.woff)}@font-face{font-family:Inter;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-extra-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-extra-bold.woff)}@font-face{font-family:IBM Plex Mono;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/ibm-plex-mono/ibm-plex-mono-regular.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/ibm-plex-mono/ibm-plex-mono-regular.woff)}}@layer reset{*,:after,:before{border-color:var(--border-solid-border-color,"currentColor");border-style:solid;border-width:0}}
|
|
2
|
-
.Menu-module_menu__iHYqh{background-color:var(--color-white);border-radius:var(--border-solid-border-radius);box-shadow:var(--shadow-large-box-shadow);color:var(--color-purple-800);max-height:22rem;outline:none;overflow:auto;padding-block:var(--spacing-6);width:248px}.Menu-module_menu__iHYqh .react-aria-Header{font-family:var(--typography-heading-6-font-family);font-size:var(--typography-heading-6-font-size);font-weight:var(--typography-heading-6-font-weight);letter-spacing:var(--typography-heading-6-letter-spacing);line-height:var(--typography-heading-6-line-height);margin-inline:var(--spacing-6);padding:var(--spacing-6) 10px}.Menu-module_menu__iHYqh section:not(:last-of-type):after{background-color:var(--border-solid-border-color);content:"";display:block;height:1px;margin-block:var(--spacing-6);width:100%}
|
|
1
|
+
@layer tokens, normalize, reset;@layer tokens{:root{--theme-key:heart;--animation-easing-function-ease-in-out:cubic-bezier(0.455,0.03,0.515,0.955);--animation-easing-function-ease-in:cubic-bezier(0.55,0.085,0.68,0.53);--animation-easing-function-ease-out:cubic-bezier(0.25,0.46,0.45,0.94);--animation-easing-function-linear:linear;--animation-easing-function-bounce-in:cubic-bezier(0.485,0.155,0.24,1.245);--animation-easing-function-bounce-out:cubic-bezier(0.485,0.155,0.515,0.845);--animation-easing-function-bounce-in-out:cubic-bezier(0.76,-0.245,0.24,1.245);--animation-duration-instant:0ms;--animation-duration-immediate:100ms;--animation-duration-rapid:200ms;--animation-duration-fast:300ms;--animation-duration-slow:400ms;--animation-duration-deliberate:700ms;--border-solid-border-width:2px;--border-solid-border-radius:7px;--border-solid-border-style:solid;--border-solid-border-color:#e1e2ea;--border-solid-border-color-rgb:225,226,234;--border-dashed-border-width:2px;--border-dashed-border-radius:7px;--border-dashed-border-style:dashed;--border-borderless-border-width:2px;--border-borderless-border-radius:7px;--border-borderless-border-style:solid;--border-borderless-border-color:transparent;--border-borderless-border-color-rgb:0,0,0;--border-focus-ring-border-width:2px;--border-focus-ring-border-radius:10px;--border-focus-ring-border-style:solid;--border-width-1:1px;--color-purple-100:#f4edf8;--color-purple-100-rgb:244,237,248;--color-purple-200:#dfc9ea;--color-purple-200-rgb:223,201,234;--color-purple-300:#c9a5dd;--color-purple-300-rgb:201,165,221;--color-purple-400:#ae67b1;--color-purple-400-rgb:174,103,177;--color-purple-500:#844587;--color-purple-500-rgb:132,69,135;--color-purple-600:#5f3361;--color-purple-600-rgb:95,51,97;--color-purple-700:#4a234d;--color-purple-700-rgb:74,35,77;--color-purple-800:#2f2438;--color-purple-800-rgb:47,36,56;--color-blue-100:#e6f6ff;--color-blue-100-rgb:230,246,255;--color-blue-200:#bde2f5;--color-blue-200-rgb:189,226,245;--color-blue-300:#73c0e8;--color-blue-300-rgb:115,192,232;--color-blue-400:#008bd6;--color-blue-400-rgb:0,139,214;--color-blue-500:#0168b3;--color-blue-500-rgb:1,104,179;--color-blue-600:#004970;--color-blue-600-rgb:0,73,112;--color-blue-700:#003157;--color-blue-700-rgb:0,49,87;--color-green-100:#e8f8f4;--color-green-100-rgb:232,248,244;--color-green-200:#c4ede2;--color-green-200-rgb:196,237,226;--color-green-300:#8fdbc7;--color-green-300-rgb:143,219,199;--color-green-400:#5dcaad;--color-green-400-rgb:93,202,173;--color-green-500:#3f9a86;--color-green-500-rgb:63,154,134;--color-green-600:#2c7d67;--color-green-600-rgb:44,125,103;--color-green-700:#22594a;--color-green-700-rgb:34,89,74;--color-yellow-100:#fff9e4;--color-yellow-100-rgb:255,249,228;--color-yellow-200:#ffeeb3;--color-yellow-200-rgb:255,238,179;--color-yellow-300:#ffe36e;--color-yellow-300-rgb:255,227,110;--color-yellow-400:#ffca4d;--color-yellow-400-rgb:255,202,77;--color-yellow-500:#ffb600;--color-yellow-500-rgb:255,182,0;--color-yellow-600:#c68600;--color-yellow-600-rgb:198,134,0;--color-yellow-700:#876400;--color-yellow-700-rgb:135,100,0;--color-red-100:#fdeaee;--color-red-100-rgb:253,234,238;--color-red-200:#f9c2cb;--color-red-200-rgb:249,194,203;--color-red-300:#f597a8;--color-red-300-rgb:245,151,168;--color-red-400:#e0707d;--color-red-400-rgb:224,112,125;--color-red-500:#c93b55;--color-red-500-rgb:201,59,85;--color-red-600:#a82433;--color-red-600-rgb:168,36,51;--color-red-700:#6c1e20;--color-red-700-rgb:108,30,32;--color-orange-100:#fff0e8;--color-orange-100-rgb:255,240,232;--color-orange-200:#ffd1b9;--color-orange-200-rgb:255,209,185;--color-orange-300:#ffb08a;--color-orange-300-rgb:255,176,138;--color-orange-400:#ff9461;--color-orange-400-rgb:255,148,97;--color-orange-500:#e96c2f;--color-orange-500-rgb:233,108,47;--color-orange-600:#b74302;--color-orange-600-rgb:183,67,2;--color-orange-700:#903c00;--color-orange-700-rgb:144,60,0;--color-gray-100:#f9f9f9;--color-gray-100-rgb:249,249,249;--color-gray-200:#f4f4f5;--color-gray-200-rgb:244,244,245;--color-gray-300:#eaeaec;--color-gray-300-rgb:234,234,236;--color-gray-400:#cdcdd0;--color-gray-400-rgb:205,205,208;--color-gray-500:#878792;--color-gray-500-rgb:135,135,146;--color-gray-600:#524e56;--color-gray-600-rgb:82,78,86;--color-white:#fff;--color-white-rgb:255,255,255;--color-black:#000;--color-black-rgb:0,0,0;--data-viz-favorable:#7dd5bd;--data-viz-favorable-rgb:125,213,189;--data-viz-unfavorable:#e68d97;--data-viz-unfavorable-rgb:230,141,151;--layout-content-max-width:1392px;--layout-content-max-width-with-sidebar:1080px;--layout-content-side-margin:72px;--layout-mobile-actions-drawer-height:60px;--layout-navigation-bar-height:72px;--layout-breakpoints-medium:768px;--layout-breakpoints-large:1080px;--shadow-small-box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 3px 16px 0 rgba(0,0,0,.06);--shadow-large-box-shadow:0 3px 9px 0 rgba(0,0,0,.1),0 8px 40px 0 rgba(0,0,0,.08);--spacing-0:0;--spacing-1:.0625rem;--spacing-2:.125rem;--spacing-4:.25rem;--spacing-6:.375rem;--spacing-8:.5rem;--spacing-12:.75rem;--spacing-16:1rem;--spacing-20:1.25rem;--spacing-24:1.5rem;--spacing-32:2rem;--spacing-40:2.5rem;--spacing-48:3rem;--spacing-56:3.5rem;--spacing-64:4rem;--spacing-72:4.5rem;--spacing-80:5rem;--spacing-96:6rem;--spacing-112:7rem;--spacing-128:8rem;--spacing-160:10rem;--spacing-200:12.5rem;--spacing-240:15rem;--spacing-280:17.5rem;--spacing-320:20rem;--spacing-xs:0.375rem;--spacing-sm:0.75rem;--spacing-md:1.5rem;--spacing-lg:2.25rem;--spacing-xl:3rem;--spacing-xxl:3.75rem;--spacing-xxxl:4.5rem;--spacing-xxxxl:5.25rem;--spacing-xxxxxl:6rem;--typography-data-large-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-large-font-weight:700;--typography-data-large-font-size:5.25rem;--typography-data-large-line-height:5.25rem;--typography-data-large-letter-spacing:normal;--typography-data-large-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-large-units-font-weight:700;--typography-data-large-units-font-size:2.625rem;--typography-data-large-units-line-height:5.25rem;--typography-data-large-units-letter-spacing:normal;--typography-data-medium-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-medium-font-weight:700;--typography-data-medium-font-size:3rem;--typography-data-medium-line-height:5rem;--typography-data-medium-letter-spacing:normal;--typography-data-medium-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-medium-units-font-weight:700;--typography-data-medium-units-font-size:1.5rem;--typography-data-medium-units-line-height:5rem;--typography-data-medium-units-letter-spacing:normal;--typography-data-small-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-small-font-weight:700;--typography-data-small-font-size:1.5rem;--typography-data-small-line-height:1.5rem;--typography-data-small-letter-spacing:normal;--typography-data-small-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-small-units-font-weight:700;--typography-data-small-units-font-size:1.125rem;--typography-data-small-units-line-height:1.5rem;--typography-data-small-units-letter-spacing:normal;--typography-display-0-font-family:"Tiempos Headline",Georgia,serif;--typography-display-0-font-weight:800;--typography-display-0-font-size:4.5rem;--typography-display-0-line-height:5.25rem;--typography-display-0-letter-spacing:0em;--typography-heading-1-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-1-font-weight:700;--typography-heading-1-font-size:2.125rem;--typography-heading-1-line-height:2.625rem;--typography-heading-1-letter-spacing:normal;--typography-heading-2-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-2-font-weight:700;--typography-heading-2-font-size:1.75rem;--typography-heading-2-line-height:2.25rem;--typography-heading-2-letter-spacing:normal;--typography-heading-3-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-3-font-weight:700;--typography-heading-3-font-size:1.375rem;--typography-heading-3-line-height:1.875rem;--typography-heading-3-letter-spacing:normal;--typography-heading-4-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-4-font-weight:600;--typography-heading-4-font-size:1.125rem;--typography-heading-4-line-height:1.5rem;--typography-heading-4-letter-spacing:normal;--typography-heading-5-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-5-font-weight:600;--typography-heading-5-font-size:1rem;--typography-heading-5-line-height:1.5rem;--typography-heading-5-letter-spacing:normal;--typography-heading-6-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-6-font-weight:700;--typography-heading-6-font-size:0.875rem;--typography-heading-6-line-height:1.5rem;--typography-heading-6-letter-spacing:normal;--typography-paragraph-intro-lede-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-intro-lede-font-weight:400;--typography-paragraph-intro-lede-font-size:1.25rem;--typography-paragraph-intro-lede-line-height:1.875rem;--typography-paragraph-intro-lede-letter-spacing:0;--typography-paragraph-intro-lede-max-width:975px;--typography-paragraph-body-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-body-font-weight:400;--typography-paragraph-body-font-size:1rem;--typography-paragraph-body-line-height:1.5rem;--typography-paragraph-body-letter-spacing:normal;--typography-paragraph-body-max-width:780px;--typography-paragraph-small-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-small-font-weight:400;--typography-paragraph-small-font-size:0.875rem;--typography-paragraph-small-line-height:1.125rem;--typography-paragraph-small-letter-spacing:normal;--typography-paragraph-small-max-width:680px;--typography-paragraph-extra-small-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-extra-small-font-weight:400;--typography-paragraph-extra-small-font-size:0.75rem;--typography-paragraph-extra-small-line-height:1.125rem;--typography-paragraph-extra-small-letter-spacing:normal;--typography-paragraph-extra-small-max-width:600px;--typography-paragraph-bold-font-weight:600;--typography-button-primary-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-button-primary-font-weight:700;--typography-button-primary-font-size:1.125rem;--typography-button-primary-line-height:1.5rem;--typography-button-primary-letter-spacing:normal;--typography-button-secondary-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-button-secondary-font-weight:500;--typography-button-secondary-font-size:1rem;--typography-button-secondary-line-height:1.5rem;--typography-button-secondary-letter-spacing:normal}}@layer normalize{html{-webkit-text-size-adjust:100%;line-height:1.15}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}}@layer reset{@font-face{font-family:Tiempos Headline;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-bold.woff)}@font-face{font-family:Tiempos Headline;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-medium.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-medium.woff)}@font-face{font-family:Greycliff CF;font-weight:300;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-light.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:400;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-regular.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-medium.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:600;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-demi-bold.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:700;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-bold.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-extra-bold.woff) format("woff")}@font-face{font-family:Inter;font-weight:300;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-light.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-light.woff)}@font-face{font-family:Inter;font-weight:400;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-regular.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-regular.woff)}@font-face{font-family:Inter;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-medium.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-medium.woff)}@font-face{font-family:Inter;font-weight:600;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-demi-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-demi-bold.woff)}@font-face{font-family:Inter;font-weight:700;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-bold.woff)}@font-face{font-family:Inter;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-extra-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-extra-bold.woff)}@font-face{font-family:IBM Plex Mono;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/ibm-plex-mono/ibm-plex-mono-regular.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/ibm-plex-mono/ibm-plex-mono-regular.woff)}}@layer reset{*,:after,:before{border-color:var(--border-solid-border-color,"currentColor");border-style:solid;border-width:0}}
|
|
3
2
|
.OverlayArrow-module_overlayArrow__hoDyK{display:flex;padding:8px}.OverlayArrow-module_overlayArrow__hoDyK[data-placement=bottom],.OverlayArrow-module_overlayArrow__hoDyK[data-placement=top]{padding:0 8px}.OverlayArrow-module_overlayArrow__hoDyK[data-placement=left],.OverlayArrow-module_overlayArrow__hoDyK[data-placement=right]{padding:8px 0}.OverlayArrow-module_overlayArrow__hoDyK path{fill:var(--color-purple-800,#2f2438);box-shadow:var(--shadow-small-box-shadow,0 1px 3px 0 rgba(0,0,0,.1),0 3px 16px 0 rgba(0,0,0,.06))}.OverlayArrow-module_overlayArrow__hoDyK[data-placement=right] svg{transform:rotate(90deg)}.OverlayArrow-module_overlayArrow__hoDyK[data-placement=bottom] svg{transform:rotate(180deg)}.OverlayArrow-module_overlayArrow__hoDyK[data-placement=left] svg{transform:rotate(270deg)}.OverlayArrow-module_overlayArrow__hoDyK.OverlayArrow-module_reversed__-WGcR path{fill:var(--color-white,#fff)}
|
|
4
|
-
.
|
|
3
|
+
.Menu-module_menu__iHYqh{background-color:var(--color-white);border-radius:var(--border-solid-border-radius);box-shadow:var(--shadow-large-box-shadow);color:var(--color-purple-800);max-height:22rem;outline:none;overflow:auto;padding-block:var(--spacing-6);width:248px}.Menu-module_menu__iHYqh .react-aria-Header{font-family:var(--typography-heading-6-font-family);font-size:var(--typography-heading-6-font-size);font-weight:var(--typography-heading-6-font-weight);letter-spacing:var(--typography-heading-6-letter-spacing);line-height:var(--typography-heading-6-line-height);margin-inline:var(--spacing-6);padding:var(--spacing-6) 10px}.Menu-module_menu__iHYqh section:not(:last-of-type):after{background-color:var(--border-solid-border-color);content:"";display:block;height:1px;margin-block:var(--spacing-6);width:100%}
|
|
4
|
+
.MenuItem-module_item__DPerF{align-items:center;border:var(--border-focus-ring-border-width) var(--border-focus-ring-border-style) transparent;border-radius:4px;color:rgba(var(--color-purple-800-rgb),.7);cursor:pointer;display:flex;font-family:var(--typography-paragraph-body-font-family);font-size:var(--typography-paragraph-body-font-size);font-weight:var(--typography-paragraph-body-font-weight);gap:0 var(--spacing-8);letter-spacing:var(--typography-paragraph-body-letter-spacing);line-height:var(--typography-paragraph-body-line-height);margin-inline:var(--spacing-6);padding:var(--spacing-6) var(--spacing-8);text-decoration:none}.MenuItem-module_iconWrapper__bRdQN{align-items:center;display:flex;flex-shrink:0}.MenuItem-module_item__DPerF[data-focused]{background-color:var(--color-blue-100);border-color:var(--color-blue-500);color:var(--color-blue-500);outline:none}.MenuItem-module_item__DPerF[data-disabled]{opacity:.3}
|
|
5
5
|
.Button-module_button__QOSYH{--button-min-height-width:var(--spacing-48);--button-padding-x:calc(var(--spacing-12) - var(--border-solid-border-width));--button-padding-y:calc(var(--spacing-8) - var(--border-solid-border-width));--button-icon-size:var(--spacing-24);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;align-items:center;appearance:none;background:transparent;border:none;border:var(--border-solid-border-width) var(--border-solid-border-style);border-radius:var(--border-solid-border-radius);box-sizing:border-box;color:inherit;display:inline-flex;font:inherit;font-family:var(--typography-button-primary-font-family);font-size:var(--typography-button-primary-font-size);font-weight:var(--typography-button-primary-font-weight);gap:var(--spacing-8);justify-content:center;line-height:var(--typography-button-primary-line-height);margin:0;min-height:var(--button-min-height-width);min-width:var(--button-min-height-width);outline:none;padding:var(--button-padding-y) var(--button-padding-x);position:relative;text-align:left}.Button-module_button__QOSYH[data-focus-visible]:after{background:transparent;border-color:var(--color-blue-500);border-radius:var(--border-focus-ring-border-radius);border-style:var(--border-focus-ring-border-style);border-width:var(--border-focus-ring-border-width);content:"";inset:calc(var(--border-focus-ring-border-width)*2*-1 + -1px);position:absolute}.Button-module_button__QOSYH svg{height:var(--button-icon-size);width:var(--button-icon-size)}.Button-module_default__gSx3e{border-color:var(--color-gray-500);color:var(--color-purple-800)}.Button-module_default__gSx3e[data-focus-visible],.Button-module_default__gSx3e[data-hovered],.Button-module_default__gSx3e[data-pressed]{background-color:var(--color-gray-200);border-color:var(--color-purple-800)}.Button-module_default__gSx3e[data-disabled]{opacity:.3}.Button-module_default__gSx3e.Button-module_reversed__DT-Id{background-color:transparent;border-color:rgba(var(--color-white-rgb),.65);color:var(--color-white)}.Button-module_default__gSx3e.Button-module_reversed__DT-Id[data-focus-visible],.Button-module_default__gSx3e.Button-module_reversed__DT-Id[data-hovered]{background-color:rgba(var(--color-white-rgb),.1);border-color:var(--color-white)}.Button-module_default__gSx3e.Button-module_reversed__DT-Id[data-focus-visible]:after{border-color:var(--color-blue-300)}.Button-module_default__gSx3e.Button-module_reversed__DT-Id[data-disabled]:after{border-color:var(--color-gray-400)}.Button-module_small__S-t5B{--button-min-height-width:2.5rem;--button-padding-x:calc(var(--spacing-8) - var(--border-solid-border-width));--button-padding-y:calc(var(--spacing-8) - var(--border-solid-border-width));--button-icon-size:var(--spacing-16);gap:var(--spacing-8)}
|
|
6
6
|
.Focusable-module_focusableWrapper__NfuIi{display:inline-flex}
|
|
7
|
-
.
|
|
7
|
+
.Tooltip-module_tooltip__efL1m{text-wrap:pretty;background-color:var(--color-purple-800,#2f2438);border-radius:var(--border-solid-border-radius,7px);box-shadow:var(--shadow-small-box-shadow,0 1px 3px 0 rgba(0,0,0,.1),0 3px 16px 0 rgba(0,0,0,.06));color:var(--color-white,#fff);font-family:var(--typography-paragraph-extra-small-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-extra-small-font-size,.75rem);font-weight:var(--typography-paragraph-extra-small-font-weight,400);letter-spacing:var(--typography-paragraph-extra-small-letter-spacing,normal);line-height:var(--typography-paragraph-extra-small-line-height,1.125rem);max-width:200px;padding:var(--spacing-8,.5rem) var(--spacing-12,.75rem);text-align:center;transform:translateZ(0)}.Tooltip-module_tooltip__efL1m.Tooltip-module_reversed__NnCbZ{background-color:var(--color-white,#fff);color:var(--color-purple-800,#2f2438)}.Tooltip-module_tooltip__efL1m[data-placement=top]{--origin:translateY(4px)}.Tooltip-module_tooltip__efL1m[data-placement=bottom]{--origin:translateY(-4px)}.Tooltip-module_tooltip__efL1m[data-placement=right]{--origin:translateX(-4px)}.Tooltip-module_tooltip__efL1m[data-placement=left]{--origin:translateX(4px)}.Tooltip-module_tooltip__efL1m[data-entering]{animation:Tooltip-module_slide__lFdGA var(--animation-duration-fast,.3s)}.Tooltip-module_tooltip__efL1m[data-exiting]{animation:Tooltip-module_slide__lFdGA var(--animation-duration-fast,.3s) reverse var(--animation-easing-function-ease-in,cubic-bezier(.55,.085,.68,.53))}@keyframes Tooltip-module_slide__lFdGA{0%{opacity:0;transform:var(--origin)}to{opacity:1;transform:translateY(0)}}
|
|
8
8
|
.GuidanceBlock-module_rightMargin__gIzig{margin-right:var(--spacing-8,.5rem)}.GuidanceBlock-module_noRightMargin__xtPiX{margin-right:0}.GuidanceBlock-module_banner__ng6kh.GuidanceBlock-module_noMaxWidth__V-DbD{max-width:inherit}.GuidanceBlock-module_banner__ng6kh{--border-width:var(--border-width-1);border:var(--border-width) var(--border-solid-border-style);border-radius:var(--border-solid-border-radius,7px);box-shadow:var(--shadow-small-box-shadow,0 1px 3px 0 rgba(0,0,0,.1),0 3px 16px 0 rgba(0,0,0,.06));color:var(--color-purple-800,#2f2438);display:flex;flex-direction:column;gap:var(--spacing-sm,.75rem);max-width:1080px;min-width:320px;padding:calc(var(--spacing-lg, 2.25rem) - var(--border-width));position:relative;top:-1px;transition:opacity var(--animation-duration-slow,.4s) ease,margin-top var(--animation-duration-fast,.3s) var(--animation-duration-slow,.4s) ease}@media (min-width:1024px){.GuidanceBlock-module_banner__ng6kh{align-items:center;flex-direction:row;gap:var(--spacing-md,1.5rem);min-height:calc(12rem - var(--spacing-lg, 2.25rem)*2);width:auto}}@media (max-width:767px){.GuidanceBlock-module_banner__ng6kh{min-width:unset}}.GuidanceBlock-module_illustrationWrapper__-rRYc{display:flex}@media (min-width:768px) and (max-width:1023px){.GuidanceBlock-module_illustrationWrapper__-rRYc{align-self:center;justify-content:center;padding:var(--spacing-sm,.75rem);text-align:center}}@media (max-width:767px){.GuidanceBlock-module_illustrationWrapper__-rRYc{display:none}}.GuidanceBlock-module_illustration__LpEwu{height:155px;width:155px}.GuidanceBlock-module_hasSceneIllustration__HxwOA .GuidanceBlock-module_illustration__LpEwu{display:flex;height:auto;justify-content:center;max-height:300px;max-width:300px;width:300px}.GuidanceBlock-module_hasSceneIllustration__HxwOA .GuidanceBlock-module_illustration__LpEwu figure{aspect-ratio:4/3;max-height:100%;max-width:100%}.GuidanceBlock-module_hasSceneIllustration__HxwOA .GuidanceBlock-module_illustration__LpEwu img{height:100%;object-fit:contain;object-position:center}.GuidanceBlock-module_descriptionContainer__N1EEi{align-self:center;flex:1;max-width:780px;text-align:center}@media (min-width:1024px){.GuidanceBlock-module_descriptionContainer__N1EEi{padding:0 var(--spacing-sm,.75rem);text-align:left}}@media (max-width:767px){.GuidanceBlock-module_descriptionContainer__N1EEi{margin:var(--spacing-sm,.75rem);max-width:100%}}@media (min-width:1024px){[dir=rtl] .GuidanceBlock-module_descriptionContainer__N1EEi{padding:0 var(--spacing-sm,.75rem);text-align:right}}.GuidanceBlock-module_descriptionAndActions__D206m{align-items:center;display:flex;flex:1;gap:var(--spacing-md,1.5rem);justify-content:space-between}@media (max-width:1023px){.GuidanceBlock-module_descriptionAndActions__D206m{align-items:unset;flex-direction:column;width:100%}}.GuidanceBlock-module_buttonContainer__w3vEh{display:flex;flex:1 0 auto;flex-direction:row-reverse;gap:var(--spacing-sm,.75rem);justify-content:center;min-width:max-content}@media (min-width:768px){.GuidanceBlock-module_buttonContainer__w3vEh{text-align:center}}@media (max-width:767px){.GuidanceBlock-module_buttonContainer__w3vEh{flex-direction:column;margin-top:var(--spacing-xs,.375rem);width:100%}}[dir=rtl] .GuidanceBlock-module_buttonContainer__w3vEh svg{transform:rotate(180deg)}.GuidanceBlock-module_hidden__hgakl{margin-bottom:0;opacity:0}.GuidanceBlock-module_headingWrapper__xqjf-{margin-bottom:var(--spacing-md,1.5rem)}.GuidanceBlock-module_cancel__0lcBe{appearance:none;background:transparent;border:none;color:inherit;color:var(--color-purple-800,#2f2438);cursor:pointer;display:inline;font:inherit;margin:0;padding:0;position:absolute;right:var(--spacing-sm,.75rem);top:var(--spacing-sm,.75rem)}.GuidanceBlock-module_cancel__0lcBe .GuidanceBlock-module_icon__XVKkH{opacity:70%;transition:var(--animation-duration-fast,.3s) opacity}.GuidanceBlock-module_cancel__0lcBe.GuidanceBlock-module_disabled__tbZPh .GuidanceBlock-module_icon__XVKkH,.GuidanceBlock-module_cancel__0lcBe:disabled .GuidanceBlock-module_icon__XVKkH{opacity:30%}.GuidanceBlock-module_cancel__0lcBe:not(:disabled,.GuidanceBlock-module_disabled__tbZPh).GuidanceBlock-module_active__eJu5N .GuidanceBlock-module_icon__XVKkH,.GuidanceBlock-module_cancel__0lcBe:not(:disabled,.GuidanceBlock-module_disabled__tbZPh).GuidanceBlock-module_hover__vs7Wu .GuidanceBlock-module_icon__XVKkH,.GuidanceBlock-module_cancel__0lcBe:not(:disabled,.GuidanceBlock-module_disabled__tbZPh):active .GuidanceBlock-module_icon__XVKkH,.GuidanceBlock-module_cancel__0lcBe:not(:disabled,.GuidanceBlock-module_disabled__tbZPh):focus .GuidanceBlock-module_icon__XVKkH,.GuidanceBlock-module_cancel__0lcBe:not(:disabled,.GuidanceBlock-module_disabled__tbZPh):hover .GuidanceBlock-module_icon__XVKkH{opacity:100%}.GuidanceBlock-module_default__W7fnR{background:var(--color-white);border-color:var(--color-gray-500)}.GuidanceBlock-module_expert-advice__uGg7D{background:var(--color-purple-100,#f4edf8);border-color:var(--color-purple-400)}.GuidanceBlock-module_inline__DC0LQ,.GuidanceBlock-module_stacked__2SSuH{align-items:unset;flex-flow:row wrap;gap:var(--spacing-md,1.5rem);min-width:unset}@media (max-width:1023px){.GuidanceBlock-module_inline__DC0LQ,.GuidanceBlock-module_stacked__2SSuH{flex-direction:unset}}.GuidanceBlock-module_inline__DC0LQ .GuidanceBlock-module_illustrationWrapper__-rRYc,.GuidanceBlock-module_stacked__2SSuH .GuidanceBlock-module_illustrationWrapper__-rRYc{margin-right:var(--spacing-sm,.75rem)}[dir=rtl] .GuidanceBlock-module_inline__DC0LQ .GuidanceBlock-module_illustrationWrapper__-rRYc,[dir=rtl] .GuidanceBlock-module_stacked__2SSuH .GuidanceBlock-module_illustrationWrapper__-rRYc{margin-left:var(--spacing-sm,.75rem);margin-right:inherit}@media (min-width:768px) and (max-width:1023px){.GuidanceBlock-module_inline__DC0LQ .GuidanceBlock-module_illustrationWrapper__-rRYc,.GuidanceBlock-module_stacked__2SSuH .GuidanceBlock-module_illustrationWrapper__-rRYc{padding:0}}@media (max-width:767px){.GuidanceBlock-module_inline__DC0LQ .GuidanceBlock-module_illustrationWrapper__-rRYc,.GuidanceBlock-module_stacked__2SSuH .GuidanceBlock-module_illustrationWrapper__-rRYc{display:flex}}.GuidanceBlock-module_inline__DC0LQ .GuidanceBlock-module_descriptionAndActions__D206m,.GuidanceBlock-module_stacked__2SSuH .GuidanceBlock-module_descriptionAndActions__D206m{margin:auto 0}.GuidanceBlock-module_inline__DC0LQ .GuidanceBlock-module_descriptionContainer__N1EEi,.GuidanceBlock-module_stacked__2SSuH .GuidanceBlock-module_descriptionContainer__N1EEi{max-width:unset;min-width:320px;text-align:left}@media (min-width:1024px){.GuidanceBlock-module_inline__DC0LQ .GuidanceBlock-module_descriptionContainer__N1EEi,.GuidanceBlock-module_stacked__2SSuH .GuidanceBlock-module_descriptionContainer__N1EEi{padding:0}}@media (max-width:767px){.GuidanceBlock-module_inline__DC0LQ .GuidanceBlock-module_descriptionContainer__N1EEi,.GuidanceBlock-module_stacked__2SSuH .GuidanceBlock-module_descriptionContainer__N1EEi{margin:0}}[dir=rtl] .GuidanceBlock-module_inline__DC0LQ .GuidanceBlock-module_descriptionContainer__N1EEi,[dir=rtl] .GuidanceBlock-module_stacked__2SSuH .GuidanceBlock-module_descriptionContainer__N1EEi{text-align:right}@media (min-width:1024px){[dir=rtl] .GuidanceBlock-module_inline__DC0LQ .GuidanceBlock-module_descriptionContainer__N1EEi,[dir=rtl] .GuidanceBlock-module_stacked__2SSuH .GuidanceBlock-module_descriptionContainer__N1EEi{padding:0}}.GuidanceBlock-module_inline__DC0LQ .GuidanceBlock-module_buttonContainer__w3vEh,.GuidanceBlock-module_stacked__2SSuH .GuidanceBlock-module_buttonContainer__w3vEh{justify-content:flex-start;min-width:unset;padding-left:var(--spacing-sm,.75rem);width:unset}@media (max-width:767px){.GuidanceBlock-module_inline__DC0LQ .GuidanceBlock-module_buttonContainer__w3vEh,.GuidanceBlock-module_stacked__2SSuH .GuidanceBlock-module_buttonContainer__w3vEh{flex-direction:row-reverse}}[dir=rtl] .GuidanceBlock-module_inline__DC0LQ .GuidanceBlock-module_buttonContainer__w3vEh,[dir=rtl] .GuidanceBlock-module_stacked__2SSuH .GuidanceBlock-module_buttonContainer__w3vEh{padding-left:0;padding-right:var(--spacing-sm,.75rem)}.GuidanceBlock-module_inline__DC0LQ .GuidanceBlock-module_buttonContainer__w3vEh>*,.GuidanceBlock-module_stacked__2SSuH .GuidanceBlock-module_buttonContainer__w3vEh>*{width:unset}.GuidanceBlock-module_inline__DC0LQ.GuidanceBlock-module_hasSceneIllustration__HxwOA,.GuidanceBlock-module_stacked__2SSuH.GuidanceBlock-module_hasSceneIllustration__HxwOA{justify-content:center}.GuidanceBlock-module_inline__DC0LQ.GuidanceBlock-module_centerContent__pS9uQ,.GuidanceBlock-module_stacked__2SSuH.GuidanceBlock-module_centerContent__pS9uQ{flex-direction:column}.GuidanceBlock-module_inline__DC0LQ.GuidanceBlock-module_centerContent__pS9uQ.GuidanceBlock-module_hasSceneIllustration__HxwOA .GuidanceBlock-module_illustration__LpEwu,.GuidanceBlock-module_stacked__2SSuH.GuidanceBlock-module_centerContent__pS9uQ.GuidanceBlock-module_hasSceneIllustration__HxwOA .GuidanceBlock-module_illustration__LpEwu{width:100%}.GuidanceBlock-module_inline__DC0LQ.GuidanceBlock-module_centerContent__pS9uQ .GuidanceBlock-module_illustrationWrapper__-rRYc,.GuidanceBlock-module_stacked__2SSuH.GuidanceBlock-module_centerContent__pS9uQ .GuidanceBlock-module_illustrationWrapper__-rRYc{align-self:center;margin:0 auto}.GuidanceBlock-module_inline__DC0LQ.GuidanceBlock-module_centerContent__pS9uQ .GuidanceBlock-module_descriptionContainer__N1EEi,.GuidanceBlock-module_stacked__2SSuH.GuidanceBlock-module_centerContent__pS9uQ .GuidanceBlock-module_descriptionContainer__N1EEi{min-width:unset;text-align:center}[dir=rtl] .GuidanceBlock-module_inline__DC0LQ.GuidanceBlock-module_centerContent__pS9uQ .GuidanceBlock-module_descriptionContainer__N1EEi,[dir=rtl] .GuidanceBlock-module_stacked__2SSuH.GuidanceBlock-module_centerContent__pS9uQ .GuidanceBlock-module_descriptionContainer__N1EEi{text-align:center}.GuidanceBlock-module_inline__DC0LQ.GuidanceBlock-module_centerContent__pS9uQ .GuidanceBlock-module_buttonContainer__w3vEh,.GuidanceBlock-module_stacked__2SSuH.GuidanceBlock-module_centerContent__pS9uQ .GuidanceBlock-module_buttonContainer__w3vEh{flex-direction:column;justify-content:center;min-width:unset;padding:0}.GuidanceBlock-module_inline__DC0LQ.GuidanceBlock-module_centerContent__pS9uQ.GuidanceBlock-module_smallScreenTextAlignment__iaw5d .GuidanceBlock-module_descriptionContainer__N1EEi,.GuidanceBlock-module_stacked__2SSuH.GuidanceBlock-module_centerContent__pS9uQ.GuidanceBlock-module_smallScreenTextAlignment__iaw5d .GuidanceBlock-module_descriptionContainer__N1EEi{text-align:left}[dir=rtl] .GuidanceBlock-module_inline__DC0LQ.GuidanceBlock-module_centerContent__pS9uQ.GuidanceBlock-module_smallScreenTextAlignment__iaw5d .GuidanceBlock-module_descriptionContainer__N1EEi,[dir=rtl] .GuidanceBlock-module_stacked__2SSuH.GuidanceBlock-module_centerContent__pS9uQ.GuidanceBlock-module_smallScreenTextAlignment__iaw5d .GuidanceBlock-module_descriptionContainer__N1EEi{text-align:right}.GuidanceBlock-module_stacked__2SSuH .GuidanceBlock-module_descriptionAndActions__D206m{align-items:unset;flex-direction:column}.GuidanceBlock-module_stacked__2SSuH .GuidanceBlock-module_descriptionContainer__N1EEi{align-self:flex-start}
|
|
9
9
|
.SVG-module_icon__8J5Ev{display:inline-block;height:20px;width:20px}.SVG-module_icon__8J5Ev>use{pointer-events:none}@media screen and (-ms-high-contrast:active){.SVG-module_icon__8J5Ev{color:#000}}@media screen and (-ms-high-contrast:white-on-black){.SVG-module_icon__8J5Ev{color:#fff}}@media screen and (-ms-high-contrast:black-on-white){.SVG-module_icon__8J5Ev{color:#000}}.SVG-module_inheritSize__Q8iam{display:block;height:inherit;width:inherit}
|
|
10
10
|
.Avatar-module_wrapper__LY2q2{align-items:center;background:var(--color-gray-300,#eaeaec);border-radius:100%;box-sizing:border-box;display:flex;justify-content:center;overflow:hidden}.Avatar-module_wrapper__LY2q2:not(.Avatar-module_small__PeksS){border:3px solid var(--color-white,#fff);box-shadow:var(--shadow-small-box-shadow,0 1px 3px 0 rgba(0,0,0,.1),0 3px 16px 0 rgba(0,0,0,.06))}.Avatar-module_wrapper__LY2q2.Avatar-module_personal__2U7--{background:var(--color-orange-100,#fff0e8)}.Avatar-module_wrapper__LY2q2.Avatar-module_otherUser__b-drl{background:var(--color-gray-300,#eaeaec)}.Avatar-module_wrapper__LY2q2.Avatar-module_company__2qtJE{background:var(--color-white,#fff);border:0;border-radius:var(--border-solid-border-radius,7px);padding:6px}.Avatar-module_wrapper__LY2q2.Avatar-module_small__PeksS{height:1.25rem;width:1.25rem}.Avatar-module_wrapper__LY2q2.Avatar-module_small__PeksS .Avatar-module_initials__VDY2Q{margin-bottom:-1px}.Avatar-module_wrapper__LY2q2.Avatar-module_small__PeksS.Avatar-module_company__2qtJE{padding:0}.Avatar-module_wrapper__LY2q2.Avatar-module_medium__Vy3V8{height:3rem;width:3rem}.Avatar-module_wrapper__LY2q2.Avatar-module_medium__Vy3V8 .Avatar-module_initials__VDY2Q{margin-bottom:-1px}.Avatar-module_wrapper__LY2q2.Avatar-module_large__qiNWs{height:4.5rem;width:4.5rem}.Avatar-module_wrapper__LY2q2.Avatar-module_xlarge__Vx4IG{height:6rem;width:6rem}.Avatar-module_wrapper__LY2q2.Avatar-module_xxlarge__oOoGq{height:7.75rem;width:7.75rem}.Avatar-module_wrapper__LY2q2 .Avatar-module_initials__VDY2Q{speak-as:spell-out;border-bottom:none;text-decoration:none}.Avatar-module_avatarImage__FuULy{height:100%;object-fit:cover;width:100%}.Avatar-module_loading__i9V-D .Avatar-module_avatarImage__FuULy{display:none}.Avatar-module_companyAvatarImage__7rlfG{border-radius:4px;box-sizing:border-box;object-fit:contain}.Avatar-module_fallbackIcon__MPWxq{color:rgba(var(--color-purple-800-rgb,47,36,56),.7);width:28px}.Avatar-module_xxlarge__oOoGq .Avatar-module_fallbackIcon__MPWxq{width:75px}.Avatar-module_xlarge__Vx4IG .Avatar-module_fallbackIcon__MPWxq{width:60px}.Avatar-module_large__qiNWs .Avatar-module_fallbackIcon__MPWxq{width:35px}.Avatar-module_medium__Vy3V8 .Avatar-module_fallbackIcon__MPWxq{margin-bottom:-1px;width:25px}.Avatar-module_small__PeksS .Avatar-module_fallbackIcon__MPWxq{margin-bottom:-1px;width:10px}.Avatar-module_initials__VDY2Q{box-sizing:border-box;color:var(--color-purple-800,#2f2438);font-family:var(--typography-heading-1-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:22px;font-weight:var(--typography-heading-1-font-weight,700);letter-spacing:var(--typography-heading-3-letter-spacing,normal);padding-left:5px;padding-right:5px;text-align:center;width:100%}.Avatar-module_initials__VDY2Q:not(.Avatar-module_longName__31Yuf):before{content:"";display:block;margin-top:-.001em}.Avatar-module_xlarge__Vx4IG .Avatar-module_initials__VDY2Q,.Avatar-module_xxlarge__oOoGq .Avatar-module_initials__VDY2Q{font-size:34px;letter-spacing:var(--typography-heading-1-letter-spacing,normal)}.Avatar-module_medium__Vy3V8 .Avatar-module_initials__VDY2Q{font-size:16px}.Avatar-module_medium__Vy3V8 .Avatar-module_initials__VDY2Q,.Avatar-module_small__PeksS .Avatar-module_initials__VDY2Q{font-weight:var(--typography-heading-5-font-weight,600);letter-spacing:var(--typography-heading-5-letter-spacing,normal)}.Avatar-module_small__PeksS .Avatar-module_initials__VDY2Q{font-size:8px}
|
|
@@ -10,7 +10,6 @@ type DecorativeIcon = {
|
|
|
10
10
|
};
|
|
11
11
|
export type BaseSVGProps = {
|
|
12
12
|
inheritSize?: boolean;
|
|
13
|
-
shouldFlipOnRtl?: boolean;
|
|
14
13
|
} & OverrideClassName<SVGAttributes<SVGElement>> & (MeaningfulIcon | DecorativeIcon);
|
|
15
14
|
export type SVGProps = BaseSVGProps & {
|
|
16
15
|
children: ReactNode;
|
|
@@ -19,7 +18,7 @@ export type SVGProps = BaseSVGProps & {
|
|
|
19
18
|
* {@link https://cultureamp.design/?path=/docs/components-icon--meaningful-kaizen-site-demo Storybook}
|
|
20
19
|
*/
|
|
21
20
|
export declare const SVG: {
|
|
22
|
-
({ inheritSize, role, viewBox, classNameOverride, children,
|
|
21
|
+
({ inheritSize, role, viewBox, classNameOverride, children, ...restProps }: SVGProps): JSX.Element;
|
|
23
22
|
displayName: string;
|
|
24
23
|
};
|
|
25
24
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kaizen/components",
|
|
3
|
-
"version": "1.58.
|
|
3
|
+
"version": "1.58.2",
|
|
4
4
|
"description": "Kaizen component library",
|
|
5
5
|
"author": "Geoffrey Chong <geoff.chong@cultureamp.com>",
|
|
6
6
|
"homepage": "https://cultureamp.design",
|
|
@@ -58,11 +58,11 @@
|
|
|
58
58
|
"date-fns": "^3.6.0",
|
|
59
59
|
"lodash.debounce": "^4.0.8",
|
|
60
60
|
"nanobus": "^4.5.0",
|
|
61
|
-
"prosemirror-commands": "^1.
|
|
61
|
+
"prosemirror-commands": "^1.6.0",
|
|
62
62
|
"prosemirror-history": "^1.4.1",
|
|
63
63
|
"prosemirror-inputrules": "^1.4.0",
|
|
64
64
|
"prosemirror-keymap": "^1.2.2",
|
|
65
|
-
"prosemirror-model": "^1.22.
|
|
65
|
+
"prosemirror-model": "^1.22.3",
|
|
66
66
|
"prosemirror-schema-basic": "^1.2.3",
|
|
67
67
|
"prosemirror-schema-list": "^1.4.1",
|
|
68
68
|
"prosemirror-state": "^1.4.3",
|
|
@@ -80,8 +80,8 @@
|
|
|
80
80
|
"react-select": "^5.8.0",
|
|
81
81
|
"react-textfit": "^1.1.1",
|
|
82
82
|
"resize-observer-polyfill": "^1.5.1",
|
|
83
|
-
"use-debounce": "^10.0.
|
|
84
|
-
"tsx": "^4.
|
|
83
|
+
"use-debounce": "^10.0.2",
|
|
84
|
+
"tsx": "^4.17.0",
|
|
85
85
|
"uuid": "^10.0.0",
|
|
86
86
|
"@kaizen/hosted-assets": "2.0.3"
|
|
87
87
|
},
|
|
@@ -89,24 +89,25 @@
|
|
|
89
89
|
"react-day-picker": "Version locked until a11y gets fixed (https://github.com/gpbl/react-day-picker/pull/1708)"
|
|
90
90
|
},
|
|
91
91
|
"devDependencies": {
|
|
92
|
-
"@cultureamp/frontend-apis": "^9.
|
|
93
|
-
"@cultureamp/i18n-react-intl": "^2.
|
|
92
|
+
"@cultureamp/frontend-apis": "^9.8.0",
|
|
93
|
+
"@cultureamp/i18n-react-intl": "^2.6.0",
|
|
94
94
|
"@types/lodash.debounce": "^4.0.9",
|
|
95
95
|
"@types/react-dom": "^18.3.0",
|
|
96
96
|
"@types/react-textfit": "^1.1.4",
|
|
97
97
|
"@types/uuid": "^10.0.0",
|
|
98
|
-
"autoprefixer": "^10.4.
|
|
98
|
+
"autoprefixer": "^10.4.20",
|
|
99
99
|
"concat-cli": "^4.0.0",
|
|
100
100
|
"query-string": "^9.1.0",
|
|
101
101
|
"react-intl": "^6.6.8",
|
|
102
|
-
"rollup": "^4.
|
|
102
|
+
"rollup": "^4.20.0",
|
|
103
103
|
"sass": "^1.77.8",
|
|
104
104
|
"serialize-query-params": "^2.0.2",
|
|
105
105
|
"svgo": "^3.3.2",
|
|
106
|
-
"ts-jest": "^29.2.
|
|
106
|
+
"ts-jest": "^29.2.4",
|
|
107
107
|
"tslib": "^2.6.3",
|
|
108
|
-
"
|
|
109
|
-
"@kaizen/
|
|
108
|
+
"tsx": "^4.17.0",
|
|
109
|
+
"@kaizen/design-tokens": "10.5.3",
|
|
110
|
+
"@kaizen/package-bundler": "1.1.4"
|
|
110
111
|
},
|
|
111
112
|
"devDependenciesComments": {
|
|
112
113
|
"postcss": "Installed in root",
|
|
@@ -15,7 +15,6 @@ type DecorativeIcon = {
|
|
|
15
15
|
|
|
16
16
|
export type BaseSVGProps = {
|
|
17
17
|
inheritSize?: boolean
|
|
18
|
-
shouldFlipOnRtl?: boolean
|
|
19
18
|
} & OverrideClassName<SVGAttributes<SVGElement>> &
|
|
20
19
|
(MeaningfulIcon | DecorativeIcon)
|
|
21
20
|
|
|
@@ -32,14 +31,12 @@ export const SVG = ({
|
|
|
32
31
|
viewBox = "0 0 20 20",
|
|
33
32
|
classNameOverride,
|
|
34
33
|
children,
|
|
35
|
-
shouldFlipOnRtl,
|
|
36
34
|
...restProps
|
|
37
35
|
}: SVGProps): JSX.Element => {
|
|
38
36
|
const classes = classnames(
|
|
39
37
|
styles.icon,
|
|
40
38
|
classNameOverride,
|
|
41
|
-
inheritSize && styles.inheritSize
|
|
42
|
-
shouldFlipOnRtl && styles.flipOnRtl
|
|
39
|
+
inheritSize && styles.inheritSize
|
|
43
40
|
)
|
|
44
41
|
|
|
45
42
|
if (role === "presentation") {
|
|
@@ -126,7 +126,7 @@ export const VideoPlayer = ({
|
|
|
126
126
|
* https://developer.mozilla.org/en-US/docs/Web/Media/Autoplay_guide#autoplay_availability
|
|
127
127
|
*/
|
|
128
128
|
})
|
|
129
|
-
} catch
|
|
129
|
+
} catch {
|
|
130
130
|
/**
|
|
131
131
|
* Older browsers will raise a synchronous error because their first implementation
|
|
132
132
|
* of `.play` was not a promise.
|