@homebound/beam 3.23.1 → 3.25.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/index.css CHANGED
@@ -291,6 +291,10 @@
291
291
  --b-button-tertiary-fg-pressed: rgba(30, 64, 175, 1);
292
292
  --b-danger: rgba(220, 38, 38, 1);
293
293
  --b-danger-pressed: rgba(153, 27, 27, 1);
294
+ --b-env-brand-dev: rgba(88, 206, 32, 1);
295
+ --b-env-brand-local-prod: rgba(239, 68, 68, 1);
296
+ --b-env-brand-prod: rgba(32, 206, 200, 1);
297
+ --b-env-brand-qa: rgba(255, 128, 0, 1);
294
298
  --b-field-bg-default: rgba(255, 255, 255, 1);
295
299
  --b-field-bg-disabled: rgba(247, 245, 245, 1);
296
300
  --b-field-bg-hover: rgba(247, 245, 245, 1);
@@ -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-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-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":[]}
package/dist/index.d.cts CHANGED
@@ -53,6 +53,10 @@ declare enum Tokens {
53
53
  ButtonTertiaryFgPressed = "--b-button-tertiary-fg-pressed",
54
54
  Danger = "--b-danger",
55
55
  DangerPressed = "--b-danger-pressed",
56
+ EnvBrandDev = "--b-env-brand-dev",
57
+ EnvBrandLocalProd = "--b-env-brand-local-prod",
58
+ EnvBrandProd = "--b-env-brand-prod",
59
+ EnvBrandQa = "--b-env-brand-qa",
56
60
  FieldBgDefault = "--b-field-bg-default",
57
61
  FieldBgDisabled = "--b-field-bg-disabled",
58
62
  FieldBgHover = "--b-field-bg-hover",
@@ -1219,6 +1223,18 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
1219
1223
  float(value: Properties["float"]): CssBuilder<T & {
1220
1224
  float: csstype.Property.Float | undefined;
1221
1225
  }, S>;
1226
+ /** Sets `fontStyle: "italic"`. */
1227
+ get fsyi(): CssBuilder<T & {
1228
+ fontStyle: csstype.Property.FontStyle | undefined;
1229
+ }, S>;
1230
+ /** Sets `fontStyle: "normal"`. */
1231
+ get fsynm(): CssBuilder<T & {
1232
+ fontStyle: csstype.Property.FontStyle | undefined;
1233
+ }, S>;
1234
+ /** Sets `fontStyle: value`. */
1235
+ fsy(value: Properties["fontStyle"]): CssBuilder<T & {
1236
+ fontStyle: csstype.Property.FontStyle | undefined;
1237
+ }, S>;
1222
1238
  /** Sets `fontWeight: "normal"`. */
1223
1239
  get fwn(): CssBuilder<T & {
1224
1240
  fontWeight: csstype.Property.FontWeight | undefined;
@@ -6330,6 +6346,28 @@ type DnDGridItemHandleProps = {
6330
6346
  /** Provides a specific handle element for dragging a GridItem. Includes handling behaviors and interactions */
6331
6347
  declare function DnDGridItemHandle(props: DnDGridItemHandleProps): JSX.Element;
6332
6348
 
6349
+ type AppEnvironment = "local" | "dev" | "qa" | "local-prod" | "prod";
6350
+ type ImpersonatedUser = {
6351
+ name: string;
6352
+ };
6353
+ type EnvironmentBannerProps = {
6354
+ env: AppEnvironment;
6355
+ impersonating?: ImpersonatedUser;
6356
+ };
6357
+ /** Environment banner; horizontal/vertical pinning is owned by {@link EnvironmentBannerLayout}. */
6358
+ declare function EnvironmentBanner(props: EnvironmentBannerProps): JSX.Element | null;
6359
+ /** True when {@link EnvironmentBanner} should display: `dev`, `qa`, `local-prod`, or `prod` while impersonating. */
6360
+ declare function shouldShowEnvironmentBanner(env: AppEnvironment, impersonating: ImpersonatedUser | undefined): boolean;
6361
+ /** Fixed banner height (px); {@link EnvironmentBannerLayout} reads this for spacer/CSS var offsets. */
6362
+ declare const environmentBannerSizePx = 32;
6363
+
6364
+ /** App-hosted favicon URLs; `default` is required for envs without a dedicated entry (e.g. `local`). */
6365
+ type EnvironmentFaviconUrls = Partial<Record<AppEnvironment, string>> & {
6366
+ default: string;
6367
+ };
6368
+ /** Set `document.head` favicon from app-hosted URLs. No-op when `favicons` is undefined. Call once at app bootstrap. */
6369
+ declare function setEnvironmentFavicon(env: AppEnvironment, favicons: EnvironmentFaviconUrls | undefined): void;
6370
+
6333
6371
  type TestIds = Record<string, object>;
6334
6372
  /**
6335
6373
  * Provides a way to easily generate `data-testid`s.
@@ -6708,6 +6746,22 @@ type ComboBoxBaseProps<O, V extends Value> = {
6708
6746
  hideErrorMessage?: boolean;
6709
6747
  multiline?: boolean;
6710
6748
  onSearch?: (search: string) => void;
6749
+ /**
6750
+ * Called when the user explicitly selects the synthetic add-new row from the dropdown.
6751
+ * Only supported on single-select fields.
6752
+ *
6753
+ * While the user types, a pseudo-option (e.g. `Add "my value"`) appears at the bottom of the
6754
+ * filtered list when the trimmed input does not exactly match an existing option label
6755
+ * (case-insensitive). It is not shown when the input is empty, or when the input exactly matches
6756
+ * an existing label (e.g. typing "banana" when "Banana" exists).
6757
+ *
6758
+ * The user must focus that row (e.g. arrow down) and confirm with Enter or click; pressing Enter
6759
+ * on the typed text alone does not invoke this callback.
6760
+ *
6761
+ * This callback does not update the field value or call `onSelect` — callers create the new
6762
+ * option (often async) and set `value` themselves, same as before. Beam cannot auto-select here
6763
+ * because the new option's id typically comes from the caller's save/create logic after this fires.
6764
+ */
6711
6765
  onAddNew?: (v: string) => void;
6712
6766
  /**
6713
6767
  * When true (default), options are sorted alphabetically by their label.
@@ -8863,6 +8917,16 @@ declare function useSideNavLayoutContext(): SideNavLayoutContextProps;
8863
8917
  /** Internal: returns true if a `SideNavLayoutProvider` exists above. */
8864
8918
  declare function useHasSideNavLayoutProvider(): boolean;
8865
8919
 
8920
+ type EnvironmentBannerLayoutProps = {
8921
+ /** When provided and {@link shouldShowEnvironmentBanner} is true, renders {@link EnvironmentBanner} and publishes height. */
8922
+ environmentBanner?: EnvironmentBannerProps;
8923
+ children?: ReactNode;
8924
+ };
8925
+ /** Outermost layout shell; optional sticky environment banner above all other chrome. Contract: `docs/layouts.md`. */
8926
+ declare function EnvironmentBannerLayout(props: EnvironmentBannerLayoutProps): JSX.Element;
8927
+
8928
+ /** Effective environment banner height (px); `0` when hidden. */
8929
+ declare const beamEnvironmentBannerLayoutHeightVar = "--beam-environment-banner-height";
8866
8930
  /** Effective navbar height (px) while pinned; `0` when scrolled away. */
8867
8931
  declare const beamNavbarLayoutHeightVar = "--beam-navbar-layout-height";
8868
8932
  /** Effective page header height (px) while pinned; `0` when scrolled away. */
@@ -8879,9 +8943,11 @@ declare const beamTableActionsHeightVar = "--beam-table-actions-height";
8879
8943
  declare function documentScrollChromeLeft(): string;
8880
8944
  /** `width` for document-scroll sticky chrome spanning the visible viewport beside the side nav. */
8881
8945
  declare function documentScrollChromeWidth(): string;
8882
- /** `top` offset below auto-hiding navbar + page header (each var collapses to `0` when scrolled away). */
8946
+ /** CSS `top` offset below the environment banner + auto-hiding navbar. */
8947
+ declare function bannerAndNavbarChromeTop(): string;
8948
+ /** `top` offset below environment banner + auto-hiding navbar + page header (each var collapses to `0` when scrolled away). */
8883
8949
  declare function stickyNavAndHeaderOffset(basePx?: number): string;
8884
- /** `top` offset for sticky table column headers (navbar + page header + table actions). */
8950
+ /** `top` offset for sticky table column headers (environment banner + navbar + page header + table actions). */
8885
8951
  declare function stickyTableHeaderOffset(basePx?: number): string;
8886
8952
 
8887
8953
  type NavbarLayoutProps = {
@@ -8932,9 +8998,12 @@ declare const zIndices: {
8932
8998
  readonly dragHandle: 80;
8933
8999
  readonly sideNav: 100;
8934
9000
  readonly navbar: 120;
9001
+ readonly navbarMobileMenuScrim: 124;
9002
+ readonly navbarMobileMenu: 125;
9003
+ readonly environmentBanner: 130;
8935
9004
  readonly pageOverlay: 1000;
8936
9005
  readonly snackbar: 1100;
8937
9006
  };
8938
9007
  type ZIndex = (typeof zIndices)[keyof typeof zIndices];
8939
9008
 
8940
- export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, type AppNavGroup, type AppNavItem, type AppNavLink, type AppNavSection, type AppNavSectionItem, AutoSaveIndicator, AutoSaveStatus, AutoSaveStatusContext, AutoSaveStatusProvider, Autocomplete, type AutocompleteProps, Avatar, AvatarButton, type AvatarButtonProps, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, Banner, type BannerProps, type BannerTypes, BaseFilter, type BaseQueryTableProps, type BaseTableProps, type BeamButtonProps, type BeamColor, type BeamFocusableProps, BeamProvider, type BeamTextFieldProps, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundIconCardField, type BoundIconCardFieldProps, BoundIconCardGroupField, type BoundIconCardGroupFieldProps, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardProps, type CardTag, type CardType, type CheckFn, Checkbox, CheckboxGroup, type CheckboxGroupItemOption, type CheckboxGroupProps, type CheckboxProps, Chip, type ChipProps, ChipSelectField, type ChipSelectFieldProps, type ChipType, ChipTypes, type ChipValue, Chips, type ChipsProps, CollapseToggle, CollapsedContext, type ColumnLayoutResult, ConfirmCloseModal, type ContentStack, ContrastScope, Copy, CountBadge, type CountBadgeProps, Css, CssReset, type CssSetVarKeys, type CssSetVarScalar, type CssSetVarValue, DESC, DateField, type DateFieldFormat, type DateFieldMode, type DateFieldProps, type DateFilterValue, type DateMatcher, type DateRange, DateRangeField, type DateRangeFieldProps, type DateRangeFilterValue, type DefinedFilterValue, type Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, type DragData, EXPANDABLE_HEADER, EditColumnsButton, ErrorMessage, FieldGroup, type Filter, type FilterDefs, _FilterDropdownMenu as FilterDropdownMenu, type FilterImpls, FilterModal, _Filters as Filters, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, type FormSectionConfig, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, HelperText, HomeboundLogo, Icon, IconButton, type IconButtonProps, type IconButtonVariant, IconCard, type IconCardProps, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type InfiniteScroll, type InlineStyle, type InputStylePalette, KEPT_GROUP, type Kinded, Loader, LoadingSkeleton, type LoadingSkeletonProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectField, type MultiSelectFieldProps, NavLink, type NavLinkProps, type NavLinkVariant, Navbar, NavbarLayout, type NavbarLayoutProps, type NavbarProps, type NavbarUser, type NestedOption, type NestedOptionsOrLoad, NumberField, type NumberFieldProps, type NumberFieldType, type OffsetAndLimit, type OnRowDragEvent, type OnRowSelect, type Only, type OpenDetailOpts, type OpenInDrawerOpts, OpenModal, type OpenRightPaneOpts, type Optional, type Padding, PageHeader, PageHeaderLayout, type PageHeaderLayoutProps, type PageHeaderProps, type PageNumberAndSize, type PageSettings, Pagination, Palette, type Pin, type Placement, type PlainDate, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, ResponsiveGrid, type ResponsiveGridConfig, ResponsiveGridContext, ResponsiveGridItem, type ResponsiveGridItemProps, type ResponsiveGridProps, RichTextField, RichTextFieldImpl, type RichTextFieldProps, RightPaneContext, RightPaneLayout, type RightPaneLayoutContextProps, RightPaneProvider, RightSidebar, type RightSidebarProps, type RouteTab, type RouteTabWithContent, Row, type RowStyle, type RowStyles, RuntimeCss, type RuntimeStyles, SIDE_NAV_LAYOUT_STATE_STORAGE_KEY, ScrollShadows, ScrollableContent, ScrollableFooter, ScrollableParent, SelectField, type SelectFieldProps, SelectToggle, type SelectedFilterLabelValue, type SelectedState, SideNav, SideNavLayout, type SideNavLayoutContextProps, type SideNavLayoutProps, SideNavLayoutProvider, type SideNavLayoutState, type SideNavProps, type SidePanelProps, type SidebarContentProps, type SimpleHeaderAndData, SortHeader, type SortOn, type SortState, StaticField, type Step, Stepper, type StepperProps, type StyleKind, SubmitButton, type SubmitButtonProps, SuperDrawerContent, SuperDrawerHeader, SuperDrawerWidth, type SupportedDateFormat, Switch, type SwitchProps, TOTALS, type Tab, TabContent, type TabWithContent, TableReviewLayout, type TableReviewLayoutProps, TableState, TableStateContext, type TableView, Tabs, TabsWithContent, Tag, type TagType, type TestIds, TextAreaField, type TextAreaFieldProps, TextField, type TextFieldApi, type TextFieldInternalProps, type TextFieldProps, type TextFieldXss, Toast, ToggleButton, type ToggleButtonProps, ToggleChip, ToggleChipGroup, type ToggleChipGroupProps, type ToggleChipProps, ToggleChips, type ToggleChipsProps, Tokens, Tooltip, TreeSelectField, type TreeSelectFieldProps, type TriggerNoticeProps, type Typography, type UseModalHook, type UsePersistedFilterProps, type UseQueryState, type UseRightPaneHook, type UseSnackbarHook, type UseSuperDrawerHook, type UseToastProps, type Value, ViewToggleButton, type Xss, type ZIndex, actionColumn, applyRowFn, assignDefaultColumnIds, beamLayoutViewportHeightVar, beamLayoutViewportWidthVar, beamNavbarLayoutHeightVar, beamPageHeaderLayoutHeightVar, beamSideNavLayoutWidthVar, beamTableActionsHeightVar, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundIconCardField, boundIconCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnLayout, calcColumnSizes, cardStyle, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, contrastDataTheme, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, documentScrollChromeLeft, documentScrollChromeWidth, dragHandleColumn, emptyCell, ensureClientSideSortValueIsSortable, filterTestIdPrefix, formatDate, formatDateRange, formatPlainDate, formatValue, generateColumnId, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getJustification, getNavLinkStyles, getTableRefWidthStyles, getTableStyles, headerRenderFn, hoverStyles, iconButtonCircleStylesHover, iconButtonContrastStylesHover, iconButtonStylesHover, iconCardStylesHover, increment, insertAtIndex, isContentColumn, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, layoutGutterLeftColumnId, layoutGutterRightColumnId, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeCssVar, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveTableContentWidth, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, selectedStyles, setDefaultStyle, setGridTableDefaults, setRunningInJest, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, stickyNavAndHeaderOffset, stickyTableHeaderOffset, sumColumnSizesPx, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBreakpoint, useComputed, useContentOverflow, useContrastScope, useDnDGridItem, type useDnDGridItemProps, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHasSideNavLayoutProvider, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneContext, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSideNavLayoutContext, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, withColumnGutters, zIndices };
9009
+ export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, type AppEnvironment, type AppNavGroup, type AppNavItem, type AppNavLink, type AppNavSection, type AppNavSectionItem, AutoSaveIndicator, AutoSaveStatus, AutoSaveStatusContext, AutoSaveStatusProvider, Autocomplete, type AutocompleteProps, Avatar, AvatarButton, type AvatarButtonProps, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, Banner, type BannerProps, type BannerTypes, BaseFilter, type BaseQueryTableProps, type BaseTableProps, type BeamButtonProps, type BeamColor, type BeamFocusableProps, BeamProvider, type BeamTextFieldProps, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundIconCardField, type BoundIconCardFieldProps, BoundIconCardGroupField, type BoundIconCardGroupFieldProps, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardProps, type CardTag, type CardType, type CheckFn, Checkbox, CheckboxGroup, type CheckboxGroupItemOption, type CheckboxGroupProps, type CheckboxProps, Chip, type ChipProps, ChipSelectField, type ChipSelectFieldProps, type ChipType, ChipTypes, type ChipValue, Chips, type ChipsProps, CollapseToggle, CollapsedContext, type ColumnLayoutResult, ConfirmCloseModal, type ContentStack, ContrastScope, Copy, CountBadge, type CountBadgeProps, Css, CssReset, type CssSetVarKeys, type CssSetVarScalar, type CssSetVarValue, DESC, DateField, type DateFieldFormat, type DateFieldMode, type DateFieldProps, type DateFilterValue, type DateMatcher, type DateRange, DateRangeField, type DateRangeFieldProps, type DateRangeFilterValue, type DefinedFilterValue, type Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, type DragData, EXPANDABLE_HEADER, EditColumnsButton, EnvironmentBanner, EnvironmentBannerLayout, type EnvironmentBannerLayoutProps, type EnvironmentBannerProps, type EnvironmentFaviconUrls, ErrorMessage, FieldGroup, type Filter, type FilterDefs, _FilterDropdownMenu as FilterDropdownMenu, type FilterImpls, FilterModal, _Filters as Filters, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, type FormSectionConfig, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, HelperText, HomeboundLogo, Icon, IconButton, type IconButtonProps, type IconButtonVariant, IconCard, type IconCardProps, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type ImpersonatedUser, type InfiniteScroll, type InlineStyle, type InputStylePalette, KEPT_GROUP, type Kinded, Loader, LoadingSkeleton, type LoadingSkeletonProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectField, type MultiSelectFieldProps, NavLink, type NavLinkProps, type NavLinkVariant, Navbar, NavbarLayout, type NavbarLayoutProps, type NavbarProps, type NavbarUser, type NestedOption, type NestedOptionsOrLoad, NumberField, type NumberFieldProps, type NumberFieldType, type OffsetAndLimit, type OnRowDragEvent, type OnRowSelect, type Only, type OpenDetailOpts, type OpenInDrawerOpts, OpenModal, type OpenRightPaneOpts, type Optional, type Padding, PageHeader, PageHeaderLayout, type PageHeaderLayoutProps, type PageHeaderProps, type PageNumberAndSize, type PageSettings, Pagination, Palette, type Pin, type Placement, type PlainDate, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, ResponsiveGrid, type ResponsiveGridConfig, ResponsiveGridContext, ResponsiveGridItem, type ResponsiveGridItemProps, type ResponsiveGridProps, RichTextField, RichTextFieldImpl, type RichTextFieldProps, RightPaneContext, RightPaneLayout, type RightPaneLayoutContextProps, RightPaneProvider, RightSidebar, type RightSidebarProps, type RouteTab, type RouteTabWithContent, Row, type RowStyle, type RowStyles, RuntimeCss, type RuntimeStyles, SIDE_NAV_LAYOUT_STATE_STORAGE_KEY, ScrollShadows, ScrollableContent, ScrollableFooter, ScrollableParent, SelectField, type SelectFieldProps, SelectToggle, type SelectedFilterLabelValue, type SelectedState, SideNav, SideNavLayout, type SideNavLayoutContextProps, type SideNavLayoutProps, SideNavLayoutProvider, type SideNavLayoutState, type SideNavProps, type SidePanelProps, type SidebarContentProps, type SimpleHeaderAndData, SortHeader, type SortOn, type SortState, StaticField, type Step, Stepper, type StepperProps, type StyleKind, SubmitButton, type SubmitButtonProps, SuperDrawerContent, SuperDrawerHeader, SuperDrawerWidth, type SupportedDateFormat, Switch, type SwitchProps, TOTALS, type Tab, TabContent, type TabWithContent, TableReviewLayout, type TableReviewLayoutProps, TableState, TableStateContext, type TableView, Tabs, TabsWithContent, Tag, type TagType, type TestIds, TextAreaField, type TextAreaFieldProps, TextField, type TextFieldApi, type TextFieldInternalProps, type TextFieldProps, type TextFieldXss, Toast, ToggleButton, type ToggleButtonProps, ToggleChip, ToggleChipGroup, type ToggleChipGroupProps, type ToggleChipProps, ToggleChips, type ToggleChipsProps, Tokens, Tooltip, TreeSelectField, type TreeSelectFieldProps, type TriggerNoticeProps, type Typography, type UseModalHook, type UsePersistedFilterProps, type UseQueryState, type UseRightPaneHook, type UseSnackbarHook, type UseSuperDrawerHook, type UseToastProps, type Value, ViewToggleButton, type Xss, type ZIndex, actionColumn, applyRowFn, assignDefaultColumnIds, bannerAndNavbarChromeTop, beamEnvironmentBannerLayoutHeightVar, beamLayoutViewportHeightVar, beamLayoutViewportWidthVar, beamNavbarLayoutHeightVar, beamPageHeaderLayoutHeightVar, beamSideNavLayoutWidthVar, beamTableActionsHeightVar, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundIconCardField, boundIconCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnLayout, calcColumnSizes, cardStyle, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, contrastDataTheme, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, documentScrollChromeLeft, documentScrollChromeWidth, dragHandleColumn, emptyCell, ensureClientSideSortValueIsSortable, environmentBannerSizePx, filterTestIdPrefix, formatDate, formatDateRange, formatPlainDate, formatValue, generateColumnId, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getJustification, getNavLinkStyles, getTableRefWidthStyles, getTableStyles, headerRenderFn, hoverStyles, iconButtonCircleStylesHover, iconButtonContrastStylesHover, iconButtonStylesHover, iconCardStylesHover, increment, insertAtIndex, isContentColumn, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, layoutGutterLeftColumnId, layoutGutterRightColumnId, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeCssVar, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveTableContentWidth, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, selectedStyles, setDefaultStyle, setEnvironmentFavicon, setGridTableDefaults, setRunningInJest, shouldShowEnvironmentBanner, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, stickyNavAndHeaderOffset, stickyTableHeaderOffset, sumColumnSizesPx, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBreakpoint, useComputed, useContentOverflow, useContrastScope, useDnDGridItem, type useDnDGridItemProps, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHasSideNavLayoutProvider, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneContext, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSideNavLayoutContext, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, withColumnGutters, zIndices };
package/dist/index.d.ts CHANGED
@@ -53,6 +53,10 @@ declare enum Tokens {
53
53
  ButtonTertiaryFgPressed = "--b-button-tertiary-fg-pressed",
54
54
  Danger = "--b-danger",
55
55
  DangerPressed = "--b-danger-pressed",
56
+ EnvBrandDev = "--b-env-brand-dev",
57
+ EnvBrandLocalProd = "--b-env-brand-local-prod",
58
+ EnvBrandProd = "--b-env-brand-prod",
59
+ EnvBrandQa = "--b-env-brand-qa",
56
60
  FieldBgDefault = "--b-field-bg-default",
57
61
  FieldBgDisabled = "--b-field-bg-disabled",
58
62
  FieldBgHover = "--b-field-bg-hover",
@@ -1219,6 +1223,18 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
1219
1223
  float(value: Properties["float"]): CssBuilder<T & {
1220
1224
  float: csstype.Property.Float | undefined;
1221
1225
  }, S>;
1226
+ /** Sets `fontStyle: "italic"`. */
1227
+ get fsyi(): CssBuilder<T & {
1228
+ fontStyle: csstype.Property.FontStyle | undefined;
1229
+ }, S>;
1230
+ /** Sets `fontStyle: "normal"`. */
1231
+ get fsynm(): CssBuilder<T & {
1232
+ fontStyle: csstype.Property.FontStyle | undefined;
1233
+ }, S>;
1234
+ /** Sets `fontStyle: value`. */
1235
+ fsy(value: Properties["fontStyle"]): CssBuilder<T & {
1236
+ fontStyle: csstype.Property.FontStyle | undefined;
1237
+ }, S>;
1222
1238
  /** Sets `fontWeight: "normal"`. */
1223
1239
  get fwn(): CssBuilder<T & {
1224
1240
  fontWeight: csstype.Property.FontWeight | undefined;
@@ -6330,6 +6346,28 @@ type DnDGridItemHandleProps = {
6330
6346
  /** Provides a specific handle element for dragging a GridItem. Includes handling behaviors and interactions */
6331
6347
  declare function DnDGridItemHandle(props: DnDGridItemHandleProps): JSX.Element;
6332
6348
 
6349
+ type AppEnvironment = "local" | "dev" | "qa" | "local-prod" | "prod";
6350
+ type ImpersonatedUser = {
6351
+ name: string;
6352
+ };
6353
+ type EnvironmentBannerProps = {
6354
+ env: AppEnvironment;
6355
+ impersonating?: ImpersonatedUser;
6356
+ };
6357
+ /** Environment banner; horizontal/vertical pinning is owned by {@link EnvironmentBannerLayout}. */
6358
+ declare function EnvironmentBanner(props: EnvironmentBannerProps): JSX.Element | null;
6359
+ /** True when {@link EnvironmentBanner} should display: `dev`, `qa`, `local-prod`, or `prod` while impersonating. */
6360
+ declare function shouldShowEnvironmentBanner(env: AppEnvironment, impersonating: ImpersonatedUser | undefined): boolean;
6361
+ /** Fixed banner height (px); {@link EnvironmentBannerLayout} reads this for spacer/CSS var offsets. */
6362
+ declare const environmentBannerSizePx = 32;
6363
+
6364
+ /** App-hosted favicon URLs; `default` is required for envs without a dedicated entry (e.g. `local`). */
6365
+ type EnvironmentFaviconUrls = Partial<Record<AppEnvironment, string>> & {
6366
+ default: string;
6367
+ };
6368
+ /** Set `document.head` favicon from app-hosted URLs. No-op when `favicons` is undefined. Call once at app bootstrap. */
6369
+ declare function setEnvironmentFavicon(env: AppEnvironment, favicons: EnvironmentFaviconUrls | undefined): void;
6370
+
6333
6371
  type TestIds = Record<string, object>;
6334
6372
  /**
6335
6373
  * Provides a way to easily generate `data-testid`s.
@@ -6708,6 +6746,22 @@ type ComboBoxBaseProps<O, V extends Value> = {
6708
6746
  hideErrorMessage?: boolean;
6709
6747
  multiline?: boolean;
6710
6748
  onSearch?: (search: string) => void;
6749
+ /**
6750
+ * Called when the user explicitly selects the synthetic add-new row from the dropdown.
6751
+ * Only supported on single-select fields.
6752
+ *
6753
+ * While the user types, a pseudo-option (e.g. `Add "my value"`) appears at the bottom of the
6754
+ * filtered list when the trimmed input does not exactly match an existing option label
6755
+ * (case-insensitive). It is not shown when the input is empty, or when the input exactly matches
6756
+ * an existing label (e.g. typing "banana" when "Banana" exists).
6757
+ *
6758
+ * The user must focus that row (e.g. arrow down) and confirm with Enter or click; pressing Enter
6759
+ * on the typed text alone does not invoke this callback.
6760
+ *
6761
+ * This callback does not update the field value or call `onSelect` — callers create the new
6762
+ * option (often async) and set `value` themselves, same as before. Beam cannot auto-select here
6763
+ * because the new option's id typically comes from the caller's save/create logic after this fires.
6764
+ */
6711
6765
  onAddNew?: (v: string) => void;
6712
6766
  /**
6713
6767
  * When true (default), options are sorted alphabetically by their label.
@@ -8863,6 +8917,16 @@ declare function useSideNavLayoutContext(): SideNavLayoutContextProps;
8863
8917
  /** Internal: returns true if a `SideNavLayoutProvider` exists above. */
8864
8918
  declare function useHasSideNavLayoutProvider(): boolean;
8865
8919
 
8920
+ type EnvironmentBannerLayoutProps = {
8921
+ /** When provided and {@link shouldShowEnvironmentBanner} is true, renders {@link EnvironmentBanner} and publishes height. */
8922
+ environmentBanner?: EnvironmentBannerProps;
8923
+ children?: ReactNode;
8924
+ };
8925
+ /** Outermost layout shell; optional sticky environment banner above all other chrome. Contract: `docs/layouts.md`. */
8926
+ declare function EnvironmentBannerLayout(props: EnvironmentBannerLayoutProps): JSX.Element;
8927
+
8928
+ /** Effective environment banner height (px); `0` when hidden. */
8929
+ declare const beamEnvironmentBannerLayoutHeightVar = "--beam-environment-banner-height";
8866
8930
  /** Effective navbar height (px) while pinned; `0` when scrolled away. */
8867
8931
  declare const beamNavbarLayoutHeightVar = "--beam-navbar-layout-height";
8868
8932
  /** Effective page header height (px) while pinned; `0` when scrolled away. */
@@ -8879,9 +8943,11 @@ declare const beamTableActionsHeightVar = "--beam-table-actions-height";
8879
8943
  declare function documentScrollChromeLeft(): string;
8880
8944
  /** `width` for document-scroll sticky chrome spanning the visible viewport beside the side nav. */
8881
8945
  declare function documentScrollChromeWidth(): string;
8882
- /** `top` offset below auto-hiding navbar + page header (each var collapses to `0` when scrolled away). */
8946
+ /** CSS `top` offset below the environment banner + auto-hiding navbar. */
8947
+ declare function bannerAndNavbarChromeTop(): string;
8948
+ /** `top` offset below environment banner + auto-hiding navbar + page header (each var collapses to `0` when scrolled away). */
8883
8949
  declare function stickyNavAndHeaderOffset(basePx?: number): string;
8884
- /** `top` offset for sticky table column headers (navbar + page header + table actions). */
8950
+ /** `top` offset for sticky table column headers (environment banner + navbar + page header + table actions). */
8885
8951
  declare function stickyTableHeaderOffset(basePx?: number): string;
8886
8952
 
8887
8953
  type NavbarLayoutProps = {
@@ -8932,9 +8998,12 @@ declare const zIndices: {
8932
8998
  readonly dragHandle: 80;
8933
8999
  readonly sideNav: 100;
8934
9000
  readonly navbar: 120;
9001
+ readonly navbarMobileMenuScrim: 124;
9002
+ readonly navbarMobileMenu: 125;
9003
+ readonly environmentBanner: 130;
8935
9004
  readonly pageOverlay: 1000;
8936
9005
  readonly snackbar: 1100;
8937
9006
  };
8938
9007
  type ZIndex = (typeof zIndices)[keyof typeof zIndices];
8939
9008
 
8940
- export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, type AppNavGroup, type AppNavItem, type AppNavLink, type AppNavSection, type AppNavSectionItem, AutoSaveIndicator, AutoSaveStatus, AutoSaveStatusContext, AutoSaveStatusProvider, Autocomplete, type AutocompleteProps, Avatar, AvatarButton, type AvatarButtonProps, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, Banner, type BannerProps, type BannerTypes, BaseFilter, type BaseQueryTableProps, type BaseTableProps, type BeamButtonProps, type BeamColor, type BeamFocusableProps, BeamProvider, type BeamTextFieldProps, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundIconCardField, type BoundIconCardFieldProps, BoundIconCardGroupField, type BoundIconCardGroupFieldProps, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardProps, type CardTag, type CardType, type CheckFn, Checkbox, CheckboxGroup, type CheckboxGroupItemOption, type CheckboxGroupProps, type CheckboxProps, Chip, type ChipProps, ChipSelectField, type ChipSelectFieldProps, type ChipType, ChipTypes, type ChipValue, Chips, type ChipsProps, CollapseToggle, CollapsedContext, type ColumnLayoutResult, ConfirmCloseModal, type ContentStack, ContrastScope, Copy, CountBadge, type CountBadgeProps, Css, CssReset, type CssSetVarKeys, type CssSetVarScalar, type CssSetVarValue, DESC, DateField, type DateFieldFormat, type DateFieldMode, type DateFieldProps, type DateFilterValue, type DateMatcher, type DateRange, DateRangeField, type DateRangeFieldProps, type DateRangeFilterValue, type DefinedFilterValue, type Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, type DragData, EXPANDABLE_HEADER, EditColumnsButton, ErrorMessage, FieldGroup, type Filter, type FilterDefs, _FilterDropdownMenu as FilterDropdownMenu, type FilterImpls, FilterModal, _Filters as Filters, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, type FormSectionConfig, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, HelperText, HomeboundLogo, Icon, IconButton, type IconButtonProps, type IconButtonVariant, IconCard, type IconCardProps, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type InfiniteScroll, type InlineStyle, type InputStylePalette, KEPT_GROUP, type Kinded, Loader, LoadingSkeleton, type LoadingSkeletonProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectField, type MultiSelectFieldProps, NavLink, type NavLinkProps, type NavLinkVariant, Navbar, NavbarLayout, type NavbarLayoutProps, type NavbarProps, type NavbarUser, type NestedOption, type NestedOptionsOrLoad, NumberField, type NumberFieldProps, type NumberFieldType, type OffsetAndLimit, type OnRowDragEvent, type OnRowSelect, type Only, type OpenDetailOpts, type OpenInDrawerOpts, OpenModal, type OpenRightPaneOpts, type Optional, type Padding, PageHeader, PageHeaderLayout, type PageHeaderLayoutProps, type PageHeaderProps, type PageNumberAndSize, type PageSettings, Pagination, Palette, type Pin, type Placement, type PlainDate, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, ResponsiveGrid, type ResponsiveGridConfig, ResponsiveGridContext, ResponsiveGridItem, type ResponsiveGridItemProps, type ResponsiveGridProps, RichTextField, RichTextFieldImpl, type RichTextFieldProps, RightPaneContext, RightPaneLayout, type RightPaneLayoutContextProps, RightPaneProvider, RightSidebar, type RightSidebarProps, type RouteTab, type RouteTabWithContent, Row, type RowStyle, type RowStyles, RuntimeCss, type RuntimeStyles, SIDE_NAV_LAYOUT_STATE_STORAGE_KEY, ScrollShadows, ScrollableContent, ScrollableFooter, ScrollableParent, SelectField, type SelectFieldProps, SelectToggle, type SelectedFilterLabelValue, type SelectedState, SideNav, SideNavLayout, type SideNavLayoutContextProps, type SideNavLayoutProps, SideNavLayoutProvider, type SideNavLayoutState, type SideNavProps, type SidePanelProps, type SidebarContentProps, type SimpleHeaderAndData, SortHeader, type SortOn, type SortState, StaticField, type Step, Stepper, type StepperProps, type StyleKind, SubmitButton, type SubmitButtonProps, SuperDrawerContent, SuperDrawerHeader, SuperDrawerWidth, type SupportedDateFormat, Switch, type SwitchProps, TOTALS, type Tab, TabContent, type TabWithContent, TableReviewLayout, type TableReviewLayoutProps, TableState, TableStateContext, type TableView, Tabs, TabsWithContent, Tag, type TagType, type TestIds, TextAreaField, type TextAreaFieldProps, TextField, type TextFieldApi, type TextFieldInternalProps, type TextFieldProps, type TextFieldXss, Toast, ToggleButton, type ToggleButtonProps, ToggleChip, ToggleChipGroup, type ToggleChipGroupProps, type ToggleChipProps, ToggleChips, type ToggleChipsProps, Tokens, Tooltip, TreeSelectField, type TreeSelectFieldProps, type TriggerNoticeProps, type Typography, type UseModalHook, type UsePersistedFilterProps, type UseQueryState, type UseRightPaneHook, type UseSnackbarHook, type UseSuperDrawerHook, type UseToastProps, type Value, ViewToggleButton, type Xss, type ZIndex, actionColumn, applyRowFn, assignDefaultColumnIds, beamLayoutViewportHeightVar, beamLayoutViewportWidthVar, beamNavbarLayoutHeightVar, beamPageHeaderLayoutHeightVar, beamSideNavLayoutWidthVar, beamTableActionsHeightVar, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundIconCardField, boundIconCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnLayout, calcColumnSizes, cardStyle, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, contrastDataTheme, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, documentScrollChromeLeft, documentScrollChromeWidth, dragHandleColumn, emptyCell, ensureClientSideSortValueIsSortable, filterTestIdPrefix, formatDate, formatDateRange, formatPlainDate, formatValue, generateColumnId, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getJustification, getNavLinkStyles, getTableRefWidthStyles, getTableStyles, headerRenderFn, hoverStyles, iconButtonCircleStylesHover, iconButtonContrastStylesHover, iconButtonStylesHover, iconCardStylesHover, increment, insertAtIndex, isContentColumn, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, layoutGutterLeftColumnId, layoutGutterRightColumnId, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeCssVar, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveTableContentWidth, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, selectedStyles, setDefaultStyle, setGridTableDefaults, setRunningInJest, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, stickyNavAndHeaderOffset, stickyTableHeaderOffset, sumColumnSizesPx, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBreakpoint, useComputed, useContentOverflow, useContrastScope, useDnDGridItem, type useDnDGridItemProps, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHasSideNavLayoutProvider, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneContext, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSideNavLayoutContext, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, withColumnGutters, zIndices };
9009
+ export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, type AppEnvironment, type AppNavGroup, type AppNavItem, type AppNavLink, type AppNavSection, type AppNavSectionItem, AutoSaveIndicator, AutoSaveStatus, AutoSaveStatusContext, AutoSaveStatusProvider, Autocomplete, type AutocompleteProps, Avatar, AvatarButton, type AvatarButtonProps, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, Banner, type BannerProps, type BannerTypes, BaseFilter, type BaseQueryTableProps, type BaseTableProps, type BeamButtonProps, type BeamColor, type BeamFocusableProps, BeamProvider, type BeamTextFieldProps, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundIconCardField, type BoundIconCardFieldProps, BoundIconCardGroupField, type BoundIconCardGroupFieldProps, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardProps, type CardTag, type CardType, type CheckFn, Checkbox, CheckboxGroup, type CheckboxGroupItemOption, type CheckboxGroupProps, type CheckboxProps, Chip, type ChipProps, ChipSelectField, type ChipSelectFieldProps, type ChipType, ChipTypes, type ChipValue, Chips, type ChipsProps, CollapseToggle, CollapsedContext, type ColumnLayoutResult, ConfirmCloseModal, type ContentStack, ContrastScope, Copy, CountBadge, type CountBadgeProps, Css, CssReset, type CssSetVarKeys, type CssSetVarScalar, type CssSetVarValue, DESC, DateField, type DateFieldFormat, type DateFieldMode, type DateFieldProps, type DateFilterValue, type DateMatcher, type DateRange, DateRangeField, type DateRangeFieldProps, type DateRangeFilterValue, type DefinedFilterValue, type Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, type DragData, EXPANDABLE_HEADER, EditColumnsButton, EnvironmentBanner, EnvironmentBannerLayout, type EnvironmentBannerLayoutProps, type EnvironmentBannerProps, type EnvironmentFaviconUrls, ErrorMessage, FieldGroup, type Filter, type FilterDefs, _FilterDropdownMenu as FilterDropdownMenu, type FilterImpls, FilterModal, _Filters as Filters, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, type FormSectionConfig, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, HelperText, HomeboundLogo, Icon, IconButton, type IconButtonProps, type IconButtonVariant, IconCard, type IconCardProps, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type ImpersonatedUser, type InfiniteScroll, type InlineStyle, type InputStylePalette, KEPT_GROUP, type Kinded, Loader, LoadingSkeleton, type LoadingSkeletonProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectField, type MultiSelectFieldProps, NavLink, type NavLinkProps, type NavLinkVariant, Navbar, NavbarLayout, type NavbarLayoutProps, type NavbarProps, type NavbarUser, type NestedOption, type NestedOptionsOrLoad, NumberField, type NumberFieldProps, type NumberFieldType, type OffsetAndLimit, type OnRowDragEvent, type OnRowSelect, type Only, type OpenDetailOpts, type OpenInDrawerOpts, OpenModal, type OpenRightPaneOpts, type Optional, type Padding, PageHeader, PageHeaderLayout, type PageHeaderLayoutProps, type PageHeaderProps, type PageNumberAndSize, type PageSettings, Pagination, Palette, type Pin, type Placement, type PlainDate, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, ResponsiveGrid, type ResponsiveGridConfig, ResponsiveGridContext, ResponsiveGridItem, type ResponsiveGridItemProps, type ResponsiveGridProps, RichTextField, RichTextFieldImpl, type RichTextFieldProps, RightPaneContext, RightPaneLayout, type RightPaneLayoutContextProps, RightPaneProvider, RightSidebar, type RightSidebarProps, type RouteTab, type RouteTabWithContent, Row, type RowStyle, type RowStyles, RuntimeCss, type RuntimeStyles, SIDE_NAV_LAYOUT_STATE_STORAGE_KEY, ScrollShadows, ScrollableContent, ScrollableFooter, ScrollableParent, SelectField, type SelectFieldProps, SelectToggle, type SelectedFilterLabelValue, type SelectedState, SideNav, SideNavLayout, type SideNavLayoutContextProps, type SideNavLayoutProps, SideNavLayoutProvider, type SideNavLayoutState, type SideNavProps, type SidePanelProps, type SidebarContentProps, type SimpleHeaderAndData, SortHeader, type SortOn, type SortState, StaticField, type Step, Stepper, type StepperProps, type StyleKind, SubmitButton, type SubmitButtonProps, SuperDrawerContent, SuperDrawerHeader, SuperDrawerWidth, type SupportedDateFormat, Switch, type SwitchProps, TOTALS, type Tab, TabContent, type TabWithContent, TableReviewLayout, type TableReviewLayoutProps, TableState, TableStateContext, type TableView, Tabs, TabsWithContent, Tag, type TagType, type TestIds, TextAreaField, type TextAreaFieldProps, TextField, type TextFieldApi, type TextFieldInternalProps, type TextFieldProps, type TextFieldXss, Toast, ToggleButton, type ToggleButtonProps, ToggleChip, ToggleChipGroup, type ToggleChipGroupProps, type ToggleChipProps, ToggleChips, type ToggleChipsProps, Tokens, Tooltip, TreeSelectField, type TreeSelectFieldProps, type TriggerNoticeProps, type Typography, type UseModalHook, type UsePersistedFilterProps, type UseQueryState, type UseRightPaneHook, type UseSnackbarHook, type UseSuperDrawerHook, type UseToastProps, type Value, ViewToggleButton, type Xss, type ZIndex, actionColumn, applyRowFn, assignDefaultColumnIds, bannerAndNavbarChromeTop, beamEnvironmentBannerLayoutHeightVar, beamLayoutViewportHeightVar, beamLayoutViewportWidthVar, beamNavbarLayoutHeightVar, beamPageHeaderLayoutHeightVar, beamSideNavLayoutWidthVar, beamTableActionsHeightVar, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundIconCardField, boundIconCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnLayout, calcColumnSizes, cardStyle, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, contrastDataTheme, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, documentScrollChromeLeft, documentScrollChromeWidth, dragHandleColumn, emptyCell, ensureClientSideSortValueIsSortable, environmentBannerSizePx, filterTestIdPrefix, formatDate, formatDateRange, formatPlainDate, formatValue, generateColumnId, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getJustification, getNavLinkStyles, getTableRefWidthStyles, getTableStyles, headerRenderFn, hoverStyles, iconButtonCircleStylesHover, iconButtonContrastStylesHover, iconButtonStylesHover, iconCardStylesHover, increment, insertAtIndex, isContentColumn, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, layoutGutterLeftColumnId, layoutGutterRightColumnId, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeCssVar, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveTableContentWidth, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, selectedStyles, setDefaultStyle, setEnvironmentFavicon, setGridTableDefaults, setRunningInJest, shouldShowEnvironmentBanner, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, stickyNavAndHeaderOffset, stickyTableHeaderOffset, sumColumnSizesPx, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBreakpoint, useComputed, useContentOverflow, useContrastScope, useDnDGridItem, type useDnDGridItemProps, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHasSideNavLayoutProvider, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneContext, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSideNavLayoutContext, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, withColumnGutters, zIndices };