@kaizen/components 0.0.0-canary-debug-tab-20251015223744 → 0.0.0-canary-container-query-titleblock-20251105031251
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/src/RichTextEditor/RichTextEditor/RichTextEditor.cjs +9 -24
- package/dist/cjs/src/RichTextEditor/RichTextEditor/RichTextEditor.module.scss.cjs +1 -1
- package/dist/cjs/src/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/ToolbarControls.cjs +51 -0
- package/dist/cjs/src/RichTextEditor/RichTextEditor/utils/controlmap.cjs +44 -10
- package/dist/cjs/src/RichTextEditor/utils/core/hooks/useRichTextEditor.cjs +17 -20
- package/dist/cjs/src/SingleSelect/SingleSelect.cjs +2 -0
- package/dist/cjs/src/Tabs/subcomponents/TabList/TabList.cjs +21 -29
- package/dist/cjs/src/Tile/InformationTile/InformationTile.cjs +2 -0
- package/dist/cjs/src/Tile/MultiActionTile/MultiActionTile.cjs +2 -0
- package/dist/cjs/src/Tile/TileGrid/TileGrid.cjs +2 -0
- package/dist/cjs/src/__alpha__/SingleSelect/subcomponents/ComboBoxTrigger/ComboBoxTrigger.cjs +3 -3
- package/dist/esm/src/RichTextEditor/RichTextEditor/RichTextEditor.mjs +10 -25
- package/dist/esm/src/RichTextEditor/RichTextEditor/RichTextEditor.module.scss.mjs +1 -1
- package/dist/esm/src/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/ToolbarControls.mjs +43 -0
- package/dist/esm/src/RichTextEditor/RichTextEditor/utils/controlmap.mjs +44 -10
- package/dist/esm/src/RichTextEditor/utils/core/hooks/useRichTextEditor.mjs +18 -21
- package/dist/esm/src/SingleSelect/SingleSelect.mjs +2 -0
- package/dist/esm/src/Tabs/subcomponents/TabList/TabList.mjs +21 -29
- package/dist/esm/src/Tile/InformationTile/InformationTile.mjs +2 -0
- package/dist/esm/src/Tile/MultiActionTile/MultiActionTile.mjs +2 -0
- package/dist/esm/src/Tile/TileGrid/TileGrid.mjs +2 -0
- package/dist/esm/src/__alpha__/SingleSelect/subcomponents/ComboBoxTrigger/ComboBoxTrigger.mjs +3 -3
- package/dist/styles.css +64 -69
- package/dist/types/RichTextEditor/RichTextEditor/RichTextEditor.d.ts +2 -2
- package/dist/types/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/ToolbarControls.d.ts +12 -0
- package/dist/types/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/index.d.ts +1 -0
- package/dist/types/RichTextEditor/RichTextEditor/utils/controlmap.d.ts +1 -1
- package/dist/types/SingleSelect/SingleSelect.d.ts +2 -0
- package/dist/types/Tile/InformationTile/InformationTile.d.ts +2 -0
- package/dist/types/Tile/MultiActionTile/MultiActionTile.d.ts +2 -0
- package/dist/types/Tile/TileGrid/TileGrid.d.ts +2 -0
- package/locales/ar.json +37 -1
- package/locales/bg.json +37 -1
- package/locales/cs.json +37 -1
- package/locales/cy.json +37 -1
- package/locales/da.json +37 -1
- package/locales/de.json +37 -1
- package/locales/el.json +37 -1
- package/locales/en-GB.json +37 -1
- package/locales/en.json +40 -4
- package/locales/es-419.json +37 -1
- package/locales/es.json +37 -1
- package/locales/et.json +37 -1
- package/locales/fi.json +37 -1
- package/locales/fr-CA.json +37 -1
- package/locales/fr.json +37 -1
- package/locales/he.json +37 -1
- package/locales/hi.json +37 -1
- package/locales/ht.json +37 -1
- package/locales/hu.json +37 -1
- package/locales/id.json +37 -1
- package/locales/it.json +37 -1
- package/locales/ja.json +37 -1
- package/locales/km-KH.json +37 -1
- package/locales/ko.json +37 -1
- package/locales/lt.json +37 -1
- package/locales/lv.json +37 -1
- package/locales/mi.json +37 -1
- package/locales/ms.json +37 -1
- package/locales/nb.json +37 -1
- package/locales/nl.json +37 -1
- package/locales/pl.json +37 -1
- package/locales/pt-BR.json +37 -1
- package/locales/pt.json +37 -1
- package/locales/ro.json +37 -1
- package/locales/ru.json +37 -1
- package/locales/si-LK.json +37 -1
- package/locales/sk.json +37 -1
- package/locales/sr.json +37 -1
- package/locales/sv.json +37 -1
- package/locales/th.json +37 -1
- package/locales/tl.json +37 -1
- package/locales/tr.json +37 -1
- package/locales/uk.json +37 -1
- package/locales/vi.json +37 -1
- package/locales/zh-TW.json +37 -1
- package/locales/zh.json +37 -1
- package/package.json +1 -1
- package/src/RichTextEditor/RichTextEditor/RichTextEditor.module.scss +8 -20
- package/src/RichTextEditor/RichTextEditor/RichTextEditor.spec.tsx +4 -4
- package/src/RichTextEditor/RichTextEditor/RichTextEditor.tsx +12 -30
- package/src/RichTextEditor/RichTextEditor/subcomponents/Toolbar/Toolbar.module.scss +0 -1
- package/src/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/ToolbarControls.tsx +62 -0
- package/src/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/index.ts +1 -0
- package/src/RichTextEditor/RichTextEditor/utils/controlmap.tsx +46 -9
- package/src/RichTextEditor/utils/commands/fixtures/data.json +1 -1
- package/src/RichTextEditor/utils/commands/listIsActive.spec.ts +2 -2
- package/src/RichTextEditor/utils/core/hooks/useRichTextEditor.spec.tsx +11 -0
- package/src/RichTextEditor/utils/core/hooks/useRichTextEditor.ts +17 -21
- package/src/SingleSelect/SingleSelect.tsx +2 -0
- package/src/SingleSelect/_docs/SingleSelect--api-specification.mdx +4 -2
- package/src/SingleSelect/_docs/SingleSelect--usage-guidelines.mdx +10 -2
- package/src/SingleSelect/_docs/SingleSelect.stickersheet.stories.tsx +1 -1
- package/src/SingleSelect/_docs/SingleSelect.stories.tsx +1 -1
- package/src/Tabs/subcomponents/TabList/TabList.tsx +30 -40
- package/src/Tile/InformationTile/InformationTile.tsx +2 -0
- package/src/Tile/InformationTile/_docs/InformationTile.mdx +3 -1
- package/src/Tile/InformationTile/_docs/InformationTile.stickersheet.stories.tsx +1 -1
- package/src/Tile/InformationTile/_docs/InformationTile.stories.tsx +1 -1
- package/src/Tile/MultiActionTile/MultiActionTile.tsx +2 -0
- package/src/Tile/MultiActionTile/_docs/MultiActionTile.mdx +3 -1
- package/src/Tile/MultiActionTile/_docs/MultiActionTile.stickersheet.stories.tsx +1 -1
- package/src/Tile/MultiActionTile/_docs/MultiActionTile.stories.tsx +1 -1
- package/src/Tile/TileGrid/TileGrid.tsx +2 -0
- package/src/Tile/TileGrid/_docs/TileGrid.mdx +3 -1
- package/src/Tile/TileGrid/_docs/TileGrid.stickersheet.stories.tsx +1 -1
- package/src/Tile/TileGrid/_docs/TileGrid.stories.tsx +1 -1
- package/src/TitleBlock/TitleBlock.module.scss +13 -8
- package/src/TitleBlock/_docs/{TitkeBlock--usage-guidelines.mdx → TitleBlock--usage-guidelines.mdx} +9 -1
- package/src/TitleBlock/_docs/TitleBlock.stories.tsx +71 -0
- package/src/TitleBlock/_mixins.scss +6 -6
- package/src/TitleBlock/subcomponents/NavigationTabs.module.scss +0 -1
- package/src/__alpha__/SingleSelect/_docs/SingleSelect.spec.stories.tsx +1 -1
- package/src/__alpha__/SingleSelect/subcomponents/ComboBoxTrigger/ComboBoxTrigger.tsx +4 -3
- package/src/__alpha__/SingleSelect/subcomponents/ListItem/ListItem.module.css +0 -4
package/dist/styles.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@layer tokens, normalize, reset, kz-components;@layer tokens{:root{--animation-easing-function-ease-in-out:cubic-bezier(0.455,0.03,0.515,0.955);--animation-easing-function-ease-in:cubic-bezier(0.55,0.085,0.68,0.53);--animation-easing-function-ease-out:cubic-bezier(0.25,0.46,0.45,0.94);--animation-easing-function-linear:linear;--animation-easing-function-bounce-in:cubic-bezier(0.485,0.155,0.24,1.245);--animation-easing-function-bounce-out:cubic-bezier(0.485,0.155,0.515,0.845);--animation-easing-function-bounce-in-out:cubic-bezier(0.76,-0.245,0.24,1.245);--animation-duration-instant:0ms;--animation-duration-immediate:100ms;--animation-duration-rapid:200ms;--animation-duration-fast:300ms;--animation-duration-slow:400ms;--animation-duration-deliberate:700ms;--border-solid-border-width:2px;--border-solid-border-radius:7px;--border-solid-border-style:solid;--border-solid-border-color:#e1e2ea;--border-solid-border-color-rgb:225,226,234;--border-dashed-border-width:2px;--border-dashed-border-radius:7px;--border-dashed-border-style:dashed;--border-borderless-border-width:2px;--border-borderless-border-radius:7px;--border-borderless-border-style:solid;--border-borderless-border-color:transparent;--border-borderless-border-color-rgb:0,0,0;--border-focus-ring-border-width:2px;--border-focus-ring-border-radius:10px;--border-focus-ring-border-style:solid;--border-width-1:1px;--color-purple-100:#f4edf8;--color-purple-100-rgb:244,237,248;--color-purple-200:#dfc9ea;--color-purple-200-rgb:223,201,234;--color-purple-300:#c9a5dd;--color-purple-300-rgb:201,165,221;--color-purple-400:#ae67b1;--color-purple-400-rgb:174,103,177;--color-purple-500:#844587;--color-purple-500-rgb:132,69,135;--color-purple-600:#5f3361;--color-purple-600-rgb:95,51,97;--color-purple-700:#4a234d;--color-purple-700-rgb:74,35,77;--color-purple-800:#2f2438;--color-purple-800-rgb:47,36,56;--color-blue-100:#e6f6ff;--color-blue-100-rgb:230,246,255;--color-blue-200:#bde2f5;--color-blue-200-rgb:189,226,245;--color-blue-300:#73c0e8;--color-blue-300-rgb:115,192,232;--color-blue-400:#008bd6;--color-blue-400-rgb:0,139,214;--color-blue-500:#0168b3;--color-blue-500-rgb:1,104,179;--color-blue-600:#004970;--color-blue-600-rgb:0,73,112;--color-blue-700:#003157;--color-blue-700-rgb:0,49,87;--color-green-100:#e8f8f4;--color-green-100-rgb:232,248,244;--color-green-200:#c4ede2;--color-green-200-rgb:196,237,226;--color-green-300:#8fdbc7;--color-green-300-rgb:143,219,199;--color-green-400:#5dcaad;--color-green-400-rgb:93,202,173;--color-green-500:#3f9a86;--color-green-500-rgb:63,154,134;--color-green-600:#2c7d67;--color-green-600-rgb:44,125,103;--color-green-700:#22594a;--color-green-700-rgb:34,89,74;--color-yellow-100:#fff9e4;--color-yellow-100-rgb:255,249,228;--color-yellow-200:#ffeeb3;--color-yellow-200-rgb:255,238,179;--color-yellow-300:#ffe36e;--color-yellow-300-rgb:255,227,110;--color-yellow-400:#ffca4d;--color-yellow-400-rgb:255,202,77;--color-yellow-500:#ffb600;--color-yellow-500-rgb:255,182,0;--color-yellow-600:#c68600;--color-yellow-600-rgb:198,134,0;--color-yellow-700:#876400;--color-yellow-700-rgb:135,100,0;--color-red-100:#fdeaee;--color-red-100-rgb:253,234,238;--color-red-200:#f9c2cb;--color-red-200-rgb:249,194,203;--color-red-300:#f597a8;--color-red-300-rgb:245,151,168;--color-red-400:#e0707d;--color-red-400-rgb:224,112,125;--color-red-500:#c93b55;--color-red-500-rgb:201,59,85;--color-red-600:#a82433;--color-red-600-rgb:168,36,51;--color-red-700:#6c1e20;--color-red-700-rgb:108,30,32;--color-orange-100:#fff0e8;--color-orange-100-rgb:255,240,232;--color-orange-200:#ffd1b9;--color-orange-200-rgb:255,209,185;--color-orange-300:#ffb08a;--color-orange-300-rgb:255,176,138;--color-orange-400:#ff9461;--color-orange-400-rgb:255,148,97;--color-orange-500:#e96c2f;--color-orange-500-rgb:233,108,47;--color-orange-600:#b74302;--color-orange-600-rgb:183,67,2;--color-orange-700:#903c00;--color-orange-700-rgb:144,60,0;--color-gray-100:#f9f9f9;--color-gray-100-rgb:249,249,249;--color-gray-200:#f4f4f5;--color-gray-200-rgb:244,244,245;--color-gray-300:#eaeaec;--color-gray-300-rgb:234,234,236;--color-gray-400:#cdcdd0;--color-gray-400-rgb:205,205,208;--color-gray-500:#878792;--color-gray-500-rgb:135,135,146;--color-gray-600:#524e56;--color-gray-600-rgb:82,78,86;--color-white:#fff;--color-white-rgb:255,255,255;--color-black:#000;--color-black-rgb:0,0,0;--data-viz-favorable:#7dd5bd;--data-viz-favorable-rgb:125,213,189;--data-viz-unfavorable:#e68d97;--data-viz-unfavorable-rgb:230,141,151;--layout-content-max-width:1392px;--layout-content-max-width-with-sidebar:1080px;--layout-content-side-margin:72px;--layout-mobile-actions-drawer-height:60px;--layout-navigation-bar-height:72px;--layout-breakpoints-medium:768px;--layout-breakpoints-large:1080px;--shadow-small-box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 3px 16px 0 rgba(0,0,0,.06);--shadow-large-box-shadow:0 3px 9px 0 rgba(0,0,0,.1),0 8px 40px 0 rgba(0,0,0,.08);--spacing-0:0;--spacing-1:.0625rem;--spacing-2:.125rem;--spacing-4:.25rem;--spacing-6:.375rem;--spacing-8:.5rem;--spacing-12:.75rem;--spacing-16:1rem;--spacing-20:1.25rem;--spacing-24:1.5rem;--spacing-32:2rem;--spacing-40:2.5rem;--spacing-48:3rem;--spacing-56:3.5rem;--spacing-64:4rem;--spacing-72:4.5rem;--spacing-80:5rem;--spacing-96:6rem;--spacing-112:7rem;--spacing-128:8rem;--spacing-160:10rem;--spacing-200:12.5rem;--spacing-240:15rem;--spacing-280:17.5rem;--spacing-320:20rem;--spacing-xs:0.375rem;--spacing-sm:0.75rem;--spacing-md:1.5rem;--spacing-lg:2.25rem;--spacing-xl:3rem;--spacing-xxl:3.75rem;--spacing-xxxl:4.5rem;--spacing-xxxxl:5.25rem;--spacing-xxxxxl:6rem;--typography-data-large-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-large-font-weight:700;--typography-data-large-font-size:5.25rem;--typography-data-large-line-height:5.25rem;--typography-data-large-letter-spacing:normal;--typography-data-large-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-large-units-font-weight:700;--typography-data-large-units-font-size:2.625rem;--typography-data-large-units-line-height:5.25rem;--typography-data-large-units-letter-spacing:normal;--typography-data-medium-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-medium-font-weight:700;--typography-data-medium-font-size:3rem;--typography-data-medium-line-height:5rem;--typography-data-medium-letter-spacing:normal;--typography-data-medium-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-medium-units-font-weight:700;--typography-data-medium-units-font-size:1.5rem;--typography-data-medium-units-line-height:5rem;--typography-data-medium-units-letter-spacing:normal;--typography-data-small-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-small-font-weight:700;--typography-data-small-font-size:1.5rem;--typography-data-small-line-height:1.5rem;--typography-data-small-letter-spacing:normal;--typography-data-small-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-small-units-font-weight:700;--typography-data-small-units-font-size:1.125rem;--typography-data-small-units-line-height:1.5rem;--typography-data-small-units-letter-spacing:normal;--typography-display-0-font-family:"Tiempos Headline",Georgia,serif;--typography-display-0-font-weight:800;--typography-display-0-font-size:4.5rem;--typography-display-0-line-height:5.25rem;--typography-display-0-letter-spacing:0em;--typography-heading-1-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-1-font-weight:500;--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:600;--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:600;--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:600;--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:500;--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{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;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;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{appearance:auto}[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]{appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{appearance:none}::-webkit-file-upload-button{appearance:auto;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}}@layer reset{@font-face{font-family:Tiempos Headline;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-bold.woff)}@font-face{font-family:Tiempos Headline;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-medium.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-medium.woff)}@font-face{font-family:Greycliff CF;font-weight:300;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-light.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:400;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-regular.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-medium.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:600;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-demi-bold.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:700;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-bold.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-extra-bold.woff) format("woff")}@font-face{font-family:Inter;font-weight:300;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-light.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-light.woff)}@font-face{font-family:Inter;font-weight:400;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-regular.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-regular.woff)}@font-face{font-family:Inter;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-medium.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-medium.woff)}@font-face{font-family:Inter;font-weight:600;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-demi-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-demi-bold.woff)}@font-face{font-family:Inter;font-weight:700;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-bold.woff)}@font-face{font-family:Inter;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-extra-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-extra-bold.woff)}@font-face{font-family:IBM Plex Mono;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/ibm-plex-mono/ibm-plex-mono-regular.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/ibm-plex-mono/ibm-plex-mono-regular.woff)}}@layer reset{*,:after,:before{border-color:var(--border-solid-border-color,"currentColor");border-style:solid;border-width:0}}
|
|
1
|
+
@layer tokens, normalize, reset, kz-components;@layer tokens{:root{--animation-easing-function-ease-in-out:cubic-bezier(0.455,0.03,0.515,0.955);--animation-easing-function-ease-in:cubic-bezier(0.55,0.085,0.68,0.53);--animation-easing-function-ease-out:cubic-bezier(0.25,0.46,0.45,0.94);--animation-easing-function-linear:linear;--animation-easing-function-bounce-in:cubic-bezier(0.485,0.155,0.24,1.245);--animation-easing-function-bounce-out:cubic-bezier(0.485,0.155,0.515,0.845);--animation-easing-function-bounce-in-out:cubic-bezier(0.76,-0.245,0.24,1.245);--animation-duration-instant:0ms;--animation-duration-immediate:100ms;--animation-duration-rapid:200ms;--animation-duration-fast:300ms;--animation-duration-slow:400ms;--animation-duration-deliberate:700ms;--border-solid-border-width:2px;--border-solid-border-radius:7px;--border-solid-border-style:solid;--border-solid-border-color:#e1e2ea;--border-solid-border-color-rgb:225,226,234;--border-dashed-border-width:2px;--border-dashed-border-radius:7px;--border-dashed-border-style:dashed;--border-borderless-border-width:2px;--border-borderless-border-radius:7px;--border-borderless-border-style:solid;--border-borderless-border-color:transparent;--border-borderless-border-color-rgb:0,0,0;--border-focus-ring-border-width:2px;--border-focus-ring-border-radius:10px;--border-focus-ring-border-style:solid;--border-width-1:1px;--color-purple-100:#f4edf8;--color-purple-100-rgb:244,237,248;--color-purple-200:#dfc9ea;--color-purple-200-rgb:223,201,234;--color-purple-300:#c9a5dd;--color-purple-300-rgb:201,165,221;--color-purple-400:#ae67b1;--color-purple-400-rgb:174,103,177;--color-purple-500:#844587;--color-purple-500-rgb:132,69,135;--color-purple-600:#5f3361;--color-purple-600-rgb:95,51,97;--color-purple-700:#4a234d;--color-purple-700-rgb:74,35,77;--color-purple-800:#2f2438;--color-purple-800-rgb:47,36,56;--color-blue-100:#e6f6ff;--color-blue-100-rgb:230,246,255;--color-blue-200:#bde2f5;--color-blue-200-rgb:189,226,245;--color-blue-300:#73c0e8;--color-blue-300-rgb:115,192,232;--color-blue-400:#008bd6;--color-blue-400-rgb:0,139,214;--color-blue-500:#0168b3;--color-blue-500-rgb:1,104,179;--color-blue-600:#004970;--color-blue-600-rgb:0,73,112;--color-blue-700:#003157;--color-blue-700-rgb:0,49,87;--color-green-100:#e8f8f4;--color-green-100-rgb:232,248,244;--color-green-200:#c4ede2;--color-green-200-rgb:196,237,226;--color-green-300:#8fdbc7;--color-green-300-rgb:143,219,199;--color-green-400:#5dcaad;--color-green-400-rgb:93,202,173;--color-green-500:#3f9a86;--color-green-500-rgb:63,154,134;--color-green-600:#2c7d67;--color-green-600-rgb:44,125,103;--color-green-700:#22594a;--color-green-700-rgb:34,89,74;--color-yellow-100:#fff9e4;--color-yellow-100-rgb:255,249,228;--color-yellow-200:#ffeeb3;--color-yellow-200-rgb:255,238,179;--color-yellow-300:#ffe36e;--color-yellow-300-rgb:255,227,110;--color-yellow-400:#ffca4d;--color-yellow-400-rgb:255,202,77;--color-yellow-500:#ffb600;--color-yellow-500-rgb:255,182,0;--color-yellow-600:#c68600;--color-yellow-600-rgb:198,134,0;--color-yellow-700:#876400;--color-yellow-700-rgb:135,100,0;--color-red-100:#fdeaee;--color-red-100-rgb:253,234,238;--color-red-200:#f9c2cb;--color-red-200-rgb:249,194,203;--color-red-300:#f597a8;--color-red-300-rgb:245,151,168;--color-red-400:#e0707d;--color-red-400-rgb:224,112,125;--color-red-500:#c93b55;--color-red-500-rgb:201,59,85;--color-red-600:#a82433;--color-red-600-rgb:168,36,51;--color-red-700:#6c1e20;--color-red-700-rgb:108,30,32;--color-orange-100:#fff0e8;--color-orange-100-rgb:255,240,232;--color-orange-200:#ffd1b9;--color-orange-200-rgb:255,209,185;--color-orange-300:#ffb08a;--color-orange-300-rgb:255,176,138;--color-orange-400:#ff9461;--color-orange-400-rgb:255,148,97;--color-orange-500:#e96c2f;--color-orange-500-rgb:233,108,47;--color-orange-600:#b74302;--color-orange-600-rgb:183,67,2;--color-orange-700:#903c00;--color-orange-700-rgb:144,60,0;--color-gray-100:#f9f9f9;--color-gray-100-rgb:249,249,249;--color-gray-200:#f4f4f5;--color-gray-200-rgb:244,244,245;--color-gray-300:#eaeaec;--color-gray-300-rgb:234,234,236;--color-gray-400:#cdcdd0;--color-gray-400-rgb:205,205,208;--color-gray-500:#878792;--color-gray-500-rgb:135,135,146;--color-gray-600:#524e56;--color-gray-600-rgb:82,78,86;--color-white:#fff;--color-white-rgb:255,255,255;--color-black:#000;--color-black-rgb:0,0,0;--data-viz-favorable:#7dd5bd;--data-viz-favorable-rgb:125,213,189;--data-viz-unfavorable:#e68d97;--data-viz-unfavorable-rgb:230,141,151;--layout-content-max-width:1392px;--layout-content-max-width-with-sidebar:1080px;--layout-content-side-margin:72px;--layout-mobile-actions-drawer-height:60px;--layout-navigation-bar-height:72px;--layout-breakpoints-medium:768px;--layout-breakpoints-large:1080px;--shadow-small-box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 3px 16px 0 rgba(0,0,0,.06);--shadow-large-box-shadow:0 3px 9px 0 rgba(0,0,0,.1),0 8px 40px 0 rgba(0,0,0,.08);--spacing-0:0;--spacing-1:.0625rem;--spacing-2:.125rem;--spacing-4:.25rem;--spacing-6:.375rem;--spacing-8:.5rem;--spacing-12:.75rem;--spacing-16:1rem;--spacing-20:1.25rem;--spacing-24:1.5rem;--spacing-32:2rem;--spacing-40:2.5rem;--spacing-48:3rem;--spacing-56:3.5rem;--spacing-64:4rem;--spacing-72:4.5rem;--spacing-80:5rem;--spacing-96:6rem;--spacing-112:7rem;--spacing-128:8rem;--spacing-160:10rem;--spacing-200:12.5rem;--spacing-240:15rem;--spacing-280:17.5rem;--spacing-320:20rem;--spacing-xs:0.375rem;--spacing-sm:0.75rem;--spacing-md:1.5rem;--spacing-lg:2.25rem;--spacing-xl:3rem;--spacing-xxl:3.75rem;--spacing-xxxl:4.5rem;--spacing-xxxxl:5.25rem;--spacing-xxxxxl:6rem;--typography-data-large-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-large-font-weight:700;--typography-data-large-font-size:5.25rem;--typography-data-large-line-height:5.25rem;--typography-data-large-letter-spacing:normal;--typography-data-large-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-large-units-font-weight:700;--typography-data-large-units-font-size:2.625rem;--typography-data-large-units-line-height:5.25rem;--typography-data-large-units-letter-spacing:normal;--typography-data-medium-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-medium-font-weight:700;--typography-data-medium-font-size:3rem;--typography-data-medium-line-height:5rem;--typography-data-medium-letter-spacing:normal;--typography-data-medium-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-medium-units-font-weight:700;--typography-data-medium-units-font-size:1.5rem;--typography-data-medium-units-line-height:5rem;--typography-data-medium-units-letter-spacing:normal;--typography-data-small-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-small-font-weight:700;--typography-data-small-font-size:1.5rem;--typography-data-small-line-height:1.5rem;--typography-data-small-letter-spacing:normal;--typography-data-small-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-small-units-font-weight:700;--typography-data-small-units-font-size:1.125rem;--typography-data-small-units-line-height:1.5rem;--typography-data-small-units-letter-spacing:normal;--typography-display-0-font-family:"Tiempos Headline",Georgia,serif;--typography-display-0-font-weight:800;--typography-display-0-font-size:4.5rem;--typography-display-0-line-height:5.25rem;--typography-display-0-letter-spacing:0em;--typography-heading-1-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-1-font-weight:500;--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:600;--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:600;--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:600;--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:500;--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{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;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;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{appearance:auto}[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]{appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{appearance:none}::-webkit-file-upload-button{appearance:auto;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}}@layer reset{@font-face{font-family:Tiempos Headline;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-bold.woff)}@font-face{font-family:Tiempos Headline;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-medium.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-medium.woff)}@font-face{font-family:Greycliff CF;font-weight:300;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-light.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:400;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-regular.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-medium.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:600;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-demi-bold.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:700;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-bold.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-extra-bold.woff) format("woff")}@font-face{font-family:Inter;font-weight:300;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-light.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-light.woff)}@font-face{font-family:Inter;font-weight:400;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-regular.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-regular.woff)}@font-face{font-family:Inter;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-medium.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-medium.woff)}@font-face{font-family:Inter;font-weight:600;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-demi-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-demi-bold.woff)}@font-face{font-family:Inter;font-weight:700;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-bold.woff)}@font-face{font-family:Inter;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-extra-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-extra-bold.woff)}@font-face{font-family:IBM Plex Mono;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/ibm-plex-mono/ibm-plex-mono-regular.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/ibm-plex-mono/ibm-plex-mono-regular.woff)}}@layer reset{*,:after,:before{border-color:var(--border-solid-border-color,"currentColor");border-style:solid;border-width:0}body{container-type:inline-size}}
|
|
2
2
|
@layer kz-components {
|
|
3
3
|
/*
|
|
4
4
|
* This is taken from the Material Symbols CDN
|
|
@@ -8094,7 +8094,6 @@
|
|
|
8094
8094
|
@layer kz-components {
|
|
8095
8095
|
.Toolbar-module_toolbar__ooRzV {
|
|
8096
8096
|
display: block;
|
|
8097
|
-
border-bottom: 2px solid var(--color-gray-500, #878792);
|
|
8098
8097
|
}
|
|
8099
8098
|
}
|
|
8100
8099
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
@@ -8250,6 +8249,9 @@
|
|
|
8250
8249
|
margin-bottom: var(--spacing-6, 0.375rem);
|
|
8251
8250
|
display: inline-block;
|
|
8252
8251
|
}
|
|
8252
|
+
.RichTextEditor-module_toolbarWrapper__wkBl- {
|
|
8253
|
+
border-bottom: inherit;
|
|
8254
|
+
}
|
|
8253
8255
|
/* stylelint-disable no-descending-specificity */
|
|
8254
8256
|
.RichTextEditor-module_editorWrapper__5q3mG {
|
|
8255
8257
|
position: relative;
|
|
@@ -8262,23 +8264,16 @@
|
|
|
8262
8264
|
.RichTextEditor-module_editorWrapper__5q3mG:hover, .RichTextEditor-module_editorWrapper__5q3mG:focus-within {
|
|
8263
8265
|
border-color: var(--color-gray-600, #524e56);
|
|
8264
8266
|
}
|
|
8265
|
-
.RichTextEditor-module_editorWrapper__5q3mG
|
|
8266
|
-
border-color: var(--color-gray-600, #524e56);
|
|
8267
|
-
}
|
|
8268
|
-
.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_error__Xugz8,
|
|
8269
|
-
.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_error__Xugz8 .RichTextEditor-module_toolbar__ceLvw {
|
|
8267
|
+
.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_error__Xugz8 {
|
|
8270
8268
|
border-color: var(--color-red-500, #c93b55);
|
|
8271
8269
|
}
|
|
8272
|
-
.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_error__Xugz8:hover
|
|
8273
|
-
.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_error__Xugz8:hover .RichTextEditor-module_toolbar__ceLvw {
|
|
8270
|
+
.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_error__Xugz8:hover {
|
|
8274
8271
|
border-color: var(--color-red-600, #a82433);
|
|
8275
8272
|
}
|
|
8276
|
-
.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_caution__6q0z6
|
|
8277
|
-
.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_caution__6q0z6 .RichTextEditor-module_toolbar__ceLvw {
|
|
8273
|
+
.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_caution__6q0z6 {
|
|
8278
8274
|
border-color: var(--color-yellow-600, #c68600);
|
|
8279
8275
|
}
|
|
8280
|
-
.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_caution__6q0z6:hover
|
|
8281
|
-
.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_caution__6q0z6:hover .RichTextEditor-module_toolbar__ceLvw {
|
|
8276
|
+
.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_caution__6q0z6:hover {
|
|
8282
8277
|
border-color: var(--color-yellow-700, #876400);
|
|
8283
8278
|
}
|
|
8284
8279
|
.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows1__DDEf4 > .ProseMirror {
|
|
@@ -9955,7 +9950,7 @@
|
|
|
9955
9950
|
.Toolbar-module_toolbar__8T-NB .Toolbar-module_toolbarItem__-l3QZ {
|
|
9956
9951
|
margin: 0 calc(1.5rem / 4);
|
|
9957
9952
|
}
|
|
9958
|
-
@
|
|
9953
|
+
@container (max-width: 1023px) {
|
|
9959
9954
|
.Toolbar-module_toolbar__8T-NB .Toolbar-module_toolbarItem__-l3QZ {
|
|
9960
9955
|
margin: 0 calc(1.5rem / 8);
|
|
9961
9956
|
}
|
|
@@ -9967,7 +9962,7 @@
|
|
|
9967
9962
|
margin-inline-end: calc(1.5rem / 4);
|
|
9968
9963
|
margin-inline-start: 0;
|
|
9969
9964
|
}
|
|
9970
|
-
@
|
|
9965
|
+
@container (max-width: 1023px) {
|
|
9971
9966
|
.Toolbar-module_toolbar__8T-NB .Toolbar-module_toolbarItem__-l3QZ:first-of-type {
|
|
9972
9967
|
margin-inline-end: calc(1.5rem / 8);
|
|
9973
9968
|
margin-inline-start: 0;
|
|
@@ -9980,7 +9975,7 @@
|
|
|
9980
9975
|
margin-inline-end: 0;
|
|
9981
9976
|
margin-inline-start: calc(1.5rem / 4);
|
|
9982
9977
|
}
|
|
9983
|
-
@
|
|
9978
|
+
@container (max-width: 1023px) {
|
|
9984
9979
|
.Toolbar-module_toolbar__8T-NB .Toolbar-module_toolbarItem__-l3QZ:last-of-type {
|
|
9985
9980
|
margin-inline-end: 0;
|
|
9986
9981
|
margin-inline-start: calc(1.5rem / 8);
|
|
@@ -10015,7 +10010,7 @@
|
|
|
10015
10010
|
margin-inline-end: 0;
|
|
10016
10011
|
margin-inline-start: calc(1.5rem / 2);
|
|
10017
10012
|
}
|
|
10018
|
-
@
|
|
10013
|
+
@container (max-width: calc(768px - 1px)) {
|
|
10019
10014
|
.MainActions-module_mainActionsContainer__pk-78 {
|
|
10020
10015
|
display: none;
|
|
10021
10016
|
}
|
|
@@ -10066,7 +10061,7 @@
|
|
|
10066
10061
|
.MobileActions-module_mobileActionsContainer__XoepA.MobileActions-module_isOpen__D40v5 .MobileActions-module_mobileActionsMenuContainer__x--Eb {
|
|
10067
10062
|
visibility: visible;
|
|
10068
10063
|
}
|
|
10069
|
-
@
|
|
10064
|
+
@container (max-width: calc(768px - 1px)) {
|
|
10070
10065
|
.MobileActions-module_mobileActionsContainer__XoepA {
|
|
10071
10066
|
display: flex;
|
|
10072
10067
|
}
|
|
@@ -10261,6 +10256,7 @@
|
|
|
10261
10256
|
}
|
|
10262
10257
|
.TitleBlock-module_adminVariant__s95nS .TitleBlock-module_titleRow__Ifqiu {
|
|
10263
10258
|
background-color: var(--color-white, #ffffff);
|
|
10259
|
+
margin-bottom: 3px;
|
|
10264
10260
|
}
|
|
10265
10261
|
.TitleBlock-module_rowBelowSeparatorInner__3gNec, .TitleBlock-module_titleRowInner__SlArS {
|
|
10266
10262
|
max-width: 1392px;
|
|
@@ -10270,7 +10266,7 @@
|
|
|
10270
10266
|
width: 100%;
|
|
10271
10267
|
min-width: 0;
|
|
10272
10268
|
}
|
|
10273
|
-
@
|
|
10269
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10274
10270
|
.TitleBlock-module_rowBelowSeparatorInner__3gNec, .TitleBlock-module_titleRowInner__SlArS {
|
|
10275
10271
|
margin: 0 12px;
|
|
10276
10272
|
}
|
|
@@ -10290,7 +10286,7 @@
|
|
|
10290
10286
|
.TitleBlock-module_adminVariant__s95nS .TitleBlock-module_titleRowInnerContent__NhTHV, .TitleBlock-module_collapseNavigationArea__x9hzQ .TitleBlock-module_titleRowInnerContent__NhTHV {
|
|
10291
10287
|
border-bottom-color: transparent;
|
|
10292
10288
|
}
|
|
10293
|
-
@
|
|
10289
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10294
10290
|
.TitleBlock-module_titleRowInnerContent__NhTHV {
|
|
10295
10291
|
border-bottom: none;
|
|
10296
10292
|
}
|
|
@@ -10300,7 +10296,7 @@
|
|
|
10300
10296
|
align-items: center;
|
|
10301
10297
|
min-width: 0;
|
|
10302
10298
|
}
|
|
10303
|
-
@
|
|
10299
|
+
@container (max-width: 1365px) {
|
|
10304
10300
|
.TitleBlock-module_title__c5JWR {
|
|
10305
10301
|
width: 100%;
|
|
10306
10302
|
}
|
|
@@ -10311,7 +10307,7 @@
|
|
|
10311
10307
|
min-width: 0;
|
|
10312
10308
|
transform: translateY(-0.0833em);
|
|
10313
10309
|
}
|
|
10314
|
-
@
|
|
10310
|
+
@container (max-width: 1365px) {
|
|
10315
10311
|
.TitleBlock-module_hasSubtitle__DQWKd .TitleBlock-module_titleAndSubtitle__-kLSn {
|
|
10316
10312
|
transform: translateY(-0.3833em);
|
|
10317
10313
|
}
|
|
@@ -10323,12 +10319,12 @@
|
|
|
10323
10319
|
.TitleBlock-module_hasSubtitle__DQWKd.TitleBlock-module_hasLongTitle__L-6FV.TitleBlock-module_hasLongSubtitle__ZVMVl .TitleBlock-module_titleAndSubtitleInner__TX8xw {
|
|
10324
10320
|
align-items: center;
|
|
10325
10321
|
}
|
|
10326
|
-
@
|
|
10322
|
+
@container (max-width: 1365px) {
|
|
10327
10323
|
.TitleBlock-module_hasSubtitle__DQWKd.TitleBlock-module_hasLongTitle__L-6FV.TitleBlock-module_hasLongSubtitle__ZVMVl .TitleBlock-module_titleAndSubtitleInner__TX8xw {
|
|
10328
10324
|
align-items: baseline;
|
|
10329
10325
|
}
|
|
10330
10326
|
}
|
|
10331
|
-
@
|
|
10327
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10332
10328
|
.TitleBlock-module_hasPageSwitcherSelect__p5sDo .TitleBlock-module_titleAndSubtitleInner__TX8xw {
|
|
10333
10329
|
align-items: normal;
|
|
10334
10330
|
flex-direction: column;
|
|
@@ -10340,7 +10336,7 @@
|
|
|
10340
10336
|
align-items: baseline;
|
|
10341
10337
|
overflow: hidden;
|
|
10342
10338
|
}
|
|
10343
|
-
@
|
|
10339
|
+
@container (max-width: 1365px) {
|
|
10344
10340
|
.TitleBlock-module_hasSubtitle__DQWKd .TitleBlock-module_titleAndSubtitleInner__TX8xw {
|
|
10345
10341
|
align-items: normal;
|
|
10346
10342
|
flex-direction: column;
|
|
@@ -10351,7 +10347,7 @@
|
|
|
10351
10347
|
align-items: baseline;
|
|
10352
10348
|
}
|
|
10353
10349
|
}
|
|
10354
|
-
@
|
|
10350
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10355
10351
|
.TitleBlock-module_hasSubtitle__DQWKd .TitleBlock-module_titleAndSubtitleInner__TX8xw {
|
|
10356
10352
|
transform: translateY(calc(1.5rem / 2));
|
|
10357
10353
|
}
|
|
@@ -10359,7 +10355,7 @@
|
|
|
10359
10355
|
.TitleBlock-module_titleTextOverride__VhhQU.TitleBlock-module_titleTextOverride__VhhQU {
|
|
10360
10356
|
padding: 4px 0;
|
|
10361
10357
|
}
|
|
10362
|
-
@
|
|
10358
|
+
@container (max-width: 1365px) {
|
|
10363
10359
|
.TitleBlock-module_titleTextOverride__VhhQU.TitleBlock-module_titleTextOverride__VhhQU {
|
|
10364
10360
|
font-size: var(--typography-heading-2-font-size, 1.75rem);
|
|
10365
10361
|
line-height: var(--typography-heading-2-line-height, 2.25rem);
|
|
@@ -10367,7 +10363,7 @@
|
|
|
10367
10363
|
padding: 2px 0;
|
|
10368
10364
|
}
|
|
10369
10365
|
}
|
|
10370
|
-
@
|
|
10366
|
+
@container (max-width: 1365px) {
|
|
10371
10367
|
.TitleBlock-module_hasLongTitle__L-6FV .TitleBlock-module_titleTextOverride__VhhQU.TitleBlock-module_titleTextOverride__VhhQU {
|
|
10372
10368
|
font-size: var(--typography-heading-3-font-size, 1.375rem);
|
|
10373
10369
|
line-height: var(--typography-heading-3-line-height, 1.875rem);
|
|
@@ -10375,7 +10371,7 @@
|
|
|
10375
10371
|
padding: 2px 0;
|
|
10376
10372
|
}
|
|
10377
10373
|
}
|
|
10378
|
-
@
|
|
10374
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10379
10375
|
.TitleBlock-module_titleTextOverride__VhhQU.TitleBlock-module_titleTextOverride__VhhQU {
|
|
10380
10376
|
font-size: var(--typography-heading-4-font-size, 1.125rem);
|
|
10381
10377
|
line-height: var(--typography-heading-4-line-height, 1.5rem);
|
|
@@ -10395,7 +10391,7 @@
|
|
|
10395
10391
|
.TitleBlock-module_avatar__mEjJ8 > * {
|
|
10396
10392
|
max-width: 100%;
|
|
10397
10393
|
}
|
|
10398
|
-
@
|
|
10394
|
+
@container (min-width: 1080px) {
|
|
10399
10395
|
.TitleBlock-module_avatar__mEjJ8 {
|
|
10400
10396
|
display: block;
|
|
10401
10397
|
}
|
|
@@ -10412,7 +10408,7 @@
|
|
|
10412
10408
|
margin-inline-end: var(--spacing-xs, 0.375rem);
|
|
10413
10409
|
margin-inline-start: 0;
|
|
10414
10410
|
}
|
|
10415
|
-
@
|
|
10411
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10416
10412
|
.TitleBlock-module_hamburger__qe4R0 {
|
|
10417
10413
|
display: flex;
|
|
10418
10414
|
align-items: center;
|
|
@@ -10433,7 +10429,7 @@
|
|
|
10433
10429
|
.TitleBlock-module_adminVariant__s95nS .TitleBlock-module_subtitle__AI9tj {
|
|
10434
10430
|
color: var(--color-purple-800, #2f2438);
|
|
10435
10431
|
}
|
|
10436
|
-
@
|
|
10432
|
+
@container (max-width: 1365px) {
|
|
10437
10433
|
.TitleBlock-module_subtitle__AI9tj {
|
|
10438
10434
|
white-space: nowrap;
|
|
10439
10435
|
text-overflow: ellipsis;
|
|
@@ -10442,7 +10438,7 @@
|
|
|
10442
10438
|
margin: calc(1.5rem / 5) 0;
|
|
10443
10439
|
}
|
|
10444
10440
|
}
|
|
10445
|
-
@
|
|
10441
|
+
@container (max-width: 1365px) {
|
|
10446
10442
|
.TitleBlock-module_subtitleText__gpXET {
|
|
10447
10443
|
max-width: 42vw;
|
|
10448
10444
|
white-space: nowrap;
|
|
@@ -10450,7 +10446,7 @@
|
|
|
10450
10446
|
overflow: hidden;
|
|
10451
10447
|
}
|
|
10452
10448
|
}
|
|
10453
|
-
@
|
|
10449
|
+
@container (max-width: calc(768px - 1px)) {
|
|
10454
10450
|
.TitleBlock-module_subtitleText__gpXET {
|
|
10455
10451
|
max-width: 88vw;
|
|
10456
10452
|
}
|
|
@@ -10473,7 +10469,7 @@
|
|
|
10473
10469
|
line-height: var(--typography-heading-2-line-height, 2.25rem);
|
|
10474
10470
|
letter-spacing: var(--typography-heading-2-letter-spacing, normal);
|
|
10475
10471
|
}
|
|
10476
|
-
@
|
|
10472
|
+
@container (max-width: 1644px) {
|
|
10477
10473
|
.TitleBlock-module_sectionTitleOverride__XcD8g.TitleBlock-module_sectionTitleOverride__XcD8g {
|
|
10478
10474
|
font-family: var(--typography-heading-3-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
10479
10475
|
font-weight: var(--typography-heading-3-font-weight, 600);
|
|
@@ -10482,7 +10478,7 @@
|
|
|
10482
10478
|
letter-spacing: var(--typography-heading-3-letter-spacing, normal);
|
|
10483
10479
|
}
|
|
10484
10480
|
}
|
|
10485
|
-
@
|
|
10481
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10486
10482
|
.TitleBlock-module_sectionTitleOverride__XcD8g.TitleBlock-module_sectionTitleOverride__XcD8g {
|
|
10487
10483
|
font-family: var(--typography-heading-4-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
10488
10484
|
font-weight: var(--typography-heading-4-font-weight, 600);
|
|
@@ -10533,7 +10529,7 @@
|
|
|
10533
10529
|
align-items: center;
|
|
10534
10530
|
margin-inline: var(--spacing-12) 0;
|
|
10535
10531
|
}
|
|
10536
|
-
@
|
|
10532
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10537
10533
|
.TitleBlock-module_tag__GDzmQ {
|
|
10538
10534
|
display: none;
|
|
10539
10535
|
}
|
|
@@ -10553,7 +10549,7 @@
|
|
|
10553
10549
|
.TitleBlock-module_navigationTabsContainer__aLbT3 {
|
|
10554
10550
|
height: 4.5rem;
|
|
10555
10551
|
}
|
|
10556
|
-
@
|
|
10552
|
+
@container (max-width: calc(768px - 1px)) {
|
|
10557
10553
|
.TitleBlock-module_navigationTabsContainer__aLbT3 {
|
|
10558
10554
|
height: 3.75rem;
|
|
10559
10555
|
}
|
|
@@ -10561,12 +10557,12 @@
|
|
|
10561
10557
|
.TitleBlock-module_navigationTabsContainerCollapsed__ZJF6M {
|
|
10562
10558
|
height: 0;
|
|
10563
10559
|
}
|
|
10564
|
-
@
|
|
10560
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10565
10561
|
.TitleBlock-module_navigationTabsContainerCollapsed__ZJF6M {
|
|
10566
10562
|
height: 0;
|
|
10567
10563
|
}
|
|
10568
10564
|
}
|
|
10569
|
-
@
|
|
10565
|
+
@container (max-width: calc(768px - 1px)) {
|
|
10570
10566
|
.TitleBlock-module_hasNavigationTabs__v09jL .TitleBlock-module_navigationTabScrollerContainer__o234q {
|
|
10571
10567
|
display: block;
|
|
10572
10568
|
overflow-x: scroll;
|
|
@@ -10591,7 +10587,7 @@
|
|
|
10591
10587
|
display: none;
|
|
10592
10588
|
pointer-events: none;
|
|
10593
10589
|
}
|
|
10594
|
-
@
|
|
10590
|
+
@container (max-width: calc(768px - 1px)) {
|
|
10595
10591
|
.TitleBlock-module_navigationTabEdgeShadowRight__xkIWc, .TitleBlock-module_navigationTabEdgeShadowLeft__9pGhR {
|
|
10596
10592
|
display: block;
|
|
10597
10593
|
position: absolute;
|
|
@@ -10602,12 +10598,12 @@
|
|
|
10602
10598
|
z-index: 1;
|
|
10603
10599
|
}
|
|
10604
10600
|
}
|
|
10605
|
-
@
|
|
10601
|
+
@container (max-width: calc(768px - 1px)) {
|
|
10606
10602
|
.TitleBlock-module_adminVariant__s95nS .TitleBlock-module_navigationTabEdgeShadowRight__xkIWc, .TitleBlock-module_adminVariant__s95nS .TitleBlock-module_navigationTabEdgeShadowLeft__9pGhR {
|
|
10607
10603
|
background: linear-gradient(0deg, var(--color-gray-100, #f9f9f9), rgba(var(--color-gray-100-rgb, 249, 249, 249), 0));
|
|
10608
10604
|
}
|
|
10609
10605
|
}
|
|
10610
|
-
@
|
|
10606
|
+
@container (max-width: calc(768px - 1px)) {
|
|
10611
10607
|
.TitleBlock-module_educationVariant__YvpWa .TitleBlock-module_navigationTabEdgeShadowRight__xkIWc, .TitleBlock-module_educationVariant__YvpWa .TitleBlock-module_navigationTabEdgeShadowLeft__9pGhR {
|
|
10612
10608
|
background: linear-gradient(0deg, var(--color-blue-200, #bde2f5), rgba(var(--color-blue-200-rgb, 189, 226, 245), 0));
|
|
10613
10609
|
}
|
|
@@ -10617,7 +10613,7 @@
|
|
|
10617
10613
|
left: 0;
|
|
10618
10614
|
top: calc(100% - 4.5rem);
|
|
10619
10615
|
}
|
|
10620
|
-
@
|
|
10616
|
+
@container (max-width: calc(768px - 1px)) {
|
|
10621
10617
|
.TitleBlock-module_navigationTabEdgeShadowLeft__9pGhR {
|
|
10622
10618
|
top: calc(100% - 3.75rem);
|
|
10623
10619
|
}
|
|
@@ -10627,7 +10623,7 @@
|
|
|
10627
10623
|
right: 0;
|
|
10628
10624
|
top: calc(100% - 4.5rem);
|
|
10629
10625
|
}
|
|
10630
|
-
@
|
|
10626
|
+
@container (max-width: calc(768px - 1px)) {
|
|
10631
10627
|
.TitleBlock-module_navigationTabEdgeShadowRight__xkIWc {
|
|
10632
10628
|
top: calc(100% - 3.75rem);
|
|
10633
10629
|
}
|
|
@@ -10643,7 +10639,7 @@
|
|
|
10643
10639
|
.TitleBlock-module_educationVariant__YvpWa .TitleBlock-module_secondaryActionsContainer__-4q0l, .TitleBlock-module_adminVariant__s95nS .TitleBlock-module_secondaryActionsContainer__-4q0l {
|
|
10644
10640
|
color: var(--color-blue-500, #0168b3);
|
|
10645
10641
|
}
|
|
10646
|
-
@
|
|
10642
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10647
10643
|
.TitleBlock-module_secondaryActionsContainer__-4q0l {
|
|
10648
10644
|
display: none;
|
|
10649
10645
|
}
|
|
@@ -10684,16 +10680,18 @@
|
|
|
10684
10680
|
border-style: var(--border-focus-ring-border-style, solid);
|
|
10685
10681
|
inset: calc(-2 * var(--border-focus-ring-border-width, 2px) - var(--border-focus-ring-border-width, 2px));
|
|
10686
10682
|
}
|
|
10687
|
-
@media only screen
|
|
10688
|
-
|
|
10689
|
-
|
|
10690
|
-
|
|
10691
|
-
|
|
10692
|
-
|
|
10693
|
-
|
|
10683
|
+
@media only screen {
|
|
10684
|
+
@container (max-width: 1644px) {
|
|
10685
|
+
.TitleBlock-module_breadcrumb__lVNKz {
|
|
10686
|
+
position: relative;
|
|
10687
|
+
transform: translateY(0);
|
|
10688
|
+
margin-inline: 0 var(--spacing-12);
|
|
10689
|
+
inset-inline-end: auto;
|
|
10690
|
+
inset-inline-start: 0;
|
|
10691
|
+
}
|
|
10694
10692
|
}
|
|
10695
10693
|
}
|
|
10696
|
-
@
|
|
10694
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10697
10695
|
.TitleBlock-module_breadcrumb__lVNKz {
|
|
10698
10696
|
display: none;
|
|
10699
10697
|
}
|
|
@@ -10710,16 +10708,18 @@
|
|
|
10710
10708
|
inset-inline-start: -3rem;
|
|
10711
10709
|
position: absolute;
|
|
10712
10710
|
}
|
|
10713
|
-
@
|
|
10711
|
+
@container (max-width: 1644px) {
|
|
10714
10712
|
.TitleBlock-module_breadcrumbTextLink__ngx82 {
|
|
10715
10713
|
inset-inline-end: auto;
|
|
10716
10714
|
inset-inline-start: 1.5rem;
|
|
10717
10715
|
}
|
|
10718
10716
|
}
|
|
10719
|
-
@media only screen
|
|
10720
|
-
|
|
10721
|
-
|
|
10722
|
-
|
|
10717
|
+
@media only screen {
|
|
10718
|
+
@container (min-width: 1644px) {
|
|
10719
|
+
.TitleBlock-module_breadcrumbTextLink__ngx82 {
|
|
10720
|
+
inset-inline-end: auto;
|
|
10721
|
+
inset-inline-start: calc(48px - 1.5rem);
|
|
10722
|
+
}
|
|
10723
10723
|
}
|
|
10724
10724
|
}
|
|
10725
10725
|
.TitleBlock-module_breadcrumbTextLink__ngx82:hover, .TitleBlock-module_breadcrumbTextLink__ngx82:focus, .TitleBlock-module_breadcrumb__lVNKz:hover .TitleBlock-module_breadcrumbTextLink__ngx82, .TitleBlock-module_breadcrumb__lVNKz:focus .TitleBlock-module_breadcrumbTextLink__ngx82 {
|
|
@@ -10852,7 +10852,7 @@
|
|
|
10852
10852
|
color: var(--color-white, #ffffff);
|
|
10853
10853
|
text-decoration: none;
|
|
10854
10854
|
}
|
|
10855
|
-
@
|
|
10855
|
+
@container (max-width: 1365px) {
|
|
10856
10856
|
.NavigationTabs-module_linkAnchor__R2iEH {
|
|
10857
10857
|
font-family: var(--typography-heading-5-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
10858
10858
|
font-weight: var(--typography-heading-5-font-weight, 600);
|
|
@@ -10861,7 +10861,7 @@
|
|
|
10861
10861
|
letter-spacing: var(--typography-heading-5-letter-spacing, normal);
|
|
10862
10862
|
}
|
|
10863
10863
|
}
|
|
10864
|
-
@
|
|
10864
|
+
@container (max-width: 1439px) {
|
|
10865
10865
|
.NavigationTabs-module_linkAnchor__R2iEH {
|
|
10866
10866
|
margin-inline-end: var(--spacing-xs, 0.375rem);
|
|
10867
10867
|
}
|
|
@@ -10886,7 +10886,7 @@
|
|
|
10886
10886
|
transition: transform cubic-bezier(0.55, 0.085, 0.68, 0.53) 150ms;
|
|
10887
10887
|
border-radius: 0 0 var(--border-solid-border-radius, 7px) var(--border-solid-border-radius, 7px);
|
|
10888
10888
|
}
|
|
10889
|
-
@
|
|
10889
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10890
10890
|
.NavigationTabs-module_linkAnchor__R2iEH.NavigationTabs-module_active__w1NQO::before, .NavigationTabs-module_linkAnchor__R2iEH:focus::before {
|
|
10891
10891
|
top: auto;
|
|
10892
10892
|
bottom: 0;
|
|
@@ -10909,7 +10909,7 @@
|
|
|
10909
10909
|
border-style: var(--border-focus-ring-border-style, solid);
|
|
10910
10910
|
inset: 0 calc(-1 * var(--border-focus-ring-border-width, 2px)) 5px;
|
|
10911
10911
|
}
|
|
10912
|
-
@
|
|
10912
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10913
10913
|
.NavigationTabs-module_linkAnchor__R2iEH:focus::after {
|
|
10914
10914
|
border-radius: var(--border-focus-ring-border-radius, 10px) var(--border-focus-ring-border-radius, 10px) 0 0;
|
|
10915
10915
|
inset: 5px calc(-1 * var(--border-focus-ring-border-width, 2px)) 0 calc(-1 * var(--border-focus-ring-border-width, 2px));
|
|
@@ -10933,9 +10933,8 @@
|
|
|
10933
10933
|
}
|
|
10934
10934
|
.NavigationTabs-module_linkAnchor__R2iEH.NavigationTabs-module_lightBackground__lToVy.NavigationTabs-module_active__w1NQO::before {
|
|
10935
10935
|
background-color: var(--color-blue-500, #0168b3);
|
|
10936
|
-
top: 3px;
|
|
10937
10936
|
}
|
|
10938
|
-
@
|
|
10937
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10939
10938
|
.NavigationTabs-module_linkAnchor__R2iEH.NavigationTabs-module_lightBackground__lToVy.NavigationTabs-module_active__w1NQO::before {
|
|
10940
10939
|
top: auto;
|
|
10941
10940
|
bottom: 0;
|
|
@@ -11484,10 +11483,6 @@
|
|
|
11484
11483
|
}
|
|
11485
11484
|
|
|
11486
11485
|
@layer kz-components {
|
|
11487
|
-
ul {
|
|
11488
|
-
padding-inline-start: 0;
|
|
11489
|
-
}
|
|
11490
|
-
|
|
11491
11486
|
.ListItem-module_listItem__xGr6A {
|
|
11492
11487
|
font-family: var(--typography-paragraph-body-font-family);
|
|
11493
11488
|
font-weight: var(--typography-paragraph-body-font-weight);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React, { type HTMLAttributes, type ReactNode } from 'react';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
2
|
+
import type { OverrideClassName } from "../../types/OverrideClassName";
|
|
3
|
+
import type { EditorContentArray, EditorRows, ToolbarItems } from '../types';
|
|
4
4
|
import { ProseMirrorState } from '../utils/prosemirror';
|
|
5
5
|
type BaseRichTextEditorProps = {
|
|
6
6
|
id?: string;
|
package/dist/types/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/ToolbarControls.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { ToolbarItems } from '../../../types';
|
|
2
|
+
import type { CommandOrTransaction } from '../../../utils/core';
|
|
3
|
+
import type { ProseMirrorModel, ProseMirrorState } from '../../../utils/prosemirror';
|
|
4
|
+
type ToolbarControlsProps = {
|
|
5
|
+
editorId: string;
|
|
6
|
+
controls?: ToolbarItems[];
|
|
7
|
+
editorState: ProseMirrorState.EditorState;
|
|
8
|
+
schema: ProseMirrorModel.Schema<any, any>;
|
|
9
|
+
dispatchTransaction: (commandOrTransaction: CommandOrTransaction) => void;
|
|
10
|
+
};
|
|
11
|
+
export declare const ToolbarControls: ({ editorId, controls, editorState, schema, dispatchTransaction, }: ToolbarControlsProps) => JSX.Element | null;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ToolbarControls';
|
|
@@ -9,5 +9,5 @@ type ToolbarControl = {
|
|
|
9
9
|
action: ProseMirrorState.Command;
|
|
10
10
|
};
|
|
11
11
|
/** Builds an array of object used to map control configuration to rte toolbar buttons */
|
|
12
|
-
export declare const
|
|
12
|
+
export declare const useControlMap: (schema: ProseMirrorModel.Schema, editorState: ProseMirrorState.EditorState, controls?: ToolbarItems[]) => ToolbarControl[][];
|
|
13
13
|
export {};
|
|
@@ -57,6 +57,8 @@ export type SingleSelectProps<Option extends SingleSelectOption = SingleSelectOp
|
|
|
57
57
|
onSelectionChange?: (key: Key) => void;
|
|
58
58
|
} & OverrideClassName<Omit<AriaSelectProps<Option>, OmittedAriaSelectProps>>;
|
|
59
59
|
/**
|
|
60
|
+
* @deprecated SingleSelect is deprecated in v3 and will be replaced in v4.
|
|
61
|
+
*
|
|
60
62
|
* {@link https://cultureamp.atlassian.net/wiki/spaces/DesignSystem/pages/3081896474/Select Guidance} |
|
|
61
63
|
* {@link https://cultureamp.design/?path=/docs/components-select--docs Storybook}
|
|
62
64
|
*/
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { type GenericTileProps } from '../subcomponents/GenericTile';
|
|
2
2
|
export type InformationTileProps = GenericTileProps;
|
|
3
3
|
/**
|
|
4
|
+
* @deprecated InformationTile is deprecated in v3 and will be removed in v4.
|
|
5
|
+
*
|
|
4
6
|
* {@link https://cultureamp.atlassian.net/wiki/spaces/DesignSystem/pages/3079077889/Tile#InformationTile%3A Guidance} |
|
|
5
7
|
* {@link https://cultureamp.design/?path=/docs/components-tiles-informationtile--docs Storybook}
|
|
6
8
|
*/
|
|
@@ -4,6 +4,8 @@ export type MultiActionTileProps = {
|
|
|
4
4
|
secondaryAction?: TileAction;
|
|
5
5
|
} & Omit<GenericTileProps, 'footer'>;
|
|
6
6
|
/**
|
|
7
|
+
* @deprecated MultiActionTile is deprecated in v3 and will be removed in v4.
|
|
8
|
+
*
|
|
7
9
|
* {@link https://cultureamp.atlassian.net/wiki/spaces/DesignSystem/pages/3079077889/Tile#MultiActionTile.1 Guidance} |
|
|
8
10
|
* {@link https://cultureamp.design/?path=/docs/components-tiles-multiactiontile--docs Storybook}
|
|
9
11
|
*/
|
|
@@ -8,6 +8,8 @@ export interface TileGridProps extends OverrideClassName<HTMLAttributes<HTMLULis
|
|
|
8
8
|
children: TileElement[] | TileElement;
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
+
* @deprecated TileGrid is deprecated in v3 and will be removed in v4.
|
|
12
|
+
*
|
|
11
13
|
* {@link https://cultureamp.atlassian.net/wiki/spaces/DesignSystem/pages/3079077889/Tile#TileGrid Guidance} |
|
|
12
14
|
* {@link https://cultureamp.design/storybook/?path=/docs/components-tiles-tilegrid--docs Storybook}
|
|
13
15
|
*/
|
package/locales/ar.json
CHANGED
|
@@ -85,6 +85,42 @@
|
|
|
85
85
|
"description" : "Label for the clear search button",
|
|
86
86
|
"message" : "مسح البحث"
|
|
87
87
|
},
|
|
88
|
+
"kz.rte.bold" : {
|
|
89
|
+
"description" : "Label for the \"Bold\" button in a text editor",
|
|
90
|
+
"message" : "سميك"
|
|
91
|
+
},
|
|
92
|
+
"kz.rte.bullet_list" : {
|
|
93
|
+
"description" : "Label for the \"Bullet list\" button in a text editor",
|
|
94
|
+
"message" : "قائمة نقطية"
|
|
95
|
+
},
|
|
96
|
+
"kz.rte.decrease_indent" : {
|
|
97
|
+
"description" : "Label for the \"Decrease indent\" button in a text editor",
|
|
98
|
+
"message" : "تقليل المسافة البادئة"
|
|
99
|
+
},
|
|
100
|
+
"kz.rte.increase_indent" : {
|
|
101
|
+
"description" : "Label for the \"Increase indent\" button in a text editor",
|
|
102
|
+
"message" : "زيادة المسافة البادئة"
|
|
103
|
+
},
|
|
104
|
+
"kz.rte.italic" : {
|
|
105
|
+
"description" : "Label for the \"Italic\" button in a text editor",
|
|
106
|
+
"message" : "مائل"
|
|
107
|
+
},
|
|
108
|
+
"kz.rte.link" : {
|
|
109
|
+
"description" : "Label for the \"Link\" button in a text editor that allows the creation of hyperlinks in the text",
|
|
110
|
+
"message" : "رابط"
|
|
111
|
+
},
|
|
112
|
+
"kz.rte.numbered_list" : {
|
|
113
|
+
"description" : "Label for the \"Numbered list\" button in a text editor",
|
|
114
|
+
"message" : "قائمة مرقمة"
|
|
115
|
+
},
|
|
116
|
+
"kz.rte.toolbar.aria_label" : {
|
|
117
|
+
"description" : "Label for the text formatting toolbar in a Rich Text Editor",
|
|
118
|
+
"message" : "تنسيق النص"
|
|
119
|
+
},
|
|
120
|
+
"kz.rte.underline" : {
|
|
121
|
+
"description" : "Label for the \"Underline\" button in a text editor",
|
|
122
|
+
"message" : "تسطير"
|
|
123
|
+
},
|
|
88
124
|
"kzErrorPage" : {
|
|
89
125
|
"description" : "Label for contact button",
|
|
90
126
|
"message" : "اتصل بالدعم"
|
|
@@ -196,4 +232,4 @@
|
|
|
196
232
|
"description" : "Label for a dropdown menu holding additional actions",
|
|
197
233
|
"message" : "إجراءات إضافية"
|
|
198
234
|
}
|
|
199
|
-
}
|
|
235
|
+
}
|