@homebound/beam 3.90.1 → 3.92.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -7517,19 +7517,31 @@ declare function AiLoadingPanel(props: AiLoadingPanelProps): JSX.Element;
7517
7517
  type AiPanelProps = {
7518
7518
  /** Rounds the corners, for a panel sitting within page content rather than spanning it. */
7519
7519
  rounded?: boolean;
7520
- /** Set false to size the card to its content and center it, rather than filling the panel. */
7521
- fullWidth?: boolean;
7520
+ /** Background padding. `lg` = 24 all around; `sm` = 24 horizontal, 16 vertical. */
7521
+ padding?: AiPanelPadding;
7522
7522
  children?: ReactNode;
7523
7523
  } & AriaAttributes & {
7524
7524
  role?: AriaRole;
7525
7525
  };
7526
7526
  /**
7527
- * The Blueprint AI surface: the wordmark over the AI background, wrapping a card of whatever the flow
7528
- * needs.
7529
- *
7530
- * The background always spans its container; `fullWidth` only governs the card.
7527
+ * Escape hatch for one-off AI chrome — prefer a pre-composed component. See {@link AiBanner}, {@link AiLoadingPanel}, {@link AiSlimBanner}, or `aiMode` on {@link FormSectionLayout} / {@link StepperLayout} / {@link FocusedFormLayout} / {@link Modal}.
7528
+ * If none fit, ask the Design System team whether a component exists or should. Full rule: `docs/layouts.md`.
7531
7529
  */
7532
7530
  declare function AiPanel(props: AiPanelProps): JSX.Element;
7531
+ type AiCardProps = {
7532
+ /** Set false to size the card to its content and center it, rather than filling the parent. */
7533
+ fullWidth?: boolean;
7534
+ /** Logo height and logo-to-card gap. */
7535
+ size?: AiCardSize;
7536
+ children?: ReactNode;
7537
+ };
7538
+ /**
7539
+ * Escape hatch for one-off AI chrome — prefer a pre-composed component. See {@link AiBanner}, {@link AiLoadingPanel}, {@link AiSlimBanner}, or `aiMode` on {@link FormSectionLayout} / {@link StepperLayout} / {@link FocusedFormLayout} / {@link Modal}.
7540
+ * If none fit, ask the Design System team whether a component exists or should. Full rule: `docs/layouts.md`.
7541
+ */
7542
+ declare function AiCard(props: AiCardProps): JSX.Element;
7543
+ type AiPanelPadding = "lg" | "sm";
7544
+ type AiCardSize = "lg" | "sm";
7533
7545
 
7534
7546
  type AiSlimBannerProps = {
7535
7547
  title: string;
@@ -9066,6 +9078,8 @@ type ContentHeaderProps<X = ContentHeaderXss> = {
9066
9078
  withAutoSave?: boolean;
9067
9079
  /** Heading tag and size. `2` = `h2`/`xl` (default); `3` = `h3`/`lg`; `4` = `h4`/`mdSb`. Never `h1`. */
9068
9080
  level?: ContentHeaderLevel;
9081
+ /** Applies AI gradient title styling (`aiBoldText`). */
9082
+ aiMode?: boolean;
9069
9083
  /** Rendered before the title, e.g. a drag handle on `FormSectionChild`. */
9070
9084
  startAdornment?: ReactNode;
9071
9085
  /** Style overrides for padding. */
@@ -10016,7 +10030,7 @@ type ConfirmCloseModalProps = {
10016
10030
  discardText?: string;
10017
10031
  continueText?: string;
10018
10032
  };
10019
- /** Modal content for discarding unsaved changes (SuperDrawer close, WorkflowLayout leave, etc.). */
10033
+ /** Modal content for discarding unsaved changes (SuperDrawer close, workflow leave, etc.). */
10020
10034
  declare function ConfirmCloseModal(props: ConfirmCloseModalProps): JSX.Element;
10021
10035
 
10022
10036
  interface OpenModalProps {
@@ -10204,22 +10218,23 @@ type StepperTabProps = {
10204
10218
  declare function StepperTab(props: StepperTabProps): JSX.Element;
10205
10219
 
10206
10220
  type WorkflowActionsProps = {
10207
- isFirstStep: boolean;
10208
- isLastStep: boolean;
10209
- isMobile: boolean;
10210
- onBack: () => void;
10211
10221
  /** Leaves the workflow without saving. Always shown. */
10212
10222
  onCancel: (e: PressEvent) => void;
10213
10223
  /** Saves partial progress and exits. Used whenever canExitEarly is true. */
10214
10224
  onSaveAndExit?: (e: PressEvent) => void | Promise<void>;
10215
- /** Label for the completion button shown on the last step. */
10225
+ /** Label for the completion button shown on the last step (or when there is no next step). */
10216
10226
  completeLabel: "Create" | "Save";
10217
- /** Called when the completion button is clicked. Only shown on the last step. */
10227
+ /** Called when the completion button is clicked. */
10218
10228
  onComplete: (e: PressEvent) => void | Promise<void>;
10219
- /** Runs before continuing to the next step. Return `false` to stay put, like when the save failed. */
10220
- onContinue: () => boolean | void | Promise<boolean | void>;
10221
10229
  /** Disables whichever of Continue/Complete is currently shown, e.g. while the active step is invalid. */
10222
10230
  primaryDisabled?: boolean;
10231
+ /** When true, Continue/Complete use the `ai` button variant instead of `primary`. */
10232
+ aiMode?: boolean;
10233
+ isFirstStep?: boolean;
10234
+ isLastStep?: boolean;
10235
+ onBack?: () => void;
10236
+ /** Runs before continuing to the next step. Return `false` to stay put, like when the save failed. */
10237
+ onContinue?: () => boolean | void | Promise<boolean | void>;
10223
10238
  };
10224
10239
 
10225
10240
  type StepperTabsStep = Pick<StepperTabProps, "label" | "value" | "disabled"> & Partial<Pick<WorkflowActionsProps, "onContinue">>;
@@ -10411,7 +10426,7 @@ type CenteredLayoutProps = {
10411
10426
  size: CenteredLayoutSize;
10412
10427
  children?: ReactNode;
10413
10428
  };
10414
- /** Centered body-width shell. Nest inside page-header layout / workflow layout children — see `docs/layouts.md`. */
10429
+ /** Centered body-width shell. Nest inside page-header / stepper layout children — see `docs/layouts.md`. */
10415
10430
  declare function CenteredLayout(props: CenteredLayoutProps): JSX.Element;
10416
10431
 
10417
10432
  type EnvironmentBannerLayoutProps = {
@@ -10433,8 +10448,10 @@ type FormSectionLayoutProps = {
10433
10448
  /** When true, prepends `AutoSaveIndicator` in the actions area. */
10434
10449
  withAutoSave?: boolean;
10435
10450
  sections?: FormSectionProps[];
10451
+ /** When true, wraps in {@link AiCard} and applies AI title styling. */
10452
+ aiMode?: boolean;
10436
10453
  };
10437
- /** Form of `FormSection`s in a `sm` {@link CenteredLayout} — e.g. a `WorkflowLayoutStep`'s `content`. */
10454
+ /** Form of `FormSection`s in a `sm` {@link CenteredLayout} — e.g. a `StepperLayout` step's `content`. Use `aiMode` for the AI card + title treatment. */
10438
10455
  declare function FormSectionLayout(props: FormSectionLayoutProps): JSX.Element;
10439
10456
 
10440
10457
  /**
@@ -10496,9 +10513,9 @@ declare const beamRightPaneWidthVar = "--beam-right-pane-width";
10496
10513
  */
10497
10514
  declare const beamFloatingRightOffsetVar = "--beam-floating-right-offset";
10498
10515
  /**
10499
- * `WorkflowLayout`'s mobile action-footer height (px); `0px` when absent. Published directly on
10516
+ * Workflow layouts' mobile action-footer height (px); `0px` when absent. Published directly on
10500
10517
  * `document.documentElement` (not via inline `style` on a React-tree wrapper) since consumers like
10501
- * `DocumentScrollToTopButton` are siblings of `WorkflowLayout`'s subtree, not descendants.
10518
+ * `DocumentScrollToTopButton` are siblings of the workflow subtree, not descendants.
10502
10519
  */
10503
10520
  declare const beamWorkflowLayoutFooterHeightVar = "--beam-workflow-layout-footer-height";
10504
10521
  /** `left` for document-scroll sticky chrome (below side nav when present). */
@@ -10511,6 +10528,8 @@ declare function documentScrollContentLeft(): string;
10511
10528
  declare function documentScrollContentWidth(): string;
10512
10529
  /** `height` for a fixed document-scroll right pane from the sticky table-header offset to the viewport bottom. */
10513
10530
  declare function documentScrollRightPaneHeight(): string;
10531
+ /** `min-height` so a document-scroll step surface fills the first screen below sticky chrome. */
10532
+ declare function documentScrollBodyMinHeight(): string;
10514
10533
  /**
10515
10534
  * `width` for the document-scroll right pane: the configured max px, capped by available chrome
10516
10535
  * width so the pane fits the viewport on mobile (side nav collapses to `0px` there).
@@ -10520,11 +10539,13 @@ declare function documentScrollRightPaneWidth(maxPx: number): string;
10520
10539
  declare function bannerAndNavbarChromeTop(): string;
10521
10540
  /** `top` offset below environment banner + auto-hiding navbar + page header (each var collapses to `0` when scrolled away). */
10522
10541
  declare function stickyNavAndHeaderOffset(basePx?: number): string;
10542
+ /** Pixel equivalent of {@link stickyNavAndHeaderOffset}, read from `el`'s computed (inherited) CSS vars. Used by JumpLink scroll-spy, which needs a number rather than a CSS `calc()`. */
10543
+ declare function stickyNavAndHeaderOffsetPx(el: Element): number;
10523
10544
  /** `top` offset for sticky table column headers (environment banner + navbar + page header + table actions). */
10524
10545
  declare function stickyTableHeaderOffset(basePx?: number): string;
10525
10546
  /**
10526
10547
  * `bottom` offset for floating page chrome (e.g. `DocumentScrollToTopButton`) that must clear other
10527
- * fixed-position bottom chrome — currently just `WorkflowLayout`'s mobile action footer, but stacks with
10548
+ * fixed-position bottom chrome — currently just the workflow mobile action footer, but stacks with
10528
10549
  * future bottom-anchored elements the same way. `basePx` is the element's own resting offset.
10529
10550
  */
10530
10551
  declare function getFloatingBottomOffset(basePx?: number): string;
@@ -10565,38 +10586,56 @@ type PageHeaderLayoutProps<V extends string, X> = {
10565
10586
  /** Page header + body shell with auto-hide chrome. Contract: `docs/layouts.md`. */
10566
10587
  declare function PageHeaderLayout<V extends string, X extends Only<TabsContentXss, X>>(props: PageHeaderLayoutProps<V, X>): JSX.Element;
10567
10588
 
10589
+ type FocusedFormSection = FormSectionProps & {
10590
+ /** When true, omit this section from the JumpLinks rail. */
10591
+ excludeJumpLink?: boolean;
10592
+ };
10593
+ type FocusedFormLayoutProps = Pick<BaseHeaderProps, "title" | "documentTitleSuffix" | "breadcrumbs"> & Pick<WorkflowActionsProps, "onCancel" | "completeLabel" | "onComplete" | "onSaveAndExit"> & {
10594
+ /** Gates the Create/Save CTA. */
10595
+ isValid: boolean;
10596
+ /** Read on Cancel / leave — a callback so flipping dirty does not re-render. */
10597
+ isDirty?: () => boolean;
10598
+ /** When false, never show the JumpLinks rail. */
10599
+ withJumpLinks?: boolean;
10600
+ /** Page wash, `ai` CTA, and forwarded to `form`. */
10601
+ aiMode?: boolean;
10602
+ form: Omit<FormSectionLayoutProps, "sections"> & {
10603
+ sections?: FocusedFormSection[];
10604
+ };
10605
+ };
10568
10606
  /**
10569
- * A `WorkflowLayout` step: a `StepperTabsStep` (minus `value`, which is derived from `label`) plus
10607
+ * Standalone single-form workflow page. Contract: `docs/layouts.md`.
10608
+ * Nest under `EnvironmentBannerLayout` only — no navbar/side nav, so attention stays on the form.
10609
+ */
10610
+ declare function FocusedFormLayout(props: FocusedFormLayoutProps): JSX.Element;
10611
+
10612
+ /**
10613
+ * A `StepperLayout` step: a `StepperTabsStep` (minus `value`, which is derived from `label`) plus
10570
10614
  * page content. Stepper chrome marks prior steps complete via current-step index; `isValid` only
10571
10615
  * gates the Continue/Complete CTA for the active step.
10572
10616
  */
10573
- type WorkflowLayoutStep = Omit<StepperTabsStep, "value"> & {
10617
+ type StepperLayoutStep = Omit<StepperTabsStep, "value"> & {
10574
10618
  /** Rendered as the page body while this is the active step. */
10575
10619
  content: ReactNode;
10576
10620
  /** Gates Continue/Complete for the active step (form validity) */
10577
10621
  isValid: boolean;
10578
10622
  };
10579
- type WorkflowLayoutProps = Pick<BaseHeaderProps, "title" | "documentTitleSuffix" | "breadcrumbs"> & Pick<WorkflowActionsProps, "onCancel" | "completeLabel" | "onComplete" | "onSaveAndExit"> & {
10623
+ type StepperLayoutProps = Pick<BaseHeaderProps, "title" | "documentTitleSuffix" | "breadcrumbs"> & Pick<WorkflowActionsProps, "onCancel" | "completeLabel" | "onComplete" | "onSaveAndExit"> & {
10580
10624
  /** The workflow's steps; the active step's `content` is the body, and it drives the header's tab strip. */
10581
- steps: WorkflowLayoutStep[];
10625
+ steps: StepperLayoutStep[];
10582
10626
  /** The step shown initially (matched against `defaultTestId(step.label)`); falls back to the first step if omitted or if it doesn't match any step. Uncontrolled — the layout owns step navigation from here. */
10583
10627
  defaultStep?: string;
10584
- /** When this returns true, Cancel / in-app route changes / tab close require confirmation. */
10628
+ /** Read on Cancel / leave — a callback so flipping dirty does not re-render. */
10585
10629
  isDirty?: () => boolean;
10630
+ /** Full-bleed AI wash on the body. Pair with `aiMode` on a step's `FormSectionLayout`. */
10631
+ aiMode?: boolean;
10586
10632
  };
10587
10633
  /**
10588
- * Workflow-header + body shell with sticky (always-visible) chrome. Contract: `docs/layouts.md`.
10589
- *
10590
- * A standalone, full-page layout for step-based workflow pages — nest it directly under
10591
- * `EnvironmentBannerLayout`, never under `NavbarLayout`/`SideNavLayout`/`PageHeaderLayout`. Unlike
10592
- * `PageHeaderLayout`, the header here never auto-hides. The stepper tabs collapse to a condensed
10593
- * indicator bar on mobile only.
10594
- *
10595
- * Owns the workflow's fixed CTA set (Back/Cancel/Save & Exit/Continue-or-Complete) via `WorkflowActions`
10596
- * so it can move them into a mobile footer at the `sm` breakpoint — `WorkflowHeader` itself is not part
10597
- * of the public API. Pass `isDirty` to confirm before Cancel, in-app navigation, or tab close.
10634
+ * Standalone step-based workflow page. Contract: `docs/layouts.md`.
10635
+ * Nest under `EnvironmentBannerLayout` only — no navbar/side nav, so attention stays on the workflow.
10636
+ * Header does not auto-hide; stepper tabs collapse on mobile; body is the active step's `content`.
10598
10637
  */
10599
- declare function WorkflowLayout(props: WorkflowLayoutProps): JSX.Element;
10638
+ declare function StepperLayout(props: StepperLayoutProps): JSX.Element;
10600
10639
 
10601
10640
  /**
10602
10641
  * Guesses an id based on a label string, i.e. given `Homeowner Contract`,
@@ -10640,4 +10679,4 @@ declare const zIndices: {
10640
10679
  };
10641
10680
  type ZIndex = (typeof zIndices)[keyof typeof zIndices];
10642
10681
 
10643
- export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, AiBanner, type AiBannerProps, AiLoader, type AiLoaderProps, AiLoadingPanel, type AiLoadingPanelProps, AiPanel, type AiPanelProps, AiSlimBanner, type AiSlimBannerProps, 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, BeamLogo, BeamProvider, type BeamTextFieldProps, BlueprintAiLogo, 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 CardCarouselFooter, type CardCarouselThumbnail, type CardDataBlockSlot, type CardEyebrowSlot, type CardInteractiveFooter, type CardInteractiveFooterSlot, type CardLeftEyebrowSlot, type CardProgressSlot, type CardProps, type CardRightEyebrowSlot, type CardSlot, type CardStatusSlot, type CardTag, type CardTitleSlot, type CardType, Carousel, type CarouselProps, CenteredLayout, type CenteredLayoutProps, type CenteredLayoutSize, 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, type CompanionConfig, type CompanionContent, type CompanionPosition, ConfirmCloseModal, ContentHeader, type ContentHeaderLevel, 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 GridRowCompanion, 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 LogoSizeProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBanner, 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, beamLayoutContentPaddingXVar, 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, cardCarouselSlot, cardDataBlockSlot, cardEyebrowSlot, cardInteractiveFooterSlot, cardLeftEyebrowSlot, cardProgressSlot, cardRightEyebrowSlot, cardStatusSlot, cardStyle, cardTitleSlot, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, contrastDataTheme, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultDocumentScrollRightPaneWidth, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, documentScrollChromeLeft, documentScrollChromeWidth, documentScrollContentLeft, documentScrollContentWidth, 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 };
10682
+ export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, AiBanner, type AiBannerProps, AiCard, type AiCardProps, type AiCardSize, AiLoader, type AiLoaderProps, AiLoadingPanel, type AiLoadingPanelProps, AiPanel, type AiPanelPadding, type AiPanelProps, AiSlimBanner, type AiSlimBannerProps, 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, BeamLogo, BeamProvider, type BeamTextFieldProps, BlueprintAiLogo, 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 CardCarouselFooter, type CardCarouselThumbnail, type CardDataBlockSlot, type CardEyebrowSlot, type CardInteractiveFooter, type CardInteractiveFooterSlot, type CardLeftEyebrowSlot, type CardProgressSlot, type CardProps, type CardRightEyebrowSlot, type CardSlot, type CardStatusSlot, type CardTag, type CardTitleSlot, type CardType, Carousel, type CarouselProps, CenteredLayout, type CenteredLayoutProps, type CenteredLayoutSize, 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, type CompanionConfig, type CompanionContent, type CompanionPosition, ConfirmCloseModal, ContentHeader, type ContentHeaderLevel, 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, FocusedFormLayout, type FocusedFormLayoutProps, 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 GridRowCompanion, 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 LogoSizeProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBanner, 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, StepperLayout, type StepperLayoutProps, type StepperLayoutStep, 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, type Xss, type ZIndex, actionColumn, applyRowFn, assignDefaultColumnIds, bannerAndNavbarChromeTop, beamEnvironmentBannerLayoutHeightVar, beamFloatingRightOffsetVar, beamLayoutContentPaddingXVar, 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, cardCarouselSlot, cardDataBlockSlot, cardEyebrowSlot, cardInteractiveFooterSlot, cardLeftEyebrowSlot, cardProgressSlot, cardRightEyebrowSlot, cardStatusSlot, cardStyle, cardTitleSlot, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, contrastDataTheme, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultDocumentScrollRightPaneWidth, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, documentScrollBodyMinHeight, documentScrollChromeLeft, documentScrollChromeWidth, documentScrollContentLeft, documentScrollContentWidth, 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, stickyNavAndHeaderOffsetPx, 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
@@ -7517,19 +7517,31 @@ declare function AiLoadingPanel(props: AiLoadingPanelProps): JSX.Element;
7517
7517
  type AiPanelProps = {
7518
7518
  /** Rounds the corners, for a panel sitting within page content rather than spanning it. */
7519
7519
  rounded?: boolean;
7520
- /** Set false to size the card to its content and center it, rather than filling the panel. */
7521
- fullWidth?: boolean;
7520
+ /** Background padding. `lg` = 24 all around; `sm` = 24 horizontal, 16 vertical. */
7521
+ padding?: AiPanelPadding;
7522
7522
  children?: ReactNode;
7523
7523
  } & AriaAttributes & {
7524
7524
  role?: AriaRole;
7525
7525
  };
7526
7526
  /**
7527
- * The Blueprint AI surface: the wordmark over the AI background, wrapping a card of whatever the flow
7528
- * needs.
7529
- *
7530
- * The background always spans its container; `fullWidth` only governs the card.
7527
+ * Escape hatch for one-off AI chrome — prefer a pre-composed component. See {@link AiBanner}, {@link AiLoadingPanel}, {@link AiSlimBanner}, or `aiMode` on {@link FormSectionLayout} / {@link StepperLayout} / {@link FocusedFormLayout} / {@link Modal}.
7528
+ * If none fit, ask the Design System team whether a component exists or should. Full rule: `docs/layouts.md`.
7531
7529
  */
7532
7530
  declare function AiPanel(props: AiPanelProps): JSX.Element;
7531
+ type AiCardProps = {
7532
+ /** Set false to size the card to its content and center it, rather than filling the parent. */
7533
+ fullWidth?: boolean;
7534
+ /** Logo height and logo-to-card gap. */
7535
+ size?: AiCardSize;
7536
+ children?: ReactNode;
7537
+ };
7538
+ /**
7539
+ * Escape hatch for one-off AI chrome — prefer a pre-composed component. See {@link AiBanner}, {@link AiLoadingPanel}, {@link AiSlimBanner}, or `aiMode` on {@link FormSectionLayout} / {@link StepperLayout} / {@link FocusedFormLayout} / {@link Modal}.
7540
+ * If none fit, ask the Design System team whether a component exists or should. Full rule: `docs/layouts.md`.
7541
+ */
7542
+ declare function AiCard(props: AiCardProps): JSX.Element;
7543
+ type AiPanelPadding = "lg" | "sm";
7544
+ type AiCardSize = "lg" | "sm";
7533
7545
 
7534
7546
  type AiSlimBannerProps = {
7535
7547
  title: string;
@@ -9066,6 +9078,8 @@ type ContentHeaderProps<X = ContentHeaderXss> = {
9066
9078
  withAutoSave?: boolean;
9067
9079
  /** Heading tag and size. `2` = `h2`/`xl` (default); `3` = `h3`/`lg`; `4` = `h4`/`mdSb`. Never `h1`. */
9068
9080
  level?: ContentHeaderLevel;
9081
+ /** Applies AI gradient title styling (`aiBoldText`). */
9082
+ aiMode?: boolean;
9069
9083
  /** Rendered before the title, e.g. a drag handle on `FormSectionChild`. */
9070
9084
  startAdornment?: ReactNode;
9071
9085
  /** Style overrides for padding. */
@@ -10016,7 +10030,7 @@ type ConfirmCloseModalProps = {
10016
10030
  discardText?: string;
10017
10031
  continueText?: string;
10018
10032
  };
10019
- /** Modal content for discarding unsaved changes (SuperDrawer close, WorkflowLayout leave, etc.). */
10033
+ /** Modal content for discarding unsaved changes (SuperDrawer close, workflow leave, etc.). */
10020
10034
  declare function ConfirmCloseModal(props: ConfirmCloseModalProps): JSX.Element;
10021
10035
 
10022
10036
  interface OpenModalProps {
@@ -10204,22 +10218,23 @@ type StepperTabProps = {
10204
10218
  declare function StepperTab(props: StepperTabProps): JSX.Element;
10205
10219
 
10206
10220
  type WorkflowActionsProps = {
10207
- isFirstStep: boolean;
10208
- isLastStep: boolean;
10209
- isMobile: boolean;
10210
- onBack: () => void;
10211
10221
  /** Leaves the workflow without saving. Always shown. */
10212
10222
  onCancel: (e: PressEvent) => void;
10213
10223
  /** Saves partial progress and exits. Used whenever canExitEarly is true. */
10214
10224
  onSaveAndExit?: (e: PressEvent) => void | Promise<void>;
10215
- /** Label for the completion button shown on the last step. */
10225
+ /** Label for the completion button shown on the last step (or when there is no next step). */
10216
10226
  completeLabel: "Create" | "Save";
10217
- /** Called when the completion button is clicked. Only shown on the last step. */
10227
+ /** Called when the completion button is clicked. */
10218
10228
  onComplete: (e: PressEvent) => void | Promise<void>;
10219
- /** Runs before continuing to the next step. Return `false` to stay put, like when the save failed. */
10220
- onContinue: () => boolean | void | Promise<boolean | void>;
10221
10229
  /** Disables whichever of Continue/Complete is currently shown, e.g. while the active step is invalid. */
10222
10230
  primaryDisabled?: boolean;
10231
+ /** When true, Continue/Complete use the `ai` button variant instead of `primary`. */
10232
+ aiMode?: boolean;
10233
+ isFirstStep?: boolean;
10234
+ isLastStep?: boolean;
10235
+ onBack?: () => void;
10236
+ /** Runs before continuing to the next step. Return `false` to stay put, like when the save failed. */
10237
+ onContinue?: () => boolean | void | Promise<boolean | void>;
10223
10238
  };
10224
10239
 
10225
10240
  type StepperTabsStep = Pick<StepperTabProps, "label" | "value" | "disabled"> & Partial<Pick<WorkflowActionsProps, "onContinue">>;
@@ -10411,7 +10426,7 @@ type CenteredLayoutProps = {
10411
10426
  size: CenteredLayoutSize;
10412
10427
  children?: ReactNode;
10413
10428
  };
10414
- /** Centered body-width shell. Nest inside page-header layout / workflow layout children — see `docs/layouts.md`. */
10429
+ /** Centered body-width shell. Nest inside page-header / stepper layout children — see `docs/layouts.md`. */
10415
10430
  declare function CenteredLayout(props: CenteredLayoutProps): JSX.Element;
10416
10431
 
10417
10432
  type EnvironmentBannerLayoutProps = {
@@ -10433,8 +10448,10 @@ type FormSectionLayoutProps = {
10433
10448
  /** When true, prepends `AutoSaveIndicator` in the actions area. */
10434
10449
  withAutoSave?: boolean;
10435
10450
  sections?: FormSectionProps[];
10451
+ /** When true, wraps in {@link AiCard} and applies AI title styling. */
10452
+ aiMode?: boolean;
10436
10453
  };
10437
- /** Form of `FormSection`s in a `sm` {@link CenteredLayout} — e.g. a `WorkflowLayoutStep`'s `content`. */
10454
+ /** Form of `FormSection`s in a `sm` {@link CenteredLayout} — e.g. a `StepperLayout` step's `content`. Use `aiMode` for the AI card + title treatment. */
10438
10455
  declare function FormSectionLayout(props: FormSectionLayoutProps): JSX.Element;
10439
10456
 
10440
10457
  /**
@@ -10496,9 +10513,9 @@ declare const beamRightPaneWidthVar = "--beam-right-pane-width";
10496
10513
  */
10497
10514
  declare const beamFloatingRightOffsetVar = "--beam-floating-right-offset";
10498
10515
  /**
10499
- * `WorkflowLayout`'s mobile action-footer height (px); `0px` when absent. Published directly on
10516
+ * Workflow layouts' mobile action-footer height (px); `0px` when absent. Published directly on
10500
10517
  * `document.documentElement` (not via inline `style` on a React-tree wrapper) since consumers like
10501
- * `DocumentScrollToTopButton` are siblings of `WorkflowLayout`'s subtree, not descendants.
10518
+ * `DocumentScrollToTopButton` are siblings of the workflow subtree, not descendants.
10502
10519
  */
10503
10520
  declare const beamWorkflowLayoutFooterHeightVar = "--beam-workflow-layout-footer-height";
10504
10521
  /** `left` for document-scroll sticky chrome (below side nav when present). */
@@ -10511,6 +10528,8 @@ declare function documentScrollContentLeft(): string;
10511
10528
  declare function documentScrollContentWidth(): string;
10512
10529
  /** `height` for a fixed document-scroll right pane from the sticky table-header offset to the viewport bottom. */
10513
10530
  declare function documentScrollRightPaneHeight(): string;
10531
+ /** `min-height` so a document-scroll step surface fills the first screen below sticky chrome. */
10532
+ declare function documentScrollBodyMinHeight(): string;
10514
10533
  /**
10515
10534
  * `width` for the document-scroll right pane: the configured max px, capped by available chrome
10516
10535
  * width so the pane fits the viewport on mobile (side nav collapses to `0px` there).
@@ -10520,11 +10539,13 @@ declare function documentScrollRightPaneWidth(maxPx: number): string;
10520
10539
  declare function bannerAndNavbarChromeTop(): string;
10521
10540
  /** `top` offset below environment banner + auto-hiding navbar + page header (each var collapses to `0` when scrolled away). */
10522
10541
  declare function stickyNavAndHeaderOffset(basePx?: number): string;
10542
+ /** Pixel equivalent of {@link stickyNavAndHeaderOffset}, read from `el`'s computed (inherited) CSS vars. Used by JumpLink scroll-spy, which needs a number rather than a CSS `calc()`. */
10543
+ declare function stickyNavAndHeaderOffsetPx(el: Element): number;
10523
10544
  /** `top` offset for sticky table column headers (environment banner + navbar + page header + table actions). */
10524
10545
  declare function stickyTableHeaderOffset(basePx?: number): string;
10525
10546
  /**
10526
10547
  * `bottom` offset for floating page chrome (e.g. `DocumentScrollToTopButton`) that must clear other
10527
- * fixed-position bottom chrome — currently just `WorkflowLayout`'s mobile action footer, but stacks with
10548
+ * fixed-position bottom chrome — currently just the workflow mobile action footer, but stacks with
10528
10549
  * future bottom-anchored elements the same way. `basePx` is the element's own resting offset.
10529
10550
  */
10530
10551
  declare function getFloatingBottomOffset(basePx?: number): string;
@@ -10565,38 +10586,56 @@ type PageHeaderLayoutProps<V extends string, X> = {
10565
10586
  /** Page header + body shell with auto-hide chrome. Contract: `docs/layouts.md`. */
10566
10587
  declare function PageHeaderLayout<V extends string, X extends Only<TabsContentXss, X>>(props: PageHeaderLayoutProps<V, X>): JSX.Element;
10567
10588
 
10589
+ type FocusedFormSection = FormSectionProps & {
10590
+ /** When true, omit this section from the JumpLinks rail. */
10591
+ excludeJumpLink?: boolean;
10592
+ };
10593
+ type FocusedFormLayoutProps = Pick<BaseHeaderProps, "title" | "documentTitleSuffix" | "breadcrumbs"> & Pick<WorkflowActionsProps, "onCancel" | "completeLabel" | "onComplete" | "onSaveAndExit"> & {
10594
+ /** Gates the Create/Save CTA. */
10595
+ isValid: boolean;
10596
+ /** Read on Cancel / leave — a callback so flipping dirty does not re-render. */
10597
+ isDirty?: () => boolean;
10598
+ /** When false, never show the JumpLinks rail. */
10599
+ withJumpLinks?: boolean;
10600
+ /** Page wash, `ai` CTA, and forwarded to `form`. */
10601
+ aiMode?: boolean;
10602
+ form: Omit<FormSectionLayoutProps, "sections"> & {
10603
+ sections?: FocusedFormSection[];
10604
+ };
10605
+ };
10568
10606
  /**
10569
- * A `WorkflowLayout` step: a `StepperTabsStep` (minus `value`, which is derived from `label`) plus
10607
+ * Standalone single-form workflow page. Contract: `docs/layouts.md`.
10608
+ * Nest under `EnvironmentBannerLayout` only — no navbar/side nav, so attention stays on the form.
10609
+ */
10610
+ declare function FocusedFormLayout(props: FocusedFormLayoutProps): JSX.Element;
10611
+
10612
+ /**
10613
+ * A `StepperLayout` step: a `StepperTabsStep` (minus `value`, which is derived from `label`) plus
10570
10614
  * page content. Stepper chrome marks prior steps complete via current-step index; `isValid` only
10571
10615
  * gates the Continue/Complete CTA for the active step.
10572
10616
  */
10573
- type WorkflowLayoutStep = Omit<StepperTabsStep, "value"> & {
10617
+ type StepperLayoutStep = Omit<StepperTabsStep, "value"> & {
10574
10618
  /** Rendered as the page body while this is the active step. */
10575
10619
  content: ReactNode;
10576
10620
  /** Gates Continue/Complete for the active step (form validity) */
10577
10621
  isValid: boolean;
10578
10622
  };
10579
- type WorkflowLayoutProps = Pick<BaseHeaderProps, "title" | "documentTitleSuffix" | "breadcrumbs"> & Pick<WorkflowActionsProps, "onCancel" | "completeLabel" | "onComplete" | "onSaveAndExit"> & {
10623
+ type StepperLayoutProps = Pick<BaseHeaderProps, "title" | "documentTitleSuffix" | "breadcrumbs"> & Pick<WorkflowActionsProps, "onCancel" | "completeLabel" | "onComplete" | "onSaveAndExit"> & {
10580
10624
  /** The workflow's steps; the active step's `content` is the body, and it drives the header's tab strip. */
10581
- steps: WorkflowLayoutStep[];
10625
+ steps: StepperLayoutStep[];
10582
10626
  /** The step shown initially (matched against `defaultTestId(step.label)`); falls back to the first step if omitted or if it doesn't match any step. Uncontrolled — the layout owns step navigation from here. */
10583
10627
  defaultStep?: string;
10584
- /** When this returns true, Cancel / in-app route changes / tab close require confirmation. */
10628
+ /** Read on Cancel / leave — a callback so flipping dirty does not re-render. */
10585
10629
  isDirty?: () => boolean;
10630
+ /** Full-bleed AI wash on the body. Pair with `aiMode` on a step's `FormSectionLayout`. */
10631
+ aiMode?: boolean;
10586
10632
  };
10587
10633
  /**
10588
- * Workflow-header + body shell with sticky (always-visible) chrome. Contract: `docs/layouts.md`.
10589
- *
10590
- * A standalone, full-page layout for step-based workflow pages — nest it directly under
10591
- * `EnvironmentBannerLayout`, never under `NavbarLayout`/`SideNavLayout`/`PageHeaderLayout`. Unlike
10592
- * `PageHeaderLayout`, the header here never auto-hides. The stepper tabs collapse to a condensed
10593
- * indicator bar on mobile only.
10594
- *
10595
- * Owns the workflow's fixed CTA set (Back/Cancel/Save & Exit/Continue-or-Complete) via `WorkflowActions`
10596
- * so it can move them into a mobile footer at the `sm` breakpoint — `WorkflowHeader` itself is not part
10597
- * of the public API. Pass `isDirty` to confirm before Cancel, in-app navigation, or tab close.
10634
+ * Standalone step-based workflow page. Contract: `docs/layouts.md`.
10635
+ * Nest under `EnvironmentBannerLayout` only — no navbar/side nav, so attention stays on the workflow.
10636
+ * Header does not auto-hide; stepper tabs collapse on mobile; body is the active step's `content`.
10598
10637
  */
10599
- declare function WorkflowLayout(props: WorkflowLayoutProps): JSX.Element;
10638
+ declare function StepperLayout(props: StepperLayoutProps): JSX.Element;
10600
10639
 
10601
10640
  /**
10602
10641
  * Guesses an id based on a label string, i.e. given `Homeowner Contract`,
@@ -10640,4 +10679,4 @@ declare const zIndices: {
10640
10679
  };
10641
10680
  type ZIndex = (typeof zIndices)[keyof typeof zIndices];
10642
10681
 
10643
- export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, AiBanner, type AiBannerProps, AiLoader, type AiLoaderProps, AiLoadingPanel, type AiLoadingPanelProps, AiPanel, type AiPanelProps, AiSlimBanner, type AiSlimBannerProps, 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, BeamLogo, BeamProvider, type BeamTextFieldProps, BlueprintAiLogo, 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 CardCarouselFooter, type CardCarouselThumbnail, type CardDataBlockSlot, type CardEyebrowSlot, type CardInteractiveFooter, type CardInteractiveFooterSlot, type CardLeftEyebrowSlot, type CardProgressSlot, type CardProps, type CardRightEyebrowSlot, type CardSlot, type CardStatusSlot, type CardTag, type CardTitleSlot, type CardType, Carousel, type CarouselProps, CenteredLayout, type CenteredLayoutProps, type CenteredLayoutSize, 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, type CompanionConfig, type CompanionContent, type CompanionPosition, ConfirmCloseModal, ContentHeader, type ContentHeaderLevel, 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 GridRowCompanion, 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 LogoSizeProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBanner, 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, beamLayoutContentPaddingXVar, 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, cardCarouselSlot, cardDataBlockSlot, cardEyebrowSlot, cardInteractiveFooterSlot, cardLeftEyebrowSlot, cardProgressSlot, cardRightEyebrowSlot, cardStatusSlot, cardStyle, cardTitleSlot, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, contrastDataTheme, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultDocumentScrollRightPaneWidth, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, documentScrollChromeLeft, documentScrollChromeWidth, documentScrollContentLeft, documentScrollContentWidth, 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 };
10682
+ export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, AiBanner, type AiBannerProps, AiCard, type AiCardProps, type AiCardSize, AiLoader, type AiLoaderProps, AiLoadingPanel, type AiLoadingPanelProps, AiPanel, type AiPanelPadding, type AiPanelProps, AiSlimBanner, type AiSlimBannerProps, 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, BeamLogo, BeamProvider, type BeamTextFieldProps, BlueprintAiLogo, 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 CardCarouselFooter, type CardCarouselThumbnail, type CardDataBlockSlot, type CardEyebrowSlot, type CardInteractiveFooter, type CardInteractiveFooterSlot, type CardLeftEyebrowSlot, type CardProgressSlot, type CardProps, type CardRightEyebrowSlot, type CardSlot, type CardStatusSlot, type CardTag, type CardTitleSlot, type CardType, Carousel, type CarouselProps, CenteredLayout, type CenteredLayoutProps, type CenteredLayoutSize, 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, type CompanionConfig, type CompanionContent, type CompanionPosition, ConfirmCloseModal, ContentHeader, type ContentHeaderLevel, 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, FocusedFormLayout, type FocusedFormLayoutProps, 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 GridRowCompanion, 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 LogoSizeProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBanner, 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, StepperLayout, type StepperLayoutProps, type StepperLayoutStep, 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, type Xss, type ZIndex, actionColumn, applyRowFn, assignDefaultColumnIds, bannerAndNavbarChromeTop, beamEnvironmentBannerLayoutHeightVar, beamFloatingRightOffsetVar, beamLayoutContentPaddingXVar, 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, cardCarouselSlot, cardDataBlockSlot, cardEyebrowSlot, cardInteractiveFooterSlot, cardLeftEyebrowSlot, cardProgressSlot, cardRightEyebrowSlot, cardStatusSlot, cardStyle, cardTitleSlot, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, contrastDataTheme, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultDocumentScrollRightPaneWidth, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, documentScrollBodyMinHeight, documentScrollChromeLeft, documentScrollChromeWidth, documentScrollContentLeft, documentScrollContentWidth, 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, stickyNavAndHeaderOffsetPx, 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 };