@kaizen/components 1.48.0 → 1.49.1
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/cjs/DateInput/DateInput/DateInput.cjs +1 -0
- package/dist/cjs/DatePicker/DatePicker.cjs +7 -3
- package/dist/cjs/DateRangePicker/DateRangePicker.cjs +7 -2
- package/dist/cjs/EmptyState/EmptyState.cjs +0 -1
- package/dist/cjs/RichTextEditor/EditableRichTextContent/EditableRichTextContent.cjs +1 -0
- package/dist/cjs/RichTextEditor/EditableRichTextContent/EditableRichTextContent.module.scss.cjs +1 -0
- package/dist/cjs/RichTextEditor/RichTextEditor/RichTextEditor.cjs +1 -0
- package/dist/cjs/RichTextEditor/RichTextEditor/RichTextEditor.module.scss.cjs +1 -0
- package/dist/cjs/RichTextEditor/utils/plugins/LinkManager/components/LinkModal/LinkModal.cjs +5 -1
- package/dist/cjs/RichTextEditor/utils/plugins/LinkManager/components/LinkModal/LinkModal.module.scss.cjs +6 -0
- package/dist/cjs/RichTextEditor/utils/plugins/LinkManager/validation.cjs +8 -1
- package/dist/cjs/Select/Select.cjs +6 -2
- package/dist/cjs/__future__/Select/Select.cjs +12 -11
- package/dist/esm/DateInput/DateInput/DateInput.mjs +1 -0
- package/dist/esm/DatePicker/DatePicker.mjs +7 -3
- package/dist/esm/DateRangePicker/DateRangePicker.mjs +7 -2
- package/dist/esm/EmptyState/EmptyState.mjs +0 -1
- package/dist/esm/RichTextEditor/EditableRichTextContent/EditableRichTextContent.mjs +3 -2
- package/dist/esm/RichTextEditor/EditableRichTextContent/EditableRichTextContent.module.scss.mjs +1 -0
- package/dist/esm/RichTextEditor/RichTextEditor/RichTextEditor.mjs +3 -2
- package/dist/esm/RichTextEditor/RichTextEditor/RichTextEditor.module.scss.mjs +1 -0
- package/dist/esm/RichTextEditor/utils/plugins/LinkManager/components/LinkModal/LinkModal.mjs +5 -1
- package/dist/esm/RichTextEditor/utils/plugins/LinkManager/components/LinkModal/LinkModal.module.scss.mjs +4 -0
- package/dist/esm/RichTextEditor/utils/plugins/LinkManager/validation.mjs +2 -1
- package/dist/esm/Select/Select.mjs +6 -2
- package/dist/esm/__future__/Select/Select.mjs +12 -11
- package/dist/styles.css +9 -8
- package/dist/types/Input/Input/Input.d.ts +5 -0
- package/dist/types/RichTextEditor/utils/plugins/LinkManager/validation.d.ts +1 -0
- package/dist/types/Select/Select.d.ts +10 -0
- package/dist/types/TextArea/TextArea.d.ts +5 -0
- package/dist/types/__future__/Select/Select.d.ts +5 -0
- package/dist/types/__future__/Select/subcomponents/SelectToggle/SelectToggle.d.ts +8 -0
- package/package.json +6 -6
- package/src/DateInput/DateInput/DateInput.tsx +1 -0
- package/src/DatePicker/DatePicker.spec.tsx +14 -14
- package/src/DatePicker/DatePicker.tsx +20 -11
- package/src/DateRangePicker/DateRangePicker.tsx +14 -2
- package/src/DateRangePicker/_docs/DateRangePicker.mdx +5 -1
- package/src/DateRangePicker/_docs/DateRangePicker.stories.tsx +99 -3
- package/src/EmptyState/EmptyState.tsx +1 -4
- package/src/FieldGroup/_docs/FieldGroup.stickersheet.stories.tsx +2 -12
- package/src/FieldGroup/_docs/FieldGroup.stories.tsx +4 -9
- package/src/Input/Input/Input.tsx +5 -0
- package/src/Input/InputSearch/InputSearch.spec.tsx +10 -7
- package/src/Notification/ToastNotification/ToastNotificationsList/ToastNotificationsList.module.scss +1 -1
- package/src/RichTextEditor/EditableRichTextContent/EditableRichTextContent.module.scss +25 -7
- package/src/RichTextEditor/EditableRichTextContent/EditableRichTextContent.tsx +3 -1
- package/src/RichTextEditor/EditableRichTextContent/_docs/EditableRichTextContent.mdx +6 -4
- package/src/RichTextEditor/EditableRichTextContent/_docs/EditableRichTextContent.stickersheet.stories.tsx +98 -0
- package/src/RichTextEditor/EditableRichTextContent/_docs/EditableRichTextContent.stories.tsx +8 -5
- package/src/RichTextEditor/EditableRichTextContent/_docs/defaultContent.json +11 -0
- package/src/RichTextEditor/EditableRichTextContent/_docs/dummyContent.json +44 -39
- package/src/RichTextEditor/RichTextContent/_docs/RichTextContent.mdx +11 -1
- package/src/RichTextEditor/RichTextContent/_docs/RichTextContent.stories.tsx +47 -2
- package/src/RichTextEditor/RichTextEditor/RichTextEditor.module.scss +6 -1
- package/src/RichTextEditor/RichTextEditor/RichTextEditor.spec.stories.tsx +48 -0
- package/src/RichTextEditor/RichTextEditor/RichTextEditor.tsx +7 -2
- package/src/RichTextEditor/RichTextEditor/_docs/RichTextEditor.mdx +66 -7
- package/src/RichTextEditor/RichTextEditor/_docs/RichTextEditor.stories.tsx +60 -7
- package/src/RichTextEditor/_mixins.scss +1 -0
- package/src/RichTextEditor/utils/plugins/LinkManager/components/LinkModal/LinkModal.module.scss +5 -0
- package/src/RichTextEditor/utils/plugins/LinkManager/components/LinkModal/LinkModal.spec.stories.tsx +37 -0
- package/src/RichTextEditor/utils/plugins/LinkManager/components/LinkModal/LinkModal.stories.tsx +33 -0
- package/src/RichTextEditor/utils/plugins/LinkManager/components/LinkModal/LinkModal.tsx +9 -1
- package/src/RichTextEditor/utils/plugins/LinkManager/{validation.ts → validation.tsx} +11 -1
- package/src/Select/Select.tsx +9 -1
- package/src/Select/_docs/Select.stories.tsx +0 -3
- package/src/TextArea/TextArea.tsx +5 -0
- package/src/__future__/Select/Select.tsx +6 -1
- package/src/__future__/Select/_docs/Select.stickersheet.stories.tsx +0 -9
- package/src/__future__/Select/subcomponents/SelectToggle/SelectToggle.tsx +4 -0
package/dist/styles.css
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
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;--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:#44a289;--color-green-500-rgb:68,162,137;--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: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
2
|
.Select-module_container__TaMKg{position:relative;width:100%}.Select-module_notFullWidth__Mr-3G{width:180px}
|
|
3
|
-
.Wrapper-module_wrapper__89WmC{background:var(--color-gray-100,#f9f9f9);display:grid;grid-template-rows:min-content 1fr min-content;min-height:100vh;position:relative}
|
|
4
3
|
.Main-module_main__hMyB1{z-index:0}
|
|
5
|
-
.
|
|
4
|
+
.Wrapper-module_wrapper__89WmC{background:var(--color-gray-100,#f9f9f9);display:grid;grid-template-rows:min-content 1fr min-content;min-height:100vh;position:relative}
|
|
6
5
|
.FooterRoot-module_footerRoot__N-6nQ{align-items:center;background:var(--color-blue-500,#0168b3);display:grid;flex-grow:1;gap:var(--spacing-16,1rem);grid-template-areas:"prev stepper next";grid-template-columns:1fr 2fr 1fr;justify-content:center;padding:var(--spacing-24,1.5rem) var(--spacing-12,.75rem)}@media (min-width:768px){.FooterRoot-module_footerRoot__N-6nQ{bottom:0;grid-template-columns:1fr 5fr 1fr;padding:var(--spacing-24,1.5rem) var(--spacing-32,2rem);position:sticky;z-index:1}}
|
|
6
|
+
.FooterActions-module_footerAction__v7eL-{display:flex;flex-basis:auto;flex-grow:1}.FooterActions-module_footerActionPrevious__2XByZ{grid-area:"prev";justify-content:start}.FooterActions-module_footerActionNext__IKRta{grid-area:"next";justify-content:end}
|
|
7
7
|
.Actions-module_actions__Prrp0{align-items:center;display:flex;flex-direction:column;flex-grow:1;grid-area:actions;justify-content:center}@media (min-width:768px){.Actions-module_actions__Prrp0{align-items:flex-start;flex-direction:row;justify-content:flex-end;margin-top:calc(var(--spacing-12, .75rem)*-1)}}
|
|
8
|
-
.Branding-module_branding__4h-rD{display:flex;flex-grow:1;grid-area:branding;justify-content:center;padding-top:var(--spacing-4,.25rem)}@media (min-width:768px){.Branding-module_branding__4h-rD{justify-content:unset}}.Branding-module_logo__vqqec{flex-basis:7.5rem}
|
|
9
8
|
.Titles-module_titles__JYwU0{align-items:center;flex-grow:1;grid-area:titles;justify-content:center}.Titles-module_pageTitle__YDp9S,.Titles-module_titles__JYwU0{display:flex;flex-direction:column}.Titles-module_prefix__40x8n{margin-bottom:var(--spacing-4,.25rem)}.Titles-module_status__huuP7{margin-top:var(--spacing-8,.5rem)}
|
|
10
|
-
.
|
|
9
|
+
.Branding-module_branding__4h-rD{display:flex;flex-grow:1;grid-area:branding;justify-content:center;padding-top:var(--spacing-4,.25rem)}@media (min-width:768px){.Branding-module_branding__4h-rD{justify-content:unset}}.Branding-module_logo__vqqec{flex-basis:7.5rem}
|
|
11
10
|
.ProgressStepper-module_stepsContainer__WMxXN{grid-area:stepper;width:100%}.ProgressStepper-module_stepList__b1wWX{align-items:flex-end;display:none;justify-content:center;list-style:none;margin:0;padding:0}@media (min-width:768px){.ProgressStepper-module_stepList__b1wWX{display:flex}}.ProgressStepper-module_step__-Ep19{container:step/inline-size;display:flex;flex-basis:100%;flex-grow:1;justify-content:center;max-width:var(--spacing-96,6rem);overflow-wrap:break-word;position:relative}.ProgressStepper-module_stepContent__B4uFS{align-items:center;display:flex;flex-direction:column}.ProgressStepper-module_stepIndicator__-qEWT{height:1.25rem;position:relative;width:1.25rem}.ProgressStepper-module_stepName__hS4lp{display:none;font-weight:var(--typography-paragraph-bold-font-weight,600);margin-bottom:var(--spacing-12,.75rem);text-align:center}.ProgressStepper-module_stepIcon__0Kh4y{color:var(--color-white,#fff);height:1.25rem;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:1.25rem}.ProgressStepper-module_stepDivider__KEZPU{border:var(--spacing-1,.0625rem) solid var(--color-white,#fff);border-radius:var(--border-solid-border-radius,7px);display:flex;flex-grow:1;height:0;left:100%;margin:0;min-width:calc(100% - var(--spacing-24, 1.5rem));position:absolute;top:calc(100% - .625rem);transform:translateX(-50%)}[dir=rtl] .ProgressStepper-module_stepDivider__KEZPU{left:unset;right:100%;transform:translateX(50%)}.ProgressStepper-module_stepperDescription__B00hX{display:flex;justify-content:center}@media (min-width:768px){.ProgressStepper-module_stepperDescription__B00hX{height:0;overflow:hidden;position:absolute;width:0}}@container step (min-width: 4.5rem){.ProgressStepper-module_stepName__hS4lp{display:inline}}
|
|
11
|
+
.Root-module_root__7DVw5{align-items:center;background-color: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));display:grid;flex-grow:1;gap:var(--spacing-16,1rem);grid-template:"branding" min-content "titles" max-content "actions" min-content/1fr;justify-content:center;padding:var(--spacing-24,1.5rem);text-align:center}@media (min-width:768px){.Root-module_root__7DVw5{align-items:start;grid-template:"branding titles actions" min-content/1fr max-content 1fr;position:sticky;top:0;z-index:1}}
|
|
12
12
|
.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}
|
|
13
13
|
.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}
|
|
14
14
|
.AvatarGroup-module_AvatarGroup__bdL0o{display:inline-flex;list-style:none;margin:0;padding:0}.AvatarGroup-module_AvatarCounter__PKFzl{align-items:center;background:var(--color-gray-300,#eaeaec);border:3px solid var(--color-white,#fff);border-radius:100%;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));box-sizing:border-box;display:flex;justify-content:center;overflow:hidden}[dir=rtl] .AvatarGroup-module_AvatarCounter__PKFzl{direction:ltr}.AvatarGroup-module_small__7uv8k .AvatarGroup-module_AvatarGroupItem__xQol-+.AvatarGroup-module_AvatarGroupItem__xQol-{margin-inline-start:-.625rem}.AvatarGroup-module_small__7uv8k .AvatarGroup-module_AvatarCounter__PKFzl{border:none;box-shadow:none;font-family:var(--typography-heading-5-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:.5rem;font-weight:var(--typography-heading-5-font-weight,600);height:1.25rem;letter-spacing:var(--typography-heading-5-letter-spacing,normal);width:1.25rem}.AvatarGroup-module_medium__af52y .AvatarGroup-module_AvatarGroupItem__xQol-+.AvatarGroup-module_AvatarGroupItem__xQol-{margin-inline-start:-1.5rem}.AvatarGroup-module_medium__af52y .AvatarGroup-module_AvatarCounter__PKFzl{font-family:var(--typography-heading-5-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-heading-5-font-size,1rem);font-weight:var(--typography-heading-5-font-weight,600);height:3rem;letter-spacing:var(--typography-heading-5-letter-spacing,normal);width:3rem}.AvatarGroup-module_large__HN9Yy .AvatarGroup-module_AvatarGroupItem__xQol-+.AvatarGroup-module_AvatarGroupItem__xQol-{margin-inline-start:-2.25rem}.AvatarGroup-module_large__HN9Yy .AvatarGroup-module_AvatarCounter__PKFzl{font-family:var(--typography-heading-3-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-heading-3-font-size,1.375rem);font-weight:var(--typography-heading-3-font-weight,700);height:4.5rem;letter-spacing:var(--typography-heading-3-letter-spacing,normal);width:4.5rem}
|
|
@@ -94,7 +94,7 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs{all:unset;appearance
|
|
|
94
94
|
.FilterBar-module_filterBar__ZhQLn{background-color:var(--color-white,#fff);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));display:flex;padding:var(--spacing-8,.5rem)}.FilterBar-module_filtersContainer__v6OJn{display:flex;flex-grow:1;flex-wrap:wrap;gap:var(--spacing-8,.5rem)}
|
|
95
95
|
.GuidanceBlock-module_rightMargin__-iEFa{margin-right:var(--spacing-8,.5rem)}.GuidanceBlock-module_noRightMargin__4Uy9N{margin-right:0}.GuidanceBlock-module_banner__FxKcd.GuidanceBlock-module_noMaxWidth__UzHP1{max-width:inherit}.GuidanceBlock-module_banner__FxKcd{background:var(--color-white,#fff);border:var(--border-borderless-border-width,2px) var(--border-borderless-border-style,solid) var(--border-borderless-border-color,transparent);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:var(--spacing-lg,2.25rem);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__FxKcd{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__FxKcd{min-width:unset}}.GuidanceBlock-module_illustrationWrapper__AEljX{display:flex}@media (min-width:768px) and (max-width:1023px){.GuidanceBlock-module_illustrationWrapper__AEljX{align-self:center;justify-content:center;padding:var(--spacing-sm,.75rem);text-align:center}}@media (max-width:767px){.GuidanceBlock-module_illustrationWrapper__AEljX{display:none}}.GuidanceBlock-module_illustration__sU1Vu{height:155px;width:155px}.GuidanceBlock-module_hasSceneIllustration__tvFRD .GuidanceBlock-module_illustration__sU1Vu{display:flex;height:auto;justify-content:center;max-height:300px;max-width:300px;width:300px}.GuidanceBlock-module_hasSceneIllustration__tvFRD .GuidanceBlock-module_illustration__sU1Vu figure{aspect-ratio:4/3;max-height:100%;max-width:100%}.GuidanceBlock-module_hasSceneIllustration__tvFRD .GuidanceBlock-module_illustration__sU1Vu img{height:100%;object-fit:contain;object-position:center}.GuidanceBlock-module_descriptionContainer__aywtY{align-self:center;flex:1;max-width:780px;text-align:center}@media (min-width:1024px){.GuidanceBlock-module_descriptionContainer__aywtY{padding:0 var(--spacing-sm,.75rem);text-align:left}}@media (max-width:767px){.GuidanceBlock-module_descriptionContainer__aywtY{margin:var(--spacing-sm,.75rem);max-width:100%}}@media (min-width:1024px){[dir=rtl] .GuidanceBlock-module_descriptionContainer__aywtY{padding:0 var(--spacing-sm,.75rem);text-align:right}}.GuidanceBlock-module_descriptionAndActions__E5BcL{align-items:center;display:flex;flex:1;gap:var(--spacing-md,1.5rem);justify-content:space-between}@media (max-width:1023px){.GuidanceBlock-module_descriptionAndActions__E5BcL{align-items:unset;flex-direction:column;width:100%}}.GuidanceBlock-module_buttonContainer__U2Hxn{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__U2Hxn{text-align:center}}@media (max-width:767px){.GuidanceBlock-module_buttonContainer__U2Hxn{flex-direction:column;margin-top:var(--spacing-xs,.375rem);width:100%}}[dir=rtl] .GuidanceBlock-module_buttonContainer__U2Hxn svg{transform:rotate(180deg)}.GuidanceBlock-module_hidden__CbgXn{margin-bottom:0;opacity:0}.GuidanceBlock-module_headingWrapper__zgVmA{margin-bottom:var(--spacing-md,1.5rem)}.GuidanceBlock-module_cancel__UaIA-{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__UaIA- .GuidanceBlock-module_icon__y2xz8{opacity:70%;transition:var(--animation-duration-fast,.3s) opacity}.GuidanceBlock-module_cancel__UaIA-.GuidanceBlock-module_disabled__Uhgsr .GuidanceBlock-module_icon__y2xz8,.GuidanceBlock-module_cancel__UaIA-:disabled .GuidanceBlock-module_icon__y2xz8{opacity:30%}.GuidanceBlock-module_cancel__UaIA-:not(:disabled,.GuidanceBlock-module_disabled__Uhgsr).GuidanceBlock-module_active__YJaZt .GuidanceBlock-module_icon__y2xz8,.GuidanceBlock-module_cancel__UaIA-:not(:disabled,.GuidanceBlock-module_disabled__Uhgsr).GuidanceBlock-module_hover__7V9x1 .GuidanceBlock-module_icon__y2xz8,.GuidanceBlock-module_cancel__UaIA-:not(:disabled,.GuidanceBlock-module_disabled__Uhgsr):active .GuidanceBlock-module_icon__y2xz8,.GuidanceBlock-module_cancel__UaIA-:not(:disabled,.GuidanceBlock-module_disabled__Uhgsr):focus .GuidanceBlock-module_icon__y2xz8,.GuidanceBlock-module_cancel__UaIA-:not(:disabled,.GuidanceBlock-module_disabled__Uhgsr):hover .GuidanceBlock-module_icon__y2xz8{opacity:100%}.GuidanceBlock-module_positive__yENlT{background:var(--color-green-100,#e8f8f4)}.GuidanceBlock-module_negative__E-Jvh{background:var(--color-red-100,#fdeaee)}.GuidanceBlock-module_informative__ZUH4j{background:var(--color-blue-100,#e6f6ff)}.GuidanceBlock-module_cautionary__sJ1CE{background:var(--color-yellow-100,#fff9e4)}.GuidanceBlock-module_assertive__6PZlM{background:var(--color-orange-100,#fff0e8)}.GuidanceBlock-module_prominent__nn-r4{background:var(--color-purple-100,#f4edf8)}.GuidanceBlock-module_inline__GwOWR,.GuidanceBlock-module_stacked__rDupX{align-items:unset;flex-flow:row wrap;gap:var(--spacing-md,1.5rem);min-width:unset}@media (max-width:1023px){.GuidanceBlock-module_inline__GwOWR,.GuidanceBlock-module_stacked__rDupX{flex-direction:unset}}.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_illustrationWrapper__AEljX,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_illustrationWrapper__AEljX{margin-right:var(--spacing-sm,.75rem)}[dir=rtl] .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_illustrationWrapper__AEljX,[dir=rtl] .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_illustrationWrapper__AEljX{margin-left:var(--spacing-sm,.75rem);margin-right:inherit}@media (min-width:768px) and (max-width:1023px){.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_illustrationWrapper__AEljX,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_illustrationWrapper__AEljX{padding:0}}@media (max-width:767px){.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_illustrationWrapper__AEljX,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_illustrationWrapper__AEljX{display:flex}}.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_descriptionAndActions__E5BcL,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionAndActions__E5BcL{margin:auto 0}.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_descriptionContainer__aywtY,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionContainer__aywtY{max-width:unset;min-width:320px;text-align:left}@media (min-width:1024px){.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_descriptionContainer__aywtY,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionContainer__aywtY{padding:0}}@media (max-width:767px){.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_descriptionContainer__aywtY,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionContainer__aywtY{margin:0}}[dir=rtl] .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_descriptionContainer__aywtY,[dir=rtl] .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionContainer__aywtY{text-align:right}@media (min-width:1024px){[dir=rtl] .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_descriptionContainer__aywtY,[dir=rtl] .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionContainer__aywtY{padding:0}}.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_buttonContainer__U2Hxn,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_buttonContainer__U2Hxn{justify-content:flex-start;min-width:unset;padding-left:var(--spacing-sm,.75rem);width:unset}@media (max-width:767px){.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_buttonContainer__U2Hxn,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_buttonContainer__U2Hxn{flex-direction:row-reverse}}[dir=rtl] .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_buttonContainer__U2Hxn,[dir=rtl] .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_buttonContainer__U2Hxn{padding-left:0;padding-right:var(--spacing-sm,.75rem)}.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_buttonContainer__U2Hxn>*,.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_buttonContainer__U2Hxn>*{width:unset}.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_hasSceneIllustration__tvFRD,.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_hasSceneIllustration__tvFRD{justify-content:center}.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB,.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB{flex-direction:column}.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_hasSceneIllustration__tvFRD .GuidanceBlock-module_illustration__sU1Vu,.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_hasSceneIllustration__tvFRD .GuidanceBlock-module_illustration__sU1Vu{width:100%}.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_illustrationWrapper__AEljX,.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_illustrationWrapper__AEljX{align-self:center;margin:0 auto}.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_descriptionContainer__aywtY,.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_descriptionContainer__aywtY{min-width:unset;text-align:center}[dir=rtl] .GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_descriptionContainer__aywtY,[dir=rtl] .GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_descriptionContainer__aywtY{text-align:center}.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_buttonContainer__U2Hxn,.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_buttonContainer__U2Hxn{flex-direction:column;justify-content:center;min-width:unset;padding:0}.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_smallScreenTextAlignment__oWufj .GuidanceBlock-module_descriptionContainer__aywtY,.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_smallScreenTextAlignment__oWufj .GuidanceBlock-module_descriptionContainer__aywtY{text-align:left}[dir=rtl] .GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_smallScreenTextAlignment__oWufj .GuidanceBlock-module_descriptionContainer__aywtY,[dir=rtl] .GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_smallScreenTextAlignment__oWufj .GuidanceBlock-module_descriptionContainer__aywtY{text-align:right}.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionAndActions__E5BcL{align-items:unset;flex-direction:column}.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionContainer__aywtY{align-self:flex-start}
|
|
96
96
|
.GenericNotification-module_notification__-JP1M{box-sizing:border-box;display:flex;pointer-events:all}.GenericNotification-module_notification__-JP1M.GenericNotification-module_inline__OciO5,.GenericNotification-module_notification__-JP1M.GenericNotification-module_toast__GOVfC{border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid);border-radius:var(--border-solid-border-radius,7px);margin-bottom:var(--spacing-24,1.5rem)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_inline__OciO5{min-height:46px;padding:calc(var(--spacing-6, .375rem) - var(--border-solid-border-width, 2px)) var(--spacing-12,.75rem);transition:opacity .2s ease,transform .2s ease-out,margin-top .2s ease,margin-bottom .2s ease;width:auto}.GenericNotification-module_notification__-JP1M.GenericNotification-module_toast__GOVfC{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));container-type:inline-size;max-width:100%;padding:calc(var(--spacing-6, .375rem) - var(--border-solid-border-width, 2px)) 10px;transition:opacity .2s ease,transform .3s ease-out,margin-top .2s ease .2s,margin-bottom .2s ease;width:25rem;will-change:transform}.GenericNotification-module_notification__-JP1M.GenericNotification-module_global__Weka-{align-items:center;border-radius:0;border-width:0;display:flex;margin-bottom:0;position:relative;transition:margin-top .2s ease,margin-bottom .2s ease;width:100%;z-index:1030}.GenericNotification-module_notification__-JP1M.GenericNotification-module_positive__U-3HK{background:var(--color-green-100,#e8f8f4);border-color:var(--color-green-300,#8fdbc7);color:var(--color-purple-800,#2f2438)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_global__Weka-.GenericNotification-module_positive__U-3HK{background-color:var(--color-green-200,#c4ede2)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_informative__WLimi{background:var(--color-blue-100,#e6f6ff);border-color:var(--color-blue-300,#73c0e8);color:var(--color-purple-800,#2f2438)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_global__Weka-.GenericNotification-module_informative__WLimi{background-color:var(--color-blue-200,#bde2f5)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_cautionary__lneFu,.GenericNotification-module_notification__-JP1M.GenericNotification-module_security__QTALa{background:var(--color-yellow-100,#fff9e4);border-color:var(--color-yellow-400,#ffca4d);color:var(--color-purple-800,#2f2438)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_global__Weka-.GenericNotification-module_cautionary__lneFu,.GenericNotification-module_notification__-JP1M.GenericNotification-module_global__Weka-.GenericNotification-module_security__QTALa{background-color:var(--color-yellow-200,#ffeeb3)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_negative__lUWhD{background:var(--color-red-100,#fdeaee);border-color:var(--color-red-300,#f597a8);color:var(--color-purple-800,#2f2438)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_global__Weka-.GenericNotification-module_negative__lUWhD{background-color:var(--color-red-200,#f9c2cb)}.GenericNotification-module_notification__-JP1M.GenericNotification-module_hidden__WJjct{opacity:0}.GenericNotification-module_notification__-JP1M.GenericNotification-module_hidden__WJjct.GenericNotification-module_global__Weka-,.GenericNotification-module_notification__-JP1M.GenericNotification-module_hidden__WJjct.GenericNotification-module_inline__OciO5{margin-bottom:0}.GenericNotification-module_notification__-JP1M.GenericNotification-module_hidden__WJjct.GenericNotification-module_inline__OciO5{transform:translateY(-50%);transition-timing-function:ease-in}.GenericNotification-module_notification__-JP1M.GenericNotification-module_hidden__WJjct.GenericNotification-module_toast__GOVfC{transform:translateX(50%);transition-timing-function:ease-in}.GenericNotification-module_notification__-JP1M.GenericNotification-module_hidden__WJjct.GenericNotification-module_global__Weka-{opacity:100%;z-index:1029}.GenericNotification-module_notification__-JP1M.GenericNotification-module_noBottomMargin__28nF8{margin-bottom:0}.GenericNotification-module_notification__-JP1M.GenericNotification-module_persistent__O7bgI{transition:none}.GenericNotification-module_notification__-JP1M.GenericNotification-module_subtle__kPns9{background:none;border:none;padding:0}.GenericNotification-module_icon__SDb8v{align-items:flex-start;box-sizing:content-box}.GenericNotification-module_positive__U-3HK .GenericNotification-module_icon__SDb8v{color:var(--color-green-500,#44a289)}.GenericNotification-module_informative__WLimi .GenericNotification-module_icon__SDb8v{color:var(--color-blue-500,#0168b3)}.GenericNotification-module_cautionary__lneFu .GenericNotification-module_icon__SDb8v,.GenericNotification-module_security__QTALa .GenericNotification-module_icon__SDb8v{color:var(--color-yellow-500,#ffb600)}.GenericNotification-module_negative__lUWhD .GenericNotification-module_icon__SDb8v{color:var(--color-red-500,#c93b55)}.GenericNotification-module_inline__OciO5 .GenericNotification-module_icon__SDb8v,.GenericNotification-module_toast__GOVfC .GenericNotification-module_icon__SDb8v{height:22px;margin-top:var(--spacing-6,.375rem);width:22px}.GenericNotification-module_global__Weka- .GenericNotification-module_icon__SDb8v{border-radius:var(--border-solid-border-radius,7px);color:var(--color-white,#fff);height:calc(var(--spacing-24, 1.5rem)*1.25);margin:calc(var(--spacing-24, 1.5rem)/4);padding:calc(var(--spacing-24, 1.5rem)*2/2 - var(--spacing-24, 1.5rem)*1.25/2);width:calc(var(--spacing-24, 1.5rem)*1.25)}.GenericNotification-module_global__Weka-.GenericNotification-module_positive__U-3HK .GenericNotification-module_icon__SDb8v{background-color:var(--color-green-500,#44a289)}.GenericNotification-module_global__Weka-.GenericNotification-module_informative__WLimi .GenericNotification-module_icon__SDb8v{background-color:var(--color-blue-500,#0168b3)}.GenericNotification-module_global__Weka-.GenericNotification-module_cautionary__lneFu .GenericNotification-module_icon__SDb8v,.GenericNotification-module_global__Weka-.GenericNotification-module_security__QTALa .GenericNotification-module_icon__SDb8v{background-color:var(--color-yellow-500,#ffb600)}.GenericNotification-module_global__Weka-.GenericNotification-module_negative__lUWhD .GenericNotification-module_icon__SDb8v{background-color:var(--color-red-500,#c93b55)}.GenericNotification-module_textContainer__Avpbk{box-sizing:content-box;display:flex;flex:1 0 0;flex-flow:row wrap}.GenericNotification-module_inline__OciO5 .GenericNotification-module_textContainer__Avpbk,.GenericNotification-module_toast__GOVfC .GenericNotification-module_textContainer__Avpbk{margin-inline-start:var(--spacing-6,.375rem)}.GenericNotification-module_toast__GOVfC .GenericNotification-module_textContainer__Avpbk{hyphens:auto;margin-inline-start:var(--spacing-6,.375rem);max-width:calc(100% - var(--spacing-48, 3rem));overflow-wrap:break-word}.GenericNotification-module_global__Weka- .GenericNotification-module_textContainer__Avpbk{margin-inline-start:var(--spacing-12,.75rem);padding:calc(var(--spacing-24, 1.5rem)*.25) 0}.GenericNotification-module_inline__OciO5 .GenericNotification-module_textContainer__Avpbk{transition:opacity .2s ease}.GenericNotification-module_textContainer__Avpbk.GenericNotification-module_forceMultiline__JcVA4{flex-direction:column}.GenericNotification-module_title__dvQOr{color:inherit;font-family:var(--typography-heading-6-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-heading-6-font-size,.875rem);font-weight:var(--typography-heading-6-font-weight,700);letter-spacing:var(--typography-heading-6-letter-spacing,normal);line-height:var(--typography-heading-6-line-height,1.5rem);margin:0;padding-right:6px;position:relative;text-transform:none;top:.37em}.GenericNotification-module_text__X-5ld{color:inherit;margin:0}.GenericNotification-module_inline__OciO5 .GenericNotification-module_text__X-5ld,.GenericNotification-module_text__X-5ld,.GenericNotification-module_toast__GOVfC .GenericNotification-module_text__X-5ld{font-family:var(--typography-paragraph-small-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-small-font-size,.875rem);font-weight:var(--typography-paragraph-small-font-weight,400);letter-spacing:var(--typography-paragraph-small-letter-spacing,normal);line-height:var(--typography-paragraph-small-line-height,1.125rem);position:relative}.GenericNotification-module_inline__OciO5 .GenericNotification-module_text__X-5ld,.GenericNotification-module_toast__GOVfC .GenericNotification-module_text__X-5ld{flex:0 1 auto;margin-top:var(--spacing-6,.375rem);padding-bottom:var(--spacing-12,.75rem);top:.21em}.GenericNotification-module_toast__GOVfC .GenericNotification-module_text__X-5ld{width:100%}.GenericNotification-module_global__Weka- .GenericNotification-module_text__X-5ld{font-size:var(--typography-paragraph-body-font-size,1rem);font-weight:var(--typography-paragraph-body-font-weight,400);letter-spacing:var(--typography-paragraph-body-letter-spacing,normal);line-height:var(--typography-paragraph-body-line-height,1.5rem);position:static}.GenericNotification-module_text__X-5ld a[href]{color:var(--color-blue-500,#0168b3);text-decoration:underline}.GenericNotification-module_text__X-5ld a[href]:hover{color:var(--color-blue-500,#0168b3);text-decoration:none}.GenericNotification-module_global__Weka- .GenericNotification-module_text__X-5ld a[href]{color:var(--color-purple-800,#2f2438)}.GenericNotification-module_text__X-5ld strong{font-weight:var(--typography-button-secondary-font-weight,500)}.GenericNotification-module_text__X-5ld p{font-weight:inherit}.GenericNotification-module_cancel__c6wky{appearance:none;background:transparent;border:none;color:var(--color-purple-800,#2f2438);cursor:pointer;font:inherit;margin:0;padding:0;transform:none;transition:none}.GenericNotification-module_cancel__c6wky .GenericNotification-module_icon__SDb8v{opacity:70%;transition:var(--animation-duration-fast,.3s) opacity}.GenericNotification-module_cancel__c6wky:disabled .GenericNotification-module_icon__SDb8v,.GenericNotification-module_disabled__WGBhD.GenericNotification-module_cancel__c6wky .GenericNotification-module_icon__SDb8v{opacity:30%}.GenericNotification-module_cancel__c6wky:not(:disabled,.GenericNotification-module_disabled__WGBhD).GenericNotification-module_active__-6ahb .GenericNotification-module_icon__SDb8v,.GenericNotification-module_cancel__c6wky:not(:disabled,.GenericNotification-module_disabled__WGBhD).GenericNotification-module_hover__hUURd .GenericNotification-module_icon__SDb8v,.GenericNotification-module_cancel__c6wky:not(:disabled,.GenericNotification-module_disabled__WGBhD):active .GenericNotification-module_icon__SDb8v,.GenericNotification-module_cancel__c6wky:not(:disabled,.GenericNotification-module_disabled__WGBhD):focus .GenericNotification-module_icon__SDb8v,.GenericNotification-module_cancel__c6wky:not(:disabled,.GenericNotification-module_disabled__WGBhD):hover .GenericNotification-module_icon__SDb8v{opacity:100%}.GenericNotification-module_cancel__c6wky:active{transform:translateY(1px)}.GenericNotification-module_inline__OciO5 .GenericNotification-module_cancel__c6wky,.GenericNotification-module_toast__GOVfC .GenericNotification-module_cancel__c6wky{height:var(--spacing-48,3rem);margin-bottom:calc(var(--spacing-6, .375rem)*-1);margin-top:calc(var(--spacing-6, .375rem)*-1);width:var(--spacing-48,3rem)}.GenericNotification-module_inline__OciO5 .GenericNotification-module_cancel__c6wky{margin-right:calc(var(--spacing-12, .75rem)*-1)}.GenericNotification-module_toast__GOVfC .GenericNotification-module_cancel__c6wky{margin-right:-10px}.GenericNotification-module_global__Weka- .GenericNotification-module_cancel__c6wky{height:3.75rem;margin-bottom:calc(var(--spacing-12, .75rem)*-1);margin-right:-15px;margin-top:calc(var(--spacing-12, .75rem)*-1);padding-right:calc(var(--spacing-24, 1.5rem)*.625);width:3.75rem}.GenericNotification-module_cancelLabel__HJzsk{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.GenericNotification-module_cancel__c6wky{align-items:center;display:flex;justify-content:center;position:relative}.GenericNotification-module_cancel__c6wky:focus{outline:none}.GenericNotification-module_cancel__c6wky:focus-visible:after{background:transparent;border-color:var(--color-blue-500,#0168b3);border-radius:var(--border-focus-ring-border-radius,10px);border-style:var(--border-focus-ring-border-style,solid);border-width:var(--border-focus-ring-border-width,2px);content:"";inset:6px;pointer-events:none;position:absolute}.GenericNotification-module_notificationTitle__Oaqb8{line-height:var(--typography-heading-6-line-height,1.5rem);margin-inline-end:var(--spacing-6,.375rem);position:relative;top:.42em}@container (max-width: 25rem){.GenericNotification-module_notificationTitle__Oaqb8{width:100%}}
|
|
97
|
-
.ToastNotificationsList-module_toastNotificationsList__APiSP{align-items:flex-end;bottom:0;display:flex;flex-direction:column;max-width:100%;overflow:hidden;padding-bottom:0;padding-top:172px;pointer-events:none;position:fixed;right:var(--spacing-md,1.5rem);top:0;z-index:
|
|
97
|
+
.ToastNotificationsList-module_toastNotificationsList__APiSP{align-items:flex-end;bottom:0;display:flex;flex-direction:column;max-width:100%;overflow:hidden;padding-bottom:0;padding-top:172px;pointer-events:none;position:fixed;right:var(--spacing-md,1.5rem);top:0;z-index:1100}@media (max-width:1079px){.ToastNotificationsList-module_toastNotificationsList__APiSP{padding-top:108px}}@media (max-width:767px){.ToastNotificationsList-module_toastNotificationsList__APiSP{left:var(--spacing-md,1.5rem)}}
|
|
98
98
|
@keyframes LikertScaleLegacy-module_pop__hTH48{0%{opacity:50%;-webkit-transform:scale(1)}to{opacity:0;-webkit-transform:scale(1.78)}}.LikertScaleLegacy-module_container__5wjIJ{box-sizing:border-box;position:relative;width:220px}@media only screen and (max-width:767px){.LikertScaleLegacy-module_container__5wjIJ{position:static;width:258px}}.LikertScaleLegacy-module_container__5wjIJ.LikertScaleLegacy-module_rated__KXpzU .LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_unselected__nP5p9 .LikertScaleLegacy-module_likertItemFill__yj0tC{transition:background .1s}.LikertScaleLegacy-module_container__5wjIJ.LikertScaleLegacy-module_reversed__qrwrP.LikertScaleLegacy-module_rated__KXpzU .LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_unselected__nP5p9 .LikertScaleLegacy-module_likertItemFill__yj0tC{background-color:transparent;border-color:rgba(var(--color-white-rgb,255,255,255),.65)}.LikertScaleLegacy-module_container__5wjIJ :where(.LikertScaleLegacy-module_likertItem4__0SWtD,.LikertScaleLegacy-module_likertItem5__ZF0By) .LikertScaleLegacy-module_check__3wQsx{color:#fff}.LikertScaleLegacy-module_container__5wjIJ :is(.LikertScaleLegacy-module_likertItem4__0SWtD.LikertScaleLegacy-module_suggested__0xk0D,.LikertScaleLegacy-module_likertItem5__ZF0By.LikertScaleLegacy-module_suggested__0xk0D) .LikertScaleLegacy-module_check__3wQsx{color:#fff}.LikertScaleLegacy-module_likertItemFill__yj0tC:focus,.LikertScaleLegacy-module_likertItem__LwX2w:focus{outline:none}.LikertScaleLegacy-module_likertItem__LwX2w:focus-visible .LikertScaleLegacy-module_likertItemFill__yj0tC{outline:var(--color-blue-500,#0168b3) var(--border-focus-ring-border-style,solid) var(--border-focus-ring-border-width,2px);outline-offset:1px}.LikertScaleLegacy-module_reversed__qrwrP .LikertScaleLegacy-module_likertItem__LwX2w:focus-visible .LikertScaleLegacy-module_likertItemFill__yj0tC{outline-color:var(--color-blue-300,#73c0e8)}.LikertScaleLegacy-module_itemContainer__9Vfq0{display:inline-block;font-size:0;height:37px;white-space:nowrap;width:100%}.LikertScaleLegacy-module_legend__HYNg-{left:0;position:absolute;right:0;text-align:center;top:calc(var(--spacing-md, 1.5rem)*-1)}@media only screen and (max-width:767px){.LikertScaleLegacy-module_legend__HYNg-{position:static;top:0}}.LikertScaleLegacy-module_likertItem__LwX2w{display:inline-block;font-size:1px;line-height:1;margin-left:2px;margin-right:2px;overflow-x:visible;padding:0;position:relative;width:18.5%}.LikertScaleLegacy-module_likertItem__LwX2w[dir=rtl]:first-child,[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:first-child{margin-left:2px}.LikertScaleLegacy-module_likertItem__LwX2w[dir=rtl]:last-child,[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:last-child{margin-right:2px}.LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-bottom-left-radius:35px;border-top-left-radius:35px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-radius:0;border-bottom-right-radius:35px;border-top-right-radius:35px}.LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-bottom-left-radius:35px;border-top-left-radius:35px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-radius:0;border-bottom-right-radius:35px;border-top-right-radius:35px}.LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-bottom-right-radius:35px;border-top-right-radius:35px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-radius:0;border-bottom-left-radius:35px;border-top-left-radius:35px}.LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-bottom-right-radius:35px;border-top-right-radius:35px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-radius:0;border-bottom-left-radius:35px;border-top-left-radius:35px}.LikertScaleLegacy-module_likertItem__LwX2w:first-child{margin-left:0;margin-right:2px}.LikertScaleLegacy-module_likertItem__LwX2w:last-child{margin-left:2px;margin-right:0}.LikertScaleLegacy-module_likertItem__LwX2w:after,.LikertScaleLegacy-module_likertItem__LwX2w:before{content:"";height:100%;position:absolute;right:100%;top:0;width:2px}.LikertScaleLegacy-module_likertItem__LwX2w:after{left:100%;right:auto}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field1__TDRE-,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field1__TDRE-:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field1__TDRE-,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field1__TDRE-:after{background-color:var(--color-yellow-300,#ffe36e)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field2__s-CD7,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field2__s-CD7:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field2__s-CD7,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field2__s-CD7:after{background-color:var(--color-yellow-400,#ffca4d)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field3__xp5eQ,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field3__xp5eQ:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field3__xp5eQ,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field3__xp5eQ:after{background-color:var(--color-orange-400,#ff9461)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field4__IVK7E,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field4__IVK7E:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field4__IVK7E,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field4__IVK7E:after{background-color:var(--color-orange-500,#e96c2f)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field5__9sETV,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field5__9sETV:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field5__9sETV,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_classicalColorSchema__nPw3y .LikertScaleLegacy-module_field5__9sETV:after{background-color:var(--color-red-500,#c93b55)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field1__TDRE-,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field1__TDRE-:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field1__TDRE-,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field1__TDRE-:after{background-color:var(--color-blue-100,#e6f6ff)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field2__s-CD7,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field2__s-CD7:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field2__s-CD7,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field2__s-CD7:after{background-color:var(--color-blue-200,#bde2f5)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field3__xp5eQ,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field3__xp5eQ:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field3__xp5eQ,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field3__xp5eQ:after{background-color:var(--color-blue-300,#73c0e8)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field4__IVK7E,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field4__IVK7E:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field4__IVK7E,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field4__IVK7E:after{background-color:var(--color-blue-400,#008bd6)}.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field5__9sETV,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_selected__MVmcb.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field5__9sETV:after,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field5__9sETV,.LikertScaleLegacy-module_likertItem__LwX2w.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_blueColorSchema__w8XlF .LikertScaleLegacy-module_field5__9sETV:after{background-color:var(--color-blue-500,#0168b3)}.LikertScaleLegacy-module_likertItemFill__yj0tC{border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-gray-500,#878792);height:35px;transition:background .1s,border-color .1s}.LikertScaleLegacy-module_likertItemFill__yj0tC:hover{transition:background 0s,border-color 0s}.LikertScaleLegacy-module_likertItemFill__yj0tC:after{content:" ";display:block;height:100%;pointer-events:none;width:100%}.LikertScaleLegacy-module_likertItemFill__yj0tC.LikertScaleLegacy-module_pop__hTH48:after{-webkit-animation:LikertScaleLegacy-module_pop__hTH48 .7s cubic-bezier(0,.94,.32,1) 1}.LikertScaleLegacy-module_reversed__qrwrP .LikertScaleLegacy-module_likertItemFill__yj0tC{border-color:rgba(var(--color-white-rgb,255,255,255),.65)}.LikertScaleLegacy-module_check__3wQsx{color:#000;display:block;left:50%;margin:-10px 0 0 -10px;position:absolute;top:50%}.LikertScaleLegacy-module_likertItem1__cYmY6 .LikertScaleLegacy-module_check__3wQsx{margin-left:-9px}[dir=rtl] .LikertScaleLegacy-module_likertItem1__cYmY6 .LikertScaleLegacy-module_check__3wQsx{margin-left:-11px}.LikertScaleLegacy-module_likertItem5__ZF0By .LikertScaleLegacy-module_check__3wQsx{margin-left:-12px}[dir=rtl] .LikertScaleLegacy-module_likertItem5__ZF0By .LikertScaleLegacy-module_check__3wQsx{margin-left:-9px}.LikertScaleLegacy-module_hovered__vVUN6 :where(.LikertScaleLegacy-module_likertItem4__0SWtD,.LikertScaleLegacy-module_likertItem5__ZF0By) .LikertScaleLegacy-module_check__3wQsx{color:#000}.LikertScaleLegacy-module_hovered__vVUN6.LikertScaleLegacy-module_reversed__qrwrP .LikertScaleLegacy-module_itemContainer__9Vfq0>:not(.LikertScaleLegacy-module_suggested__0xk0D.LikertScaleLegacy-module_likertItem__LwX2w) .LikertScaleLegacy-module_check__3wQsx{color:#fff}@media only screen and (max-width:767px){.LikertScaleLegacy-module_container__5wjIJ{min-width:258px}.LikertScaleLegacy-module_itemContainer__9Vfq0{height:50px}.LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-bottom-left-radius:48px;border-top-left-radius:48px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-radius:0;border-bottom-right-radius:48px;border-top-right-radius:48px}.LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-bottom-left-radius:48px;border-top-left-radius:48px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-radius:0;border-bottom-right-radius:48px;border-top-right-radius:48px}.LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-bottom-right-radius:48px;border-top-right-radius:48px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC{border-radius:0;border-bottom-left-radius:48px;border-top-left-radius:48px}.LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-bottom-right-radius:48px;border-top-right-radius:48px}[dir=rtl] .LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC:after{border-radius:0;border-bottom-left-radius:48px;border-top-left-radius:48px}.LikertScaleLegacy-module_likertItemFill__yj0tC{height:48px}}@media print{.LikertScaleLegacy-module_legend__HYNg-{display:none}.LikertScaleLegacy-module_container__5wjIJ{right:2em;top:1em;width:150px}.LikertScaleLegacy-module_container__5wjIJ .LikertScaleLegacy-module_likertItem__LwX2w .LikertScaleLegacy-module_likertItemFill__yj0tC{background:#fff;border:1px solid #d7d8d8;height:25px}.LikertScaleLegacy-module_container__5wjIJ .LikertScaleLegacy-module_likertItem__LwX2w:first-child .LikertScaleLegacy-module_likertItemFill__yj0tC,.LikertScaleLegacy-module_container__5wjIJ .LikertScaleLegacy-module_likertItem__LwX2w:last-child .LikertScaleLegacy-module_likertItemFill__yj0tC{background:#fff;border-width:2px}}
|
|
99
99
|
.GenericModal-module_defaultModalWidth__kG7lU{max-width:600px;min-width:300px}.GenericModal-module_backdropLayer__RNQ-U{background-color:#000;bottom:0;left:0;opacity:50%;position:fixed;right:0;top:0;z-index:1040}.GenericModal-module_backdropLayer__RNQ-U[dir=rtl],[dir=rtl] .GenericModal-module_backdropLayer__RNQ-U{left:0;right:0}.GenericModal-module_scrollLayer__A5VdY{align-items:center;bottom:0;display:flex;left:0;overflow-y:auto;position:fixed;right:0;top:0;z-index:1050}.GenericModal-module_scrollLayer__A5VdY[dir=rtl],[dir=rtl] .GenericModal-module_scrollLayer__A5VdY{left:0;right:0}.GenericModal-module_modalLayer__WfD1U{margin:auto;padding:1.5rem 0;width:100%}.GenericModal-module_animatingEnter__P3wuk{transition-duration:var(--animation-duration-fast,.3s)}.GenericModal-module_animatingEnter__P3wuk .GenericModal-module_backdropLayer__RNQ-U{animation-duration:201ms;animation-fill-mode:forwards;animation-name:GenericModal-module_fade-0-to-0-5__-4t3h}@keyframes GenericModal-module_fade-0-to-0-5__-4t3h{0%{opacity:0}to{opacity:.5}}.GenericModal-module_animatingEnter__P3wuk [data-modal]{animation-duration:var(--animation-duration-fast,.3s);animation-fill-mode:forwards;animation-name:GenericModal-module_custom-1__G0JT4;animation-timing-function:var(--animation-easing-function-bounce-in,cubic-bezier(.485,.155,.24,1.245))}@keyframes GenericModal-module_custom-1__G0JT4{0%{opacity:0;transform:scale(.5)}to{opacity:1;transform:scale(1)}}.GenericModal-module_animatingLeave__rNkKX{transition-duration:var(--animation-duration-rapid,.2s)}.GenericModal-module_animatingLeave__rNkKX .GenericModal-module_backdropLayer__RNQ-U{animation-duration:var(--animation-duration-rapid,.2s);animation-fill-mode:forwards;animation-name:GenericModal-module_fade-0-5-to-0__JkaSn}@keyframes GenericModal-module_fade-0-5-to-0__JkaSn{0%{opacity:.5}to{opacity:0}}.GenericModal-module_animatingLeave__rNkKX [data-modal]{animation-duration:var(--animation-duration-rapid,.2s);animation-fill-mode:forwards;animation-name:GenericModal-module_custom-3__oWflS;animation-timing-function:var(--animation-easing-function-bounce-out,cubic-bezier(.485,.155,.515,.845))}@keyframes GenericModal-module_custom-3__oWflS{0%{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(.5)}}.GenericModal-module_unscrollable__HjRaW{overflow:hidden!important}.GenericModal-module_pseudoScrollbar__BhRqh{padding-right:15px!important}.GenericModal-module_hide__SK9PI{opacity:0;pointer-events:none}
|
|
100
100
|
.ModalAccessibleDescription-module_modalDescription__gq-Mn{grid-column-start:2}
|
|
@@ -122,14 +122,15 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs{all:unset;appearance
|
|
|
122
122
|
.Radio-module_radioInput__-zPUZ{opacity:0;position:absolute}.ideal-sans .Radio-module_radioInput__-zPUZ{position:absolute}.Radio-module_icon__ihSP3{background:var(--color-gray-600,#524e56);border-radius:50%;height:10px;left:5px;position:absolute;top:5px;width:10px}.Radio-module_icon__ihSP3.Radio-module_reversed__pfCrF{background:var(--color-white,#fff)}@media (forced-colors:active){.Radio-module_icon__ihSP3{border:5px solid transparent;height:0;width:0}}.Radio-module_box__nEGD7{background:var(--color-white,#fff);border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-gray-500,#878792);border-radius:50%;box-sizing:border-box;display:block;height:24px;position:relative;top:0;width:24px}.Radio-module_radioInput__-zPUZ:focus:not([disabled])+.Radio-module_box__nEGD7{border-color:var(--color-gray-600,#524e56)}.Radio-module_radioInput__-zPUZ:focus:not([disabled])+.Radio-module_box__nEGD7:after{background:transparent;border-color:var(--color-blue-500,#0168b3);border-radius:26px;border-style:var(--border-focus-ring-border-style,solid);border-width:var(--border-focus-ring-border-width,2px);box-sizing:border-box;content:"";height:calc(26px + var(--border-solid-border-width, 2px)*2);left:-5px;pointer-events:none;position:absolute;top:-5px;width:calc(26px + var(--border-solid-border-width, 2px)*2)}.Radio-module_radioInput__-zPUZ:not([disabled])+.Radio-module_box__nEGD7:hover{background-color:var(--color-gray-200,#f4f4f5);border-color:var(--color-gray-600,#524e56)}.Radio-module_box__nEGD7.Radio-module_reversed__pfCrF{background:transparent;border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) rgba(var(--color-white-rgb,255,255,255),.65)}.Radio-module_radioInput__-zPUZ:focus:not([disabled])+.Radio-module_box__nEGD7.Radio-module_reversed__pfCrF{border-color:var(--color-white,#fff)}.Radio-module_radioInput__-zPUZ:focus:not([disabled])+.Radio-module_box__nEGD7.Radio-module_reversed__pfCrF:after{border-color:var(--color-blue-300,#73c0e8)}.Radio-module_radioInput__-zPUZ:not([disabled])+.Radio-module_box__nEGD7.Radio-module_reversed__pfCrF:hover{background-color:transparent;border-color:var(--color-white,#fff)}
|
|
123
123
|
.RadioField-module_container__r6T25{word-wrap:break-word;margin-bottom:var(--spacing-sm,.75rem);overflow-wrap:break-word;position:relative;word-break:break-word}.RadioField-module_container__r6T25 label{-webkit-tap-highlight-color:transparent}.ideal-sans .RadioField-module_container__r6T25 label{font-size:var(--typography-paragraph-body-font-size,1rem);padding-top:0}.RadioField-module_container__r6T25.RadioField-module_selected__kdlz8 label{font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-body-font-size,1rem);font-weight:var(--typography-paragraph-bold-font-weight,600);letter-spacing:var(--typography-paragraph-body-letter-spacing,normal);line-height:var(--typography-paragraph-body-line-height,1.5rem);position:static}.RadioField-module_container__r6T25:not(.RadioField-module_reversed__EX79j) label:hover input:not([disabled])+span{background-color:var(--color-gray-200,#f4f4f5);border-color:var(--color-gray-600,#524e56)}.RadioField-module_container__r6T25.RadioField-module_reversed__EX79j label:hover input:not([disabled])+span{background-color:transparent;border-color:var(--color-white,#fff)}
|
|
124
124
|
.RadioGroup-module_radioGroupLabel__wIl4z{margin-bottom:var(--spacing-sm,.75rem)}.ideal-sans .RadioGroup-module_radioGroupLabel__wIl4z label{padding-top:0}.RadioGroup-module_radioGroupLabel__wIl4z.RadioGroup-module_reversed__VeBun{color:var(--color-white,#fff)}.RadioGroup-module_radioGroupContainer__NKWpt{display:flex;flex-direction:column;margin-bottom:var(--spacing-sm,.75rem)}.RadioGroup-module_radioGroupContainer__NKWpt.RadioGroup-module_noBottomMargin__VKF2T{margin-bottom:0}
|
|
125
|
-
.RichTextContent-module_content__vVcWj>.ProseMirror{box-sizing:content-box;font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-body-font-size,1rem);font-weight:var(--typography-paragraph-body-font-weight,400);letter-spacing:var(--typography-paragraph-body-letter-spacing,normal);line-height:var(--typography-paragraph-body-line-height,1.5rem);position:relative;white-space:pre-wrap}.RichTextContent-module_content__vVcWj>.ProseMirror>p{margin:0 0 var(--spacing-16,1rem)}.RichTextContent-module_content__vVcWj>.ProseMirror>:last-child,.RichTextContent-module_content__vVcWj>.ProseMirror>:last-child>li:last-of-type p{margin-bottom:0}.RichTextContent-module_content__vVcWj>.ProseMirror>:first-child,.RichTextContent-module_content__vVcWj>.ProseMirror>:first-child>li:first-of-type p{margin-top:0}.RichTextContent-module_content__vVcWj>.ProseMirror a{color:var(--color-blue-500,#0168b3)}.RichTextContent-module_content__vVcWj>.ProseMirror a:hover{text-decoration:none}.RichTextContent-module_content__vVcWj>.ProseMirror ol,.RichTextContent-module_content__vVcWj>.ProseMirror ul{padding-inline-start:var(--spacing-40,2.5rem)}.RichTextContent-module_content__vVcWj>.ProseMirror ol{list-style-type:decimal}.RichTextContent-module_content__vVcWj>.ProseMirror ol ol{list-style-type:lower-alpha}.RichTextContent-module_content__vVcWj>.ProseMirror ol ol ol{list-style-type:lower-roman}.RichTextContent-module_content__vVcWj>.ProseMirror ol ol ol ol,.RichTextContent-module_content__vVcWj>.ProseMirror ol ol ol ul{padding-inline-start:var(--spacing-40,2.5rem)}.RichTextContent-module_content__vVcWj>.ProseMirror ol ol ol ol{list-style-type:decimal}.RichTextContent-module_content__vVcWj>.ProseMirror ol ol ol ol ol{list-style-type:lower-alpha}.RichTextContent-module_content__vVcWj>.ProseMirror ol ol ol ol ol ol{list-style-type:lower-roman}.RichTextContent-module_content__vVcWj>.ProseMirror ol ol ol ul{list-style-type:disc}.RichTextContent-module_content__vVcWj>.ProseMirror ol ol ol ul ul{list-style-type:circle}.RichTextContent-module_content__vVcWj>.ProseMirror ol ol ol ul ul ul{list-style-type:square}.RichTextContent-module_content__vVcWj>.ProseMirror ul{list-style-type:disc}.RichTextContent-module_content__vVcWj>.ProseMirror ul ul{list-style-type:circle}.RichTextContent-module_content__vVcWj>.ProseMirror ul ul ul{list-style-type:square}.RichTextContent-module_content__vVcWj>.ProseMirror ul ul ul ol,.RichTextContent-module_content__vVcWj>.ProseMirror ul ul ul ul{padding-inline-start:var(--spacing-40,2.5rem)}.RichTextContent-module_content__vVcWj>.ProseMirror ul ul ul ol{list-style-type:decimal}.RichTextContent-module_content__vVcWj>.ProseMirror ul ul ul ol ol{list-style-type:lower-alpha}.RichTextContent-module_content__vVcWj>.ProseMirror ul ul ul ol ol ol{list-style-type:lower-roman}.RichTextContent-module_content__vVcWj>.ProseMirror ul ul ul ul{list-style-type:disc}.RichTextContent-module_content__vVcWj>.ProseMirror ul ul ul ul ul{list-style-type:circle}.RichTextContent-module_content__vVcWj>.ProseMirror ul ul ul ul ul ul{list-style-type:square}
|
|
126
|
-
.EditableRichTextContent-module_editableContainer__zZEMC .ProseMirror{background-color:var(--color-
|
|
125
|
+
.RichTextContent-module_content__vVcWj>.ProseMirror{box-sizing:content-box;color:var(--color-purple-800,#2f2438);font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-body-font-size,1rem);font-weight:var(--typography-paragraph-body-font-weight,400);letter-spacing:var(--typography-paragraph-body-letter-spacing,normal);line-height:var(--typography-paragraph-body-line-height,1.5rem);position:relative;white-space:pre-wrap}.RichTextContent-module_content__vVcWj>.ProseMirror>p{margin:0 0 var(--spacing-16,1rem)}.RichTextContent-module_content__vVcWj>.ProseMirror>:last-child,.RichTextContent-module_content__vVcWj>.ProseMirror>:last-child>li:last-of-type p{margin-bottom:0}.RichTextContent-module_content__vVcWj>.ProseMirror>:first-child,.RichTextContent-module_content__vVcWj>.ProseMirror>:first-child>li:first-of-type p{margin-top:0}.RichTextContent-module_content__vVcWj>.ProseMirror a{color:var(--color-blue-500,#0168b3)}.RichTextContent-module_content__vVcWj>.ProseMirror a:hover{text-decoration:none}.RichTextContent-module_content__vVcWj>.ProseMirror ol,.RichTextContent-module_content__vVcWj>.ProseMirror ul{padding-inline-start:var(--spacing-40,2.5rem)}.RichTextContent-module_content__vVcWj>.ProseMirror ol{list-style-type:decimal}.RichTextContent-module_content__vVcWj>.ProseMirror ol ol{list-style-type:lower-alpha}.RichTextContent-module_content__vVcWj>.ProseMirror ol ol ol{list-style-type:lower-roman}.RichTextContent-module_content__vVcWj>.ProseMirror ol ol ol ol,.RichTextContent-module_content__vVcWj>.ProseMirror ol ol ol ul{padding-inline-start:var(--spacing-40,2.5rem)}.RichTextContent-module_content__vVcWj>.ProseMirror ol ol ol ol{list-style-type:decimal}.RichTextContent-module_content__vVcWj>.ProseMirror ol ol ol ol ol{list-style-type:lower-alpha}.RichTextContent-module_content__vVcWj>.ProseMirror ol ol ol ol ol ol{list-style-type:lower-roman}.RichTextContent-module_content__vVcWj>.ProseMirror ol ol ol ul{list-style-type:disc}.RichTextContent-module_content__vVcWj>.ProseMirror ol ol ol ul ul{list-style-type:circle}.RichTextContent-module_content__vVcWj>.ProseMirror ol ol ol ul ul ul{list-style-type:square}.RichTextContent-module_content__vVcWj>.ProseMirror ul{list-style-type:disc}.RichTextContent-module_content__vVcWj>.ProseMirror ul ul{list-style-type:circle}.RichTextContent-module_content__vVcWj>.ProseMirror ul ul ul{list-style-type:square}.RichTextContent-module_content__vVcWj>.ProseMirror ul ul ul ol,.RichTextContent-module_content__vVcWj>.ProseMirror ul ul ul ul{padding-inline-start:var(--spacing-40,2.5rem)}.RichTextContent-module_content__vVcWj>.ProseMirror ul ul ul ol{list-style-type:decimal}.RichTextContent-module_content__vVcWj>.ProseMirror ul ul ul ol ol{list-style-type:lower-alpha}.RichTextContent-module_content__vVcWj>.ProseMirror ul ul ul ol ol ol{list-style-type:lower-roman}.RichTextContent-module_content__vVcWj>.ProseMirror ul ul ul ul{list-style-type:disc}.RichTextContent-module_content__vVcWj>.ProseMirror ul ul ul ul ul{list-style-type:circle}.RichTextContent-module_content__vVcWj>.ProseMirror ul ul ul ul ul ul{list-style-type:square}
|
|
126
|
+
.EditableRichTextContent-module_editorLabel__u2Fu9{display:inline-block;margin-bottom:var(--spacing-6,.375rem)}.EditableRichTextContent-module_editableContainer__zZEMC .ProseMirror{background-color:var(--color-white,#fff);border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-gray-500,#878792);border-radius:var(--border-solid-border-radius,7px);min-height:var(--typography-paragraph-body-line-height,1.5rem);padding:calc(var(--spacing-12, .75rem) - var(--border-solid-border-width, 2px));position:relative;transition:background-color var(--animation-duration-immediate,.1s),border-color var(--animation-duration-immediate,.1s)}.EditableRichTextContent-module_editableContainer__zZEMC:hover .ProseMirror{background-color:var(--color-gray-200,#f4f4f5)}.EditableRichTextContent-module_editableContainer__zZEMC .EditableRichTextContent-module_hiddenButton__Kq3oB:focus-within+*>.ProseMirror{background-color:var(--color-gray-200,#f4f4f5)}.EditableRichTextContent-module_editableContainer__zZEMC .EditableRichTextContent-module_hiddenButton__Kq3oB:focus-within+*>.ProseMirror:before{background:transparent;border:var(--border-focus-ring-border-width,2px) var(--border-focus-ring-border-style,solid) var(--color-blue-500,#0168b3);border-radius:10px;content:"";inset:calc(var(--border-focus-ring-border-width, 2px)*2*-1 + -1px);pointer-events:none;position:absolute;z-index:1}
|
|
127
127
|
.TextField-module_input__CEokl{margin-top:var(--spacing-6,.375rem)}.TextField-module_success__pMLcV{animation-duration:var(--animation-duration-slow,.4s);animation-fill-mode:forwards;animation-name:TextField-module_fade-0-to-1__Ac-99;color:var(--color-green-500,#44a289)}.TextField-module_withReversed__agi-Q .TextField-module_success__pMLcV{color:var(--color-green-400,#5dcaad)}.TextField-module_success__pMLcV.TextField-module_disabled__gS8tk{color:rgba(var(--color-green-500-rgb,68,162,137),.3)}.TextField-module_withReversed__agi-Q .TextField-module_success__pMLcV.TextField-module_disabled__gS8tk{color:rgba(var(--color-green-400-rgb,93,202,173),.3)}.TextField-module_error__7S-f2{animation-duration:var(--animation-duration-slow,.4s);animation-fill-mode:forwards;animation-name:TextField-module_fade-0-to-1__Ac-99;color:var(--color-red-100,#fdeaee)}.TextField-module_withReversed__agi-Q .TextField-module_error__7S-f2{color:var(--color-purple-700,#4a234d)}.TextField-module_caution__3gzHk{animation-duration:var(--animation-duration-slow,.4s);animation-fill-mode:forwards;animation-name:TextField-module_fade-0-to-1__Ac-99;color:var(--color-yellow-200,#ffeeb3)}.TextField-module_withReversed__agi-Q .TextField-module_caution__3gzHk{color:var(--color-purple-700,#4a234d)}@keyframes TextField-module_fade-0-to-1__Ac-99{0%{opacity:0}to{opacity:1}}.TextField-module_message__bQOgK.TextField-module_disabled__gS8tk{opacity:.3}
|
|
128
|
+
.LinkModal-module_validationErrorMessage__APw4U ul{margin-bottom:0}
|
|
128
129
|
.LinkPopover-module_popoverContent__qGPyp{align-items:center;display:flex;justify-content:center}.LinkPopover-module_popoverLinkContainer__6H0PQ{padding-inline:var(--spacing-8,.5rem) var(--spacing-12,.75rem)}.LinkPopover-module_popoverLink__p1BTG{max-width:300px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.LinkPopover-module_paragraphFlex__PKECm{display:inline-flex}.LinkPopover-module_popoverActions__QuW1-{border-left:1px solid rgba(var(--color-gray-600-rgb,82,78,86),.1);padding-inline:var(--spacing-4,.25rem) var(--spacing-4,.25rem)}
|
|
129
130
|
.ToggleIconButton-module_button__86Iau{align-items:center;background-color:var(--color-white,#fff);border:none;border-radius:var(--border-solid-border-radius,7px);display:flex;height:3rem;justify-content:center;position:relative;transition:background-color var(--animation-duration-immediate,.1s);width:3rem}.ToggleIconButton-module_button__86Iau:focus{outline:none}.ToggleIconButton-module_button__86Iau:focus-visible:after{background:transparent;border-color:var(--color-blue-500,#0168b3);border-radius:var(--border-focus-ring-border-radius,10px);border-style:var(--border-focus-ring-border-style,solid);border-width:var(--border-focus-ring-border-width,2px);content:"";inset:-3px;position:absolute}.ToggleIconButton-module_default__2fWS1{background-color:var(--color-white,#fff);color:var(--color-purple-800,#2f2438)}.ToggleIconButton-module_default__2fWS1:focus-visible,.ToggleIconButton-module_default__2fWS1:hover{background-color:var(--color-gray-200,#f4f4f5)}.ToggleIconButton-module_default__2fWS1.ToggleIconButton-module_active__YLYx9{background-color:var(--color-gray-300,#eaeaec);color:var(--color-purple-800,#2f2438)}.ToggleIconButton-module_secondary__2bzRa{background-color:var(--color-white,#fff);color:var(--color-blue-500,#0168b3)}.ToggleIconButton-module_secondary__2bzRa:focus-visible,.ToggleIconButton-module_secondary__2bzRa:hover{background-color:var(--color-blue-100,#e6f6ff)}.ToggleIconButton-module_secondary__2bzRa.ToggleIconButton-module_active__YLYx9{background-color:var(--color-blue-200,#bde2f5)}.ToggleIconButton-module_primary__-y-0m{background-color:var(--color-blue-500,#0168b3);color:var(--color-white,#fff)}.ToggleIconButton-module_primary__-y-0m:focus-visible,.ToggleIconButton-module_primary__-y-0m:hover{background-color:var(--color-blue-600,#004970)}.ToggleIconButton-module_primary__-y-0m.ToggleIconButton-module_active__YLYx9{background-color:var(--color-blue-700,#003157)}.ToggleIconButton-module_destructive__-PY2A{background-color:var(--color-red-500,#c93b55);color:var(--color-white,#fff)}.ToggleIconButton-module_destructive__-PY2A:focus-visible,.ToggleIconButton-module_destructive__-PY2A:hover{background-color:var(--color-red-600,#a82433)}.ToggleIconButton-module_destructive__-PY2A.ToggleIconButton-module_active__YLYx9{background-color:var(--color-red-700,#6c1e20)}.ToggleIconButton-module_secondary-destructive__t6UEj{background-color:var(--color-white,#fff);color:var(--color-red-600,#a82433)}.ToggleIconButton-module_secondary-destructive__t6UEj:focus-visible,.ToggleIconButton-module_secondary-destructive__t6UEj:hover{background-color:var(--color-red-100,#fdeaee)}.ToggleIconButton-module_secondary-destructive__t6UEj.ToggleIconButton-module_active__YLYx9{background-color:var(--color-red-200,#f9c2cb)}.ToggleIconButton-module_disabled__rwpBC{opacity:30%;pointer-events:none}.ToggleIconButton-module_disabled__rwpBC:focus-visible:after{background-color:transparent;border-color:transparent;color:rgba(var(--color-purple-800-rgb,47,36,56),.3);opacity:100%;outline:var(--color-purple-800,#2f2438) var(--border-dashed-border-style,dashed) var(--border-focus-ring-border-width,2px);outline-offset:-2px}
|
|
130
131
|
.Toolbar-module_toolbar__ooRzV{border-bottom:2px solid var(--color-gray-500,#878792);display:block}
|
|
131
132
|
.ToolbarSection-module_toolbarSection__nCI0O{align-items:center;display:inline-flex;flex-wrap:wrap;gap:var(--spacing-xs,.375rem);margin:var(--spacing-xs,.375rem) 0;padding:0 var(--spacing-xs,.375rem)}.ToolbarSection-module_toolbarSection__nCI0O+.ToolbarSection-module_toolbarSection__nCI0O{border-inline-start:1px solid rgba(var(--color-gray-600-rgb,82,78,86),.1)}
|
|
132
|
-
.RichTextEditor-module_editor__pVKqW>.ProseMirror{border-radius:var(--border-solid-border-radius,7px);box-sizing:content-box;font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-body-font-size,1rem);font-weight:var(--typography-paragraph-body-font-weight,400);letter-spacing:var(--typography-paragraph-body-letter-spacing,normal);line-height:var(--typography-paragraph-body-line-height,1.5rem);padding:var(--spacing-sm,.75rem) calc(var(--spacing-xs, .375rem)*3);position:relative;transition:background-color var(--animation-duration-immediate,.1s),border-color var(--animation-duration-immediate,.1s);white-space:pre-wrap}.RichTextEditor-module_editor__pVKqW>.ProseMirror>p{margin:0 0 var(--spacing-16,1rem)}.RichTextEditor-module_editor__pVKqW>.ProseMirror>:last-child,.RichTextEditor-module_editor__pVKqW>.ProseMirror>:last-child>li:last-of-type p{margin-bottom:0}.RichTextEditor-module_editor__pVKqW>.ProseMirror>:first-child,.RichTextEditor-module_editor__pVKqW>.ProseMirror>:first-child>li:first-of-type p{margin-top:0}.RichTextEditor-module_editor__pVKqW>.ProseMirror a{color:var(--color-blue-500,#0168b3)}.RichTextEditor-module_editor__pVKqW>.ProseMirror a:hover{text-decoration:none}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol,.RichTextEditor-module_editor__pVKqW>.ProseMirror ul{padding-inline-start:var(--spacing-40,2.5rem)}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol{list-style-type:decimal}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol{list-style-type:lower-alpha}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol{list-style-type:lower-roman}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol ol,.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol ul{padding-inline-start:var(--spacing-40,2.5rem)}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol ol{list-style-type:decimal}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol ol ol{list-style-type:lower-alpha}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol ol ol ol{list-style-type:lower-roman}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol ul{list-style-type:disc}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol ul ul{list-style-type:circle}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol ul ul ul{list-style-type:square}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul{list-style-type:disc}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul{list-style-type:circle}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul{list-style-type:square}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul ol,.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul ul{padding-inline-start:var(--spacing-40,2.5rem)}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul ol{list-style-type:decimal}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul ol ol{list-style-type:lower-alpha}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul ol ol ol{list-style-type:lower-roman}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul ul{list-style-type:disc}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul ul ul{list-style-type:circle}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul ul ul ul{list-style-type:square}.RichTextEditor-module_editor__pVKqW>.ProseMirror:focus,.RichTextEditor-module_editor__pVKqW>.ProseMirror:hover{background:var(--color-gray-200,#f4f4f5);border-color:var(--color-gray-600,#524e56)}.RichTextEditor-module_editor__pVKqW>.ProseMirror:focus{outline:none}.RichTextEditor-module_editor__pVKqW>.ProseMirror:focus-visible:after{background:transparent;border-color:var(--color-blue-500,#0168b3);border-radius:2px 2px var(--border-focus-ring-border-radius,10px) var(--border-focus-ring-border-radius,10px);border-style:var(--border-focus-ring-border-style,solid);border-width:var(--border-focus-ring-border-width,2px);content:"";inset:-5px;pointer-events:none;position:absolute}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_hasToolbar__EBxnG>.ProseMirror{border-top-left-radius:0;border-top-right-radius:0}.RichTextEditor-module_editorWrapper__5q3mG{word-wrap:break-word;background:var(--color-white,#fff);border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-gray-500,#878792);border-radius:var(--border-solid-border-radius,7px);position:relative}.RichTextEditor-module_editorWrapper__5q3mG:focus-within,.RichTextEditor-module_editorWrapper__5q3mG:hover{border-color:var(--color-gray-600,#524e56)}.RichTextEditor-module_editorWrapper__5q3mG:focus-within .RichTextEditor-module_toolbar__ceLvw,.RichTextEditor-module_editorWrapper__5q3mG:hover .RichTextEditor-module_toolbar__ceLvw{border-color:var(--color-gray-600,#524e56)}.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_error__Xugz8,.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_error__Xugz8 .RichTextEditor-module_toolbar__ceLvw{border-color:var(--color-red-500,#c93b55)}.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_error__Xugz8:hover,.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_error__Xugz8:hover .RichTextEditor-module_toolbar__ceLvw{border-color:var(--color-red-600,#a82433)}.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_caution__6q0z6,.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_caution__6q0z6 .RichTextEditor-module_toolbar__ceLvw{border-color:var(--color-yellow-600,#c68600)}.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_caution__6q0z6:hover,.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_caution__6q0z6:hover .RichTextEditor-module_toolbar__ceLvw{border-color:var(--color-yellow-700,#876400)}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows1__DDEf4>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*1 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows2__kzYgh>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*2 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows3__SA7Zu>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*3 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows4__gkZry>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*4 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows5__4Rq2z>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*5 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows6__SH-4R>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*6 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows7__z02vY>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*7 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows8__4j-9e>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*8 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows9__67hDj>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*9 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows10__qysh1>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*10 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows11__o5iYX>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*11 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows12__ug-Nv>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*12 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows13__tFBG7>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*13 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows14__xqS6h>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*14 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows15__dzeUM>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*15 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows16__GyRco>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*16 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows17__GyNby>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*17 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows18__fe-Rb>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*18 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows19__fc0-T>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*19 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows20__p9rwF>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*20 - var(--spacing-16, 1rem))}
|
|
133
|
+
.RichTextEditor-module_editor__pVKqW>.ProseMirror{border-radius:var(--border-solid-border-radius,7px);box-sizing:content-box;color:var(--color-purple-800,#2f2438);font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-body-font-size,1rem);font-weight:var(--typography-paragraph-body-font-weight,400);letter-spacing:var(--typography-paragraph-body-letter-spacing,normal);line-height:var(--typography-paragraph-body-line-height,1.5rem);padding:var(--spacing-sm,.75rem) calc(var(--spacing-xs, .375rem)*3);position:relative;transition:background-color var(--animation-duration-immediate,.1s),border-color var(--animation-duration-immediate,.1s);white-space:pre-wrap}.RichTextEditor-module_editor__pVKqW>.ProseMirror>p{margin:0 0 var(--spacing-16,1rem)}.RichTextEditor-module_editor__pVKqW>.ProseMirror>:last-child,.RichTextEditor-module_editor__pVKqW>.ProseMirror>:last-child>li:last-of-type p{margin-bottom:0}.RichTextEditor-module_editor__pVKqW>.ProseMirror>:first-child,.RichTextEditor-module_editor__pVKqW>.ProseMirror>:first-child>li:first-of-type p{margin-top:0}.RichTextEditor-module_editor__pVKqW>.ProseMirror a{color:var(--color-blue-500,#0168b3)}.RichTextEditor-module_editor__pVKqW>.ProseMirror a:hover{text-decoration:none}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol,.RichTextEditor-module_editor__pVKqW>.ProseMirror ul{padding-inline-start:var(--spacing-40,2.5rem)}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol{list-style-type:decimal}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol{list-style-type:lower-alpha}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol{list-style-type:lower-roman}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol ol,.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol ul{padding-inline-start:var(--spacing-40,2.5rem)}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol ol{list-style-type:decimal}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol ol ol{list-style-type:lower-alpha}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol ol ol ol{list-style-type:lower-roman}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol ul{list-style-type:disc}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol ul ul{list-style-type:circle}.RichTextEditor-module_editor__pVKqW>.ProseMirror ol ol ol ul ul ul{list-style-type:square}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul{list-style-type:disc}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul{list-style-type:circle}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul{list-style-type:square}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul ol,.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul ul{padding-inline-start:var(--spacing-40,2.5rem)}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul ol{list-style-type:decimal}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul ol ol{list-style-type:lower-alpha}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul ol ol ol{list-style-type:lower-roman}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul ul{list-style-type:disc}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul ul ul{list-style-type:circle}.RichTextEditor-module_editor__pVKqW>.ProseMirror ul ul ul ul ul ul{list-style-type:square}.RichTextEditor-module_editor__pVKqW>.ProseMirror:focus-visible,.RichTextEditor-module_editor__pVKqW>.ProseMirror:hover{background:var(--color-gray-200,#f4f4f5);border-color:var(--color-gray-600,#524e56)}.RichTextEditor-module_editor__pVKqW>.ProseMirror:focus{outline:none}.RichTextEditor-module_editor__pVKqW>.ProseMirror:focus-visible:after{background:transparent;border-color:var(--color-blue-500,#0168b3);border-radius:2px 2px var(--border-focus-ring-border-radius,10px) var(--border-focus-ring-border-radius,10px);border-style:var(--border-focus-ring-border-style,solid);border-width:var(--border-focus-ring-border-width,2px);content:"";inset:-5px;pointer-events:none;position:absolute}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_hasToolbar__EBxnG>.ProseMirror{border-top-left-radius:0;border-top-right-radius:0}.RichTextEditor-module_editorLabel__om-dJ{display:inline-block;margin-bottom:var(--spacing-6,.375rem)}.RichTextEditor-module_editorWrapper__5q3mG{word-wrap:break-word;background:var(--color-white,#fff);border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-gray-500,#878792);border-radius:var(--border-solid-border-radius,7px);position:relative}.RichTextEditor-module_editorWrapper__5q3mG:focus-within,.RichTextEditor-module_editorWrapper__5q3mG:hover{border-color:var(--color-gray-600,#524e56)}.RichTextEditor-module_editorWrapper__5q3mG:focus-within .RichTextEditor-module_toolbar__ceLvw,.RichTextEditor-module_editorWrapper__5q3mG:hover .RichTextEditor-module_toolbar__ceLvw{border-color:var(--color-gray-600,#524e56)}.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_error__Xugz8,.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_error__Xugz8 .RichTextEditor-module_toolbar__ceLvw{border-color:var(--color-red-500,#c93b55)}.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_error__Xugz8:hover,.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_error__Xugz8:hover .RichTextEditor-module_toolbar__ceLvw{border-color:var(--color-red-600,#a82433)}.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_caution__6q0z6,.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_caution__6q0z6 .RichTextEditor-module_toolbar__ceLvw{border-color:var(--color-yellow-600,#c68600)}.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_caution__6q0z6:hover,.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_caution__6q0z6:hover .RichTextEditor-module_toolbar__ceLvw{border-color:var(--color-yellow-700,#876400)}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows1__DDEf4>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*1 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows2__kzYgh>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*2 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows3__SA7Zu>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*3 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows4__gkZry>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*4 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows5__4Rq2z>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*5 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows6__SH-4R>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*6 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows7__z02vY>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*7 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows8__4j-9e>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*8 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows9__67hDj>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*9 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows10__qysh1>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*10 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows11__o5iYX>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*11 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows12__ug-Nv>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*12 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows13__tFBG7>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*13 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows14__xqS6h>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*14 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows15__dzeUM>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*15 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows16__GyRco>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*16 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows17__GyNby>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*17 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows18__fe-Rb>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*18 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows19__fc0-T>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*19 - var(--spacing-16, 1rem))}.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows20__p9rwF>.ProseMirror{min-height:calc((var(--typography-paragraph-body-line-height, 1.5rem) + var(--spacing-16, 1rem))*20 - var(--spacing-16, 1rem))}
|
|
133
134
|
.SearchField-module_label__NxYfn{display:block;margin-bottom:var(--spacing-xs,.375rem)}
|
|
134
135
|
.Tag-module_root__uRhoc{border:var(--border-borderless-border-width,2px) var(--border-borderless-border-style,solid) var(--border-borderless-border-color,transparent);border-radius:calc(var(--spacing-md, 1.5rem)*.75);box-sizing:border-box;color:var(--color-purple-800,#2f2438);display:inline-block;font-size:var(--typography-paragraph-small-font-size,.875rem);font-weight:var(--typography-paragraph-small-font-weight,400);letter-spacing:var(--typography-paragraph-small-letter-spacing,normal);margin-inline-end:calc(var(--spacing-md, 1.5rem)*.5);padding:0 calc(var(--spacing-md, 1.5rem)*.4)}.Tag-module_root__uRhoc.Tag-module_profile__OoGsS{padding-left:calc(var(--spacing-md, 1.5rem)*.2)}.Tag-module_layoutContainer__pBLSz{align-items:center;display:flex;height:100%}.Tag-module_validationIcon__B-YLv{color:var(--color-white,#fff);display:flex}.Tag-module_profile__OoGsS,.Tag-module_validationIcon__B-YLv{align-items:center;margin-inline:calc(var(--spacing-md, 1.5rem)*-.15) var(--spacing-xs,.375rem)}.Tag-module_profile__OoGsS{display:inline-flex}.Tag-module_textContent__q76X-{font-family:var(--typography-paragraph-small-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-small-font-size,.875rem);font-weight:var(--typography-paragraph-small-font-weight,400);letter-spacing:var(--typography-paragraph-small-letter-spacing,normal);line-height:var(--typography-paragraph-small-line-height,1.125rem);margin-top:-1px;white-space:nowrap}.Tag-module_iconWrapper__aPrKH{height:16px;position:relative;width:16px}.Tag-module_dismissButton__rHv7r{align-items:center;appearance:none;background:transparent;border:none;color:inherit;color:rgba(var(--color-purple-800-rgb,47,36,56),.7);cursor:pointer;display:inline;display:flex;font:inherit;height:100%;margin:0;margin-inline:-.225rem -.6625rem;padding:0;padding:0 var(--spacing-xs,.375rem);position:relative}.Tag-module_dismissButton__rHv7r:active,.Tag-module_dismissButton__rHv7r:hover{color:var(--color-purple-800,#2f2438)}.Tag-module_dismissButton__rHv7r svg{position:relative}.Tag-module_dismissButton__rHv7r:focus{outline:none}.Tag-module_dismissButton__rHv7r:focus-visible .Tag-module_iconWrapper__aPrKH{color:var(--color-purple-800,#2f2438)}.Tag-module_dismissButton__rHv7r:focus-visible .Tag-module_iconWrapper__aPrKH:after{background:transparent;border-color:var(--color-blue-500,#0168b3);border-radius:50%;border-style:var(--border-focus-ring-border-style,solid);border-width:var(--border-focus-ring-border-width,2px);content:"";inset:calc((var(--border-focus-ring-border-width, 2px))*-1);position:absolute}.Tag-module_background__LkzGB{background-color:#fff;display:inline-block;height:calc(var(--spacing-xs, .375rem) + .125rem);left:10px;position:absolute;top:10px;width:calc(var(--spacing-xs, .375rem) + .125rem)}.Tag-module_truncate__5w7HW{overflow-x:hidden;text-overflow:ellipsis;white-space:nowrap}.Tag-module_inline__pPM-d{margin:0}.Tag-module_medium__NkOrv{height:calc(var(--spacing-md, 1.5rem)*1.25)}.Tag-module_small__-xyNk{height:var(--spacing-md,1.5rem)}.Tag-module_default__6PVke{background-color:var(--color-gray-300,#eaeaec)}.Tag-module_sentimentPositive__nbqE1{background-color:var(--color-green-100,#e8f8f4)}.Tag-module_sentimentNeutral__8BtD8{background-color:var(--color-gray-300,#eaeaec)}.Tag-module_sentimentNegative__1J85t{background-color:var(--color-red-100,#fdeaee)}.Tag-module_sentimentNone__8BWjU{background-color:var(--color-white,#fff);border-color:var(--color-gray-300,#eaeaec)}.Tag-module_validationPositive__vgFUE{background-color:var(--color-green-100,#e8f8f4)}.Tag-module_validationPositive__vgFUE .Tag-module_validationIcon__B-YLv{color:var(--color-green-500,#44a289)}.Tag-module_validationInformative__bnJ4A{background-color:var(--color-blue-100,#e6f6ff)}.Tag-module_validationInformative__bnJ4A .Tag-module_validationIcon__B-YLv{color:var(--color-blue-500,#0168b3)}.Tag-module_validationNegative__lZgIY{background-color:var(--color-red-100,#fdeaee)}.Tag-module_validationNegative__lZgIY .Tag-module_validationIcon__B-YLv{color:var(--color-red-500,#c93b55)}.Tag-module_validationCautionary__ERS2t{background-color:var(--color-yellow-100,#fff9e4)}.Tag-module_validationCautionary__ERS2t .Tag-module_validationIcon__B-YLv{color:var(--color-yellow-500,#ffb600)}.Tag-module_statusLive__xG48w{background-color:var(--color-green-100,#e8f8f4);color:var(--color-purple-800,#2f2438)}.Tag-module_statusAction__woL-O{background-color:var(--color-orange-100,#fff0e8);color:var(--color-purple-800,#2f2438)}.Tag-module_statusClosed__VhZP-{background-color:var(--color-red-100,#fdeaee)}.Tag-module_statusDraft__9QZDv{background-color:var(--color-blue-100,#e6f6ff);color:var(--color-purple-800,#2f2438)}.Tag-module_liveIcon__URtak{color:var(--color-green-500,#44a289);display:inline-block;height:20px;margin-inline-start:.25rem;position:relative;width:20px}.Tag-module_liveIcon_base__Nk5um{display:block;opacity:30%}.Tag-module_liveIcon_1__STFJY,.Tag-module_liveIcon_2__rko-D,.Tag-module_liveIcon_3__fL71y{aspect-ratio:1;display:block;height:100%;left:0;overflow:hidden;position:absolute;top:0;width:100%}.Tag-module_liveIcon_1__STFJY{clip-path:circle(16%)}.Tag-module_liveIcon_2__rko-D,.Tag-module_liveIcon_3__fL71y{animation-delay:1s;animation-duration:3s;animation-iteration-count:3}.Tag-module_liveIcon_2__rko-D{animation-name:Tag-module_pulse-inner__0-JFL;clip-path:circle(32%)}.Tag-module_liveIcon_3__fL71y{animation-name:Tag-module_pulse-outer__f9Oox;clip-path:circle(50%)}@keyframes Tag-module_pulse-inner__0-JFL{0%{opacity:0}25%{opacity:0}50%{opacity:100%}75%{opacity:100%}to{opacity:100%}}@keyframes Tag-module_pulse-outer__f9Oox{0%{opacity:0}25%{opacity:0}50%{opacity:0}75%{opacity:100%}to{opacity:100%}}
|
|
135
136
|
.Select-module_specificityIncreaser__cZtQV .Select-module_control__ehUuP:focus-within:after,.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_default__hKuCo .Select-module_control__ehUuP.Select-module_focusedControl__3AwhP:after,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_default__hKuCo .Select-module_control__ehUuP.Select-module_focusedControl__3AwhP:after{background:transparent;border-color:var(--color-blue-500,#0168b3);border-radius:var(--border-focus-ring-border-radius,10px);border-style:var(--border-focus-ring-border-style,solid);border-width:var(--border-focus-ring-border-width,2px);content:"";inset:calc(var(--border-focus-ring-border-width, 2px)*-2 - 1px);position:absolute}.Select-module_specificityIncreaser__cZtQV .Select-module_multiValue__9XkYX{margin:.2375rem;z-index:1}.Select-module_specificityIncreaser__cZtQV .Select-module_dropdownIndicator__NUopQ,.Select-module_specificityIncreaser__cZtQV .Select-module_dropdownIndicator__NUopQ:hover{color:rgba(var(--color-purple-800-rgb,47,36,56),.7)}.Select-module_specificityIncreaser__cZtQV .Select-module_control__ehUuP{border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-gray-500,#878792);border-radius:var(--border-solid-border-radius,7px);min-height:48px}.Select-module_specificityIncreaser__cZtQV .Select-module_control__ehUuP.Select-module_disabled__-iG97{opacity:30%}.Select-module_specificityIncreaser__cZtQV .Select-module_control__ehUuP:hover{background-color:var(--color-gray-100,#f9f9f9);border-color:var(--color-gray-600,#524e56);cursor:pointer}.Select-module_specificityIncreaser__cZtQV .Select-module_valueContainer__MGkpr{font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-body-font-size,1rem)}.Select-module_specificityIncreaser__cZtQV .Select-module_indicatorsContainer__2xCsm{z-index:1}.Select-module_specificityIncreaser__cZtQV .Select-module_loadingMessage__4Ej9T{color:var(--color-purple-800,#2f2438);font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-body-font-size,1rem);font-weight:var(--typography-paragraph-body-font-weight,400);letter-spacing:var(--typography-paragraph-body-letter-spacing,normal);line-height:var(--typography-paragraph-body-line-height,1.5rem)}.Select-module_specificityIncreaser__cZtQV .Select-module_focusedControl__3AwhP,.Select-module_specificityIncreaser__cZtQV .Select-module_focusedControl__3AwhP:hover{box-shadow:none}.Select-module_specificityIncreaser__cZtQV .Select-module_placeholder__OAeGA{color:var(--color-purple-800,#2f2438);font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-body-font-size,1rem);font-weight:var(--typography-paragraph-body-font-weight,400);letter-spacing:var(--typography-paragraph-body-letter-spacing,normal);line-height:var(--typography-paragraph-body-line-height,1.5rem);opacity:.7}.Select-module_specificityIncreaser__cZtQV .Select-module_menu__axmUL{border:6px var(--border-solid-border-style,solid) transparent;border-radius:var(--border-solid-border-radius,7px);box-shadow:var(--shadow-large-box-shadow,0 3px 9px 0 rgba(0,0,0,.1),0 8px 40px 0 rgba(0,0,0,.08));z-index:3}.Select-module_specificityIncreaser__cZtQV .Select-module_menu__axmUL>div{padding-bottom:0;padding-top:0}.Select-module_specificityIncreaser__cZtQV .Select-module_groupHeading__eNw6U{color:rgba(var(--color-purple-800-rgb,47,36,56),.7);font-family:var(--typography-heading-6-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-heading-6-font-size,.875rem);font-weight:var(--typography-heading-6-font-weight,700);letter-spacing:var(--typography-heading-6-letter-spacing,normal);line-height:var(--typography-heading-6-line-height,1.5rem);text-transform:capitalize}.Select-module_specificityIncreaser__cZtQV .Select-module_option__EdP-F{border-color:transparent;border-radius:var(--border-focus-ring-border-radius,10px);border-style:var(--border-focus-ring-border-style,solid);border-width:var(--border-focus-ring-border-width,2px);color:var(--color-purple-800,#2f2438);cursor:pointer;font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-body-font-size,1rem);font-weight:var(--typography-paragraph-body-font-weight,400);letter-spacing:var(--typography-paragraph-body-letter-spacing,normal);line-height:var(--typography-paragraph-body-line-height,1.5rem)}.Select-module_specificityIncreaser__cZtQV .Select-module_focusedOption__uwQwp{background-color:var(--color-blue-100,#e6f6ff);border-color:var(--color-blue-500,#0168b3);color:var(--color-blue-500,#0168b3)}.Select-module_specificityIncreaser__cZtQV .Select-module_focusedOption__uwQwp.Select-module_disabledOption__TWVun{background:transparent;border-color:var(--color-gray-500,#878792);border-style:var(--border-dashed-border-style,dashed);border-width:var(--border-focus-ring-border-width,2px);color:var(--color-purple-800,#2f2438)}.Select-module_specificityIncreaser__cZtQV .Select-module_focusedOption__uwQwp:active{background-color:var(--color-blue-100,#e6f6ff)}.Select-module_specificityIncreaser__cZtQV .Select-module_selectedOption__xhYOz{color:var(--color-blue-500,#0168b3);font-weight:var(--typography-paragraph-bold-font-weight,600)}.Select-module_specificityIncreaser__cZtQV .Select-module_selectedOption__xhYOz:not(.Select-module_focusedOption__uwQwp){background-color:transparent}.Select-module_specificityIncreaser__cZtQV .Select-module_disabledOption__TWVun{cursor:not-allowed;opacity:30%}.Select-module_specificityIncreaser__cZtQV .Select-module_noOptionsMessage__DG5zw,.Select-module_specificityIncreaser__cZtQV .Select-module_singleValue__-cc8w{color:var(--color-purple-800,#2f2438);font-family:var(--typography-paragraph-body-font-family,"Inter","Noto Sans",Helvetica,Arial,sans-serif);font-size:var(--typography-paragraph-body-font-size,1rem);font-weight:var(--typography-paragraph-body-font-weight,400);letter-spacing:var(--typography-paragraph-body-letter-spacing,normal);line-height:var(--typography-paragraph-body-line-height,1.5rem)}.Select-module_specificityIncreaser__cZtQV.Select-module_reversed__-jCGs .Select-module_input__HAhy-,.Select-module_specificityIncreaser__cZtQV.Select-module_reversed__-jCGs .Select-module_singleValueOverrides__44Gby,.Select-module_specificityIncreaser__cZtQV.Select-module_reversed__-jCGs .Select-module_singleValue__-cc8w{color:var(--color-white,#fff)}.Select-module_specificityIncreaser__cZtQV.Select-module_error__GpAw6 .Select-module_control__ehUuP{border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-red-500,#c93b55)}.Select-module_specificityIncreaser__cZtQV.Select-module_default__hKuCo.Select-module_reversed__-jCGs .Select-module_control__ehUuP{background:transparent;border-color:var(--color-white,#fff);border-radius:var(--border-borderless-border-radius,7px);color:var(--color-white,#fff)}.Select-module_specificityIncreaser__cZtQV.Select-module_default__hKuCo.Select-module_reversed__-jCGs .Select-module_control__ehUuP:hover{background:rgba(var(--color-white-rgb,255,255,255),.2)}.Select-module_specificityIncreaser__cZtQV.Select-module_default__hKuCo.Select-module_reversed__-jCGs .Select-module_control__ehUuP.Select-module_disabled__-iG97{opacity:30%}.Select-module_specificityIncreaser__cZtQV.Select-module_default__hKuCo.Select-module_reversed__-jCGs .Select-module_clearIndicator__O6EuX,.Select-module_specificityIncreaser__cZtQV.Select-module_default__hKuCo.Select-module_reversed__-jCGs .Select-module_dropdownIndicator__NUopQ,.Select-module_specificityIncreaser__cZtQV.Select-module_default__hKuCo.Select-module_reversed__-jCGs .Select-module_placeholder__OAeGA{color:var(--color-white,#fff)}.Select-module_specificityIncreaser__cZtQV.Select-module_default__hKuCo.Select-module_reversed__-jCGs.Select-module_error__GpAw6 .Select-module_control__ehUuP{border:var(--border-solid-border-width,2px) var(--border-solid-border-style,solid) var(--color-red-300,#f597a8)}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_default__hKuCo .Select-module_control__ehUuP,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_default__hKuCo .Select-module_control__ehUuP{background:transparent;border:var(--border-borderless-border-width,2px) var(--border-borderless-border-style,solid) var(--border-borderless-border-color,transparent);border-radius:var(--border-borderless-border-radius,7px)}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_default__hKuCo .Select-module_control__ehUuP .Select-module_singleValue__-cc8w,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_default__hKuCo .Select-module_control__ehUuP .Select-module_singleValue__-cc8w{color:var(--color-blue-500,#0168b3)}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_default__hKuCo .Select-module_control__ehUuP:hover,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_default__hKuCo .Select-module_control__ehUuP:hover{background:var(--color-blue-100,#e6f6ff)}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_default__hKuCo .Select-module_control__ehUuP.Select-module_disabled__-iG97,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_default__hKuCo .Select-module_control__ehUuP.Select-module_disabled__-iG97{opacity:30%}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_default__hKuCo .Select-module_control__ehUuP.Select-module_focusedControl__3AwhP,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_default__hKuCo .Select-module_control__ehUuP.Select-module_focusedControl__3AwhP{background:var(--color-blue-100,#e6f6ff)}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_default__hKuCo .Select-module_dropdownIndicator__NUopQ,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_default__hKuCo .Select-module_dropdownIndicator__NUopQ{color:var(--color-blue-500,#0168b3)}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_reversed__-jCGs .Select-module_control__ehUuP,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_reversed__-jCGs .Select-module_control__ehUuP{background:rgba(var(--color-white-rgb,255,255,255),.1);border:var(--border-borderless-border-width,2px) var(--border-borderless-border-style,solid) var(--border-borderless-border-color,transparent);border-radius:var(--border-borderless-border-radius,7px);color:var(--color-white,#fff)}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_reversed__-jCGs .Select-module_control__ehUuP:hover,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_reversed__-jCGs .Select-module_control__ehUuP:hover{background:rgba(var(--color-white-rgb,255,255,255),.2)}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_reversed__-jCGs .Select-module_control__ehUuP.Select-module_disabled__-iG97,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_reversed__-jCGs .Select-module_control__ehUuP.Select-module_disabled__-iG97{opacity:30%}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_reversed__-jCGs .Select-module_dropdownIndicator__NUopQ,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_reversed__-jCGs .Select-module_dropdownIndicator__NUopQ{color:var(--color-white,#fff)}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_reversed__-jCGs .Select-module_focusedControl__3AwhP,.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_reversed__-jCGs .Select-module_focusedControl__3AwhP:hover,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_reversed__-jCGs .Select-module_focusedControl__3AwhP,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_reversed__-jCGs .Select-module_focusedControl__3AwhP:hover{border-color:var(--color-blue-300,#73c0e8)}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_reversed__-jCGs .Select-module_placeholder__OAeGA,.Select-module_specificityIncreaser__cZtQV.Select-module_secondary__0RpOQ.Select-module_reversed__-jCGs .Select-module_placeholder__OAeGA{color:var(--color-white,#fff)}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_secondarySmall__6yNEL.Select-module_reversed__-jCGs .Select-module_control__ehUuP{background:transparent;border:0}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_secondarySmall__6yNEL.Select-module_reversed__-jCGs .Select-module_control__ehUuP:hover{background:transparent}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_secondarySmall__6yNEL .Select-module_control__ehUuP{height:auto;min-height:0}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_secondarySmall__6yNEL .Select-module_control__ehUuP>div{height:24px;padding-left:0;padding-right:0}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_secondarySmall__6yNEL .Select-module_control__ehUuP .Select-module_valueContainer__MGkpr{height:24px}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_secondarySmall__6yNEL .Select-module_control__ehUuP .Select-module_singleValue__-cc8w{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)}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_secondarySmall__6yNEL .Select-module_control__ehUuP .Select-module_singleValueOverrides__44Gby{margin-left:0;margin-right:0}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_secondarySmall__6yNEL .Select-module_indicatorsContainer__2xCsm{z-index:1}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_secondarySmall__6yNEL .Select-module_dropdownIndicator__NUopQ{padding-bottom:0;padding-top:0;transform:translateY(1px)}.Select-module_specificityIncreaser__cZtQV.Select-module_secondarySmall__6yNEL.Select-module_secondarySmall__6yNEL .Select-module_dropdownIndicator__NUopQ>svg{height:14px;width:14px}.Select-module_specificityIncreaser__cZtQV.Select-module_notFullWidth__LO-xV .Select-module_control__ehUuP{display:inline-flex;max-width:100%}.Select-module_specificityIncreaser__cZtQV.Select-module_notFullWidth__LO-xV .Select-module_control__ehUuP>div{display:flex;flex-wrap:nowrap;height:44px}.Select-module_specificityIncreaser__cZtQV.Select-module_notFullWidth__LO-xV .Select-module_singleValueOverrides__44Gby{max-width:100%;overflow:hidden;position:static;top:0;transform:none;white-space:nowrap}.Select-module_specificityIncreaser__cZtQV.Select-module_notFullWidth__LO-xV .Select-module_singleValue__-cc8w{max-width:100%}
|
|
@@ -10,6 +10,11 @@ export type InputProps = {
|
|
|
10
10
|
endIconAdornment?: React.ReactNode;
|
|
11
11
|
reversed?: boolean;
|
|
12
12
|
type?: InputType;
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated Use of placeholder text goes against our a11y standards.
|
|
15
|
+
* Use the `labelText` prop to provide a concise name, and the `description` prop for any help text.
|
|
16
|
+
*/
|
|
17
|
+
placeholder?: string;
|
|
13
18
|
} & OverrideClassName<InputHTMLAttributes<HTMLInputElement>>;
|
|
14
19
|
export declare const Input: {
|
|
15
20
|
({ inputRef, status, startIconAdornment, endIconAdornment, reversed, type, value, defaultValue, classNameOverride, disabled, ...restProps }: InputProps): JSX.Element;
|
|
@@ -24,6 +24,11 @@ export type SelectProps = {
|
|
|
24
24
|
* @default false
|
|
25
25
|
*/
|
|
26
26
|
fullWidth?: boolean;
|
|
27
|
+
/**
|
|
28
|
+
* @deprecated Use of placeholder text goes against our a11y standards.
|
|
29
|
+
* Use the `labelText` prop to provide a concise name, and the `description` prop for any help text.
|
|
30
|
+
*/
|
|
31
|
+
placeholder?: string;
|
|
27
32
|
} & ReactSelectProps<any, boolean>;
|
|
28
33
|
/**
|
|
29
34
|
* {@link https://cultureamp.atlassian.net/wiki/spaces/DesignSystem/pages/3081896474/Select Guidance} |
|
|
@@ -52,6 +57,11 @@ export declare const Select: React.ForwardRefExoticComponent<{
|
|
|
52
57
|
* @default false
|
|
53
58
|
*/
|
|
54
59
|
fullWidth?: boolean | undefined;
|
|
60
|
+
/**
|
|
61
|
+
* @deprecated Use of placeholder text goes against our a11y standards.
|
|
62
|
+
* Use the `labelText` prop to provide a concise name, and the `description` prop for any help text.
|
|
63
|
+
*/
|
|
64
|
+
placeholder?: string | undefined;
|
|
55
65
|
} & Omit<import("react-select/dist/declarations/src/Select").PublicBaseSelectProps<any, boolean, import("react-select").GroupBase<any>>, "onChange" | "value" | "inputValue" | "onInputChange" | "menuIsOpen" | "onMenuOpen" | "onMenuClose"> & Partial<import("react-select/dist/declarations/src/Select").PublicBaseSelectProps<any, boolean, import("react-select").GroupBase<any>>> & import("react-select/dist/declarations/src/useStateManager").StateManagerAdditionalProps<any> & React.RefAttributes<any>>;
|
|
56
66
|
interface AsyncProps extends ReactAsyncSelectProps<any, boolean, any>, ReactSelectProps<any, boolean, any> {
|
|
57
67
|
}
|
|
@@ -5,6 +5,11 @@ export type TextAreaProps = {
|
|
|
5
5
|
status?: "default" | "error" | "caution";
|
|
6
6
|
autogrow?: boolean;
|
|
7
7
|
reversed?: boolean;
|
|
8
|
+
/**
|
|
9
|
+
* @deprecated Use of placeholder text goes against our a11y standards.
|
|
10
|
+
* Use the `labelText` prop to provide a concise name, and the `description` prop for any help text.
|
|
11
|
+
*/
|
|
12
|
+
placeholder?: string;
|
|
8
13
|
} & OverrideClassName<TextareaHTMLAttributes<HTMLTextAreaElement>>;
|
|
9
14
|
export declare const TextArea: {
|
|
10
15
|
({ textAreaRef: propsTextAreaRef, status, autogrow, reversed, rows, defaultValue, value, disabled, onChange: propsOnChange, ...restProps }: TextAreaProps): JSX.Element;
|
|
@@ -40,6 +40,11 @@ export type SelectProps<Option extends SelectOption = SelectOption> = {
|
|
|
40
40
|
* Creates a portal for the Popover to the matching element id
|
|
41
41
|
*/
|
|
42
42
|
portalContainerId?: string;
|
|
43
|
+
/**
|
|
44
|
+
* @deprecated Use of placeholder text goes against our a11y standards.
|
|
45
|
+
* Use the `labelText` prop to provide a concise name, and the `description` prop for any help text.
|
|
46
|
+
*/
|
|
47
|
+
placeholder?: string;
|
|
43
48
|
} & OverrideClassName<Omit<AriaSelectProps<Option>, OmittedAriaSelectProps>>;
|
|
44
49
|
/**
|
|
45
50
|
* {@link https://cultureamp.atlassian.net/wiki/spaces/DesignSystem/pages/3081896474/Select Guidance} |
|
|
@@ -8,6 +8,10 @@ export type SelectToggleProps = {
|
|
|
8
8
|
/** Props for the element representing the selected value. */
|
|
9
9
|
valueProps: DOMAttributes<FocusableElement>;
|
|
10
10
|
isOpen?: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* @deprecated Use of placeholder text goes against our a11y standards.
|
|
13
|
+
* Use the `labelText` prop to provide a concise name, and the `description` prop for any help text.
|
|
14
|
+
*/
|
|
11
15
|
placeholder?: string;
|
|
12
16
|
/** Updates the styling of the validation. */
|
|
13
17
|
status?: "error" | "caution";
|
|
@@ -22,6 +26,10 @@ export declare const SelectToggle: React.ForwardRefExoticComponent<{
|
|
|
22
26
|
/** Props for the element representing the selected value. */
|
|
23
27
|
valueProps: DOMAttributes<FocusableElement>;
|
|
24
28
|
isOpen?: boolean | undefined;
|
|
29
|
+
/**
|
|
30
|
+
* @deprecated Use of placeholder text goes against our a11y standards.
|
|
31
|
+
* Use the `labelText` prop to provide a concise name, and the `description` prop for any help text.
|
|
32
|
+
*/
|
|
25
33
|
placeholder?: string | undefined;
|
|
26
34
|
/** Updates the styling of the validation. */
|
|
27
35
|
status?: "error" | "caution" | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kaizen/components",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.49.1",
|
|
4
4
|
"description": "Kaizen component library",
|
|
5
5
|
"author": "Geoffrey Chong <geoff.chong@cultureamp.com>",
|
|
6
6
|
"homepage": "https://cultureamp.design",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"prosemirror-state": "^1.4.3",
|
|
61
61
|
"prosemirror-transform": "^1.9.0",
|
|
62
62
|
"prosemirror-utils": "^1.2.2",
|
|
63
|
-
"prosemirror-view": "^1.33.
|
|
63
|
+
"prosemirror-view": "^1.33.7",
|
|
64
64
|
"react-animate-height": "^3.2.3",
|
|
65
65
|
"react-day-picker": "^8.10.1",
|
|
66
66
|
"react-focus-lock": "^2.12.1",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
81
|
"@cultureamp/frontend-apis": "^9.5.0",
|
|
82
|
-
"@cultureamp/i18n-react-intl": "^2.5.
|
|
82
|
+
"@cultureamp/i18n-react-intl": "^2.5.8",
|
|
83
83
|
"@types/lodash.debounce": "^4.0.9",
|
|
84
84
|
"@types/react-dom": "^18.3.0",
|
|
85
85
|
"@types/react-textfit": "^1.1.4",
|
|
@@ -89,10 +89,10 @@
|
|
|
89
89
|
"query-string": "^9.0.0",
|
|
90
90
|
"react-intl": "^6.6.8",
|
|
91
91
|
"rollup": "^4.18.0",
|
|
92
|
-
"sass": "^1.77.
|
|
92
|
+
"sass": "^1.77.4",
|
|
93
93
|
"serialize-query-params": "^2.0.2",
|
|
94
94
|
"svgo": "^3.3.2",
|
|
95
|
-
"ts-jest": "^29.1.
|
|
95
|
+
"ts-jest": "^29.1.4",
|
|
96
96
|
"tslib": "^2.6.2",
|
|
97
97
|
"tsx": "^4.11.0",
|
|
98
98
|
"@kaizen/design-tokens": "10.4.1",
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
"postcss-preset-env": "Installed in root"
|
|
105
105
|
},
|
|
106
106
|
"peerDependencies": {
|
|
107
|
-
"@cultureamp/i18n-react-intl": "^2.5.
|
|
107
|
+
"@cultureamp/i18n-react-intl": "^2.5.8",
|
|
108
108
|
"react": "^18.3.1",
|
|
109
109
|
"react-intl": "^6.6.8"
|
|
110
110
|
},
|
|
@@ -27,6 +27,7 @@ export const DateInput = React.forwardRef<HTMLInputElement, DateInputProps>(
|
|
|
27
27
|
<div className={classnames(styles.dateInput, classNameOverride)}>
|
|
28
28
|
<Label
|
|
29
29
|
htmlFor={id}
|
|
30
|
+
id={`${id}-input-label`}
|
|
30
31
|
labelText={labelText}
|
|
31
32
|
reversed={isReversed}
|
|
32
33
|
disabled={disabled}
|
|
@@ -33,7 +33,7 @@ describe("<DatePicker />", () => {
|
|
|
33
33
|
|
|
34
34
|
it("should have an empty input value when a date is not provided", () => {
|
|
35
35
|
render(<DatePickerWrapper />)
|
|
36
|
-
const input = screen.getByLabelText("Input label")
|
|
36
|
+
const input = screen.getByLabelText("Input label", { selector: "input" })
|
|
37
37
|
expect(input).toHaveValue("")
|
|
38
38
|
})
|
|
39
39
|
|
|
@@ -72,7 +72,7 @@ describe("<DatePicker />", () => {
|
|
|
72
72
|
|
|
73
73
|
it("allows you to tab through input, button and calendar", async () => {
|
|
74
74
|
render(<DatePickerWrapper />)
|
|
75
|
-
const input = screen.getByLabelText("Input label")
|
|
75
|
+
const input = screen.getByLabelText("Input label", { selector: "input" })
|
|
76
76
|
|
|
77
77
|
await user.tab()
|
|
78
78
|
await waitFor(() => {
|
|
@@ -112,7 +112,7 @@ describe("<DatePicker />", () => {
|
|
|
112
112
|
screen.queryByText("05/01/2022 is not available, try another date")
|
|
113
113
|
).not.toBeInTheDocument()
|
|
114
114
|
|
|
115
|
-
const input = screen.getByLabelText("Input label")
|
|
115
|
+
const input = screen.getByLabelText("Input label", { selector: "input" })
|
|
116
116
|
await user.click(input)
|
|
117
117
|
|
|
118
118
|
await waitFor(() => {
|
|
@@ -137,7 +137,7 @@ describe("<DatePicker /> - Focus element", () => {
|
|
|
137
137
|
beforeEach(async () => {
|
|
138
138
|
render(<DatePickerWrapper selectedDay={new Date("2022-03-01")} />)
|
|
139
139
|
|
|
140
|
-
const input = screen.getByLabelText("Input label")
|
|
140
|
+
const input = screen.getByLabelText("Input label", { selector: "input" })
|
|
141
141
|
await user.click(input)
|
|
142
142
|
})
|
|
143
143
|
|
|
@@ -146,7 +146,7 @@ describe("<DatePicker /> - Focus element", () => {
|
|
|
146
146
|
expect(screen.queryByRole("dialog")).toBeVisible()
|
|
147
147
|
})
|
|
148
148
|
|
|
149
|
-
const input = screen.getByLabelText("Input label")
|
|
149
|
+
const input = screen.getByLabelText("Input label", { selector: "input" })
|
|
150
150
|
expect(input).toHaveFocus()
|
|
151
151
|
})
|
|
152
152
|
|
|
@@ -157,7 +157,7 @@ describe("<DatePicker /> - Focus element", () => {
|
|
|
157
157
|
|
|
158
158
|
await user.keyboard("{Escape}")
|
|
159
159
|
|
|
160
|
-
const input = screen.getByLabelText("Input label")
|
|
160
|
+
const input = screen.getByLabelText("Input label", { selector: "input" })
|
|
161
161
|
expect(input).toHaveFocus()
|
|
162
162
|
})
|
|
163
163
|
|
|
@@ -170,7 +170,7 @@ describe("<DatePicker /> - Focus element", () => {
|
|
|
170
170
|
const dateToSelect = within(month).getByRole("gridcell", { name: "6" })
|
|
171
171
|
await user.click(dateToSelect)
|
|
172
172
|
|
|
173
|
-
const input = screen.getByLabelText("Input label")
|
|
173
|
+
const input = screen.getByLabelText("Input label", { selector: "input" })
|
|
174
174
|
expect(input).toHaveFocus()
|
|
175
175
|
})
|
|
176
176
|
})
|
|
@@ -181,7 +181,7 @@ describe("<DatePicker /> - Focus element", () => {
|
|
|
181
181
|
})
|
|
182
182
|
|
|
183
183
|
it("shows focus within the calendar", async () => {
|
|
184
|
-
const input = screen.getByLabelText("Input label")
|
|
184
|
+
const input = screen.getByLabelText("Input label", { selector: "input" })
|
|
185
185
|
await user.tab()
|
|
186
186
|
await waitFor(() => {
|
|
187
187
|
expect(input).toHaveFocus()
|
|
@@ -198,7 +198,7 @@ describe("<DatePicker /> - Focus element", () => {
|
|
|
198
198
|
})
|
|
199
199
|
|
|
200
200
|
it("returns focus to the input when the user escapes from the calendar", async () => {
|
|
201
|
-
const input = screen.getByLabelText("Input label")
|
|
201
|
+
const input = screen.getByLabelText("Input label", { selector: "input" })
|
|
202
202
|
await user.tab()
|
|
203
203
|
await waitFor(() => {
|
|
204
204
|
expect(input).toHaveFocus()
|
|
@@ -303,7 +303,7 @@ describe("<DatePicker /> - Input format", () => {
|
|
|
303
303
|
it("formats values when focus is on the input", async () => {
|
|
304
304
|
render(<DatePickerWrapper selectedDay={new Date("2022-03-01")} />)
|
|
305
305
|
|
|
306
|
-
const input = screen.getByLabelText("Input label")
|
|
306
|
+
const input = screen.getByLabelText("Input label", { selector: "input" })
|
|
307
307
|
expect(input).toHaveValue("Mar 1, 2022")
|
|
308
308
|
|
|
309
309
|
await user.click(input)
|
|
@@ -316,7 +316,7 @@ describe("<DatePicker /> - Input format", () => {
|
|
|
316
316
|
it("formats values when the input loses focus - onBlur", async () => {
|
|
317
317
|
render(<DatePickerWrapper selectedDay={new Date("2022-03-01")} />)
|
|
318
318
|
|
|
319
|
-
const input = screen.getByLabelText("Input label")
|
|
319
|
+
const input = screen.getByLabelText("Input label", { selector: "input" })
|
|
320
320
|
expect(input).toHaveValue("Mar 1, 2022")
|
|
321
321
|
|
|
322
322
|
await user.click(input)
|
|
@@ -409,7 +409,7 @@ describe("<DatePicker /> - Validation", () => {
|
|
|
409
409
|
defaultMonth={new Date("2022-03-01")}
|
|
410
410
|
/>
|
|
411
411
|
)
|
|
412
|
-
const input = screen.getByLabelText("Input label")
|
|
412
|
+
const input = screen.getByLabelText("Input label", { selector: "input" })
|
|
413
413
|
await user.click(input)
|
|
414
414
|
await waitFor(() => {
|
|
415
415
|
expect(screen.queryByRole("dialog")).toBeVisible()
|
|
@@ -449,7 +449,7 @@ describe("<DatePicker /> - Validation", () => {
|
|
|
449
449
|
it("displays error message when input date is invalid", async () => {
|
|
450
450
|
render(<DatePickerWrapper />)
|
|
451
451
|
|
|
452
|
-
const input = screen.getByLabelText("Input label")
|
|
452
|
+
const input = screen.getByLabelText("Input label", { selector: "input" })
|
|
453
453
|
await user.type(input, "05/05/2022Blah")
|
|
454
454
|
|
|
455
455
|
await user.tab()
|
|
@@ -464,7 +464,7 @@ describe("<DatePicker /> - Validation", () => {
|
|
|
464
464
|
it("displays error message when input date is disabled", async () => {
|
|
465
465
|
render(<DatePickerWrapper disabledBefore={new Date("2022-05-15")} />)
|
|
466
466
|
|
|
467
|
-
const input = screen.getByLabelText("Input label")
|
|
467
|
+
const input = screen.getByLabelText("Input label", { selector: "input" })
|
|
468
468
|
await user.type(input, "05/05/2022")
|
|
469
469
|
|
|
470
470
|
await user.tab()
|