@homebound/beam 3.42.3 → 3.43.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Css.json +1 -1
- package/dist/index.cjs +36 -16
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +14 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +13 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +36 -16
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -324,7 +324,10 @@
|
|
|
324
324
|
--b-neutral-surface-pressed: rgba(255, 255, 255, 1);
|
|
325
325
|
--b-on-primary: rgba(255, 255, 255, 1);
|
|
326
326
|
--b-on-surface: rgba(36, 36, 36, 1);
|
|
327
|
+
--b-on-surface-disabled: rgba(201, 201, 201, 1);
|
|
327
328
|
--b-on-surface-muted: rgba(100, 100, 100, 1);
|
|
329
|
+
--b-on-surface-raised-hover: rgba(36, 36, 36, 1);
|
|
330
|
+
--b-on-surface-raised-pressed: rgba(36, 36, 36, 1);
|
|
328
331
|
--b-on-surface-subtle: rgba(100, 100, 100, 1);
|
|
329
332
|
--b-popover-surface: rgba(255, 255, 255, 1);
|
|
330
333
|
--b-primary: rgba(37, 99, 235, 1);
|
|
@@ -334,6 +337,10 @@
|
|
|
334
337
|
--b-selection-indicator: rgba(29, 78, 216, 1);
|
|
335
338
|
--b-status-success-fg: rgba(4, 120, 87, 1);
|
|
336
339
|
--b-surface: rgba(255, 255, 255, 1);
|
|
340
|
+
--b-surface-disabled: rgba(255, 255, 255, 1);
|
|
341
|
+
--b-surface-raised: rgba(0,0,0,0);
|
|
342
|
+
--b-surface-raised-hover: rgba(247, 245, 245, 1);
|
|
343
|
+
--b-surface-raised-pressed: rgba(236, 235, 235, 1);
|
|
337
344
|
--b-surface-separator: rgba(236, 235, 235, 1);
|
|
338
345
|
--b-surface-subtle: rgba(236, 235, 235, 1);
|
|
339
346
|
--b-text-disabled: rgba(201, 201, 201, 1);
|
|
@@ -388,7 +395,10 @@
|
|
|
388
395
|
--b-neutral-surface-pressed: rgba(255, 255, 255, 1);
|
|
389
396
|
--b-on-primary: rgba(255, 255, 255, 1);
|
|
390
397
|
--b-on-surface: rgba(255, 255, 255, 1);
|
|
398
|
+
--b-on-surface-disabled: rgba(247, 245, 245, 1);
|
|
391
399
|
--b-on-surface-muted: rgba(175, 175, 175, 1);
|
|
400
|
+
--b-on-surface-raised-hover: rgba(221, 220, 220, 1);
|
|
401
|
+
--b-on-surface-raised-pressed: rgba(175, 175, 175, 1);
|
|
392
402
|
--b-on-surface-subtle: rgba(221, 220, 220, 1);
|
|
393
403
|
--b-popover-surface: rgba(100, 100, 100, 1);
|
|
394
404
|
--b-primary-hover: rgba(36, 36, 36, 1);
|
|
@@ -396,6 +406,10 @@
|
|
|
396
406
|
--b-selection-indicator: rgba(255, 255, 255, 1);
|
|
397
407
|
--b-status-success-fg: rgba(236, 253, 245, 1);
|
|
398
408
|
--b-surface: rgba(36, 36, 36, 1);
|
|
409
|
+
--b-surface-disabled: rgba(141, 141, 141, 1);
|
|
410
|
+
--b-surface-raised: rgba(53, 53, 53, 1);
|
|
411
|
+
--b-surface-raised-hover: rgba(36, 36, 36, 1);
|
|
412
|
+
--b-surface-raised-pressed: rgba(36, 36, 36, 1);
|
|
399
413
|
--b-surface-separator: rgba(100, 100, 100, 1);
|
|
400
414
|
--b-surface-subtle: rgba(100, 100, 100, 1);
|
|
401
415
|
--b-text-disabled: rgba(175, 175, 175, 1);
|
package/dist/index.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/css/CssReset.css","../src/css/generated/theme-scopes.css","../src/components/internal/DatePicker/day.css","../src/components/internal/DatePicker/DatePicker.css","../src/inputs/trix.css","../src/components/Copy.css"],"sourcesContent":["/*\n * Beam CSS Reset\n * Based on modern-normalize + Tailwind preflight + beam custom rules.\n * Migrated from emotion Global to a plain CSS file for StyleX compatibility.\n *\n * Wrapped in @layer reset so that StyleX utility classes always win regardless of load order.\n */\n@layer reset {\n /* ── Beam custom rules ───────────────────────────────────────────── */\n\n a:not(.navLink) {\n color: rgba(29, 78, 216, 1);\n }\n\n a:visited:not(.navLink) {\n color: rgba(59, 130, 246, 1);\n }\n\n /**\n * Beam animations\n */\n /* Opacity pulse so dot fill follows --b-loader-fill (ContrastScope / palette). */\n @keyframes loadingDots {\n 0%,\n 100% {\n opacity: 1;\n }\n 50% {\n opacity: 0.35;\n }\n }\n\n @keyframes spin {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n }\n\n @keyframes pulse {\n 50% {\n opacity: 0.6;\n }\n }\n\n /* Respect WCAG SC 2.3.3 — collapse animations and transitions when the user\n has set prefers-reduced-motion: reduce in their OS. Applies globally so it\n covers every motion-token-driven helper as well as legacy inline transitions. */\n @media (prefers-reduced-motion: reduce) {\n *,\n *::before,\n *::after {\n animation-duration: 0.01ms !important;\n animation-iteration-count: 1 !important;\n transition-duration: 0.01ms !important;\n scroll-behavior: auto !important;\n }\n }\n\n /* ── modern-normalize v1.0.0 | MIT License ───────────────────────── */\n\n /*\nDocument\n========\n*/\n\n /**\nUse a better box model (opinionated).\n*/\n\n *,\n *::before,\n *::after {\n box-sizing: border-box;\n }\n\n /**\nUse a more readable tab size (opinionated).\n*/\n\n :root {\n -moz-tab-size: 4;\n -o-tab-size: 4;\n tab-size: 4;\n }\n\n /**\n1. Correct the line height in all browsers.\n2. Prevent adjustments of font size after orientation changes in iOS.\n*/\n\n html {\n line-height: 1.15; /* 1 */\n -webkit-text-size-adjust: 100%; /* 2 */\n }\n\n /*\nSections\n========\n*/\n\n /**\nRemove the margin in all browsers.\n*/\n\n body {\n margin: 0;\n }\n\n /**\nImprove consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)\n*/\n\n body {\n font-family:\n system-ui,\n -apple-system,\n /* Firefox supports this but not yet system-ui */ \"Segoe UI\",\n Roboto,\n Helvetica,\n Arial,\n sans-serif,\n \"Apple Color Emoji\",\n \"Segoe UI Emoji\";\n }\n\n /*\nGrouping content\n================\n*/\n\n /**\n1. Add the correct height in Firefox.\n2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)\n*/\n\n hr {\n height: 0; /* 1 */\n color: inherit; /* 2 */\n }\n\n /*\nText-level semantics\n====================\n*/\n\n /**\nAdd the correct text decoration in Chrome, Edge, and Safari.\n*/\n\n abbr[title] {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n }\n\n /**\nAdd the correct font weight in Edge and Safari.\n*/\n\n b,\n strong {\n font-weight: bolder;\n }\n\n /**\n1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)\n2. Correct the odd 'em' font sizing in all browsers.\n*/\n\n code,\n kbd,\n samp,\n pre {\n font-family: ui-monospace, SFMono-Regular, Consolas, \"Liberation Mono\", Menlo, monospace; /* 1 */\n font-size: 1em; /* 2 */\n }\n\n /**\nAdd the correct font size in all browsers.\n*/\n\n small {\n font-size: 80%;\n }\n\n /**\nPrevent 'sub' and 'sup' elements from affecting the line height in all browsers.\n*/\n\n sub,\n sup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n }\n\n sub {\n bottom: -0.25em;\n }\n\n sup {\n top: -0.5em;\n }\n\n /*\nTabular data\n============\n*/\n\n /**\n1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)\n2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)\n*/\n\n table {\n text-indent: 0; /* 1 */\n border-color: inherit; /* 2 */\n }\n\n /*\nForms\n=====\n*/\n\n /**\n1. Change the font styles in all browsers.\n2. Remove the margin in Firefox and Safari.\n*/\n\n button,\n input,\n optgroup,\n select,\n textarea {\n font-family: inherit; /* 1 */\n font-size: 100%; /* 1 */\n line-height: 1.15; /* 1 */\n margin: 0; /* 2 */\n }\n\n /**\nRemove the inheritance of text transform in Edge and Firefox.\n1. Remove the inheritance of text transform in Firefox.\n*/\n\n button,\n select {\n /* 1 */\n text-transform: none;\n }\n\n /**\n Correct the inability to style clickable types in iOS and Safari.\n */\n\n button,\n [type=\"button\"],\n [type=\"submit\"] {\n -webkit-appearance: button;\n }\n\n /**\nRemove the additional ':invalid' styles in Firefox.\nSee: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737\n*/\n\n /**\nRemove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.\n*/\n\n legend {\n padding: 0;\n }\n\n /**\nAdd the correct vertical alignment in Chrome and Firefox.\n*/\n\n progress {\n vertical-align: baseline;\n }\n\n /**\n1. Correct the odd appearance in Chrome and Safari.\n2. Correct the outline style in Safari.\n*/\n\n [type=\"search\"] {\n -webkit-appearance: textfield; /* 1 */\n outline-offset: -2px; /* 2 */\n }\n\n /*\nInteractive\n===========\n*/\n\n /*\nAdd the correct display in Chrome and Safari.\n*/\n\n summary {\n display: list-item;\n }\n\n /**\n * Manually forked from SUIT CSS Base: https://github.com/suitcss/base\n * A thin layer on top of normalize.css that provides a starting point more\n * suitable for web applications.\n */\n\n /**\n * Removes the default spacing and border for appropriate elements.\n */\n\n blockquote,\n dl,\n dd,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n hr,\n figure,\n p,\n pre {\n margin: 0;\n }\n\n button {\n background-color: transparent;\n background-image: none;\n }\n\n /**\n * Work around a Firefox/IE bug where the transparent button background\n * results in a loss of the default button focus styles.\n */\n fieldset {\n margin: 0;\n padding: 0;\n }\n\n /* ── Tailwind Preflight ──────────────────────────────────────────── */\n /* See https://tailwindcss.com/docs/preflight */\n\n /**\n * Tailwind custom reset styles\n */\n\n /**\n * 1. Use the user's configured sans font-family (with Tailwind's default\n * sans-serif font stack as a fallback) as a sane default.\n * 2. Use Tailwind's default \"normal\" line-height so the user isn't forced\n * to override it to ensure consistency even when using the default theme.\n */\n html {\n font-family:\n Inter,\n ui-sans-serif,\n system-ui,\n -apple-system,\n BlinkMacSystemFont,\n \"Segoe UI\",\n Roboto,\n \"Helvetica Neue\",\n Arial,\n \"Noto Sans\",\n sans-serif,\n \"Apple Color Emoji\",\n \"Segoe UI Emoji\",\n \"Segoe UI Symbol\",\n \"Noto Color Emoji\"; /* 1 */\n line-height: 1.5; /* 2 */\n }\n\n /**\n * Inherit font-family and line-height from html so users can set them as\n * a class directly on the html element.\n */\n\n body {\n font-family: inherit;\n line-height: inherit;\n }\n\n /**\n * 1. Prevent padding and border from affecting element width.\n *\n * We used to set this in the html element and inherit from\n * the parent element for everything else. This caused issues\n * in shadow-dom-enhanced elements like details where the content\n * is wrapped by a div with box-sizing set to content-box.\n *\n * https://github.com/mozdevs/cssremedy/issues/4\n *\n * 2. Setting border width to 0 removes the default border from elements\n * like the button and fieldset\n */\n\n *,\n ::before,\n ::after {\n box-sizing: border-box; /* 1 */\n border-width: 0; /* 2 */\n }\n\n /*\n * Ensure horizontal rules are visible by default\n */\n\n hr {\n border-top-width: 1px;\n }\n\n /**\n * Undo the border-style: none reset that Normalize applies to images so that\n * our border-{width} utilities have the expected effect.\n *\n * The Normalize reset is unnecessary for us since we default the border-width\n * to 0 on all elements.\n *\n * https://github.com/tailwindcss/tailwindcss/issues/362\n */\n\n img {\n border-style: solid;\n }\n\n textarea {\n resize: vertical;\n }\n\n input::-moz-placeholder,\n textarea::-moz-placeholder {\n color: #9ca3af;\n }\n\n input:-ms-input-placeholder,\n textarea:-ms-input-placeholder {\n color: #9ca3af;\n }\n\n input::placeholder,\n textarea::placeholder {\n color: #9ca3af;\n }\n\n button,\n [role=\"button\"] {\n cursor: pointer;\n }\n\n table {\n border-collapse: collapse;\n }\n\n h1,\n h2,\n h3,\n h4,\n h5,\n h6 {\n font-size: inherit;\n font-weight: inherit;\n }\n\n /**\n * Reset links to optimize for opt-in styling instead of\n * opt-out.\n */\n\n a {\n color: inherit;\n text-decoration: inherit;\n }\n\n /**\n * Reset form element properties that are easy to forget to\n * style explicitly so you don't inadvertently introduce\n * styles that deviate from your design system. These styles\n * supplement a partial reset that is already applied by\n * normalize.css.\n */\n\n button,\n input,\n optgroup,\n select,\n textarea {\n padding: 0;\n line-height: inherit;\n color: inherit;\n }\n\n /**\n * Use the configured 'mono' font family for elements that\n * are expected to be rendered with a monospace font, falling\n * back to the system monospace stack if there is no configured\n * 'mono' font family.\n */\n\n pre,\n code,\n kbd,\n samp {\n font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n }\n\n /**\n * Make replaced elements display: block by default as that's\n * the behavior you want almost all of the time. Inspired by\n * CSS Remedy, with svg added as well.\n *\n * https://github.com/mozdevs/cssremedy/issues/14\n */\n\n img,\n svg,\n video,\n canvas,\n audio,\n iframe,\n embed,\n object {\n display: block;\n vertical-align: middle;\n }\n\n /**\n * Constrain images and videos to the parent width and preserve\n * their instrinsic aspect ratio.\n *\n * https://github.com/mozdevs/cssremedy/issues/14\n */\n\n img,\n video {\n max-width: 100%;\n height: auto;\n }\n} /* end @layer reset */\n","/*\n * AUTO-GENERATED — do not edit. Run `yarn generate:design-tokens`, `yarn build`, or `yarn build:truss`.\n *\n * :root — baseline semantic custom properties from beam.color.semantic.* $value.\n * [data-theme] — overrides per theme axis; values must match ContrastScope / tokens.json.\n */\n\n:root {\n --b-button-caution-disabled-bg: rgba(254, 240, 138, 1);\n --b-button-caution-disabled-fg: rgba(36, 36, 36, 1);\n --b-button-danger-disabled-bg: rgba(254, 202, 202, 1);\n --b-button-danger-disabled-fg: rgba(255, 255, 255, 1);\n --b-button-ghost-disabled-fg: rgba(201, 201, 201, 1);\n --b-button-ghost-fg: rgba(36, 36, 36, 1);\n --b-button-primary-disabled-bg: rgba(191, 219, 254, 1);\n --b-button-primary-disabled-fg: rgba(255, 255, 255, 1);\n --b-button-tertiary-fg: rgba(37, 99, 235, 1);\n --b-button-tertiary-fg-pressed: rgba(30, 64, 175, 1);\n --b-danger: rgba(220, 38, 38, 1);\n --b-danger-pressed: rgba(153, 27, 27, 1);\n --b-env-brand-dev: rgba(88, 206, 32, 1);\n --b-env-brand-local-prod: rgba(239, 68, 68, 1);\n --b-env-brand-prod: rgba(32, 206, 200, 1);\n --b-env-brand-qa: rgba(255, 128, 0, 1);\n --b-field-bg-default: rgba(255, 255, 255, 1);\n --b-field-bg-disabled: rgba(247, 245, 245, 1);\n --b-field-bg-hover: rgba(247, 245, 245, 1);\n --b-field-border-default: rgba(221, 220, 220, 1);\n --b-field-border-error: rgba(220, 38, 38, 1);\n --b-field-border-focus: rgba(29, 78, 216, 1);\n --b-field-border-hover: rgba(221, 220, 220, 1);\n --b-field-text-disabled: rgba(141, 141, 141, 1);\n --b-focus-ring-inset: rgba(29, 78, 216, 1);\n --b-focus-ring-muted: rgba(36, 36, 36, 1);\n --b-list-row-bg-hover: rgba(247, 245, 245, 1);\n --b-loader-fill: rgba(221, 220, 220, 1);\n --b-loader-spinner: rgba(29, 78, 216, 1);\n --b-loader-track: rgba(255, 255, 255, 1);\n --b-menu-item-bg-hover: rgba(247, 245, 245, 1);\n --b-nav-item-bg-active: rgba(239, 246, 255, 1);\n --b-nav-item-bg-hover: rgba(247, 245, 245, 1);\n --b-nav-item-bg-pressed: rgba(236, 235, 235, 1);\n --b-nav-text: rgba(100, 100, 100, 1);\n --b-nav-text-active: rgba(29, 78, 216, 1);\n --b-nav-text-disabled: rgba(201, 201, 201, 1);\n --b-nav-text-focus-visible: rgba(100, 100, 100, 1);\n --b-nav-text-pressed: rgba(100, 100, 100, 1);\n --b-neutral-fill-hover-strong: rgba(247, 245, 245, 1);\n --b-neutral-fill-hover-subtle: rgba(247, 245, 245, 1);\n --b-neutral-fill-pressed: rgba(236, 235, 235, 1);\n --b-neutral-surface-pressed: rgba(255, 255, 255, 1);\n --b-on-primary: rgba(255, 255, 255, 1);\n --b-on-surface: rgba(36, 36, 36, 1);\n --b-on-surface-muted: rgba(100, 100, 100, 1);\n --b-on-surface-subtle: rgba(100, 100, 100, 1);\n --b-popover-surface: rgba(255, 255, 255, 1);\n --b-primary: rgba(37, 99, 235, 1);\n --b-primary-hover: rgba(29, 78, 216, 1);\n --b-primary-pressed: rgba(30, 64, 175, 1);\n --b-scrim: rgba(36, 36, 36, 0.2);\n --b-selection-indicator: rgba(29, 78, 216, 1);\n --b-status-success-fg: rgba(4, 120, 87, 1);\n --b-surface: rgba(255, 255, 255, 1);\n --b-surface-separator: rgba(236, 235, 235, 1);\n --b-surface-subtle: rgba(236, 235, 235, 1);\n --b-text-disabled: rgba(201, 201, 201, 1);\n --b-text-helper: rgba(100, 100, 100, 1);\n --b-text-label: rgba(100, 100, 100, 1);\n --b-text-link-default: rgba(29, 78, 216, 1);\n --b-text-link-disabled: rgba(147, 197, 253, 1);\n --b-text-link-hover: rgba(37, 99, 235, 1);\n --b-text-link-pressed: rgba(29, 78, 216, 1);\n --b-text-placeholder: rgba(100, 100, 100, 1);\n --b-text-selection: rgba(191, 219, 254, 1);\n}\n\n[data-theme=\"contrast\"] {\n --b-button-caution-disabled-bg: rgba(113, 63, 18, 1);\n --b-button-caution-disabled-fg: rgba(255, 255, 255, 1);\n --b-button-danger-disabled-bg: rgba(127, 29, 29, 1);\n --b-button-danger-disabled-fg: rgba(141, 141, 141, 1);\n --b-button-ghost-disabled-fg: rgba(100, 100, 100, 1);\n --b-button-ghost-fg: rgba(201, 201, 201, 1);\n --b-button-primary-disabled-bg: rgba(30, 58, 138, 1);\n --b-button-primary-disabled-fg: rgba(141, 141, 141, 1);\n --b-button-tertiary-fg: rgba(255, 255, 255, 1);\n --b-button-tertiary-fg-pressed: rgba(36, 36, 36, 1);\n --b-danger: rgba(248, 113, 113, 1);\n --b-danger-pressed: rgba(36, 36, 36, 1);\n --b-field-bg-default: rgba(100, 100, 100, 1);\n --b-field-bg-disabled: rgba(100, 100, 100, 1);\n --b-field-bg-hover: rgba(141, 141, 141, 1);\n --b-field-border-default: rgba(100, 100, 100, 1);\n --b-field-border-error: rgba(248, 113, 113, 1);\n --b-field-border-focus: rgba(59, 130, 246, 1);\n --b-field-border-hover: rgba(141, 141, 141, 1);\n --b-field-text-disabled: rgba(175, 175, 175, 1);\n --b-focus-ring-inset: rgba(59, 130, 246, 1);\n --b-focus-ring-muted: rgba(175, 175, 175, 1);\n --b-list-row-bg-hover: rgba(141, 141, 141, 1);\n --b-loader-fill: rgba(100, 100, 100, 1);\n --b-loader-spinner: rgba(236, 235, 235, 1);\n --b-loader-track: rgba(141, 141, 141, 1);\n --b-menu-item-bg-hover: rgba(53, 53, 53, 1);\n --b-nav-item-bg-active: rgba(100, 100, 100, 1);\n --b-nav-item-bg-hover: rgba(53, 53, 53, 1);\n --b-nav-item-bg-pressed: rgba(236, 235, 235, 1);\n --b-nav-text: rgba(141, 141, 141, 1);\n --b-nav-text-active: rgba(255, 255, 255, 1);\n --b-nav-text-disabled: rgba(53, 53, 53, 1);\n --b-nav-text-focus-visible: rgba(255, 255, 255, 1);\n --b-nav-text-pressed: rgba(53, 53, 53, 1);\n --b-neutral-fill-hover-strong: rgba(100, 100, 100, 1);\n --b-neutral-fill-hover-subtle: rgba(221, 220, 220, 1);\n --b-neutral-fill-pressed: rgba(247, 245, 245, 1);\n --b-neutral-surface-pressed: rgba(255, 255, 255, 1);\n --b-on-primary: rgba(255, 255, 255, 1);\n --b-on-surface: rgba(255, 255, 255, 1);\n --b-on-surface-muted: rgba(175, 175, 175, 1);\n --b-on-surface-subtle: rgba(221, 220, 220, 1);\n --b-popover-surface: rgba(100, 100, 100, 1);\n --b-primary-hover: rgba(36, 36, 36, 1);\n --b-primary-pressed: rgba(30, 64, 175, 1);\n --b-selection-indicator: rgba(255, 255, 255, 1);\n --b-status-success-fg: rgba(236, 253, 245, 1);\n --b-surface: rgba(36, 36, 36, 1);\n --b-surface-separator: rgba(100, 100, 100, 1);\n --b-surface-subtle: rgba(100, 100, 100, 1);\n --b-text-disabled: rgba(175, 175, 175, 1);\n --b-text-helper: rgba(247, 245, 245, 1);\n --b-text-label: rgba(255, 255, 255, 1);\n --b-text-link-default: rgba(96, 165, 250, 1);\n --b-text-link-disabled: rgba(29, 78, 216, 1);\n --b-text-link-hover: rgba(147, 197, 253, 1);\n --b-text-link-pressed: rgba(191, 219, 254, 1);\n --b-text-placeholder: rgba(201, 201, 201, 1);\n --b-text-selection: rgba(53, 53, 53, 1);\n}\n","/*\n * DatePicker Day button CSS overrides.\n *\n * These use pseudo-class + child combinator selectors (e.g. \":hover > div\")\n * that StyleX cannot express. Conditional logic previously handled via JS\n * spreading is now encoded with data-attribute selectors.\n */\n\n/* Hover: only when not selected and not disabled */\n.beam-day-button:hover:not(:active):not([data-selected]):not([data-disabled]) > div {\n background-color: rgba(247, 245, 245, 1); /* Gray100 */\n}\n\n/* Active: only when not disabled */\n.beam-day-button:not([data-disabled]):active > div {\n background-color: rgba(201, 201, 201, 1); /* Gray400 */\n color: rgba(36, 36, 36, 1); /* Gray900 */\n}\n\n/* Focus: always applied (default blue700 border) */\n.beam-day-button:focus:not(:active) > div {\n border-style: solid;\n border-width: 1px;\n border-color: rgba(29, 78, 216, 1); /* Blue700 */\n}\n\n/* Focus when selected: override border to blue900 */\n.beam-day-button[data-selected]:focus:not(:active) > div {\n border-color: rgba(30, 58, 138, 1); /* Blue900 */\n}\n",":root {\n /* Modified by Beam (40 -> 32) */\n --rdp-cell-size: 32px;\n /* Modified by Beam (#0000ff -> Blue700) */\n --rdp-accent-color: rgba(3, 105, 161, 1);\n --rdp-background-color: #e7edff;\n /* Switch to dark colors for dark themes */\n --rdp-accent-color-dark: #3003e1;\n --rdp-background-color-dark: #180270;\n /* Outline border for focused elements */\n --rdp-outline: 2px solid var(--rdp-accent-color);\n /* Outline border for focused and selected elements */\n /* Modified by Beam (rgba(0, 0, 0, 0.75) -> Blue700) */\n --rdp-outline-selected: 2px solid rgba(3, 105, 161, 1);\n}\n\n/* Added in By Beam */\n.rdp-cell:focus-visible {\n outline: 0;\n}\n\n.rdp {\n /* Modified by Beam (1em -> 16px) */\n margin: 16px;\n}\n\n/* Hide elements for devices that are not screen readers */\n.rdp-vhidden {\n box-sizing: border-box;\n padding: 0;\n margin: 0;\n background: transparent;\n border: 0;\n -moz-appearance: none;\n -webkit-appearance: none;\n appearance: none;\n position: absolute !important;\n top: 0;\n width: 1px !important;\n height: 1px !important;\n padding: 0 !important;\n overflow: hidden !important;\n clip: rect(1px, 1px, 1px, 1px) !important;\n border: 0 !important;\n}\n\n/* Buttons */\n.rdp-button_reset {\n appearance: none;\n position: relative;\n margin: 0;\n padding: 0;\n cursor: default;\n color: inherit;\n outline: none;\n background: none;\n font: inherit;\n\n -moz-appearance: none;\n -webkit-appearance: none;\n}\n\n.rdp-button {\n border: 2px solid transparent;\n}\n\n.rdp-button[aria-disabled=\"true\"] {\n opacity: 0.25;\n pointer-events: none;\n}\n\n.rdp-button:not([aria-disabled=\"true\"]) {\n cursor: pointer;\n}\n\n.rdp-button:focus,\n.rdp-button:active {\n color: inherit;\n border: var(--rdp-outline);\n background-color: var(--rdp-background-color);\n}\n\n.rdp-button:hover:not([aria-disabled=\"true\"]) {\n background-color: var(--rdp-background-color);\n}\n\n.rdp-months {\n display: flex;\n}\n\n.rdp-month {\n margin: 0 1em;\n}\n\n.rdp-month:first-child {\n margin-left: 0;\n}\n\n.rdp-month:last-child {\n margin-right: 0;\n}\n\n.rdp-table {\n margin: 0;\n max-width: calc(var(--rdp-cell-size) * 7);\n border-collapse: collapse;\n}\n\n.rdp-with_weeknumber .rdp-table {\n max-width: calc(var(--rdp-cell-size) * 8);\n border-collapse: collapse;\n}\n\n.rdp-caption {\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: 0;\n text-align: left;\n}\n\n.rdp-multiple_months .rdp-caption {\n position: relative;\n display: block;\n text-align: center;\n}\n\n.rdp-caption_dropdowns {\n position: relative;\n display: inline-flex;\n}\n\n.rdp-caption_label {\n position: relative;\n z-index: 1;\n display: inline-flex;\n align-items: center;\n margin: 0;\n padding: 0 0.25em;\n white-space: nowrap;\n color: currentColor;\n border: 0;\n border: 2px solid transparent;\n font-family: inherit;\n font-size: 140%;\n font-weight: bold;\n}\n\n.rdp-nav {\n white-space: nowrap;\n}\n\n.rdp-multiple_months .rdp-caption_start .rdp-nav {\n position: absolute;\n top: 50%;\n left: 0;\n transform: translateY(-50%);\n}\n\n.rdp-multiple_months .rdp-caption_end .rdp-nav {\n position: absolute;\n top: 50%;\n right: 0;\n transform: translateY(-50%);\n}\n\n.rdp-nav_button {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n width: var(--rdp-cell-size);\n height: var(--rdp-cell-size);\n padding: 0.25em;\n border-radius: 100%;\n}\n\n/* ---------- */\n/* Dropdowns */\n/* ---------- */\n\n.rdp-dropdown_year,\n.rdp-dropdown_month {\n position: relative;\n display: inline-flex;\n align-items: center;\n}\n\n.rdp-dropdown {\n appearance: none;\n position: absolute;\n z-index: 2;\n top: 0;\n bottom: 0;\n left: 0;\n width: 100%;\n margin: 0;\n padding: 0;\n cursor: inherit;\n opacity: 0;\n border: none;\n background-color: transparent;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\n.rdp-dropdown[disabled] {\n opacity: unset;\n color: unset;\n}\n\n.rdp-dropdown:focus:not([disabled]) + .rdp-caption_label,\n.rdp-dropdown:active:not([disabled]) + .rdp-caption_label {\n border: var(--rdp-outline);\n border-radius: 6px;\n background-color: var(--rdp-background-color);\n}\n\n.rdp-dropdown_icon {\n margin: 0 0 0 5px;\n}\n\n.rdp-head {\n border: 0;\n}\n\n.rdp-head_row,\n.rdp-row {\n height: 100%;\n}\n\n.rdp-head_cell {\n vertical-align: middle;\n text-transform: uppercase;\n font-size: 0.75em;\n font-weight: 700;\n text-align: center;\n height: 100%;\n height: var(--rdp-cell-size);\n padding: 0;\n}\n\n.rdp-tbody {\n border: 0;\n}\n\n.rdp-tfoot {\n margin: 0.5em;\n}\n\n.rdp-cell {\n width: var(--rdp-cell-size);\n height: 100%;\n height: var(--rdp-cell-size);\n padding: 0;\n text-align: center;\n}\n\n.rdp-weeknumber {\n font-size: 0.75em;\n}\n\n.rdp-weeknumber,\n.rdp-day {\n display: flex;\n overflow: hidden;\n align-items: center;\n justify-content: center;\n box-sizing: border-box;\n width: var(--rdp-cell-size);\n max-width: var(--rdp-cell-size);\n height: var(--rdp-cell-size);\n margin: 0;\n border: 2px solid transparent;\n border-radius: 100%;\n}\n\n.rdp-day_today:not(.rdp-day_outside) {\n font-weight: bold;\n}\n\n.rdp-day_selected:not([aria-disabled=\"true\"]),\n.rdp-day_selected:focus:not([aria-disabled=\"true\"]),\n.rdp-day_selected:active:not([aria-disabled=\"true\"]),\n.rdp-day_selected:hover:not([aria-disabled=\"true\"]) {\n color: white;\n background-color: var(--rdp-accent-color);\n}\n\n.rdp-day_selected:focus:not([aria-disabled=\"true\"]) {\n border: var(--rdp-outline-selected);\n}\n\n.rdp:not([dir=\"rtl\"]) .rdp-day_range_start:not(.rdp-day_range_end) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.rdp:not([dir=\"rtl\"]) .rdp-day_range_end:not(.rdp-day_range_start) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.rdp[dir=\"rtl\"] .rdp-day_range_start:not(.rdp-day_range_end) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.rdp[dir=\"rtl\"] .rdp-day_range_end:not(.rdp-day_range_start) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.rdp-day_range_end.rdp-day_range_start {\n border-radius: 100%;\n}\n\n.rdp-day_range_middle {\n border-radius: 0;\n}\n","/*\n * Trix editor and Tribute autocomplete CSS overrides.\n *\n * These style third-party DOM elements that we don't control,\n * extracted from inline Emotion styles to a plain CSS file\n * (StyleX cannot style third-party DOM).\n */\n\n/* Wrapper container */\n.beam-trix-editor {\n position: relative;\n word-break: break-word;\n border-radius: 4px;\n border-color: rgba(221, 220, 220, 1);\n border-style: solid;\n border-width: 1px;\n background-color: rgba(255, 255, 255, 1);\n /* Put the toolbar on the bottom */\n display: flex;\n flex-direction: column-reverse;\n gap: 8px;\n}\n\n/* Highlight on focus */\n.beam-trix-editor:focus-within {\n border-color: rgba(29, 78, 216, 1);\n}\n\n/* Basic editor styles (copy/paste from TextFieldBase) */\n.beam-trix-editor trix-editor {\n background-color: rgba(255, 255, 255, 1);\n font-weight: 400;\n font-size: 14px;\n line-height: 20px;\n color: rgba(36, 36, 36, 1);\n border-style: none;\n border-width: 0;\n padding: 8px;\n}\n\n.beam-trix-editor trix-toolbar {\n margin: 8px;\n}\n\n/* Make the buttons closer to ours */\n.beam-trix-editor .trix-button:not(:first-of-type) {\n border-style: none;\n border-width: 0;\n}\n\n.beam-trix-editor .trix-button-group {\n border-style: none;\n border-width: 0;\n margin: 0;\n}\n\n.beam-trix-editor .trix-button {\n background-color: rgba(255, 255, 255, 1);\n font-weight: 400;\n font-size: 14px;\n line-height: 20px;\n}\n\n/* Height is hard-coded to 1.6 in trix, and the default width is wider than we want */\n.beam-trix-editor .trix-button--icon {\n width: 1.6em;\n padding: 0;\n margin-left: 4px;\n margin-right: 4px;\n border-style: none;\n border-width: 0;\n}\n\n/* Icons are hard-coded SVGs, so this is a simpler way to get lighter gray */\n.beam-trix-editor .trix-button--icon::before {\n opacity: 0.3;\n}\n\n/* Trix defaults to active = blue bg — turn that off + make icon darker */\n.beam-trix-editor .trix-button.trix-active {\n background-color: rgba(255, 255, 255, 1);\n opacity: 0.7;\n}\n\n/* We don't support file attachment yet, so hide that control */\n.beam-trix-editor .trix-button-group--file-tools {\n display: none;\n}\n\n/* Unused buttons we want to hide */\n.beam-trix-editor .trix-button--icon-heading-1 {\n display: none;\n}\n\n.beam-trix-editor .trix-button--icon-code {\n display: none;\n}\n\n.beam-trix-editor .trix-button--icon-quote {\n display: none;\n}\n\n.beam-trix-editor .trix-button--icon-increase-nesting-level {\n display: none;\n}\n\n.beam-trix-editor .trix-button--icon-decrease-nesting-level {\n display: none;\n}\n\n.beam-trix-editor .trix-button-group--history-tools {\n display: none;\n}\n\n/* Style the @ mention box (Tribute) */\n.tribute-container {\n min-width: 300px;\n}\n\n.tribute-container > ul {\n font-weight: 400;\n font-size: 14px;\n line-height: 20px;\n background-color: rgba(255, 255, 255, 1);\n border-style: solid;\n border-width: 1px;\n border-radius: 4px;\n border-color: rgba(29, 78, 216, 1);\n overflow: hidden;\n}\n",".beam-copy > p {\n margin-top: 16px;\n margin-bottom: 16px;\n}\n"],"mappings":"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","names":[]}
|
|
1
|
+
{"version":3,"sources":["../src/css/CssReset.css","../src/css/generated/theme-scopes.css","../src/components/internal/DatePicker/day.css","../src/components/internal/DatePicker/DatePicker.css","../src/inputs/trix.css","../src/components/Copy.css"],"sourcesContent":["/*\n * Beam CSS Reset\n * Based on modern-normalize + Tailwind preflight + beam custom rules.\n * Migrated from emotion Global to a plain CSS file for StyleX compatibility.\n *\n * Wrapped in @layer reset so that StyleX utility classes always win regardless of load order.\n */\n@layer reset {\n /* ── Beam custom rules ───────────────────────────────────────────── */\n\n a:not(.navLink) {\n color: rgba(29, 78, 216, 1);\n }\n\n a:visited:not(.navLink) {\n color: rgba(59, 130, 246, 1);\n }\n\n /**\n * Beam animations\n */\n /* Opacity pulse so dot fill follows --b-loader-fill (ContrastScope / palette). */\n @keyframes loadingDots {\n 0%,\n 100% {\n opacity: 1;\n }\n 50% {\n opacity: 0.35;\n }\n }\n\n @keyframes spin {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n }\n\n @keyframes pulse {\n 50% {\n opacity: 0.6;\n }\n }\n\n /* Respect WCAG SC 2.3.3 — collapse animations and transitions when the user\n has set prefers-reduced-motion: reduce in their OS. Applies globally so it\n covers every motion-token-driven helper as well as legacy inline transitions. */\n @media (prefers-reduced-motion: reduce) {\n *,\n *::before,\n *::after {\n animation-duration: 0.01ms !important;\n animation-iteration-count: 1 !important;\n transition-duration: 0.01ms !important;\n scroll-behavior: auto !important;\n }\n }\n\n /* ── modern-normalize v1.0.0 | MIT License ───────────────────────── */\n\n /*\nDocument\n========\n*/\n\n /**\nUse a better box model (opinionated).\n*/\n\n *,\n *::before,\n *::after {\n box-sizing: border-box;\n }\n\n /**\nUse a more readable tab size (opinionated).\n*/\n\n :root {\n -moz-tab-size: 4;\n -o-tab-size: 4;\n tab-size: 4;\n }\n\n /**\n1. Correct the line height in all browsers.\n2. Prevent adjustments of font size after orientation changes in iOS.\n*/\n\n html {\n line-height: 1.15; /* 1 */\n -webkit-text-size-adjust: 100%; /* 2 */\n }\n\n /*\nSections\n========\n*/\n\n /**\nRemove the margin in all browsers.\n*/\n\n body {\n margin: 0;\n }\n\n /**\nImprove consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)\n*/\n\n body {\n font-family:\n system-ui,\n -apple-system,\n /* Firefox supports this but not yet system-ui */ \"Segoe UI\",\n Roboto,\n Helvetica,\n Arial,\n sans-serif,\n \"Apple Color Emoji\",\n \"Segoe UI Emoji\";\n }\n\n /*\nGrouping content\n================\n*/\n\n /**\n1. Add the correct height in Firefox.\n2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)\n*/\n\n hr {\n height: 0; /* 1 */\n color: inherit; /* 2 */\n }\n\n /*\nText-level semantics\n====================\n*/\n\n /**\nAdd the correct text decoration in Chrome, Edge, and Safari.\n*/\n\n abbr[title] {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n }\n\n /**\nAdd the correct font weight in Edge and Safari.\n*/\n\n b,\n strong {\n font-weight: bolder;\n }\n\n /**\n1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)\n2. Correct the odd 'em' font sizing in all browsers.\n*/\n\n code,\n kbd,\n samp,\n pre {\n font-family: ui-monospace, SFMono-Regular, Consolas, \"Liberation Mono\", Menlo, monospace; /* 1 */\n font-size: 1em; /* 2 */\n }\n\n /**\nAdd the correct font size in all browsers.\n*/\n\n small {\n font-size: 80%;\n }\n\n /**\nPrevent 'sub' and 'sup' elements from affecting the line height in all browsers.\n*/\n\n sub,\n sup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n }\n\n sub {\n bottom: -0.25em;\n }\n\n sup {\n top: -0.5em;\n }\n\n /*\nTabular data\n============\n*/\n\n /**\n1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)\n2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)\n*/\n\n table {\n text-indent: 0; /* 1 */\n border-color: inherit; /* 2 */\n }\n\n /*\nForms\n=====\n*/\n\n /**\n1. Change the font styles in all browsers.\n2. Remove the margin in Firefox and Safari.\n*/\n\n button,\n input,\n optgroup,\n select,\n textarea {\n font-family: inherit; /* 1 */\n font-size: 100%; /* 1 */\n line-height: 1.15; /* 1 */\n margin: 0; /* 2 */\n }\n\n /**\nRemove the inheritance of text transform in Edge and Firefox.\n1. Remove the inheritance of text transform in Firefox.\n*/\n\n button,\n select {\n /* 1 */\n text-transform: none;\n }\n\n /**\n Correct the inability to style clickable types in iOS and Safari.\n */\n\n button,\n [type=\"button\"],\n [type=\"submit\"] {\n -webkit-appearance: button;\n }\n\n /**\nRemove the additional ':invalid' styles in Firefox.\nSee: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737\n*/\n\n /**\nRemove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.\n*/\n\n legend {\n padding: 0;\n }\n\n /**\nAdd the correct vertical alignment in Chrome and Firefox.\n*/\n\n progress {\n vertical-align: baseline;\n }\n\n /**\n1. Correct the odd appearance in Chrome and Safari.\n2. Correct the outline style in Safari.\n*/\n\n [type=\"search\"] {\n -webkit-appearance: textfield; /* 1 */\n outline-offset: -2px; /* 2 */\n }\n\n /*\nInteractive\n===========\n*/\n\n /*\nAdd the correct display in Chrome and Safari.\n*/\n\n summary {\n display: list-item;\n }\n\n /**\n * Manually forked from SUIT CSS Base: https://github.com/suitcss/base\n * A thin layer on top of normalize.css that provides a starting point more\n * suitable for web applications.\n */\n\n /**\n * Removes the default spacing and border for appropriate elements.\n */\n\n blockquote,\n dl,\n dd,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n hr,\n figure,\n p,\n pre {\n margin: 0;\n }\n\n button {\n background-color: transparent;\n background-image: none;\n }\n\n /**\n * Work around a Firefox/IE bug where the transparent button background\n * results in a loss of the default button focus styles.\n */\n fieldset {\n margin: 0;\n padding: 0;\n }\n\n /* ── Tailwind Preflight ──────────────────────────────────────────── */\n /* See https://tailwindcss.com/docs/preflight */\n\n /**\n * Tailwind custom reset styles\n */\n\n /**\n * 1. Use the user's configured sans font-family (with Tailwind's default\n * sans-serif font stack as a fallback) as a sane default.\n * 2. Use Tailwind's default \"normal\" line-height so the user isn't forced\n * to override it to ensure consistency even when using the default theme.\n */\n html {\n font-family:\n Inter,\n ui-sans-serif,\n system-ui,\n -apple-system,\n BlinkMacSystemFont,\n \"Segoe UI\",\n Roboto,\n \"Helvetica Neue\",\n Arial,\n \"Noto Sans\",\n sans-serif,\n \"Apple Color Emoji\",\n \"Segoe UI Emoji\",\n \"Segoe UI Symbol\",\n \"Noto Color Emoji\"; /* 1 */\n line-height: 1.5; /* 2 */\n }\n\n /**\n * Inherit font-family and line-height from html so users can set them as\n * a class directly on the html element.\n */\n\n body {\n font-family: inherit;\n line-height: inherit;\n }\n\n /**\n * 1. Prevent padding and border from affecting element width.\n *\n * We used to set this in the html element and inherit from\n * the parent element for everything else. This caused issues\n * in shadow-dom-enhanced elements like details where the content\n * is wrapped by a div with box-sizing set to content-box.\n *\n * https://github.com/mozdevs/cssremedy/issues/4\n *\n * 2. Setting border width to 0 removes the default border from elements\n * like the button and fieldset\n */\n\n *,\n ::before,\n ::after {\n box-sizing: border-box; /* 1 */\n border-width: 0; /* 2 */\n }\n\n /*\n * Ensure horizontal rules are visible by default\n */\n\n hr {\n border-top-width: 1px;\n }\n\n /**\n * Undo the border-style: none reset that Normalize applies to images so that\n * our border-{width} utilities have the expected effect.\n *\n * The Normalize reset is unnecessary for us since we default the border-width\n * to 0 on all elements.\n *\n * https://github.com/tailwindcss/tailwindcss/issues/362\n */\n\n img {\n border-style: solid;\n }\n\n textarea {\n resize: vertical;\n }\n\n input::-moz-placeholder,\n textarea::-moz-placeholder {\n color: #9ca3af;\n }\n\n input:-ms-input-placeholder,\n textarea:-ms-input-placeholder {\n color: #9ca3af;\n }\n\n input::placeholder,\n textarea::placeholder {\n color: #9ca3af;\n }\n\n button,\n [role=\"button\"] {\n cursor: pointer;\n }\n\n table {\n border-collapse: collapse;\n }\n\n h1,\n h2,\n h3,\n h4,\n h5,\n h6 {\n font-size: inherit;\n font-weight: inherit;\n }\n\n /**\n * Reset links to optimize for opt-in styling instead of\n * opt-out.\n */\n\n a {\n color: inherit;\n text-decoration: inherit;\n }\n\n /**\n * Reset form element properties that are easy to forget to\n * style explicitly so you don't inadvertently introduce\n * styles that deviate from your design system. These styles\n * supplement a partial reset that is already applied by\n * normalize.css.\n */\n\n button,\n input,\n optgroup,\n select,\n textarea {\n padding: 0;\n line-height: inherit;\n color: inherit;\n }\n\n /**\n * Use the configured 'mono' font family for elements that\n * are expected to be rendered with a monospace font, falling\n * back to the system monospace stack if there is no configured\n * 'mono' font family.\n */\n\n pre,\n code,\n kbd,\n samp {\n font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n }\n\n /**\n * Make replaced elements display: block by default as that's\n * the behavior you want almost all of the time. Inspired by\n * CSS Remedy, with svg added as well.\n *\n * https://github.com/mozdevs/cssremedy/issues/14\n */\n\n img,\n svg,\n video,\n canvas,\n audio,\n iframe,\n embed,\n object {\n display: block;\n vertical-align: middle;\n }\n\n /**\n * Constrain images and videos to the parent width and preserve\n * their instrinsic aspect ratio.\n *\n * https://github.com/mozdevs/cssremedy/issues/14\n */\n\n img,\n video {\n max-width: 100%;\n height: auto;\n }\n} /* end @layer reset */\n","/*\n * AUTO-GENERATED — do not edit. Run `yarn generate:design-tokens`, `yarn build`, or `yarn build:truss`.\n *\n * :root — baseline semantic custom properties from beam.color.semantic.* $value.\n * [data-theme] — overrides per theme axis; values must match ContrastScope / tokens.json.\n */\n\n:root {\n --b-button-caution-disabled-bg: rgba(254, 240, 138, 1);\n --b-button-caution-disabled-fg: rgba(36, 36, 36, 1);\n --b-button-danger-disabled-bg: rgba(254, 202, 202, 1);\n --b-button-danger-disabled-fg: rgba(255, 255, 255, 1);\n --b-button-ghost-disabled-fg: rgba(201, 201, 201, 1);\n --b-button-ghost-fg: rgba(36, 36, 36, 1);\n --b-button-primary-disabled-bg: rgba(191, 219, 254, 1);\n --b-button-primary-disabled-fg: rgba(255, 255, 255, 1);\n --b-button-tertiary-fg: rgba(37, 99, 235, 1);\n --b-button-tertiary-fg-pressed: rgba(30, 64, 175, 1);\n --b-danger: rgba(220, 38, 38, 1);\n --b-danger-pressed: rgba(153, 27, 27, 1);\n --b-env-brand-dev: rgba(88, 206, 32, 1);\n --b-env-brand-local-prod: rgba(239, 68, 68, 1);\n --b-env-brand-prod: rgba(32, 206, 200, 1);\n --b-env-brand-qa: rgba(255, 128, 0, 1);\n --b-field-bg-default: rgba(255, 255, 255, 1);\n --b-field-bg-disabled: rgba(247, 245, 245, 1);\n --b-field-bg-hover: rgba(247, 245, 245, 1);\n --b-field-border-default: rgba(221, 220, 220, 1);\n --b-field-border-error: rgba(220, 38, 38, 1);\n --b-field-border-focus: rgba(29, 78, 216, 1);\n --b-field-border-hover: rgba(221, 220, 220, 1);\n --b-field-text-disabled: rgba(141, 141, 141, 1);\n --b-focus-ring-inset: rgba(29, 78, 216, 1);\n --b-focus-ring-muted: rgba(36, 36, 36, 1);\n --b-list-row-bg-hover: rgba(247, 245, 245, 1);\n --b-loader-fill: rgba(221, 220, 220, 1);\n --b-loader-spinner: rgba(29, 78, 216, 1);\n --b-loader-track: rgba(255, 255, 255, 1);\n --b-menu-item-bg-hover: rgba(247, 245, 245, 1);\n --b-nav-item-bg-active: rgba(239, 246, 255, 1);\n --b-nav-item-bg-hover: rgba(247, 245, 245, 1);\n --b-nav-item-bg-pressed: rgba(236, 235, 235, 1);\n --b-nav-text: rgba(100, 100, 100, 1);\n --b-nav-text-active: rgba(29, 78, 216, 1);\n --b-nav-text-disabled: rgba(201, 201, 201, 1);\n --b-nav-text-focus-visible: rgba(100, 100, 100, 1);\n --b-nav-text-pressed: rgba(100, 100, 100, 1);\n --b-neutral-fill-hover-strong: rgba(247, 245, 245, 1);\n --b-neutral-fill-hover-subtle: rgba(247, 245, 245, 1);\n --b-neutral-fill-pressed: rgba(236, 235, 235, 1);\n --b-neutral-surface-pressed: rgba(255, 255, 255, 1);\n --b-on-primary: rgba(255, 255, 255, 1);\n --b-on-surface: rgba(36, 36, 36, 1);\n --b-on-surface-disabled: rgba(201, 201, 201, 1);\n --b-on-surface-muted: rgba(100, 100, 100, 1);\n --b-on-surface-raised-hover: rgba(36, 36, 36, 1);\n --b-on-surface-raised-pressed: rgba(36, 36, 36, 1);\n --b-on-surface-subtle: rgba(100, 100, 100, 1);\n --b-popover-surface: rgba(255, 255, 255, 1);\n --b-primary: rgba(37, 99, 235, 1);\n --b-primary-hover: rgba(29, 78, 216, 1);\n --b-primary-pressed: rgba(30, 64, 175, 1);\n --b-scrim: rgba(36, 36, 36, 0.2);\n --b-selection-indicator: rgba(29, 78, 216, 1);\n --b-status-success-fg: rgba(4, 120, 87, 1);\n --b-surface: rgba(255, 255, 255, 1);\n --b-surface-disabled: rgba(255, 255, 255, 1);\n --b-surface-raised: rgba(0,0,0,0);\n --b-surface-raised-hover: rgba(247, 245, 245, 1);\n --b-surface-raised-pressed: rgba(236, 235, 235, 1);\n --b-surface-separator: rgba(236, 235, 235, 1);\n --b-surface-subtle: rgba(236, 235, 235, 1);\n --b-text-disabled: rgba(201, 201, 201, 1);\n --b-text-helper: rgba(100, 100, 100, 1);\n --b-text-label: rgba(100, 100, 100, 1);\n --b-text-link-default: rgba(29, 78, 216, 1);\n --b-text-link-disabled: rgba(147, 197, 253, 1);\n --b-text-link-hover: rgba(37, 99, 235, 1);\n --b-text-link-pressed: rgba(29, 78, 216, 1);\n --b-text-placeholder: rgba(100, 100, 100, 1);\n --b-text-selection: rgba(191, 219, 254, 1);\n}\n\n[data-theme=\"contrast\"] {\n --b-button-caution-disabled-bg: rgba(113, 63, 18, 1);\n --b-button-caution-disabled-fg: rgba(255, 255, 255, 1);\n --b-button-danger-disabled-bg: rgba(127, 29, 29, 1);\n --b-button-danger-disabled-fg: rgba(141, 141, 141, 1);\n --b-button-ghost-disabled-fg: rgba(100, 100, 100, 1);\n --b-button-ghost-fg: rgba(201, 201, 201, 1);\n --b-button-primary-disabled-bg: rgba(30, 58, 138, 1);\n --b-button-primary-disabled-fg: rgba(141, 141, 141, 1);\n --b-button-tertiary-fg: rgba(255, 255, 255, 1);\n --b-button-tertiary-fg-pressed: rgba(36, 36, 36, 1);\n --b-danger: rgba(248, 113, 113, 1);\n --b-danger-pressed: rgba(36, 36, 36, 1);\n --b-field-bg-default: rgba(100, 100, 100, 1);\n --b-field-bg-disabled: rgba(100, 100, 100, 1);\n --b-field-bg-hover: rgba(141, 141, 141, 1);\n --b-field-border-default: rgba(100, 100, 100, 1);\n --b-field-border-error: rgba(248, 113, 113, 1);\n --b-field-border-focus: rgba(59, 130, 246, 1);\n --b-field-border-hover: rgba(141, 141, 141, 1);\n --b-field-text-disabled: rgba(175, 175, 175, 1);\n --b-focus-ring-inset: rgba(59, 130, 246, 1);\n --b-focus-ring-muted: rgba(175, 175, 175, 1);\n --b-list-row-bg-hover: rgba(141, 141, 141, 1);\n --b-loader-fill: rgba(100, 100, 100, 1);\n --b-loader-spinner: rgba(236, 235, 235, 1);\n --b-loader-track: rgba(141, 141, 141, 1);\n --b-menu-item-bg-hover: rgba(53, 53, 53, 1);\n --b-nav-item-bg-active: rgba(100, 100, 100, 1);\n --b-nav-item-bg-hover: rgba(53, 53, 53, 1);\n --b-nav-item-bg-pressed: rgba(236, 235, 235, 1);\n --b-nav-text: rgba(141, 141, 141, 1);\n --b-nav-text-active: rgba(255, 255, 255, 1);\n --b-nav-text-disabled: rgba(53, 53, 53, 1);\n --b-nav-text-focus-visible: rgba(255, 255, 255, 1);\n --b-nav-text-pressed: rgba(53, 53, 53, 1);\n --b-neutral-fill-hover-strong: rgba(100, 100, 100, 1);\n --b-neutral-fill-hover-subtle: rgba(221, 220, 220, 1);\n --b-neutral-fill-pressed: rgba(247, 245, 245, 1);\n --b-neutral-surface-pressed: rgba(255, 255, 255, 1);\n --b-on-primary: rgba(255, 255, 255, 1);\n --b-on-surface: rgba(255, 255, 255, 1);\n --b-on-surface-disabled: rgba(247, 245, 245, 1);\n --b-on-surface-muted: rgba(175, 175, 175, 1);\n --b-on-surface-raised-hover: rgba(221, 220, 220, 1);\n --b-on-surface-raised-pressed: rgba(175, 175, 175, 1);\n --b-on-surface-subtle: rgba(221, 220, 220, 1);\n --b-popover-surface: rgba(100, 100, 100, 1);\n --b-primary-hover: rgba(36, 36, 36, 1);\n --b-primary-pressed: rgba(30, 64, 175, 1);\n --b-selection-indicator: rgba(255, 255, 255, 1);\n --b-status-success-fg: rgba(236, 253, 245, 1);\n --b-surface: rgba(36, 36, 36, 1);\n --b-surface-disabled: rgba(141, 141, 141, 1);\n --b-surface-raised: rgba(53, 53, 53, 1);\n --b-surface-raised-hover: rgba(36, 36, 36, 1);\n --b-surface-raised-pressed: rgba(36, 36, 36, 1);\n --b-surface-separator: rgba(100, 100, 100, 1);\n --b-surface-subtle: rgba(100, 100, 100, 1);\n --b-text-disabled: rgba(175, 175, 175, 1);\n --b-text-helper: rgba(247, 245, 245, 1);\n --b-text-label: rgba(255, 255, 255, 1);\n --b-text-link-default: rgba(96, 165, 250, 1);\n --b-text-link-disabled: rgba(29, 78, 216, 1);\n --b-text-link-hover: rgba(147, 197, 253, 1);\n --b-text-link-pressed: rgba(191, 219, 254, 1);\n --b-text-placeholder: rgba(201, 201, 201, 1);\n --b-text-selection: rgba(53, 53, 53, 1);\n}\n","/*\n * DatePicker Day button CSS overrides.\n *\n * These use pseudo-class + child combinator selectors (e.g. \":hover > div\")\n * that StyleX cannot express. Conditional logic previously handled via JS\n * spreading is now encoded with data-attribute selectors.\n */\n\n/* Hover: only when not selected and not disabled */\n.beam-day-button:hover:not(:active):not([data-selected]):not([data-disabled]) > div {\n background-color: rgba(247, 245, 245, 1); /* Gray100 */\n}\n\n/* Active: only when not disabled */\n.beam-day-button:not([data-disabled]):active > div {\n background-color: rgba(201, 201, 201, 1); /* Gray400 */\n color: rgba(36, 36, 36, 1); /* Gray900 */\n}\n\n/* Focus: always applied (default blue700 border) */\n.beam-day-button:focus:not(:active) > div {\n border-style: solid;\n border-width: 1px;\n border-color: rgba(29, 78, 216, 1); /* Blue700 */\n}\n\n/* Focus when selected: override border to blue900 */\n.beam-day-button[data-selected]:focus:not(:active) > div {\n border-color: rgba(30, 58, 138, 1); /* Blue900 */\n}\n",":root {\n /* Modified by Beam (40 -> 32) */\n --rdp-cell-size: 32px;\n /* Modified by Beam (#0000ff -> Blue700) */\n --rdp-accent-color: rgba(3, 105, 161, 1);\n --rdp-background-color: #e7edff;\n /* Switch to dark colors for dark themes */\n --rdp-accent-color-dark: #3003e1;\n --rdp-background-color-dark: #180270;\n /* Outline border for focused elements */\n --rdp-outline: 2px solid var(--rdp-accent-color);\n /* Outline border for focused and selected elements */\n /* Modified by Beam (rgba(0, 0, 0, 0.75) -> Blue700) */\n --rdp-outline-selected: 2px solid rgba(3, 105, 161, 1);\n}\n\n/* Added in By Beam */\n.rdp-cell:focus-visible {\n outline: 0;\n}\n\n.rdp {\n /* Modified by Beam (1em -> 16px) */\n margin: 16px;\n}\n\n/* Hide elements for devices that are not screen readers */\n.rdp-vhidden {\n box-sizing: border-box;\n padding: 0;\n margin: 0;\n background: transparent;\n border: 0;\n -moz-appearance: none;\n -webkit-appearance: none;\n appearance: none;\n position: absolute !important;\n top: 0;\n width: 1px !important;\n height: 1px !important;\n padding: 0 !important;\n overflow: hidden !important;\n clip: rect(1px, 1px, 1px, 1px) !important;\n border: 0 !important;\n}\n\n/* Buttons */\n.rdp-button_reset {\n appearance: none;\n position: relative;\n margin: 0;\n padding: 0;\n cursor: default;\n color: inherit;\n outline: none;\n background: none;\n font: inherit;\n\n -moz-appearance: none;\n -webkit-appearance: none;\n}\n\n.rdp-button {\n border: 2px solid transparent;\n}\n\n.rdp-button[aria-disabled=\"true\"] {\n opacity: 0.25;\n pointer-events: none;\n}\n\n.rdp-button:not([aria-disabled=\"true\"]) {\n cursor: pointer;\n}\n\n.rdp-button:focus,\n.rdp-button:active {\n color: inherit;\n border: var(--rdp-outline);\n background-color: var(--rdp-background-color);\n}\n\n.rdp-button:hover:not([aria-disabled=\"true\"]) {\n background-color: var(--rdp-background-color);\n}\n\n.rdp-months {\n display: flex;\n}\n\n.rdp-month {\n margin: 0 1em;\n}\n\n.rdp-month:first-child {\n margin-left: 0;\n}\n\n.rdp-month:last-child {\n margin-right: 0;\n}\n\n.rdp-table {\n margin: 0;\n max-width: calc(var(--rdp-cell-size) * 7);\n border-collapse: collapse;\n}\n\n.rdp-with_weeknumber .rdp-table {\n max-width: calc(var(--rdp-cell-size) * 8);\n border-collapse: collapse;\n}\n\n.rdp-caption {\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: 0;\n text-align: left;\n}\n\n.rdp-multiple_months .rdp-caption {\n position: relative;\n display: block;\n text-align: center;\n}\n\n.rdp-caption_dropdowns {\n position: relative;\n display: inline-flex;\n}\n\n.rdp-caption_label {\n position: relative;\n z-index: 1;\n display: inline-flex;\n align-items: center;\n margin: 0;\n padding: 0 0.25em;\n white-space: nowrap;\n color: currentColor;\n border: 0;\n border: 2px solid transparent;\n font-family: inherit;\n font-size: 140%;\n font-weight: bold;\n}\n\n.rdp-nav {\n white-space: nowrap;\n}\n\n.rdp-multiple_months .rdp-caption_start .rdp-nav {\n position: absolute;\n top: 50%;\n left: 0;\n transform: translateY(-50%);\n}\n\n.rdp-multiple_months .rdp-caption_end .rdp-nav {\n position: absolute;\n top: 50%;\n right: 0;\n transform: translateY(-50%);\n}\n\n.rdp-nav_button {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n width: var(--rdp-cell-size);\n height: var(--rdp-cell-size);\n padding: 0.25em;\n border-radius: 100%;\n}\n\n/* ---------- */\n/* Dropdowns */\n/* ---------- */\n\n.rdp-dropdown_year,\n.rdp-dropdown_month {\n position: relative;\n display: inline-flex;\n align-items: center;\n}\n\n.rdp-dropdown {\n appearance: none;\n position: absolute;\n z-index: 2;\n top: 0;\n bottom: 0;\n left: 0;\n width: 100%;\n margin: 0;\n padding: 0;\n cursor: inherit;\n opacity: 0;\n border: none;\n background-color: transparent;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\n.rdp-dropdown[disabled] {\n opacity: unset;\n color: unset;\n}\n\n.rdp-dropdown:focus:not([disabled]) + .rdp-caption_label,\n.rdp-dropdown:active:not([disabled]) + .rdp-caption_label {\n border: var(--rdp-outline);\n border-radius: 6px;\n background-color: var(--rdp-background-color);\n}\n\n.rdp-dropdown_icon {\n margin: 0 0 0 5px;\n}\n\n.rdp-head {\n border: 0;\n}\n\n.rdp-head_row,\n.rdp-row {\n height: 100%;\n}\n\n.rdp-head_cell {\n vertical-align: middle;\n text-transform: uppercase;\n font-size: 0.75em;\n font-weight: 700;\n text-align: center;\n height: 100%;\n height: var(--rdp-cell-size);\n padding: 0;\n}\n\n.rdp-tbody {\n border: 0;\n}\n\n.rdp-tfoot {\n margin: 0.5em;\n}\n\n.rdp-cell {\n width: var(--rdp-cell-size);\n height: 100%;\n height: var(--rdp-cell-size);\n padding: 0;\n text-align: center;\n}\n\n.rdp-weeknumber {\n font-size: 0.75em;\n}\n\n.rdp-weeknumber,\n.rdp-day {\n display: flex;\n overflow: hidden;\n align-items: center;\n justify-content: center;\n box-sizing: border-box;\n width: var(--rdp-cell-size);\n max-width: var(--rdp-cell-size);\n height: var(--rdp-cell-size);\n margin: 0;\n border: 2px solid transparent;\n border-radius: 100%;\n}\n\n.rdp-day_today:not(.rdp-day_outside) {\n font-weight: bold;\n}\n\n.rdp-day_selected:not([aria-disabled=\"true\"]),\n.rdp-day_selected:focus:not([aria-disabled=\"true\"]),\n.rdp-day_selected:active:not([aria-disabled=\"true\"]),\n.rdp-day_selected:hover:not([aria-disabled=\"true\"]) {\n color: white;\n background-color: var(--rdp-accent-color);\n}\n\n.rdp-day_selected:focus:not([aria-disabled=\"true\"]) {\n border: var(--rdp-outline-selected);\n}\n\n.rdp:not([dir=\"rtl\"]) .rdp-day_range_start:not(.rdp-day_range_end) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.rdp:not([dir=\"rtl\"]) .rdp-day_range_end:not(.rdp-day_range_start) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.rdp[dir=\"rtl\"] .rdp-day_range_start:not(.rdp-day_range_end) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.rdp[dir=\"rtl\"] .rdp-day_range_end:not(.rdp-day_range_start) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.rdp-day_range_end.rdp-day_range_start {\n border-radius: 100%;\n}\n\n.rdp-day_range_middle {\n border-radius: 0;\n}\n","/*\n * Trix editor and Tribute autocomplete CSS overrides.\n *\n * These style third-party DOM elements that we don't control,\n * extracted from inline Emotion styles to a plain CSS file\n * (StyleX cannot style third-party DOM).\n */\n\n/* Wrapper container */\n.beam-trix-editor {\n position: relative;\n word-break: break-word;\n border-radius: 4px;\n border-color: rgba(221, 220, 220, 1);\n border-style: solid;\n border-width: 1px;\n background-color: rgba(255, 255, 255, 1);\n /* Put the toolbar on the bottom */\n display: flex;\n flex-direction: column-reverse;\n gap: 8px;\n}\n\n/* Highlight on focus */\n.beam-trix-editor:focus-within {\n border-color: rgba(29, 78, 216, 1);\n}\n\n/* Basic editor styles (copy/paste from TextFieldBase) */\n.beam-trix-editor trix-editor {\n background-color: rgba(255, 255, 255, 1);\n font-weight: 400;\n font-size: 14px;\n line-height: 20px;\n color: rgba(36, 36, 36, 1);\n border-style: none;\n border-width: 0;\n padding: 8px;\n}\n\n.beam-trix-editor trix-toolbar {\n margin: 8px;\n}\n\n/* Make the buttons closer to ours */\n.beam-trix-editor .trix-button:not(:first-of-type) {\n border-style: none;\n border-width: 0;\n}\n\n.beam-trix-editor .trix-button-group {\n border-style: none;\n border-width: 0;\n margin: 0;\n}\n\n.beam-trix-editor .trix-button {\n background-color: rgba(255, 255, 255, 1);\n font-weight: 400;\n font-size: 14px;\n line-height: 20px;\n}\n\n/* Height is hard-coded to 1.6 in trix, and the default width is wider than we want */\n.beam-trix-editor .trix-button--icon {\n width: 1.6em;\n padding: 0;\n margin-left: 4px;\n margin-right: 4px;\n border-style: none;\n border-width: 0;\n}\n\n/* Icons are hard-coded SVGs, so this is a simpler way to get lighter gray */\n.beam-trix-editor .trix-button--icon::before {\n opacity: 0.3;\n}\n\n/* Trix defaults to active = blue bg — turn that off + make icon darker */\n.beam-trix-editor .trix-button.trix-active {\n background-color: rgba(255, 255, 255, 1);\n opacity: 0.7;\n}\n\n/* We don't support file attachment yet, so hide that control */\n.beam-trix-editor .trix-button-group--file-tools {\n display: none;\n}\n\n/* Unused buttons we want to hide */\n.beam-trix-editor .trix-button--icon-heading-1 {\n display: none;\n}\n\n.beam-trix-editor .trix-button--icon-code {\n display: none;\n}\n\n.beam-trix-editor .trix-button--icon-quote {\n display: none;\n}\n\n.beam-trix-editor .trix-button--icon-increase-nesting-level {\n display: none;\n}\n\n.beam-trix-editor .trix-button--icon-decrease-nesting-level {\n display: none;\n}\n\n.beam-trix-editor .trix-button-group--history-tools {\n display: none;\n}\n\n/* Style the @ mention box (Tribute) */\n.tribute-container {\n min-width: 300px;\n}\n\n.tribute-container > ul {\n font-weight: 400;\n font-size: 14px;\n line-height: 20px;\n background-color: rgba(255, 255, 255, 1);\n border-style: solid;\n border-width: 1px;\n border-radius: 4px;\n border-color: rgba(29, 78, 216, 1);\n overflow: hidden;\n}\n",".beam-copy > p {\n margin-top: 16px;\n margin-bottom: 16px;\n}\n"],"mappings":";AAOA;AAGE,GAAC,KAAK,CAAC;AACL,WAAO,KAAK,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE;AAC3B;AAEA,GAAC,QAAQ,KAAK,CAJP;AAKL,WAAO,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE;AAC5B;AAMA,aAAW;AACT;AAEE,eAAS;AACX;AACA;AACE,eAAS;AACX;AACF;AAEA,aAAW;AACT;AACE,iBAAW,OAAO;AACpB;AACA;AACE,iBAAW,OAAO;AACpB;AACF;AAEA,aAAW;AACT;AACE,eAAS;AACX;AACF;AAKA,UAAO,wBAAyB;AAC9B;AAAA,IACA,CAAC;AAAA,IACD,CAAC;AACC,0BAAoB;AACpB,iCAA2B;AAC3B,2BAAqB;AACrB,uBAAiB;AACnB;AACF;AAaA;AAAA,EACA,CAAC;AAAA,EACD,CAAC;AACC,gBAAY;AACd;AAMA;AACE,mBAAe;AACf,iBAAa;AACb,cAAU;AACZ;AAOA;AACE,iBAAa;AACb,8BAA0B;AAC5B;AAWA;AACE,YAAQ;AACV;AAMA;AACE;AAAA,MACE,SAAS;AAAA,MACT,aAAa;AAAA,MACqC,UAAU;AAAA,MAC5D,MAAM;AAAA,MACN,SAAS;AAAA,MACT,KAAK;AAAA,MACL,UAAU;AAAA,MACV,mBAAmB;AAAA,MACnB;AACJ;AAYA;AACE,YAAQ;AACR,WAAO;AACT;AAWA,MAAI,CAAC;AACH,6BAAyB,UAAU;AACnC,qBAAiB,UAAU;AAC7B;AAMA;AAAA,EACA;AACE,iBAAa;AACf;AAOA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACE;AAAA,MAAa,YAAY;AAAA,MAAE,cAAc;AAAA,MAAE,QAAQ;AAAA,MAAE,iBAAiB;AAAA,MAAE,KAAK;AAAA,MAAE;AAC/E,eAAW;AACb;AAMA;AACE,eAAW;AACb;AAMA;AAAA,EACA;AACE,eAAW;AACX,iBAAa;AACb,cAAU;AACV,oBAAgB;AAClB;AAEA;AACE,YAAQ;AACV;AAEA;AACE,SAAK;AACP;AAYA;AACE,iBAAa;AACb,kBAAc;AAChB;AAYA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACE,iBAAa;AACb,eAAW;AACX,iBAAa;AACb,YAAQ;AACV;AAOA;AAAA,EACA;AAEE,oBAAgB;AAClB;AAMA;AAAA,EACA,CAAC;AAAA,EACD,CAAC;AACC,wBAAoB;AACtB;AAWA;AACE,aAAS;AACX;AAMA;AACE,oBAAgB;AAClB;AAOA,GAAC;AACC,wBAAoB;AACpB,oBAAgB;AAClB;AAWA;AACE,aAAS;AACX;AAYA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACE,YAAQ;AACV;AAEA;AACE,sBAAkB;AAClB,sBAAkB;AACpB;AAMA;AACE,YAAQ;AACR,aAAS;AACX;AAeA;AACE;AAAA,MACE,KAAK;AAAA,MACL,aAAa;AAAA,MACb,SAAS;AAAA,MACT,aAAa;AAAA,MACb,kBAAkB;AAAA,MAClB,UAAU;AAAA,MACV,MAAM;AAAA,MACN,gBAAgB;AAAA,MAChB,KAAK;AAAA,MACL,WAAW;AAAA,MACX,UAAU;AAAA,MACV,mBAAmB;AAAA,MACnB,gBAAgB;AAAA,MAChB,iBAAiB;AAAA,MACjB;AACF,iBAAa;AACf;AAOA;AACE,iBAAa;AACb,iBAAa;AACf;AAgBA;AAAA,EACA;AAAA,EACA;AACE,gBAAY;AACZ,kBAAc;AAChB;AAMA;AACE,sBAAkB;AACpB;AAYA;AACE,kBAAc;AAChB;AAEA;AACE,YAAQ;AACV;AAEA,OAAK;AAAA,EACL,QAAQ;AACN,WAAO;AACT;AAEA,OAAK;AAAA,EACL,QAAQ;AACN,WAAO;AACT;AAEA,OAAK;AAAA,EACL,QAAQ;AACN,WAAO;AACT;AAEA;AAAA,EACA,CAAC;AACC,YAAQ;AACV;AAEA;AACE,qBAAiB;AACnB;AAEA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACE,eAAW;AACX,iBAAa;AACf;AAOA;AACE,WAAO;AACP,qBAAiB;AACnB;AAUA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACE,aAAS;AACT,iBAAa;AACb,WAAO;AACT;AASA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACE;AAAA,MAAa,YAAY;AAAA,MAAE,cAAc;AAAA,MAAE,KAAK;AAAA,MAAE,MAAM;AAAA,MAAE,QAAQ;AAAA,MAAE,iBAAiB;AAAA,MAAE,aAAa;AAAA,MAAE;AACxG;AAUA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACE,aAAS;AACT,oBAAgB;AAClB;AASA;AAAA,EACA;AACE,eAAW;AACX,YAAQ;AACV;AACF;;;AC3hBA;AACE,kCAAgC,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACpD,kCAAgC,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;AACjD,iCAA+B,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACnD,iCAA+B,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACnD,gCAA8B,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAClD,uBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;AACtC,kCAAgC,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACpD,kCAAgC,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACpD,0BAAwB,KAAK,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE;AAC1C,kCAAgC,KAAK,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE;AAClD,cAAY,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE;AAC9B,sBAAoB,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE;AACtC,qBAAmB,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE;AACrC,4BAA0B,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE;AAC5C,sBAAoB,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE;AACvC,oBAAkB,KAAK,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE;AACpC,wBAAsB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC1C,yBAAuB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC3C,sBAAoB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACxC,4BAA0B,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC9C,0BAAwB,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE;AAC1C,0BAAwB,KAAK,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE;AAC1C,0BAAwB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC5C,2BAAyB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC7C,wBAAsB,KAAK,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE;AACxC,wBAAsB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;AACvC,yBAAuB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC3C,mBAAiB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACrC,sBAAoB,KAAK,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE;AACtC,oBAAkB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACtC,0BAAwB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC5C,0BAAwB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC5C,yBAAuB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC3C,2BAAyB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC7C,gBAAc,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAClC,uBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE;AACvC,yBAAuB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC3C,8BAA4B,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAChD,wBAAsB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC1C,iCAA+B,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACnD,iCAA+B,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACnD,4BAA0B,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC9C,+BAA6B,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACjD,kBAAgB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACpC,kBAAgB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;AACjC,2BAAyB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC7C,wBAAsB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC1C,+BAA6B,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;AAC9C,iCAA+B,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;AAChD,yBAAuB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC3C,uBAAqB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACzC,eAAa,KAAK,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE;AAC/B,qBAAmB,KAAK,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE;AACrC,uBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE;AACvC,aAAW,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;AAC5B,2BAAyB,KAAK,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE;AAC3C,yBAAuB,KAAK,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE;AACxC,eAAa,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACjC,wBAAsB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC1C,sBAAoB,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC/B,4BAA0B,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC9C,8BAA4B,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAChD,yBAAuB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC3C,sBAAoB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACxC,qBAAmB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACvC,mBAAiB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACrC,kBAAgB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACpC,yBAAuB,KAAK,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE;AACzC,0BAAwB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC5C,uBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE;AACvC,yBAAuB,KAAK,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE;AACzC,wBAAsB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC1C,sBAAoB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC1C;AAEA,CAAC;AACC,kCAAgC,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE;AAClD,kCAAgC,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACpD,iCAA+B,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE;AACjD,iCAA+B,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACnD,gCAA8B,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAClD,uBAAqB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACzC,kCAAgC,KAAK,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE;AAClD,kCAAgC,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACpD,0BAAwB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC5C,kCAAgC,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;AACjD,cAAY,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAChC,sBAAoB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;AACrC,wBAAsB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC1C,yBAAuB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC3C,sBAAoB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACxC,4BAA0B,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC9C,0BAAwB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC5C,0BAAwB,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE;AAC3C,0BAAwB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC5C,2BAAyB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC7C,wBAAsB,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE;AACzC,wBAAsB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC1C,yBAAuB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC3C,mBAAiB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACrC,sBAAoB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACxC,oBAAkB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACtC,0BAAwB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;AACzC,0BAAwB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC5C,yBAAuB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;AACxC,2BAAyB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC7C,gBAAc,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAClC,uBAAqB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACzC,yBAAuB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;AACxC,8BAA4B,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAChD,wBAAsB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;AACvC,iCAA+B,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACnD,iCAA+B,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACnD,4BAA0B,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC9C,+BAA6B,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACjD,kBAAgB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACpC,kBAAgB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACpC,2BAAyB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC7C,wBAAsB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC1C,+BAA6B,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACjD,iCAA+B,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACnD,yBAAuB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC3C,uBAAqB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACzC,qBAAmB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;AACpC,uBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE;AACvC,2BAAyB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC7C,yBAAuB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC3C,eAAa,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;AAC9B,wBAAsB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC1C,sBAAoB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;AACrC,4BAA0B,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;AAC3C,8BAA4B,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;AAC7C,yBAAuB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC3C,sBAAoB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACxC,qBAAmB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACvC,mBAAiB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACrC,kBAAgB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACpC,yBAAuB,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE;AAC1C,0BAAwB,KAAK,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE;AAC1C,uBAAqB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACzC,yBAAuB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC3C,wBAAsB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC1C,sBAAoB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;AACvC;;;AC9IA,CAAC,eAAe,MAAM,KAAK,QAAQ,KAAK,CAAC,eAAe,KAAK,CAAC,gBAAgB,EAAE;AAC9E,oBAAkB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACxC;AAGA,CALC,eAKe,KAAK,CAAC,eAAe,QAAQ,EAAE;AAC7C,oBAAkB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACtC,SAAO,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;AAC1B;AAGA,CAXC,eAWe,MAAM,KAAK,SAAS,EAAE;AACpC,gBAAc;AACd,gBAAc;AACd,gBAAc,KAAK,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE;AAClC;AAGA,CAlBC,eAkBe,CAAC,cAAc,MAAM,KAAK,SAAS,EAAE;AACnD,gBAAc,KAAK,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE;AAClC;;;AC7BA;AAEE,mBAAiB;AAEjB,sBAAoB,KAAK,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE;AACtC,0BAAwB;AAExB,2BAAyB;AACzB,+BAA6B;AAE7B,iBAAe,IAAI,MAAM,IAAI;AAG7B,0BAAwB,IAAI,MAAM,KAAK,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE;AACtD;AAGA,CAAC,QAAQ;AACP,WAAS;AACX;AAEA,CAAC;AAEC,UAAQ;AACV;AAGA,CAAC;AACC,cAAY;AACZ,WAAS;AACT,UAAQ;AACR,cAAY;AACZ,UAAQ;AACR,mBAAiB;AACjB,sBAAoB;AACpB,cAAY;AACZ,YAAU;AACV,OAAK;AACL,SAAO;AACP,UAAQ;AACR,WAAS;AACT,YAAU;AACV,QAAM,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAC1B,UAAQ;AACV;AAGA,CAAC;AACC,cAAY;AACZ,YAAU;AACV,UAAQ;AACR,WAAS;AACT,UAAQ;AACR,SAAO;AACP,WAAS;AACT,cAAY;AACZ,QAAM;AAEN,mBAAiB;AACjB,sBAAoB;AACtB;AAEA,CAAC;AACC,UAAQ,IAAI,MAAM;AACpB;AAEA,CAJC,UAIU,CAAC;AACV,WAAS;AACT,kBAAgB;AAClB;AAEA,CATC,UASU,KAAK,CAAC;AACf,UAAQ;AACV;AAEA,CAbC,UAaU;AACX,CAdC,UAcU;AACT,SAAO;AACP,UAAQ,IAAI;AACZ,oBAAkB,IAAI;AACxB;AAEA,CApBC,UAoBU,MAAM,KAAK,CAAC;AACrB,oBAAkB,IAAI;AACxB;AAEA,CAAC;AACC,WAAS;AACX;AAEA,CAAC;AACC,UAAQ,EAAE;AACZ;AAEA,CAJC,SAIS;AACR,eAAa;AACf;AAEA,CARC,SAQS;AACR,gBAAc;AAChB;AAEA,CAAC;AACC,UAAQ;AACR,aAAW,KAAK,IAAI,iBAAiB,EAAE;AACvC,mBAAiB;AACnB;AAEA,CAAC,oBAAoB,CANpB;AAOC,aAAW,KAAK,IAAI,iBAAiB,EAAE;AACvC,mBAAiB;AACnB;AAEA,CAAC;AACC,WAAS;AACT,eAAa;AACb,mBAAiB;AACjB,WAAS;AACT,cAAY;AACd;AAEA,CAAC,oBAAoB,CARpB;AASC,YAAU;AACV,WAAS;AACT,cAAY;AACd;AAEA,CAAC;AACC,YAAU;AACV,WAAS;AACX;AAEA,CAAC;AACC,YAAU;AACV,WAAS;AACT,WAAS;AACT,eAAa;AACb,UAAQ;AACR,WAAS,EAAE;AACX,eAAa;AACb,SAAO;AACP,UAAQ;AACR,UAAQ,IAAI,MAAM;AAClB,eAAa;AACb,aAAW;AACX,eAAa;AACf;AAEA,CAAC;AACC,eAAa;AACf;AAEA,CA/BC,oBA+BoB,CAAC,kBAAkB,CAJvC;AAKC,YAAU;AACV,OAAK;AACL,QAAM;AACN,aAAW,WAAW;AACxB;AAEA,CAtCC,oBAsCoB,CAAC,gBAAgB,CAXrC;AAYC,YAAU;AACV,OAAK;AACL,SAAO;AACP,aAAW,WAAW;AACxB;AAEA,CAAC;AACC,WAAS;AACT,eAAa;AACb,mBAAiB;AACjB,SAAO,IAAI;AACX,UAAQ,IAAI;AACZ,WAAS;AACT,iBAAe;AACjB;AAMA,CAAC;AACD,CAAC;AACC,YAAU;AACV,WAAS;AACT,eAAa;AACf;AAEA,CAAC;AACC,cAAY;AACZ,YAAU;AACV,WAAS;AACT,OAAK;AACL,UAAQ;AACR,QAAM;AACN,SAAO;AACP,UAAQ;AACR,WAAS;AACT,UAAQ;AACR,WAAS;AACT,UAAQ;AACR,oBAAkB;AAClB,eAAa;AACb,aAAW;AACX,eAAa;AACf;AAEA,CAnBC,YAmBY,CAAC;AACZ,WAAS;AACT,SAAO;AACT;AAEA,CAxBC,YAwBY,MAAM,KAAK,CAAC,WAAW,EAAE,CA/ErC;AAgFD,CAzBC,YAyBY,OAAO,KAAK,CAAC,WAAW,EAAE,CAhFtC;AAiFC,UAAQ,IAAI;AACZ,iBAAe;AACf,oBAAkB,IAAI;AACxB;AAEA,CAAC;AACC,UAAQ,EAAE,EAAE,EAAE;AAChB;AAEA,CAAC;AACC,UAAQ;AACV;AAEA,CAAC;AACD,CAAC;AACC,UAAQ;AACV;AAEA,CAAC;AACC,kBAAgB;AAChB,kBAAgB;AAChB,aAAW;AACX,eAAa;AACb,cAAY;AACZ,UAAQ;AACR,UAAQ,IAAI;AACZ,WAAS;AACX;AAEA,CAAC;AACC,UAAQ;AACV;AAEA,CAAC;AACC,UAAQ;AACV;AAEA,CAzOC;AA0OC,SAAO,IAAI;AACX,UAAQ;AACR,UAAQ,IAAI;AACZ,WAAS;AACT,cAAY;AACd;AAEA,CAAC;AACC,aAAW;AACb;AAEA,CAJC;AAKD,CAAC;AACC,WAAS;AACT,YAAU;AACV,eAAa;AACb,mBAAiB;AACjB,cAAY;AACZ,SAAO,IAAI;AACX,aAAW,IAAI;AACf,UAAQ,IAAI;AACZ,UAAQ;AACR,UAAQ,IAAI,MAAM;AAClB,iBAAe;AACjB;AAEA,CAAC,aAAa,KAAK,CAAC;AAClB,eAAa;AACf;AAEA,CAAC,gBAAgB,KAAK,CAAC;AACvB,CADC,gBACgB,MAAM,KAAK,CAAC;AAC7B,CAFC,gBAEgB,OAAO,KAAK,CAAC;AAC9B,CAHC,gBAGgB,MAAM,KAAK,CAAC;AAC3B,SAAO;AACP,oBAAkB,IAAI;AACxB;AAEA,CARC,gBAQgB,MAAM,KAAK,CAAC;AAC3B,UAAQ,IAAI;AACd;AAEA,CAhRC,GAgRG,KAAK,CAAC,UAAY,CAAC,mBAAmB,KAAK,CAAC;AAC9C,2BAAyB;AACzB,8BAA4B;AAC9B;AAEA,CArRC,GAqRG,KAAK,CAAC,UAAY,CAL0B,iBAKR,KAAK,CALtB;AAMrB,0BAAwB;AACxB,6BAA2B;AAC7B;AAEA,CA1RC,GA0RG,CAAC,SAAW,CAVO,mBAUa,KAAK,CAVO;AAW9C,0BAAwB;AACxB,6BAA2B;AAC7B;AAEA,CA/RC,GA+RG,CAAC,SAAW,CAfgC,iBAed,KAAK,CAfhB;AAgBrB,2BAAyB;AACzB,8BAA4B;AAC9B;AAEA,CApBgD,iBAoB9B,CApBK;AAqBrB,iBAAe;AACjB;AAEA,CAAC;AACC,iBAAe;AACjB;;;ACtTA,CAAC;AACC,YAAU;AACV,cAAY;AACZ,iBAAe;AACf,gBAAc,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAClC,gBAAc;AACd,gBAAc;AACd,oBAAkB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AAEtC,WAAS;AACT,kBAAgB;AAChB,OAAK;AACP;AAGA,CAfC,gBAegB;AACf,gBAAc,KAAK,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE;AAClC;AAGA,CApBC,iBAoBiB;AAChB,oBAAkB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACtC,eAAa;AACb,aAAW;AACX,eAAa;AACb,SAAO,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE;AACxB,gBAAc;AACd,gBAAc;AACd,WAAS;AACX;AAEA,CA/BC,iBA+BiB;AAChB,UAAQ;AACV;AAGA,CApCC,iBAoCiB,CAAC,WAAW,KAAK;AACjC,gBAAc;AACd,gBAAc;AAChB;AAEA,CAzCC,iBAyCiB,CAAC;AACjB,gBAAc;AACd,gBAAc;AACd,UAAQ;AACV;AAEA,CA/CC,iBA+CiB,CAXC;AAYjB,oBAAkB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACtC,eAAa;AACb,aAAW;AACX,eAAa;AACf;AAGA,CAvDC,iBAuDiB,CAAC;AACjB,SAAO;AACP,WAAS;AACT,eAAa;AACb,gBAAc;AACd,gBAAc;AACd,gBAAc;AAChB;AAGA,CAjEC,iBAiEiB,CAVC,iBAUiB;AAClC,WAAS;AACX;AAGA,CAtEC,iBAsEiB,CAlCC,WAkCW,CAAC;AAC7B,oBAAkB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACtC,WAAS;AACX;AAGA,CA5EC,iBA4EiB,CAAC;AACjB,WAAS;AACX;AAGA,CAjFC,iBAiFiB,CAAC;AACjB,WAAS;AACX;AAEA,CArFC,iBAqFiB,CAAC;AACjB,WAAS;AACX;AAEA,CAzFC,iBAyFiB,CAAC;AACjB,WAAS;AACX;AAEA,CA7FC,iBA6FiB,CAAC;AACjB,WAAS;AACX;AAEA,CAjGC,iBAiGiB,CAAC;AACjB,WAAS;AACX;AAEA,CArGC,iBAqGiB,CAAC;AACjB,WAAS;AACX;AAGA,CAAC;AACC,aAAW;AACb;AAEA,CAJC,kBAIkB,EAAE;AACnB,eAAa;AACb,aAAW;AACX,eAAa;AACb,oBAAkB,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE;AACtC,gBAAc;AACd,gBAAc;AACd,iBAAe;AACf,gBAAc,KAAK,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE;AAChC,YAAU;AACZ;;;ACjIA,CAAC,UAAU,EAAE;AACX,cAAY;AACZ,iBAAe;AACjB;","names":[]}
|
package/dist/index.d.cts
CHANGED
|
@@ -88,6 +88,9 @@ declare enum Tokens {
|
|
|
88
88
|
OnSurface = "--b-on-surface",
|
|
89
89
|
OnSurfaceMuted = "--b-on-surface-muted",
|
|
90
90
|
OnSurfaceSubtle = "--b-on-surface-subtle",
|
|
91
|
+
OnSurfaceDisabled = "--b-on-surface-disabled",
|
|
92
|
+
OnSurfaceRaisedHover = "--b-on-surface-raised-hover",
|
|
93
|
+
OnSurfaceRaisedPressed = "--b-on-surface-raised-pressed",
|
|
91
94
|
PopoverSurface = "--b-popover-surface",
|
|
92
95
|
Primary = "--b-primary",
|
|
93
96
|
PrimaryHover = "--b-primary-hover",
|
|
@@ -96,6 +99,10 @@ declare enum Tokens {
|
|
|
96
99
|
SelectionIndicator = "--b-selection-indicator",
|
|
97
100
|
StatusSuccessFg = "--b-status-success-fg",
|
|
98
101
|
Surface = "--b-surface",
|
|
102
|
+
SurfaceRaised = "--b-surface-raised",
|
|
103
|
+
SurfaceRaisedHover = "--b-surface-raised-hover",
|
|
104
|
+
SurfaceRaisedPressed = "--b-surface-raised-pressed",
|
|
105
|
+
SurfaceDisabled = "--b-surface-disabled",
|
|
99
106
|
SurfaceSeparator = "--b-surface-separator",
|
|
100
107
|
SurfaceSubtle = "--b-surface-subtle",
|
|
101
108
|
TextDisabled = "--b-text-disabled",
|
|
@@ -4929,6 +4936,12 @@ type IconButtonProps = {
|
|
|
4929
4936
|
* for screen readers without showing the tooltip. An explicit `tooltip` or disabled reason still shows.
|
|
4930
4937
|
*/
|
|
4931
4938
|
preventTooltip?: boolean;
|
|
4939
|
+
/** Storybook-only visual state overrides for snapshotting pseudo-interactions. */
|
|
4940
|
+
__storyState?: {
|
|
4941
|
+
hovered?: boolean;
|
|
4942
|
+
focusVisible?: boolean;
|
|
4943
|
+
pressed?: boolean;
|
|
4944
|
+
};
|
|
4932
4945
|
} & BeamButtonProps & BeamFocusableProps;
|
|
4933
4946
|
declare function IconButton(props: IconButtonProps): JSX.Element;
|
|
4934
4947
|
|
package/dist/index.d.ts
CHANGED
|
@@ -88,6 +88,9 @@ declare enum Tokens {
|
|
|
88
88
|
OnSurface = "--b-on-surface",
|
|
89
89
|
OnSurfaceMuted = "--b-on-surface-muted",
|
|
90
90
|
OnSurfaceSubtle = "--b-on-surface-subtle",
|
|
91
|
+
OnSurfaceDisabled = "--b-on-surface-disabled",
|
|
92
|
+
OnSurfaceRaisedHover = "--b-on-surface-raised-hover",
|
|
93
|
+
OnSurfaceRaisedPressed = "--b-on-surface-raised-pressed",
|
|
91
94
|
PopoverSurface = "--b-popover-surface",
|
|
92
95
|
Primary = "--b-primary",
|
|
93
96
|
PrimaryHover = "--b-primary-hover",
|
|
@@ -96,6 +99,10 @@ declare enum Tokens {
|
|
|
96
99
|
SelectionIndicator = "--b-selection-indicator",
|
|
97
100
|
StatusSuccessFg = "--b-status-success-fg",
|
|
98
101
|
Surface = "--b-surface",
|
|
102
|
+
SurfaceRaised = "--b-surface-raised",
|
|
103
|
+
SurfaceRaisedHover = "--b-surface-raised-hover",
|
|
104
|
+
SurfaceRaisedPressed = "--b-surface-raised-pressed",
|
|
105
|
+
SurfaceDisabled = "--b-surface-disabled",
|
|
99
106
|
SurfaceSeparator = "--b-surface-separator",
|
|
100
107
|
SurfaceSubtle = "--b-surface-subtle",
|
|
101
108
|
TextDisabled = "--b-text-disabled",
|
|
@@ -4929,6 +4936,12 @@ type IconButtonProps = {
|
|
|
4929
4936
|
* for screen readers without showing the tooltip. An explicit `tooltip` or disabled reason still shows.
|
|
4930
4937
|
*/
|
|
4931
4938
|
preventTooltip?: boolean;
|
|
4939
|
+
/** Storybook-only visual state overrides for snapshotting pseudo-interactions. */
|
|
4940
|
+
__storyState?: {
|
|
4941
|
+
hovered?: boolean;
|
|
4942
|
+
focusVisible?: boolean;
|
|
4943
|
+
pressed?: boolean;
|
|
4944
|
+
};
|
|
4932
4945
|
} & BeamButtonProps & BeamFocusableProps;
|
|
4933
4946
|
declare function IconButton(props: IconButtonProps): JSX.Element;
|
|
4934
4947
|
|
package/dist/index.js
CHANGED
|
@@ -69,6 +69,9 @@ var Tokens = /* @__PURE__ */ ((Tokens2) => {
|
|
|
69
69
|
Tokens2["OnSurface"] = "--b-on-surface";
|
|
70
70
|
Tokens2["OnSurfaceMuted"] = "--b-on-surface-muted";
|
|
71
71
|
Tokens2["OnSurfaceSubtle"] = "--b-on-surface-subtle";
|
|
72
|
+
Tokens2["OnSurfaceDisabled"] = "--b-on-surface-disabled";
|
|
73
|
+
Tokens2["OnSurfaceRaisedHover"] = "--b-on-surface-raised-hover";
|
|
74
|
+
Tokens2["OnSurfaceRaisedPressed"] = "--b-on-surface-raised-pressed";
|
|
72
75
|
Tokens2["PopoverSurface"] = "--b-popover-surface";
|
|
73
76
|
Tokens2["Primary"] = "--b-primary";
|
|
74
77
|
Tokens2["PrimaryHover"] = "--b-primary-hover";
|
|
@@ -77,6 +80,10 @@ var Tokens = /* @__PURE__ */ ((Tokens2) => {
|
|
|
77
80
|
Tokens2["SelectionIndicator"] = "--b-selection-indicator";
|
|
78
81
|
Tokens2["StatusSuccessFg"] = "--b-status-success-fg";
|
|
79
82
|
Tokens2["Surface"] = "--b-surface";
|
|
83
|
+
Tokens2["SurfaceRaised"] = "--b-surface-raised";
|
|
84
|
+
Tokens2["SurfaceRaisedHover"] = "--b-surface-raised-hover";
|
|
85
|
+
Tokens2["SurfaceRaisedPressed"] = "--b-surface-raised-pressed";
|
|
86
|
+
Tokens2["SurfaceDisabled"] = "--b-surface-disabled";
|
|
80
87
|
Tokens2["SurfaceSeparator"] = "--b-surface-separator";
|
|
81
88
|
Tokens2["SurfaceSubtle"] = "--b-surface-subtle";
|
|
82
89
|
Tokens2["TextDisabled"] = "--b-text-disabled";
|
|
@@ -5364,7 +5371,8 @@ function IconButton(props) {
|
|
|
5364
5371
|
download = false,
|
|
5365
5372
|
forceFocusStyles = false,
|
|
5366
5373
|
label,
|
|
5367
|
-
preventTooltip = false
|
|
5374
|
+
preventTooltip = false,
|
|
5375
|
+
__storyState
|
|
5368
5376
|
} = props;
|
|
5369
5377
|
const isDisabled = !!disabled;
|
|
5370
5378
|
const ariaProps = {
|
|
@@ -5375,20 +5383,25 @@ function IconButton(props) {
|
|
|
5375
5383
|
};
|
|
5376
5384
|
const ref = useGetRef(buttonRef);
|
|
5377
5385
|
const {
|
|
5378
|
-
buttonProps
|
|
5386
|
+
buttonProps,
|
|
5387
|
+
isPressed: isPressedFromEvents
|
|
5379
5388
|
} = useButton({
|
|
5380
5389
|
...ariaProps,
|
|
5381
5390
|
onPress: typeof onPress === "string" ? noop : onPress,
|
|
5382
5391
|
elementType: typeof onPress === "string" ? "a" : "button"
|
|
5383
5392
|
}, ref);
|
|
5393
|
+
const isPressed = __storyState?.pressed ?? isPressedFromEvents;
|
|
5394
|
+
const isPressing = isPressed || active;
|
|
5384
5395
|
const {
|
|
5385
5396
|
focusProps,
|
|
5386
|
-
isFocusVisible
|
|
5397
|
+
isFocusVisible: isFocusVisibleFromEvents
|
|
5387
5398
|
} = useFocusRing(ariaProps);
|
|
5388
5399
|
const {
|
|
5389
5400
|
hoverProps,
|
|
5390
|
-
isHovered
|
|
5401
|
+
isHovered: isHoveredFromEvents
|
|
5391
5402
|
} = useHover(ariaProps);
|
|
5403
|
+
const isHovered = __storyState?.hovered ?? isHoveredFromEvents;
|
|
5404
|
+
const isFocusVisible = __storyState?.focusVisible ?? isFocusVisibleFromEvents;
|
|
5392
5405
|
const testIds = useTestIds(props, icon);
|
|
5393
5406
|
const isCircle = variant === "circle";
|
|
5394
5407
|
const isOutline = variant === "outline";
|
|
@@ -5405,7 +5418,7 @@ function IconButton(props) {
|
|
|
5405
5418
|
...base,
|
|
5406
5419
|
...isHovered && hover,
|
|
5407
5420
|
...(isFocusVisible || forceFocusStyles) && focus,
|
|
5408
|
-
...
|
|
5421
|
+
...isPressing && pressed,
|
|
5409
5422
|
...isDisabled && iconButtonStylesDisabled,
|
|
5410
5423
|
...bgColor && {
|
|
5411
5424
|
backgroundColor: ["bgColor_var", {
|
|
@@ -5413,7 +5426,7 @@ function IconButton(props) {
|
|
|
5413
5426
|
}]
|
|
5414
5427
|
}
|
|
5415
5428
|
};
|
|
5416
|
-
}, [isHovered, isFocusVisible, isDisabled, compact, isCircle, isOutline,
|
|
5429
|
+
}, [isHovered, isFocusVisible, isDisabled, compact, isCircle, isOutline, isPressing, bgColor, forceFocusStyles]);
|
|
5417
5430
|
const iconColor = isCircle ? circleIconColor : defaultIconColor;
|
|
5418
5431
|
const buttonAttrs = {
|
|
5419
5432
|
...testIds,
|
|
@@ -5424,7 +5437,7 @@ function IconButton(props) {
|
|
|
5424
5437
|
...mergeProps2(typeof onPress === "string" ? navLink : void 0, void 0, styles),
|
|
5425
5438
|
"aria-label": label
|
|
5426
5439
|
};
|
|
5427
|
-
const buttonContent = /* @__PURE__ */ jsx11(Icon, { icon, color: color || (isDisabled ? "--b-
|
|
5440
|
+
const buttonContent = /* @__PURE__ */ jsx11(Icon, { icon, color: color || (isDisabled ? "--b-on-surface-disabled" /* OnSurfaceDisabled */ : isOutline && isPressing ? "--b-on-surface-raised-pressed" /* OnSurfaceRaisedPressed */ : isOutline && isHovered ? "--b-on-surface-raised-hover" /* OnSurfaceRaisedHover */ : isCircle && (isHovered || active || isFocusVisible) ? defaultIconColor : iconColor), bgColor, inc: compact ? 2 : isCircle ? 2.5 : inc });
|
|
5428
5441
|
return maybeTooltip({
|
|
5429
5442
|
title: resolveTooltip(disabled ?? (preventTooltip ? void 0 : label), tooltip),
|
|
5430
5443
|
placement: "top",
|
|
@@ -5445,7 +5458,10 @@ var iconButtonStylesReset = {
|
|
|
5445
5458
|
transition: "transition"
|
|
5446
5459
|
};
|
|
5447
5460
|
var iconButtonStylesDisabled = {
|
|
5448
|
-
cursor: "cursorNotAllowed"
|
|
5461
|
+
cursor: "cursorNotAllowed",
|
|
5462
|
+
backgroundColor: ["bgColor_var", {
|
|
5463
|
+
"--backgroundColor": "var(--b-surface-disabled)"
|
|
5464
|
+
}]
|
|
5449
5465
|
};
|
|
5450
5466
|
var variantStyles = {
|
|
5451
5467
|
default: {
|
|
@@ -5520,26 +5536,28 @@ var variantStyles = {
|
|
|
5520
5536
|
borderRadius: "br8",
|
|
5521
5537
|
width: "w_42px",
|
|
5522
5538
|
height: "h_40px",
|
|
5523
|
-
backgroundColor: ["bgColor_var", {
|
|
5524
|
-
"--backgroundColor": "var(--b-surface)"
|
|
5525
|
-
}],
|
|
5526
5539
|
borderColor: "bcGray300",
|
|
5527
5540
|
borderStyle: "bss",
|
|
5528
5541
|
borderWidth: "bw1",
|
|
5529
5542
|
display: "df",
|
|
5530
5543
|
justifyContent: "jcc",
|
|
5531
|
-
alignItems: "aic"
|
|
5544
|
+
alignItems: "aic",
|
|
5545
|
+
backgroundColor: ["bgColor_var", {
|
|
5546
|
+
"--backgroundColor": "var(--b-surface-raised)"
|
|
5547
|
+
}]
|
|
5532
5548
|
},
|
|
5533
5549
|
hover: {
|
|
5534
5550
|
backgroundColor: ["bgColor_var", {
|
|
5535
|
-
"--backgroundColor": "var(--b-
|
|
5551
|
+
"--backgroundColor": "var(--b-surface-raised-hover)"
|
|
5536
5552
|
}]
|
|
5537
5553
|
},
|
|
5538
5554
|
focus: {
|
|
5539
5555
|
boxShadow: "bshFocus"
|
|
5540
5556
|
},
|
|
5541
5557
|
pressed: {
|
|
5542
|
-
backgroundColor: "
|
|
5558
|
+
backgroundColor: ["bgColor_var", {
|
|
5559
|
+
"--backgroundColor": "var(--b-surface-raised-pressed)"
|
|
5560
|
+
}]
|
|
5543
5561
|
}
|
|
5544
5562
|
}
|
|
5545
5563
|
};
|
|
@@ -6484,7 +6502,7 @@ var ColumnStates = class {
|
|
|
6484
6502
|
}
|
|
6485
6503
|
setVisibleColumns(ids) {
|
|
6486
6504
|
for (const cs of this.map.values()) {
|
|
6487
|
-
cs.setVisible(ids.includes(cs.column.id));
|
|
6505
|
+
cs.setVisible(cs.column.isLayoutGutter ? true : ids.includes(cs.column.id));
|
|
6488
6506
|
}
|
|
6489
6507
|
}
|
|
6490
6508
|
loadExpanded(storageKey) {
|
|
@@ -23105,7 +23123,9 @@ function Navbar(props) {
|
|
|
23105
23123
|
} = useContentOverflow(!sm);
|
|
23106
23124
|
const showMobile = sm || overflows;
|
|
23107
23125
|
return /* @__PURE__ */ jsx180(ContrastScope, { children: /* @__PURE__ */ jsxs92("nav", { ...trussProps91({
|
|
23108
|
-
backgroundColor: "
|
|
23126
|
+
backgroundColor: ["bgColor_var", {
|
|
23127
|
+
"--backgroundColor": "var(--b-surface-raised)"
|
|
23128
|
+
}],
|
|
23109
23129
|
flexShrink: "fs0",
|
|
23110
23130
|
display: "df",
|
|
23111
23131
|
alignItems: "aic",
|