@homebound/beam 3.74.0 → 3.75.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Css.json +1 -1
- package/dist/index.cjs +1045 -859
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +12 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +49 -6
- package/dist/index.d.ts +49 -6
- package/dist/index.js +851 -672
- package/dist/index.js.map +1 -1
- package/dist/truss.css +6 -4
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -377,6 +377,10 @@
|
|
|
377
377
|
--b-choice-selected: rgba(37, 99, 235, 1);
|
|
378
378
|
--b-danger: rgba(248, 113, 113, 1);
|
|
379
379
|
--b-danger-pressed: rgba(36, 36, 36, 1);
|
|
380
|
+
--b-env-brand-dev: rgba(88, 206, 32, 1);
|
|
381
|
+
--b-env-brand-local-prod: rgba(239, 68, 68, 1);
|
|
382
|
+
--b-env-brand-prod: rgba(32, 206, 200, 1);
|
|
383
|
+
--b-env-brand-qa: rgba(255, 128, 0, 1);
|
|
380
384
|
--b-field-bg-default: rgba(100, 100, 100, 1);
|
|
381
385
|
--b-field-bg-disabled: rgba(100, 100, 100, 1);
|
|
382
386
|
--b-field-bg-hover: rgba(141, 141, 141, 1);
|
|
@@ -390,6 +394,12 @@
|
|
|
390
394
|
--b-loader-fill: rgba(100, 100, 100, 1);
|
|
391
395
|
--b-loader-spinner: rgba(236, 235, 235, 1);
|
|
392
396
|
--b-loader-track: rgba(141, 141, 141, 1);
|
|
397
|
+
--b-nav-global-item-bg-active: rgba(36, 36, 36, 1);
|
|
398
|
+
--b-nav-global-item-bg-hover: rgba(36, 36, 36, 1);
|
|
399
|
+
--b-nav-global-item-bg-pressed: rgba(100, 100, 100, 1);
|
|
400
|
+
--b-nav-global-text: rgba(175, 175, 175, 1);
|
|
401
|
+
--b-nav-global-text-active: rgba(255, 255, 255, 1);
|
|
402
|
+
--b-nav-global-text-disabled: rgba(201, 201, 201, 1);
|
|
393
403
|
--b-nav-item-bg-active: rgba(100, 100, 100, 1);
|
|
394
404
|
--b-nav-item-bg-hover: rgba(53, 53, 53, 1);
|
|
395
405
|
--b-nav-item-bg-pressed: rgba(236, 235, 235, 1);
|
|
@@ -409,8 +419,10 @@
|
|
|
409
419
|
--b-on-surface-muted: rgba(175, 175, 175, 1);
|
|
410
420
|
--b-on-surface-raised-hover: rgba(221, 220, 220, 1);
|
|
411
421
|
--b-on-surface-raised-pressed: rgba(175, 175, 175, 1);
|
|
422
|
+
--b-primary: rgba(37, 99, 235, 1);
|
|
412
423
|
--b-primary-hover: rgba(29, 78, 216, 1);
|
|
413
424
|
--b-primary-pressed: rgba(30, 64, 175, 1);
|
|
425
|
+
--b-scrim: rgba(36, 36, 36, 0.2);
|
|
414
426
|
--b-selection-fill: rgba(100, 100, 100, 1);
|
|
415
427
|
--b-selection-indicator: rgba(255, 255, 255, 1);
|
|
416
428
|
--b-surface: rgba(36, 36, 36, 1);
|
package/dist/index.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/css/CssReset.css","../src/css/generated/theme-scopes.css","../src/components/internal/DatePicker/day.css","../src/components/internal/DatePicker/DatePicker.css","../src/inputs/trix.css","../src/components/Copy.css"],"sourcesContent":["/*\n * Beam CSS Reset\n * Based on modern-normalize + Tailwind preflight + beam custom rules.\n * Migrated from emotion Global to a plain CSS file for StyleX compatibility.\n *\n * Wrapped in @layer reset so that StyleX utility classes always win regardless of load order.\n */\n@layer reset {\n /* ── Beam custom rules ───────────────────────────────────────────── */\n\n a:not(.navLink) {\n color: rgba(29, 78, 216, 1);\n }\n\n a:visited:not(.navLink) {\n color: rgba(59, 130, 246, 1);\n }\n\n /**\n * Beam animations\n */\n /* Opacity pulse so dot fill follows --b-loader-fill (ContrastScope / palette). */\n @keyframes loadingDots {\n 0%,\n 100% {\n opacity: 1;\n }\n 50% {\n opacity: 0.35;\n }\n }\n\n @keyframes spin {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n }\n\n @keyframes pulse {\n 50% {\n opacity: 0.6;\n }\n }\n\n /* Respect WCAG SC 2.3.3 — collapse animations and transitions when the user\n has set prefers-reduced-motion: reduce in their OS. Applies globally so it\n covers every motion-token-driven helper as well as legacy inline transitions. */\n @media (prefers-reduced-motion: reduce) {\n *,\n *::before,\n *::after {\n animation-duration: 0.01ms !important;\n animation-iteration-count: 1 !important;\n transition-duration: 0.01ms !important;\n scroll-behavior: auto !important;\n }\n }\n\n /* ── modern-normalize v1.0.0 | MIT License ───────────────────────── */\n\n /*\nDocument\n========\n*/\n\n /**\nUse a better box model (opinionated).\n*/\n\n *,\n *::before,\n *::after {\n box-sizing: border-box;\n }\n\n /**\nUse a more readable tab size (opinionated).\n*/\n\n :root {\n -moz-tab-size: 4;\n -o-tab-size: 4;\n tab-size: 4;\n }\n\n /**\n1. Correct the line height in all browsers.\n2. Prevent adjustments of font size after orientation changes in iOS.\n*/\n\n html {\n line-height: 1.15; /* 1 */\n -webkit-text-size-adjust: 100%; /* 2 */\n }\n\n /*\nSections\n========\n*/\n\n /**\nRemove the margin in all browsers.\n*/\n\n body {\n margin: 0;\n }\n\n /**\nImprove consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)\n*/\n\n body {\n font-family:\n system-ui,\n -apple-system,\n /* Firefox supports this but not yet system-ui */ \"Segoe UI\",\n Roboto,\n Helvetica,\n Arial,\n sans-serif,\n \"Apple Color Emoji\",\n \"Segoe UI Emoji\";\n }\n\n /*\nGrouping content\n================\n*/\n\n /**\n1. Add the correct height in Firefox.\n2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)\n*/\n\n hr {\n height: 0; /* 1 */\n color: inherit; /* 2 */\n }\n\n /*\nText-level semantics\n====================\n*/\n\n /**\nAdd the correct text decoration in Chrome, Edge, and Safari.\n*/\n\n abbr[title] {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n }\n\n /**\nAdd the correct font weight in Edge and Safari.\n*/\n\n b,\n strong {\n font-weight: bolder;\n }\n\n /**\n1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)\n2. Correct the odd 'em' font sizing in all browsers.\n*/\n\n code,\n kbd,\n samp,\n pre {\n font-family: ui-monospace, SFMono-Regular, Consolas, \"Liberation Mono\", Menlo, monospace; /* 1 */\n font-size: 1em; /* 2 */\n }\n\n /**\nAdd the correct font size in all browsers.\n*/\n\n small {\n font-size: 80%;\n }\n\n /**\nPrevent 'sub' and 'sup' elements from affecting the line height in all browsers.\n*/\n\n sub,\n sup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n }\n\n sub {\n bottom: -0.25em;\n }\n\n sup {\n top: -0.5em;\n }\n\n /*\nTabular data\n============\n*/\n\n /**\n1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)\n2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)\n*/\n\n table {\n text-indent: 0; /* 1 */\n border-color: inherit; /* 2 */\n }\n\n /*\nForms\n=====\n*/\n\n /**\n1. Change the font styles in all browsers.\n2. Remove the margin in Firefox and Safari.\n*/\n\n button,\n input,\n optgroup,\n select,\n textarea {\n font-family: inherit; /* 1 */\n font-size: 100%; /* 1 */\n line-height: 1.15; /* 1 */\n margin: 0; /* 2 */\n }\n\n /**\nRemove the inheritance of text transform in Edge and Firefox.\n1. Remove the inheritance of text transform in Firefox.\n*/\n\n button,\n select {\n /* 1 */\n text-transform: none;\n }\n\n /**\n Correct the inability to style clickable types in iOS and Safari.\n */\n\n button,\n [type=\"button\"],\n [type=\"submit\"] {\n -webkit-appearance: button;\n }\n\n /**\nRemove the additional ':invalid' styles in Firefox.\nSee: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737\n*/\n\n /**\nRemove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.\n*/\n\n legend {\n padding: 0;\n }\n\n /**\nAdd the correct vertical alignment in Chrome and Firefox.\n*/\n\n progress {\n vertical-align: baseline;\n }\n\n /**\n1. Correct the odd appearance in Chrome and Safari.\n2. Correct the outline style in Safari.\n*/\n\n [type=\"search\"] {\n -webkit-appearance: textfield; /* 1 */\n outline-offset: -2px; /* 2 */\n }\n\n /*\nInteractive\n===========\n*/\n\n /*\nAdd the correct display in Chrome and Safari.\n*/\n\n summary {\n display: list-item;\n }\n\n /**\n * Manually forked from SUIT CSS Base: https://github.com/suitcss/base\n * A thin layer on top of normalize.css that provides a starting point more\n * suitable for web applications.\n */\n\n /**\n * Removes the default spacing and border for appropriate elements.\n */\n\n blockquote,\n dl,\n dd,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n hr,\n figure,\n p,\n pre {\n margin: 0;\n }\n\n button {\n background-color: transparent;\n background-image: none;\n }\n\n /**\n * Work around a Firefox/IE bug where the transparent button background\n * results in a loss of the default button focus styles.\n */\n fieldset {\n margin: 0;\n padding: 0;\n }\n\n /* ── Tailwind Preflight ──────────────────────────────────────────── */\n /* See https://tailwindcss.com/docs/preflight */\n\n /**\n * Tailwind custom reset styles\n */\n\n /**\n * 1. Use the user's configured sans font-family (with Tailwind's default\n * sans-serif font stack as a fallback) as a sane default.\n * 2. Use Tailwind's default \"normal\" line-height so the user isn't forced\n * to override it to ensure consistency even when using the default theme.\n */\n html {\n font-family:\n Inter,\n ui-sans-serif,\n system-ui,\n -apple-system,\n BlinkMacSystemFont,\n \"Segoe UI\",\n Roboto,\n \"Helvetica Neue\",\n Arial,\n \"Noto Sans\",\n sans-serif,\n \"Apple Color Emoji\",\n \"Segoe UI Emoji\",\n \"Segoe UI Symbol\",\n \"Noto Color Emoji\"; /* 1 */\n line-height: 1.5; /* 2 */\n }\n\n /**\n * Inherit font-family and line-height from html so users can set them as\n * a class directly on the html element.\n */\n\n body {\n font-family: inherit;\n line-height: inherit;\n color: var(--b-on-surface);\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-secondary-fg: rgba(37, 99, 235, 1);\n --b-button-tertiary-fg: rgba(37, 99, 235, 1);\n --b-button-tertiary-fg-pressed: rgba(30, 64, 175, 1);\n --b-choice-disabled: rgba(201, 201, 201, 1);\n --b-choice-selected: rgba(29, 78, 216, 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-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-nav-global-item-bg-active: rgba(36, 36, 36, 1);\n --b-nav-global-item-bg-hover: rgba(36, 36, 36, 1);\n --b-nav-global-item-bg-pressed: rgba(100, 100, 100, 1);\n --b-nav-global-text: rgba(175, 175, 175, 1);\n --b-nav-global-text-active: rgba(255, 255, 255, 1);\n --b-nav-global-text-disabled: rgba(201, 201, 201, 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(36, 36, 36, 1);\n --b-nav-text-active: rgba(37, 99, 235, 1);\n --b-nav-text-disabled: rgba(221, 220, 220, 1);\n --b-nav-text-focus-visible: rgba(36, 36, 36, 1);\n --b-nav-text-pressed: rgba(100, 100, 100, 1);\n --b-neutral-fill-hover: rgba(201, 201, 201, 1);\n --b-neutral-fill-hover-strong: rgba(247, 245, 245, 1);\n --b-neutral-fill-hover-subtle: rgba(247, 245, 245, 1);\n --b-neutral-fill-pressed: rgba(236, 235, 235, 1);\n --b-neutral-surface-pressed: rgba(255, 255, 255, 1);\n --b-on-primary: rgba(255, 255, 255, 1);\n --b-on-surface: rgba(36, 36, 36, 1);\n --b-on-surface-disabled: rgba(201, 201, 201, 1);\n --b-on-surface-muted: rgba(100, 100, 100, 1);\n --b-on-surface-raised-hover: rgba(36, 36, 36, 1);\n --b-on-surface-raised-pressed: rgba(36, 36, 36, 1);\n --b-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-fill: rgba(219, 234, 254, 1);\n --b-selection-indicator: rgba(29, 78, 216, 1);\n --b-surface: rgba(255, 255, 255, 1);\n --b-surface-disabled: rgba(255, 255, 255, 1);\n --b-surface-hover: rgba(247, 245, 245, 1);\n --b-surface-raised: rgba(255, 255, 255, 1);\n --b-surface-raised-hover: rgba(247, 245, 245, 1);\n --b-surface-raised-pressed: rgba(236, 235, 235, 1);\n --b-surface-separator: rgba(236, 235, 235, 1);\n --b-surface-subtle: rgba(236, 235, 235, 1);\n --b-text-disabled: rgba(201, 201, 201, 1);\n --b-text-helper: rgba(100, 100, 100, 1);\n --b-text-label: rgba(100, 100, 100, 1);\n --b-text-link-default: rgba(29, 78, 216, 1);\n --b-text-link-disabled: rgba(147, 197, 253, 1);\n --b-text-link-hover: rgba(37, 99, 235, 1);\n --b-text-link-pressed: rgba(29, 78, 216, 1);\n --b-text-placeholder: rgba(100, 100, 100, 1);\n --b-text-selection: rgba(191, 219, 254, 1);\n}\n\n[data-theme=\"contrast\"] {\n --b-button-caution-disabled-bg: rgba(113, 63, 18, 1);\n --b-button-caution-disabled-fg: rgba(255, 255, 255, 1);\n --b-button-danger-disabled-bg: rgba(127, 29, 29, 1);\n --b-button-danger-disabled-fg: rgba(141, 141, 141, 1);\n --b-button-ghost-disabled-fg: rgba(100, 100, 100, 1);\n --b-button-ghost-fg: rgba(201, 201, 201, 1);\n --b-button-primary-disabled-bg: rgba(30, 58, 138, 1);\n --b-button-primary-disabled-fg: rgba(141, 141, 141, 1);\n --b-button-secondary-fg: rgba(255, 255, 255, 1);\n --b-button-tertiary-fg: rgba(255, 255, 255, 1);\n --b-button-tertiary-fg-pressed: rgba(36, 36, 36, 1);\n --b-choice-disabled: rgba(141, 141, 141, 1);\n --b-choice-selected: rgba(37, 99, 235, 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-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-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: rgba(141, 141, 141, 1);\n --b-neutral-fill-hover-strong: rgba(100, 100, 100, 1);\n --b-neutral-fill-hover-subtle: rgba(53, 53, 53, 1);\n --b-neutral-fill-pressed: rgba(100, 100, 100, 1);\n --b-neutral-surface-pressed: rgba(100, 100, 100, 1);\n --b-on-primary: rgba(255, 255, 255, 1);\n --b-on-surface: rgba(255, 255, 255, 1);\n --b-on-surface-disabled: rgba(247, 245, 245, 1);\n --b-on-surface-muted: rgba(175, 175, 175, 1);\n --b-on-surface-raised-hover: rgba(221, 220, 220, 1);\n --b-on-surface-raised-pressed: rgba(175, 175, 175, 1);\n --b-primary-hover: rgba(29, 78, 216, 1);\n --b-primary-pressed: rgba(30, 64, 175, 1);\n --b-selection-fill: rgba(100, 100, 100, 1);\n --b-selection-indicator: rgba(255, 255, 255, 1);\n --b-surface: rgba(36, 36, 36, 1);\n --b-surface-disabled: rgba(141, 141, 141, 1);\n --b-surface-hover: rgba(53, 53, 53, 1);\n --b-surface-raised: rgba(53, 53, 53, 1);\n --b-surface-raised-hover: rgba(36, 36, 36, 1);\n --b-surface-raised-pressed: rgba(36, 36, 36, 1);\n --b-surface-separator: rgba(100, 100, 100, 1);\n --b-surface-subtle: rgba(100, 100, 100, 1);\n --b-text-disabled: rgba(175, 175, 175, 1);\n --b-text-helper: rgba(247, 245, 245, 1);\n --b-text-label: rgba(255, 255, 255, 1);\n --b-text-link-default: rgba(96, 165, 250, 1);\n --b-text-link-disabled: rgba(100, 100, 100, 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: var(--b-neutral-fill-hover-subtle);\n}\n\n/* Active: only when not disabled */\n.beam-day-button:not([data-disabled]):active > div {\n background-color: var(--b-neutral-fill-pressed);\n color: var(--b-on-surface);\n}\n\n/* Focus: always applied (default focus border) */\n.beam-day-button:focus:not(:active) > div {\n border-style: solid;\n border-width: 1px;\n border-color: var(--b-field-border-focus);\n}\n\n/* Focus when selected: keep primary focus ring weight via primary-pressed */\n.beam-day-button[data-selected]:focus:not(:active) > div {\n border-color: var(--b-primary-pressed);\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 color: var(--b-on-surface);\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 / color.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-secondary-fg: rgba(37, 99, 235, 1);\n --b-button-tertiary-fg: rgba(37, 99, 235, 1);\n --b-button-tertiary-fg-pressed: rgba(30, 64, 175, 1);\n --b-choice-disabled: rgba(201, 201, 201, 1);\n --b-choice-selected: rgba(29, 78, 216, 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-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-nav-global-item-bg-active: rgba(36, 36, 36, 1);\n --b-nav-global-item-bg-hover: rgba(36, 36, 36, 1);\n --b-nav-global-item-bg-pressed: rgba(100, 100, 100, 1);\n --b-nav-global-text: rgba(175, 175, 175, 1);\n --b-nav-global-text-active: rgba(255, 255, 255, 1);\n --b-nav-global-text-disabled: rgba(201, 201, 201, 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(36, 36, 36, 1);\n --b-nav-text-active: rgba(37, 99, 235, 1);\n --b-nav-text-disabled: rgba(221, 220, 220, 1);\n --b-nav-text-focus-visible: rgba(36, 36, 36, 1);\n --b-nav-text-pressed: rgba(100, 100, 100, 1);\n --b-neutral-fill-hover: rgba(201, 201, 201, 1);\n --b-neutral-fill-hover-strong: rgba(247, 245, 245, 1);\n --b-neutral-fill-hover-subtle: rgba(247, 245, 245, 1);\n --b-neutral-fill-pressed: rgba(236, 235, 235, 1);\n --b-neutral-surface-pressed: rgba(255, 255, 255, 1);\n --b-on-primary: rgba(255, 255, 255, 1);\n --b-on-surface: rgba(36, 36, 36, 1);\n --b-on-surface-disabled: rgba(201, 201, 201, 1);\n --b-on-surface-muted: rgba(100, 100, 100, 1);\n --b-on-surface-raised-hover: rgba(36, 36, 36, 1);\n --b-on-surface-raised-pressed: rgba(36, 36, 36, 1);\n --b-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-fill: rgba(219, 234, 254, 1);\n --b-selection-indicator: rgba(29, 78, 216, 1);\n --b-surface: rgba(255, 255, 255, 1);\n --b-surface-disabled: rgba(255, 255, 255, 1);\n --b-surface-hover: rgba(247, 245, 245, 1);\n --b-surface-raised: rgba(255, 255, 255, 1);\n --b-surface-raised-hover: rgba(247, 245, 245, 1);\n --b-surface-raised-pressed: rgba(236, 235, 235, 1);\n --b-surface-separator: rgba(236, 235, 235, 1);\n --b-surface-subtle: rgba(236, 235, 235, 1);\n --b-text-disabled: rgba(201, 201, 201, 1);\n --b-text-helper: rgba(100, 100, 100, 1);\n --b-text-label: rgba(100, 100, 100, 1);\n --b-text-link-default: rgba(29, 78, 216, 1);\n --b-text-link-disabled: rgba(147, 197, 253, 1);\n --b-text-link-hover: rgba(37, 99, 235, 1);\n --b-text-link-pressed: rgba(29, 78, 216, 1);\n --b-text-placeholder: rgba(100, 100, 100, 1);\n --b-text-selection: rgba(191, 219, 254, 1);\n}\n\n[data-theme=\"contrast\"] {\n --b-button-caution-disabled-bg: rgba(113, 63, 18, 1);\n --b-button-caution-disabled-fg: rgba(255, 255, 255, 1);\n --b-button-danger-disabled-bg: rgba(127, 29, 29, 1);\n --b-button-danger-disabled-fg: rgba(141, 141, 141, 1);\n --b-button-ghost-disabled-fg: rgba(100, 100, 100, 1);\n --b-button-ghost-fg: rgba(201, 201, 201, 1);\n --b-button-primary-disabled-bg: rgba(30, 58, 138, 1);\n --b-button-primary-disabled-fg: rgba(141, 141, 141, 1);\n --b-button-secondary-fg: rgba(255, 255, 255, 1);\n --b-button-tertiary-fg: rgba(255, 255, 255, 1);\n --b-button-tertiary-fg-pressed: rgba(36, 36, 36, 1);\n --b-choice-disabled: rgba(141, 141, 141, 1);\n --b-choice-selected: rgba(37, 99, 235, 1);\n --b-danger: rgba(248, 113, 113, 1);\n --b-danger-pressed: rgba(36, 36, 36, 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(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-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-nav-global-item-bg-active: rgba(36, 36, 36, 1);\n --b-nav-global-item-bg-hover: rgba(36, 36, 36, 1);\n --b-nav-global-item-bg-pressed: rgba(100, 100, 100, 1);\n --b-nav-global-text: rgba(175, 175, 175, 1);\n --b-nav-global-text-active: rgba(255, 255, 255, 1);\n --b-nav-global-text-disabled: rgba(201, 201, 201, 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: rgba(141, 141, 141, 1);\n --b-neutral-fill-hover-strong: rgba(100, 100, 100, 1);\n --b-neutral-fill-hover-subtle: rgba(53, 53, 53, 1);\n --b-neutral-fill-pressed: rgba(100, 100, 100, 1);\n --b-neutral-surface-pressed: rgba(100, 100, 100, 1);\n --b-on-primary: rgba(255, 255, 255, 1);\n --b-on-surface: rgba(255, 255, 255, 1);\n --b-on-surface-disabled: rgba(247, 245, 245, 1);\n --b-on-surface-muted: rgba(175, 175, 175, 1);\n --b-on-surface-raised-hover: rgba(221, 220, 220, 1);\n --b-on-surface-raised-pressed: rgba(175, 175, 175, 1);\n --b-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-fill: rgba(100, 100, 100, 1);\n --b-selection-indicator: rgba(255, 255, 255, 1);\n --b-surface: rgba(36, 36, 36, 1);\n --b-surface-disabled: rgba(141, 141, 141, 1);\n --b-surface-hover: rgba(53, 53, 53, 1);\n --b-surface-raised: rgba(53, 53, 53, 1);\n --b-surface-raised-hover: rgba(36, 36, 36, 1);\n --b-surface-raised-pressed: rgba(36, 36, 36, 1);\n --b-surface-separator: rgba(100, 100, 100, 1);\n --b-surface-subtle: rgba(100, 100, 100, 1);\n --b-text-disabled: rgba(175, 175, 175, 1);\n --b-text-helper: rgba(247, 245, 245, 1);\n --b-text-label: rgba(255, 255, 255, 1);\n --b-text-link-default: rgba(96, 165, 250, 1);\n --b-text-link-disabled: rgba(100, 100, 100, 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: var(--b-neutral-fill-hover-subtle);\n}\n\n/* Active: only when not disabled */\n.beam-day-button:not([data-disabled]):active > div {\n background-color: var(--b-neutral-fill-pressed);\n color: var(--b-on-surface);\n}\n\n/* Focus: always applied (default focus border) */\n.beam-day-button:focus:not(:active) > div {\n border-style: solid;\n border-width: 1px;\n border-color: var(--b-field-border-focus);\n}\n\n/* Focus when selected: keep primary focus ring weight via primary-pressed */\n.beam-day-button[data-selected]:focus:not(:active) > div {\n border-color: var(--b-primary-pressed);\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
|
@@ -4125,17 +4125,13 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
|
|
|
4125
4125
|
fontFamily(value: Properties["fontFamily"]): CssBuilder<T & {
|
|
4126
4126
|
fontFamily: csstype.Property.FontFamily | undefined;
|
|
4127
4127
|
}, S>;
|
|
4128
|
-
/** Sets `width: "calc(var(--beam-layout-viewport-width, 100vw) - var(--beam-side-nav-layout-width, 0px))"; left: "var(--beam-side-nav-layout-width, 0px)"; position: "sticky"
|
|
4128
|
+
/** Sets `width: "min(100%, calc(var(--beam-layout-viewport-width, 100vw) - var(--beam-side-nav-layout-width, 0px)))"; left: "var(--beam-side-nav-layout-width, 0px)"; position: "sticky"`. */
|
|
4129
4129
|
get layoutContainer(): CssBuilder<T & {
|
|
4130
4130
|
width: csstype.Property.Width<string | 0> | undefined;
|
|
4131
4131
|
} & {
|
|
4132
4132
|
left: csstype.Property.Left<string | 0> | undefined;
|
|
4133
4133
|
} & {
|
|
4134
4134
|
position: csstype.Property.Position | undefined;
|
|
4135
|
-
} & {
|
|
4136
|
-
paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
|
|
4137
|
-
} & {
|
|
4138
|
-
paddingRight: csstype.Property.PaddingRight<string | 0> | undefined;
|
|
4139
4135
|
}, S>;
|
|
4140
4136
|
/** Sets `transition: "background-color 200ms cubic-bezier(0.4, 0, 0.2, 1), border-color 200ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1), left 200ms cubic-bezier(0.4, 0, 0.2, 1), right 200ms cubic-bezier(0.4, 0, 0.2, 1), margin 200ms cubic-bezier(0.4, 0, 0.2, 1), width 200ms cubic-bezier(0.4, 0, 0.2, 1), opacity 200ms cubic-bezier(0.4, 0, 0.2, 1)"`. */
|
|
4141
4137
|
get transition(): CssBuilder<T & {
|
|
@@ -9499,6 +9495,11 @@ type GridTableLayoutProps<F extends Record<string, unknown>, R extends Kinded, X
|
|
|
9499
9495
|
/** When true, shows a view toggle button and renders the table with `as="card"` when in card view. */
|
|
9500
9496
|
withCardView?: boolean;
|
|
9501
9497
|
defaultView?: TableView;
|
|
9498
|
+
/**
|
|
9499
|
+
* Opt into the document-scroll detail pane (`useRightPane`). `true` uses the default width;
|
|
9500
|
+
* a number sets the pane width in px. Only applies inside a document-scroll layout.
|
|
9501
|
+
*/
|
|
9502
|
+
withRightPane?: boolean | number;
|
|
9502
9503
|
};
|
|
9503
9504
|
/**
|
|
9504
9505
|
* A layout component that combines a table with a header, actions buttons, filters, and infinite scroll.
|
|
@@ -9560,6 +9561,20 @@ declare function resolveGridTableLayoutStyle(userStyle: GridStyle | GridStyleDef
|
|
|
9560
9561
|
/** Intended to wrap the whole application to prevent the browser's native scrolling behavior while also taking the full height of the viewport */
|
|
9561
9562
|
declare function PreventBrowserScroll({ children }: ChildrenOnly): JSX.Element;
|
|
9562
9563
|
|
|
9564
|
+
declare const defaultDocumentScrollRightPaneWidth = 450;
|
|
9565
|
+
type DocumentScrollRightPaneLayoutProps = {
|
|
9566
|
+
children: ReactNode;
|
|
9567
|
+
/** Width (px) of the fixed detail pane opened via `useRightPane`. */
|
|
9568
|
+
paneWidth?: number;
|
|
9569
|
+
};
|
|
9570
|
+
/**
|
|
9571
|
+
* Document-scroll right pane: `children` are main content; pane body comes from `openRightPane`.
|
|
9572
|
+
* Desktop: pins below sticky chrome; publishes scoped `--beam-right-pane-width` and root
|
|
9573
|
+
* `--beam-floating-right-offset`. On `sm`, the open pane is a full-bleed overlay (no spacer / width vars).
|
|
9574
|
+
* `GridTableLayout` scopes this around the table body (not table actions).
|
|
9575
|
+
*/
|
|
9576
|
+
declare function DocumentScrollRightPaneLayout(props: DocumentScrollRightPaneLayoutProps): JSX.Element;
|
|
9577
|
+
|
|
9563
9578
|
interface OpenRightPaneOpts {
|
|
9564
9579
|
content: ReactNode;
|
|
9565
9580
|
}
|
|
@@ -10208,6 +10223,20 @@ declare const beamLayoutViewportHeightVar = "--beam-layout-viewport-height";
|
|
|
10208
10223
|
declare const beamSideNavLayoutWidthVar = "--beam-side-nav-layout-width";
|
|
10209
10224
|
/** Table actions toolbar height (px) while pinned in document-scroll layouts. */
|
|
10210
10225
|
declare const beamTableActionsHeightVar = "--beam-table-actions-height";
|
|
10226
|
+
/**
|
|
10227
|
+
* Open document-scroll right pane width; `0px` when closed. Published on
|
|
10228
|
+
* `DocumentScrollRightPaneLayout` so sticky right columns (descendants) inherit it.
|
|
10229
|
+
* Not subtracted from `documentScrollChromeWidth` — the pane pins below page header /
|
|
10230
|
+
* table actions.
|
|
10231
|
+
*/
|
|
10232
|
+
declare const beamRightPaneWidthVar = "--beam-right-pane-width";
|
|
10233
|
+
/**
|
|
10234
|
+
* Extra `right` inset for floating page chrome when the document-scroll right pane is open.
|
|
10235
|
+
* Published on `document.documentElement` so siblings outside the pane layout (e.g.
|
|
10236
|
+
* `DocumentScrollToTopButton`) can clear the pane. Prefer this over reading
|
|
10237
|
+
* `beamRightPaneWidthVar` at the root.
|
|
10238
|
+
*/
|
|
10239
|
+
declare const beamFloatingRightOffsetVar = "--beam-floating-right-offset";
|
|
10211
10240
|
/**
|
|
10212
10241
|
* `WorkflowLayout`'s mobile action-footer height (px); `0px` when absent. Published directly on
|
|
10213
10242
|
* `document.documentElement` (not via inline `style` on a React-tree wrapper) since consumers like
|
|
@@ -10218,6 +10247,13 @@ declare const beamWorkflowLayoutFooterHeightVar = "--beam-workflow-layout-footer
|
|
|
10218
10247
|
declare function documentScrollChromeLeft(): string;
|
|
10219
10248
|
/** `width` for document-scroll sticky chrome spanning the visible viewport beside the side nav. */
|
|
10220
10249
|
declare function documentScrollChromeWidth(): string;
|
|
10250
|
+
/** `height` for a fixed document-scroll right pane from the sticky table-header offset to the viewport bottom. */
|
|
10251
|
+
declare function documentScrollRightPaneHeight(): string;
|
|
10252
|
+
/**
|
|
10253
|
+
* `width` for the document-scroll right pane: the configured max px, capped by available chrome
|
|
10254
|
+
* width so the pane fits the viewport on mobile (side nav collapses to `0px` there).
|
|
10255
|
+
*/
|
|
10256
|
+
declare function documentScrollRightPaneWidth(maxPx: number): string;
|
|
10221
10257
|
/** CSS `top` offset below the environment banner + auto-hiding navbar. */
|
|
10222
10258
|
declare function bannerAndNavbarChromeTop(): string;
|
|
10223
10259
|
/** `top` offset below environment banner + auto-hiding navbar + page header (each var collapses to `0` when scrolled away). */
|
|
@@ -10230,6 +10266,11 @@ declare function stickyTableHeaderOffset(basePx?: number): string;
|
|
|
10230
10266
|
* future bottom-anchored elements the same way. `basePx` is the element's own resting offset.
|
|
10231
10267
|
*/
|
|
10232
10268
|
declare function getFloatingBottomOffset(basePx?: number): string;
|
|
10269
|
+
/**
|
|
10270
|
+
* `right` offset for floating page chrome that must clear the open document-scroll right pane.
|
|
10271
|
+
* `basePx` is the element's own resting inset from the viewport edge.
|
|
10272
|
+
*/
|
|
10273
|
+
declare function getFloatingRightOffset(basePx?: number): string;
|
|
10233
10274
|
|
|
10234
10275
|
type NavbarLayoutProps = {
|
|
10235
10276
|
/** Props for the {@link Navbar} rendered as the top application chrome. */
|
|
@@ -10321,6 +10362,7 @@ declare const zIndices: {
|
|
|
10321
10362
|
readonly tableActions: 45;
|
|
10322
10363
|
readonly scrollToTop: 50;
|
|
10323
10364
|
readonly scrollShadow: 50;
|
|
10365
|
+
readonly rightPane: 60;
|
|
10324
10366
|
readonly pageStickyHeader: 70;
|
|
10325
10367
|
readonly pageStickyFooter: 70;
|
|
10326
10368
|
readonly dragHandle: 80;
|
|
@@ -10328,6 +10370,7 @@ declare const zIndices: {
|
|
|
10328
10370
|
readonly navbar: 120;
|
|
10329
10371
|
readonly navbarMobileMenuScrim: 124;
|
|
10330
10372
|
readonly navbarMobileMenu: 125;
|
|
10373
|
+
readonly rightPaneMobile: 126;
|
|
10331
10374
|
readonly environmentBanner: 130;
|
|
10332
10375
|
readonly superDrawerScrim: 140;
|
|
10333
10376
|
readonly modalUnderlay: 150;
|
|
@@ -10336,4 +10379,4 @@ declare const zIndices: {
|
|
|
10336
10379
|
};
|
|
10337
10380
|
type ZIndex = (typeof zIndices)[keyof typeof zIndices];
|
|
10338
10381
|
|
|
10339
|
-
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, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectCardGroupField, type BoundMultiSelectCardGroupFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectCardGroupField, type BoundSelectCardGroupFieldProps, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breadcrumb, Breadcrumbs, type BreadcrumbsProps, 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 CardBadgeSlot, type CardBadgeTag, type CardDataBlockSlot, type CardEyebrowSlot, type CardProgressSlot, type CardProps, type CardSlot, type CardStatusSlot, type CardTag, type CardTitleSlot, 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, ContentHeader, type ContentHeaderProps, 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 DocumentTitleConfig, DocumentTitleProvider, type DragData, EXPANDABLE_HEADER, EditColumnsButton, EnvironmentBanner, EnvironmentBannerLayout, type EnvironmentBannerLayoutProps, type EnvironmentBannerProps, type EnvironmentFaviconUrls, ErrorMessage, FieldGroup, type Filter, type FilterDefs, type FilterImpls, FilterModal, _Filters as Filters, type FixedSort, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, FormSection$1 as FormSection, type FormSectionAction, type FormSectionConfig, FormSectionLayout, type FormSectionLayoutProps, type FormSectionProps, 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, GridTableEmptyState, type GridTableEmptyStateProps, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, type HeaderAction, HelperText, HomeboundLogo, Icon, IconButton, type IconButtonProps, type IconButtonVariant, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type ImpersonatedUser, type InfiniteScroll, type InlineStyle, type InputStylePalette, JumpLink, type JumpLinkProps, 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, MultiSelectCardGroup, type MultiSelectCardGroupProps, 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, PageHeaderLayout, type PageHeaderLayoutProps, type PageNumberAndSize, type PageSettings, Pagination, Palette, PinToggle, type Placement, type PlainDate, type PlainFormSectionChild, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, type ReorderableFormSectionChild, 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, type SelectCardGridGroupItemOption, SelectCardGroup, type SelectCardGroupItemOption, type SelectCardGroupProps, type SelectCardLayout, type SelectCardListGroupItemOption, type SelectCardView, 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, StepperTab, type StepperTabProps, StepperTabs, type StepperTabsProps, type StepperTabsStep, 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, TagGroup, type TagGroupItem, type TagGroupProps, type TagProps, type TagType, type TagVariant, type TagXss, 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, WorkflowLayout, type WorkflowLayoutProps, type WorkflowLayoutStep, type Xss, type ZIndex, actionColumn, applyRowFn, assignDefaultColumnIds, bannerAndNavbarChromeTop, beamEnvironmentBannerLayoutHeightVar, beamLayoutViewportHeightVar, beamLayoutViewportWidthVar, beamNavbarLayoutHeightVar, beamPageHeaderLayoutHeightVar, beamSideNavLayoutWidthVar, beamTableActionsHeightVar, beamWorkflowLayoutFooterHeightVar, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundMultiSelectCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectCardGroupField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnLayout, calcColumnSizes, cardBadgeSlot, cardDataBlockSlot, cardEyebrowSlot, cardProgressSlot, cardStatusSlot, cardStyle, cardTitleSlot, 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, getActiveFilterCount, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getFloatingBottomOffset, getJustification, getNavLinkStyles, getTableRefWidthStyles, getTableStyles, headerContentPaddingX, headerRenderFn, hoverStyles, increment, insertAtIndex, isContentColumn, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, joinDocumentTitleSegments, layoutGutterLeftColumnId, layoutGutterRightColumnId, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeCssVar, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, pageContentGutterPx, pageContentPaddingX, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pinColumn, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveGridTableLayoutStyle, resolveTableContentWidth, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, 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, useBodyBackgroundColor, useBreakpoint, useComputed, useContentOverflow, useContrastScope, useDnDGridItem, type useDnDGridItemProps, useDocumentTitle, 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 };
|
|
10382
|
+
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, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectCardGroupField, type BoundMultiSelectCardGroupFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectCardGroupField, type BoundSelectCardGroupFieldProps, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breadcrumb, Breadcrumbs, type BreadcrumbsProps, 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 CardBadgeSlot, type CardBadgeTag, type CardDataBlockSlot, type CardEyebrowSlot, type CardProgressSlot, type CardProps, type CardSlot, type CardStatusSlot, type CardTag, type CardTitleSlot, 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, ContentHeader, type ContentHeaderProps, 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, DocumentScrollRightPaneLayout, type DocumentScrollRightPaneLayoutProps, type DocumentTitleConfig, DocumentTitleProvider, type DragData, EXPANDABLE_HEADER, EditColumnsButton, EnvironmentBanner, EnvironmentBannerLayout, type EnvironmentBannerLayoutProps, type EnvironmentBannerProps, type EnvironmentFaviconUrls, ErrorMessage, FieldGroup, type Filter, type FilterDefs, type FilterImpls, FilterModal, _Filters as Filters, type FixedSort, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, FormSection$1 as FormSection, type FormSectionAction, type FormSectionConfig, FormSectionLayout, type FormSectionLayoutProps, type FormSectionProps, 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, GridTableEmptyState, type GridTableEmptyStateProps, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, type HeaderAction, HelperText, HomeboundLogo, Icon, IconButton, type IconButtonProps, type IconButtonVariant, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type ImpersonatedUser, type InfiniteScroll, type InlineStyle, type InputStylePalette, JumpLink, type JumpLinkProps, 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, MultiSelectCardGroup, type MultiSelectCardGroupProps, 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, PageHeaderLayout, type PageHeaderLayoutProps, type PageNumberAndSize, type PageSettings, Pagination, Palette, PinToggle, type Placement, type PlainDate, type PlainFormSectionChild, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, type ReorderableFormSectionChild, 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, type SelectCardGridGroupItemOption, SelectCardGroup, type SelectCardGroupItemOption, type SelectCardGroupProps, type SelectCardLayout, type SelectCardListGroupItemOption, type SelectCardView, 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, StepperTab, type StepperTabProps, StepperTabs, type StepperTabsProps, type StepperTabsStep, 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, TagGroup, type TagGroupItem, type TagGroupProps, type TagProps, type TagType, type TagVariant, type TagXss, 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, WorkflowLayout, type WorkflowLayoutProps, type WorkflowLayoutStep, type Xss, type ZIndex, actionColumn, applyRowFn, assignDefaultColumnIds, bannerAndNavbarChromeTop, beamEnvironmentBannerLayoutHeightVar, beamFloatingRightOffsetVar, beamLayoutViewportHeightVar, beamLayoutViewportWidthVar, beamNavbarLayoutHeightVar, beamPageHeaderLayoutHeightVar, beamRightPaneWidthVar, beamSideNavLayoutWidthVar, beamTableActionsHeightVar, beamWorkflowLayoutFooterHeightVar, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundMultiSelectCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectCardGroupField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnLayout, calcColumnSizes, cardBadgeSlot, cardDataBlockSlot, cardEyebrowSlot, cardProgressSlot, cardStatusSlot, cardStyle, cardTitleSlot, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, contrastDataTheme, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultDocumentScrollRightPaneWidth, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, documentScrollChromeLeft, documentScrollChromeWidth, documentScrollRightPaneHeight, documentScrollRightPaneWidth, dragHandleColumn, emptyCell, ensureClientSideSortValueIsSortable, environmentBannerSizePx, filterTestIdPrefix, formatDate, formatDateRange, formatPlainDate, formatValue, generateColumnId, getActiveFilterCount, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getFloatingBottomOffset, getFloatingRightOffset, getJustification, getNavLinkStyles, getTableRefWidthStyles, getTableStyles, headerContentPaddingX, headerRenderFn, hoverStyles, increment, insertAtIndex, isContentColumn, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, joinDocumentTitleSegments, layoutGutterLeftColumnId, layoutGutterRightColumnId, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeCssVar, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, pageContentGutterPx, pageContentPaddingX, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pinColumn, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveGridTableLayoutStyle, resolveTableContentWidth, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, 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, useBodyBackgroundColor, useBreakpoint, useComputed, useContentOverflow, useContrastScope, useDnDGridItem, type useDnDGridItemProps, useDocumentTitle, 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
|
@@ -4125,17 +4125,13 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
|
|
|
4125
4125
|
fontFamily(value: Properties["fontFamily"]): CssBuilder<T & {
|
|
4126
4126
|
fontFamily: csstype.Property.FontFamily | undefined;
|
|
4127
4127
|
}, S>;
|
|
4128
|
-
/** Sets `width: "calc(var(--beam-layout-viewport-width, 100vw) - var(--beam-side-nav-layout-width, 0px))"; left: "var(--beam-side-nav-layout-width, 0px)"; position: "sticky"
|
|
4128
|
+
/** Sets `width: "min(100%, calc(var(--beam-layout-viewport-width, 100vw) - var(--beam-side-nav-layout-width, 0px)))"; left: "var(--beam-side-nav-layout-width, 0px)"; position: "sticky"`. */
|
|
4129
4129
|
get layoutContainer(): CssBuilder<T & {
|
|
4130
4130
|
width: csstype.Property.Width<string | 0> | undefined;
|
|
4131
4131
|
} & {
|
|
4132
4132
|
left: csstype.Property.Left<string | 0> | undefined;
|
|
4133
4133
|
} & {
|
|
4134
4134
|
position: csstype.Property.Position | undefined;
|
|
4135
|
-
} & {
|
|
4136
|
-
paddingLeft: csstype.Property.PaddingLeft<string | 0> | undefined;
|
|
4137
|
-
} & {
|
|
4138
|
-
paddingRight: csstype.Property.PaddingRight<string | 0> | undefined;
|
|
4139
4135
|
}, S>;
|
|
4140
4136
|
/** Sets `transition: "background-color 200ms cubic-bezier(0.4, 0, 0.2, 1), border-color 200ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1), left 200ms cubic-bezier(0.4, 0, 0.2, 1), right 200ms cubic-bezier(0.4, 0, 0.2, 1), margin 200ms cubic-bezier(0.4, 0, 0.2, 1), width 200ms cubic-bezier(0.4, 0, 0.2, 1), opacity 200ms cubic-bezier(0.4, 0, 0.2, 1)"`. */
|
|
4141
4137
|
get transition(): CssBuilder<T & {
|
|
@@ -9499,6 +9495,11 @@ type GridTableLayoutProps<F extends Record<string, unknown>, R extends Kinded, X
|
|
|
9499
9495
|
/** When true, shows a view toggle button and renders the table with `as="card"` when in card view. */
|
|
9500
9496
|
withCardView?: boolean;
|
|
9501
9497
|
defaultView?: TableView;
|
|
9498
|
+
/**
|
|
9499
|
+
* Opt into the document-scroll detail pane (`useRightPane`). `true` uses the default width;
|
|
9500
|
+
* a number sets the pane width in px. Only applies inside a document-scroll layout.
|
|
9501
|
+
*/
|
|
9502
|
+
withRightPane?: boolean | number;
|
|
9502
9503
|
};
|
|
9503
9504
|
/**
|
|
9504
9505
|
* A layout component that combines a table with a header, actions buttons, filters, and infinite scroll.
|
|
@@ -9560,6 +9561,20 @@ declare function resolveGridTableLayoutStyle(userStyle: GridStyle | GridStyleDef
|
|
|
9560
9561
|
/** Intended to wrap the whole application to prevent the browser's native scrolling behavior while also taking the full height of the viewport */
|
|
9561
9562
|
declare function PreventBrowserScroll({ children }: ChildrenOnly): JSX.Element;
|
|
9562
9563
|
|
|
9564
|
+
declare const defaultDocumentScrollRightPaneWidth = 450;
|
|
9565
|
+
type DocumentScrollRightPaneLayoutProps = {
|
|
9566
|
+
children: ReactNode;
|
|
9567
|
+
/** Width (px) of the fixed detail pane opened via `useRightPane`. */
|
|
9568
|
+
paneWidth?: number;
|
|
9569
|
+
};
|
|
9570
|
+
/**
|
|
9571
|
+
* Document-scroll right pane: `children` are main content; pane body comes from `openRightPane`.
|
|
9572
|
+
* Desktop: pins below sticky chrome; publishes scoped `--beam-right-pane-width` and root
|
|
9573
|
+
* `--beam-floating-right-offset`. On `sm`, the open pane is a full-bleed overlay (no spacer / width vars).
|
|
9574
|
+
* `GridTableLayout` scopes this around the table body (not table actions).
|
|
9575
|
+
*/
|
|
9576
|
+
declare function DocumentScrollRightPaneLayout(props: DocumentScrollRightPaneLayoutProps): JSX.Element;
|
|
9577
|
+
|
|
9563
9578
|
interface OpenRightPaneOpts {
|
|
9564
9579
|
content: ReactNode;
|
|
9565
9580
|
}
|
|
@@ -10208,6 +10223,20 @@ declare const beamLayoutViewportHeightVar = "--beam-layout-viewport-height";
|
|
|
10208
10223
|
declare const beamSideNavLayoutWidthVar = "--beam-side-nav-layout-width";
|
|
10209
10224
|
/** Table actions toolbar height (px) while pinned in document-scroll layouts. */
|
|
10210
10225
|
declare const beamTableActionsHeightVar = "--beam-table-actions-height";
|
|
10226
|
+
/**
|
|
10227
|
+
* Open document-scroll right pane width; `0px` when closed. Published on
|
|
10228
|
+
* `DocumentScrollRightPaneLayout` so sticky right columns (descendants) inherit it.
|
|
10229
|
+
* Not subtracted from `documentScrollChromeWidth` — the pane pins below page header /
|
|
10230
|
+
* table actions.
|
|
10231
|
+
*/
|
|
10232
|
+
declare const beamRightPaneWidthVar = "--beam-right-pane-width";
|
|
10233
|
+
/**
|
|
10234
|
+
* Extra `right` inset for floating page chrome when the document-scroll right pane is open.
|
|
10235
|
+
* Published on `document.documentElement` so siblings outside the pane layout (e.g.
|
|
10236
|
+
* `DocumentScrollToTopButton`) can clear the pane. Prefer this over reading
|
|
10237
|
+
* `beamRightPaneWidthVar` at the root.
|
|
10238
|
+
*/
|
|
10239
|
+
declare const beamFloatingRightOffsetVar = "--beam-floating-right-offset";
|
|
10211
10240
|
/**
|
|
10212
10241
|
* `WorkflowLayout`'s mobile action-footer height (px); `0px` when absent. Published directly on
|
|
10213
10242
|
* `document.documentElement` (not via inline `style` on a React-tree wrapper) since consumers like
|
|
@@ -10218,6 +10247,13 @@ declare const beamWorkflowLayoutFooterHeightVar = "--beam-workflow-layout-footer
|
|
|
10218
10247
|
declare function documentScrollChromeLeft(): string;
|
|
10219
10248
|
/** `width` for document-scroll sticky chrome spanning the visible viewport beside the side nav. */
|
|
10220
10249
|
declare function documentScrollChromeWidth(): string;
|
|
10250
|
+
/** `height` for a fixed document-scroll right pane from the sticky table-header offset to the viewport bottom. */
|
|
10251
|
+
declare function documentScrollRightPaneHeight(): string;
|
|
10252
|
+
/**
|
|
10253
|
+
* `width` for the document-scroll right pane: the configured max px, capped by available chrome
|
|
10254
|
+
* width so the pane fits the viewport on mobile (side nav collapses to `0px` there).
|
|
10255
|
+
*/
|
|
10256
|
+
declare function documentScrollRightPaneWidth(maxPx: number): string;
|
|
10221
10257
|
/** CSS `top` offset below the environment banner + auto-hiding navbar. */
|
|
10222
10258
|
declare function bannerAndNavbarChromeTop(): string;
|
|
10223
10259
|
/** `top` offset below environment banner + auto-hiding navbar + page header (each var collapses to `0` when scrolled away). */
|
|
@@ -10230,6 +10266,11 @@ declare function stickyTableHeaderOffset(basePx?: number): string;
|
|
|
10230
10266
|
* future bottom-anchored elements the same way. `basePx` is the element's own resting offset.
|
|
10231
10267
|
*/
|
|
10232
10268
|
declare function getFloatingBottomOffset(basePx?: number): string;
|
|
10269
|
+
/**
|
|
10270
|
+
* `right` offset for floating page chrome that must clear the open document-scroll right pane.
|
|
10271
|
+
* `basePx` is the element's own resting inset from the viewport edge.
|
|
10272
|
+
*/
|
|
10273
|
+
declare function getFloatingRightOffset(basePx?: number): string;
|
|
10233
10274
|
|
|
10234
10275
|
type NavbarLayoutProps = {
|
|
10235
10276
|
/** Props for the {@link Navbar} rendered as the top application chrome. */
|
|
@@ -10321,6 +10362,7 @@ declare const zIndices: {
|
|
|
10321
10362
|
readonly tableActions: 45;
|
|
10322
10363
|
readonly scrollToTop: 50;
|
|
10323
10364
|
readonly scrollShadow: 50;
|
|
10365
|
+
readonly rightPane: 60;
|
|
10324
10366
|
readonly pageStickyHeader: 70;
|
|
10325
10367
|
readonly pageStickyFooter: 70;
|
|
10326
10368
|
readonly dragHandle: 80;
|
|
@@ -10328,6 +10370,7 @@ declare const zIndices: {
|
|
|
10328
10370
|
readonly navbar: 120;
|
|
10329
10371
|
readonly navbarMobileMenuScrim: 124;
|
|
10330
10372
|
readonly navbarMobileMenu: 125;
|
|
10373
|
+
readonly rightPaneMobile: 126;
|
|
10331
10374
|
readonly environmentBanner: 130;
|
|
10332
10375
|
readonly superDrawerScrim: 140;
|
|
10333
10376
|
readonly modalUnderlay: 150;
|
|
@@ -10336,4 +10379,4 @@ declare const zIndices: {
|
|
|
10336
10379
|
};
|
|
10337
10380
|
type ZIndex = (typeof zIndices)[keyof typeof zIndices];
|
|
10338
10381
|
|
|
10339
|
-
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, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectCardGroupField, type BoundMultiSelectCardGroupFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectCardGroupField, type BoundSelectCardGroupFieldProps, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breadcrumb, Breadcrumbs, type BreadcrumbsProps, 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 CardBadgeSlot, type CardBadgeTag, type CardDataBlockSlot, type CardEyebrowSlot, type CardProgressSlot, type CardProps, type CardSlot, type CardStatusSlot, type CardTag, type CardTitleSlot, 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, ContentHeader, type ContentHeaderProps, 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 DocumentTitleConfig, DocumentTitleProvider, type DragData, EXPANDABLE_HEADER, EditColumnsButton, EnvironmentBanner, EnvironmentBannerLayout, type EnvironmentBannerLayoutProps, type EnvironmentBannerProps, type EnvironmentFaviconUrls, ErrorMessage, FieldGroup, type Filter, type FilterDefs, type FilterImpls, FilterModal, _Filters as Filters, type FixedSort, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, FormSection$1 as FormSection, type FormSectionAction, type FormSectionConfig, FormSectionLayout, type FormSectionLayoutProps, type FormSectionProps, 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, GridTableEmptyState, type GridTableEmptyStateProps, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, type HeaderAction, HelperText, HomeboundLogo, Icon, IconButton, type IconButtonProps, type IconButtonVariant, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type ImpersonatedUser, type InfiniteScroll, type InlineStyle, type InputStylePalette, JumpLink, type JumpLinkProps, 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, MultiSelectCardGroup, type MultiSelectCardGroupProps, 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, PageHeaderLayout, type PageHeaderLayoutProps, type PageNumberAndSize, type PageSettings, Pagination, Palette, PinToggle, type Placement, type PlainDate, type PlainFormSectionChild, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, type ReorderableFormSectionChild, 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, type SelectCardGridGroupItemOption, SelectCardGroup, type SelectCardGroupItemOption, type SelectCardGroupProps, type SelectCardLayout, type SelectCardListGroupItemOption, type SelectCardView, 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, StepperTab, type StepperTabProps, StepperTabs, type StepperTabsProps, type StepperTabsStep, 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, TagGroup, type TagGroupItem, type TagGroupProps, type TagProps, type TagType, type TagVariant, type TagXss, 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, WorkflowLayout, type WorkflowLayoutProps, type WorkflowLayoutStep, type Xss, type ZIndex, actionColumn, applyRowFn, assignDefaultColumnIds, bannerAndNavbarChromeTop, beamEnvironmentBannerLayoutHeightVar, beamLayoutViewportHeightVar, beamLayoutViewportWidthVar, beamNavbarLayoutHeightVar, beamPageHeaderLayoutHeightVar, beamSideNavLayoutWidthVar, beamTableActionsHeightVar, beamWorkflowLayoutFooterHeightVar, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundMultiSelectCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectCardGroupField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnLayout, calcColumnSizes, cardBadgeSlot, cardDataBlockSlot, cardEyebrowSlot, cardProgressSlot, cardStatusSlot, cardStyle, cardTitleSlot, 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, getActiveFilterCount, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getFloatingBottomOffset, getJustification, getNavLinkStyles, getTableRefWidthStyles, getTableStyles, headerContentPaddingX, headerRenderFn, hoverStyles, increment, insertAtIndex, isContentColumn, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, joinDocumentTitleSegments, layoutGutterLeftColumnId, layoutGutterRightColumnId, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeCssVar, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, pageContentGutterPx, pageContentPaddingX, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pinColumn, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveGridTableLayoutStyle, resolveTableContentWidth, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, 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, useBodyBackgroundColor, useBreakpoint, useComputed, useContentOverflow, useContrastScope, useDnDGridItem, type useDnDGridItemProps, useDocumentTitle, 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 };
|
|
10382
|
+
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, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectCardGroupField, type BoundMultiSelectCardGroupFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectCardGroupField, type BoundSelectCardGroupFieldProps, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breadcrumb, Breadcrumbs, type BreadcrumbsProps, 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 CardBadgeSlot, type CardBadgeTag, type CardDataBlockSlot, type CardEyebrowSlot, type CardProgressSlot, type CardProps, type CardSlot, type CardStatusSlot, type CardTag, type CardTitleSlot, 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, ContentHeader, type ContentHeaderProps, 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, DocumentScrollRightPaneLayout, type DocumentScrollRightPaneLayoutProps, type DocumentTitleConfig, DocumentTitleProvider, type DragData, EXPANDABLE_HEADER, EditColumnsButton, EnvironmentBanner, EnvironmentBannerLayout, type EnvironmentBannerLayoutProps, type EnvironmentBannerProps, type EnvironmentFaviconUrls, ErrorMessage, FieldGroup, type Filter, type FilterDefs, type FilterImpls, FilterModal, _Filters as Filters, type FixedSort, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, FormSection$1 as FormSection, type FormSectionAction, type FormSectionConfig, FormSectionLayout, type FormSectionLayoutProps, type FormSectionProps, 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, GridTableEmptyState, type GridTableEmptyStateProps, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, type HeaderAction, HelperText, HomeboundLogo, Icon, IconButton, type IconButtonProps, type IconButtonVariant, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type ImpersonatedUser, type InfiniteScroll, type InlineStyle, type InputStylePalette, JumpLink, type JumpLinkProps, 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, MultiSelectCardGroup, type MultiSelectCardGroupProps, 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, PageHeaderLayout, type PageHeaderLayoutProps, type PageNumberAndSize, type PageSettings, Pagination, Palette, PinToggle, type Placement, type PlainDate, type PlainFormSectionChild, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, type ReorderableFormSectionChild, 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, type SelectCardGridGroupItemOption, SelectCardGroup, type SelectCardGroupItemOption, type SelectCardGroupProps, type SelectCardLayout, type SelectCardListGroupItemOption, type SelectCardView, 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, StepperTab, type StepperTabProps, StepperTabs, type StepperTabsProps, type StepperTabsStep, 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, TagGroup, type TagGroupItem, type TagGroupProps, type TagProps, type TagType, type TagVariant, type TagXss, 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, WorkflowLayout, type WorkflowLayoutProps, type WorkflowLayoutStep, type Xss, type ZIndex, actionColumn, applyRowFn, assignDefaultColumnIds, bannerAndNavbarChromeTop, beamEnvironmentBannerLayoutHeightVar, beamFloatingRightOffsetVar, beamLayoutViewportHeightVar, beamLayoutViewportWidthVar, beamNavbarLayoutHeightVar, beamPageHeaderLayoutHeightVar, beamRightPaneWidthVar, beamSideNavLayoutWidthVar, beamTableActionsHeightVar, beamWorkflowLayoutFooterHeightVar, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundMultiSelectCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectCardGroupField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnLayout, calcColumnSizes, cardBadgeSlot, cardDataBlockSlot, cardEyebrowSlot, cardProgressSlot, cardStatusSlot, cardStyle, cardTitleSlot, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, contrastDataTheme, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultDocumentScrollRightPaneWidth, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, documentScrollChromeLeft, documentScrollChromeWidth, documentScrollRightPaneHeight, documentScrollRightPaneWidth, dragHandleColumn, emptyCell, ensureClientSideSortValueIsSortable, environmentBannerSizePx, filterTestIdPrefix, formatDate, formatDateRange, formatPlainDate, formatValue, generateColumnId, getActiveFilterCount, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getFloatingBottomOffset, getFloatingRightOffset, getJustification, getNavLinkStyles, getTableRefWidthStyles, getTableStyles, headerContentPaddingX, headerRenderFn, hoverStyles, increment, insertAtIndex, isContentColumn, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, joinDocumentTitleSegments, layoutGutterLeftColumnId, layoutGutterRightColumnId, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeCssVar, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, pageContentGutterPx, pageContentPaddingX, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pinColumn, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveGridTableLayoutStyle, resolveTableContentWidth, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, 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, useBodyBackgroundColor, useBreakpoint, useComputed, useContentOverflow, useContrastScope, useDnDGridItem, type useDnDGridItemProps, useDocumentTitle, 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 };
|