@homebound/beam 3.28.0 → 3.30.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
@@ -5171,10 +5171,10 @@ type GridColumnWithId<R extends Kinded> = GridColumn<R> & {
5171
5171
  };
5172
5172
  declare const nonKindGridColumnKeys: string[];
5173
5173
  /**
5174
- * Used to indicate where to pin the DataRow and if whether it should be filtered or always visible, setting `filter` to `true` will hide this row
5175
- * if it doesn't match the provided filtering search term
5174
+ * Used to indicate where to fixed-sort the DataRow within its group, and whether it should be filtered
5175
+ * or always visible — setting `filter` to `true` will hide this row if it doesn't match the search term.
5176
5176
  */
5177
- type Pin = {
5177
+ type FixedSort = {
5178
5178
  at: "first" | "last";
5179
5179
  filter?: boolean;
5180
5180
  };
@@ -5311,6 +5311,8 @@ type GridStyle = {
5311
5311
  keptGroupRowCss?: Properties;
5312
5312
  /** Defines styles for the last row `keptGroup` to provide separation from the rest of the table */
5313
5313
  keptLastRowCss?: Properties;
5314
+ /** Applied to every cell of a runtime-pinned row — the green highlight for the pinned section. */
5315
+ pinnedRowCss?: Properties;
5314
5316
  };
5315
5317
  type GridStyleDef = {
5316
5318
  /** Changes the height of the rows when `rowHeight: fixed` to provide more space between rows for input fields. */
@@ -5464,6 +5466,12 @@ declare class TableState<R extends Kinded> {
5464
5466
  get collapsedIds(): string[];
5465
5467
  isCollapsed(id: string): boolean;
5466
5468
  toggleCollapsed(id: string): void;
5469
+ /** Returns rows pinned to the top, as RowStates for rendering. */
5470
+ get pinnedRows(): RowState<R>[];
5471
+ isPinnedRow(id: string): boolean;
5472
+ pinRow(id: string): void;
5473
+ unpinRow(id: string): void;
5474
+ togglePinned(id: string): void;
5467
5475
  deleteRows(ids: string[]): void;
5468
5476
  maybeSetRowDraggedOver(id: string, draggedOver: DraggedOver, requireSameParentRow?: GridDataRow<R> | undefined): void;
5469
5477
  }
@@ -5513,6 +5521,13 @@ declare class RowStates<R extends Kinded> {
5513
5521
  /** Returns kept rows, i.e. those that were user-selected but then client-side or server-side filtered. */
5514
5522
  get keptRows(): RowState<R>[];
5515
5523
  get collapsedRows(): RowState<R>[];
5524
+ /**
5525
+ * Returns rows pinned to the top at runtime.
5526
+ *
5527
+ * Sourced from `allStates` and not `visibleRows` so pinned rows stay visible even when the
5528
+ * current filter would otherwise hide them (like`keptRows`). Reserved rows are never pinnable.
5529
+ */
5530
+ get pinnedRows(): RowState<R>[];
5516
5531
  private createHeaderRow;
5517
5532
  /** Create our synthetic "group row" for kept rows, that users never pass in, but we self-inject as needed. */
5518
5533
  private createKeptGroupRow;
@@ -5543,6 +5558,12 @@ declare class RowState<R extends Kinded> {
5543
5558
  selected: boolean;
5544
5559
  /** Whether we are collapsed. */
5545
5560
  collapsed: boolean;
5561
+ /**
5562
+ * Whether this row is pinned to the top at runtime — distinct from the declarative `row.fixedSort`,
5563
+ * which only reorders within a group. Boolean for now; maybe someday we implement bottom pinning,
5564
+ * at which point this would become `"top" | "bottom"`.
5565
+ */
5566
+ pinned: boolean;
5546
5567
  /** Whether we are dragged over. */
5547
5568
  isDraggedOver: DraggedOver;
5548
5569
  /**
@@ -5605,6 +5626,10 @@ declare class RowState<R extends Kinded> {
5605
5626
  /** Marks the row as removed from `props.rows`, to potentially become kept. */
5606
5627
  markRemoved(): void;
5607
5628
  toggleCollapsed(): void;
5629
+ /** Pin/unpin this row at runtime. */
5630
+ setPinned(pinned: boolean): void;
5631
+ /** Toggle this row's runtime pin. */
5632
+ togglePinned(): void;
5608
5633
  /** Whether this is a selected-but-filtered-out row that we should hoist to the top. */
5609
5634
  get isKept(): boolean;
5610
5635
  get isLastKeptRow(): boolean;
@@ -5632,7 +5657,13 @@ declare class RowState<R extends Kinded> {
5632
5657
  * they want the row to be selectable.
5633
5658
  */
5634
5659
  private get isParent();
5635
- private get isPinned();
5660
+ /**
5661
+ * Whether the declarative `row.fixedSort` keeps this row visible through client-side filtering.
5662
+ *
5663
+ * Named for the behavior (not the prop): `fixedSort` reorders a row within its sibling group and
5664
+ * (here) exempts it from the filter — distinct from the runtime sticky `pinned`.
5665
+ */
5666
+ private get isAlwaysVisible();
5636
5667
  get api(): GridRowApi<R>;
5637
5668
  get isReservedKind(): boolean;
5638
5669
  /** A dedicated method to "looking down" recursively, to avoid loops in `isMatched`. */
@@ -5699,18 +5730,21 @@ type GridDataRow<R extends Kinded> = {
5699
5730
  /** A list of parent/grand-parent ids for collapsing parent/child rows. */
5700
5731
  children?: GridDataRow<R>[];
5701
5732
  /**
5702
- * Whether to pin this sort to the first/last of its parent's children.
5733
+ * Forces this row to sort to the first/last of its parent's children.
5703
5734
  *
5704
- * By default, pinned rows are always shown/not filtered out, however providing
5705
- * the pin `filter: true` property will allow pinned rows to be hidden
5706
- * while filtering.
5735
+ * By default, fixed-sorted rows are always shown/not filtered out; providing the
5736
+ * `filter: true` property allows them to be hidden while filtering. This is the
5737
+ * in-group ordering override, distinct from the runtime sticky "pin to top" feature
5738
+ * (`api.pinRow` / `pinColumn`).
5707
5739
  */
5708
- pin?: "first" | "last" | Pin;
5740
+ fixedSort?: "first" | "last" | FixedSort;
5709
5741
  data: unknown;
5710
5742
  /** Whether to have the row collapsed (children not visible) on initial load. This will be ignore in subsequent re-renders of the table */
5711
5743
  initCollapsed?: boolean;
5712
5744
  /** Whether to have the row selected on initial load. This will be ignore in subsequent re-renders of the table */
5713
5745
  initSelected?: boolean;
5746
+ /** Whether to pin this row to the top on initial load. Ignored on subsequent re-renders (like `initSelected`). */
5747
+ initPinned?: boolean;
5714
5748
  /** Whether row can be selected */
5715
5749
  selectable?: false;
5716
5750
  /** Whether this row should infer its selected state based on its children's selected state */
@@ -5790,6 +5824,16 @@ type GridTableApi<R extends Kinded> = {
5790
5824
  isCollapsedRow(id: string): boolean;
5791
5825
  /** Toggle collapse state of a row by id. */
5792
5826
  toggleCollapsedRow(id: string): void;
5827
+ /** Whether a row is currently pinned to the top. */
5828
+ isPinnedRow(id: string): boolean;
5829
+ /** Pins a row to the top so it stays visible (sticky) while the body scrolls. */
5830
+ pinRow(id: string): void;
5831
+ /** Removes a row's runtime pin. */
5832
+ unpinRow(id: string): void;
5833
+ /** Toggles a row's runtime pinned state. */
5834
+ togglePinnedRow(id: string): void;
5835
+ /** Returns the ids of currently pinned rows. */
5836
+ getPinnedRowIds(): string[];
5793
5837
  /** Sets the internal state of 'activeRowId' */
5794
5838
  setActiveRowId(id: string | undefined): void;
5795
5839
  /** Sets the internal state of 'activeCellId' */
@@ -5843,6 +5887,12 @@ declare class GridTableApiImpl<R extends Kinded> implements GridTableApi<R> {
5843
5887
  selectRow(id: string, selected?: boolean): void;
5844
5888
  toggleCollapsedRow(id: string): void;
5845
5889
  isCollapsedRow(id: string): boolean;
5890
+ isPinnedRow(id: string): boolean;
5891
+ pinRow(id: string): void;
5892
+ unpinRow(id: string): void;
5893
+ togglePinnedRow(id: string): void;
5894
+ getPinnedRowIds(): string[];
5895
+ private getPinnedRowIdsImpl;
5846
5896
  setVisibleColumns(ids: string[]): void;
5847
5897
  getVisibleColumnIds(): string[];
5848
5898
  resetColumnWidths(): void;
@@ -6147,6 +6197,30 @@ interface BannerProps {
6147
6197
  declare function Banner(props: BannerProps): JSX.Element;
6148
6198
  type BannerTypes = "error" | "warning" | "success" | "info" | "alert";
6149
6199
 
6200
+ type AppEnvironment = "local" | "dev" | "qa" | "local-prod" | "prod";
6201
+ type ImpersonatedUser = {
6202
+ name: string;
6203
+ };
6204
+ type EnvironmentBannerProps = {
6205
+ env: AppEnvironment;
6206
+ impersonating?: ImpersonatedUser;
6207
+ };
6208
+ /** Environment banner; horizontal/vertical pinning is owned by {@link EnvironmentBannerLayout}. */
6209
+ declare function EnvironmentBanner(props: EnvironmentBannerProps): JSX.Element | null;
6210
+ /** True when {@link EnvironmentBanner} should display: `dev`, `qa`, `local-prod`, or `prod` while impersonating. */
6211
+ declare function shouldShowEnvironmentBanner(env: AppEnvironment, impersonating: ImpersonatedUser | undefined): boolean;
6212
+ /** Fixed banner height (px); {@link EnvironmentBannerLayout} reads this for spacer/CSS var offsets. */
6213
+ declare const environmentBannerSizePx = 34;
6214
+
6215
+ type DocumentTitleConfig = {
6216
+ env: AppEnvironment;
6217
+ suffix?: string;
6218
+ };
6219
+ declare function DocumentTitleProvider(props: PropsWithChildren<DocumentTitleConfig>): JSX.Element;
6220
+
6221
+ /** Joins page-level title segments for {@link useDocumentTitle}. */
6222
+ declare function joinDocumentTitleSegments(...segments: (string | undefined)[]): string | undefined;
6223
+
6150
6224
  type ModalSize = "sm" | "md" | "lg" | "xl" | "xxl";
6151
6225
  type ModalProps = {
6152
6226
  /**
@@ -6250,9 +6324,10 @@ interface UseSuperDrawerHook {
6250
6324
  }
6251
6325
  declare function useSuperDrawer(): UseSuperDrawerHook;
6252
6326
 
6253
- interface BeamProviderProps extends PropsWithChildren<PresentationContextProps> {
6254
- }
6255
- declare function BeamProvider({ children, ...presentationProps }: BeamProviderProps): JSX.Element;
6327
+ type BeamProviderProps = {
6328
+ documentTitleConfig?: DocumentTitleConfig;
6329
+ } & PropsWithChildren<PresentationContextProps>;
6330
+ declare function BeamProvider({ children, documentTitleConfig, ...presentationProps }: BeamProviderProps): JSX.Element;
6256
6331
 
6257
6332
  type DatePickerProps = {
6258
6333
  value?: PlainDate;
@@ -6366,21 +6441,6 @@ type DnDGridItemHandleProps = {
6366
6441
  /** Provides a specific handle element for dragging a GridItem. Includes handling behaviors and interactions */
6367
6442
  declare function DnDGridItemHandle(props: DnDGridItemHandleProps): JSX.Element;
6368
6443
 
6369
- type AppEnvironment = "local" | "dev" | "qa" | "local-prod" | "prod";
6370
- type ImpersonatedUser = {
6371
- name: string;
6372
- };
6373
- type EnvironmentBannerProps = {
6374
- env: AppEnvironment;
6375
- impersonating?: ImpersonatedUser;
6376
- };
6377
- /** Environment banner; horizontal/vertical pinning is owned by {@link EnvironmentBannerLayout}. */
6378
- declare function EnvironmentBanner(props: EnvironmentBannerProps): JSX.Element | null;
6379
- /** True when {@link EnvironmentBanner} should display: `dev`, `qa`, `local-prod`, or `prod` while impersonating. */
6380
- declare function shouldShowEnvironmentBanner(env: AppEnvironment, impersonating: ImpersonatedUser | undefined): boolean;
6381
- /** Fixed banner height (px); {@link EnvironmentBannerLayout} reads this for spacer/CSS var offsets. */
6382
- declare const environmentBannerSizePx = 34;
6383
-
6384
6444
  /** App-hosted favicon URLs; `default` is required for envs without a dedicated entry (e.g. `local`). */
6385
6445
  type EnvironmentFaviconUrls = Partial<Record<AppEnvironment, string>> & {
6386
6446
  default: string;
@@ -7936,6 +7996,16 @@ type EditColumnsButtonProps<R extends Kinded> = {
7936
7996
  } & Pick<OverlayTriggerProps, "placement" | "disabled" | "tooltip">;
7937
7997
  declare function EditColumnsButton<R extends Kinded>(props: EditColumnsButtonProps<R>): JSX.Element;
7938
7998
 
7999
+ type PinToggleProps = {
8000
+ rowId: string;
8001
+ };
8002
+ /**
8003
+ * Provides a pin icon to pin/unpin a row to the top of the table at runtime.
8004
+ *
8005
+ * The pinned row is hoisted into a sticky pinned section that stays visible while the body scrolls.
8006
+ */
8007
+ declare function PinToggle({ rowId }: PinToggleProps): JSX.Element;
8008
+
7939
8009
  interface SelectToggleProps {
7940
8010
  id: string;
7941
8011
  disabled?: boolean | ReactNode;
@@ -8027,6 +8097,16 @@ declare function selectColumn<T extends Kinded>(columnDef?: Partial<GridColumn<T
8027
8097
  * all rows.
8028
8098
  */
8029
8099
  declare function collapseColumn<T extends Kinded>(columnDef?: Partial<GridColumn<T>>): GridColumn<T>;
8100
+ /**
8101
+ * Provides a GridColumn containing a {@link PinToggle} to pin/unpin rows to the top at runtime.
8102
+ *
8103
+ * Like `selectColumn`/`collapseColumn`, this accepts no `columnDef` or a partial one. The toggle is
8104
+ * rendered for data rows by default; header/totals/expandableHeader get an `emptyCell` since there's
8105
+ * no "pin all" concept and reserved rows aren't pinnable.
8106
+ *
8107
+ * Note: pinning a parent row hoists only that row into the sticky pinned section — its children stay in place.
8108
+ */
8109
+ declare function pinColumn<T extends Kinded>(columnDef?: Partial<GridColumn<T>>): GridColumn<T>;
8030
8110
  declare const layoutGutterLeftColumnId = "beamLayoutGutterLeft";
8031
8111
  declare const layoutGutterRightColumnId = "beamLayoutGutterRight";
8032
8112
  /** True for columns that display row data (not action controls or layout gutters). */
@@ -8274,6 +8354,9 @@ declare function useContentOverflow<TContainer extends HTMLElement = HTMLElement
8274
8354
  overflows: boolean;
8275
8355
  };
8276
8356
 
8357
+ /** Sets `document.title` from joined segments plus provider env prefix and app suffix. */
8358
+ declare function useDocumentTitle(...titleSegments: (string | undefined)[]): void;
8359
+
8277
8360
  interface UsePersistedFilterProps$1<F> {
8278
8361
  filterDefs: FilterDefs<F>;
8279
8362
  }
@@ -8726,11 +8809,13 @@ declare function TabContent<V extends string, X extends Only<TabsContentXss, X>>
8726
8809
  /** The top list of tabs. */
8727
8810
  declare function Tabs<V extends string, X extends Only<TabsContentXss, X>>(props: TabsProps<V, X> | RouteTabsProps<V, X>): JSX.Element;
8728
8811
 
8729
- interface PageHeaderProps<V extends string, X> {
8730
- title: ReactNode;
8812
+ type PageHeaderProps<V extends string, X> = {
8813
+ title: string;
8814
+ /** Extra segment(s) for `document.title` only; not shown in the visible page heading. */
8815
+ documentTitleSuffix?: string;
8731
8816
  rightSlot?: ReactNode;
8732
8817
  tabs?: Omit<TabsProps<V, X>, "contentXss" | "omitFullBleedPadding" | "includeBottomBorder"> | Omit<RouteTabsProps<V, X>, "contentXss" | "omitFullBleedPadding" | "includeBottomBorder">;
8733
- }
8818
+ };
8734
8819
  declare function PageHeader<V extends string, X extends Only<TabsContentXss, X>>(props: PageHeaderProps<V, X>): JSX.Element;
8735
8820
 
8736
8821
  /**
@@ -9027,4 +9112,4 @@ declare const zIndices: {
9027
9112
  };
9028
9113
  type ZIndex = (typeof zIndices)[keyof typeof zIndices];
9029
9114
 
9030
- export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, type AppEnvironment, type AppNavGroup, type AppNavItem, type AppNavLink, type AppNavSection, type AppNavSectionItem, AutoSaveIndicator, AutoSaveStatus, AutoSaveStatusContext, AutoSaveStatusProvider, Autocomplete, type AutocompleteProps, Avatar, AvatarButton, type AvatarButtonProps, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, Banner, type BannerProps, type BannerTypes, BaseFilter, type BaseQueryTableProps, type BaseTableProps, type BeamButtonProps, type BeamColor, type BeamFocusableProps, BeamProvider, type BeamTextFieldProps, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundIconCardField, type BoundIconCardFieldProps, BoundIconCardGroupField, type BoundIconCardGroupFieldProps, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardBadgeSlot, 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, type ContentStack, ContrastScope, Copy, CountBadge, type CountBadgeProps, Css, CssReset, type CssSetVarKeys, type CssSetVarScalar, type CssSetVarValue, DESC, DateField, type DateFieldFormat, type DateFieldMode, type DateFieldProps, type DateFilterValue, type DateMatcher, type DateRange, DateRangeField, type DateRangeFieldProps, type DateRangeFilterValue, type DefinedFilterValue, type Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, type DragData, EXPANDABLE_HEADER, EditColumnsButton, EnvironmentBanner, EnvironmentBannerLayout, type EnvironmentBannerLayoutProps, type EnvironmentBannerProps, type EnvironmentFaviconUrls, ErrorMessage, FieldGroup, type Filter, type FilterDefs, _FilterDropdownMenu as FilterDropdownMenu, type FilterImpls, FilterModal, _Filters as Filters, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, type FormSectionConfig, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, HelperText, HomeboundLogo, Icon, IconButton, type IconButtonProps, type IconButtonVariant, IconCard, type IconCardProps, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type ImpersonatedUser, type InfiniteScroll, type InlineStyle, type InputStylePalette, KEPT_GROUP, type Kinded, Loader, LoadingSkeleton, type LoadingSkeletonProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectField, type MultiSelectFieldProps, NavLink, type NavLinkProps, type NavLinkVariant, Navbar, NavbarLayout, type NavbarLayoutProps, type NavbarProps, type NavbarUser, type NestedOption, type NestedOptionsOrLoad, NumberField, type NumberFieldProps, type NumberFieldType, type OffsetAndLimit, type OnRowDragEvent, type OnRowSelect, type Only, type OpenDetailOpts, type OpenInDrawerOpts, OpenModal, type OpenRightPaneOpts, type Optional, type Padding, PageHeader, PageHeaderLayout, type PageHeaderLayoutProps, type PageHeaderProps, type PageNumberAndSize, type PageSettings, Pagination, Palette, type Pin, type Placement, type PlainDate, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, ResponsiveGrid, type ResponsiveGridConfig, ResponsiveGridContext, ResponsiveGridItem, type ResponsiveGridItemProps, type ResponsiveGridProps, RichTextField, RichTextFieldImpl, type RichTextFieldProps, RightPaneContext, RightPaneLayout, type RightPaneLayoutContextProps, RightPaneProvider, RightSidebar, type RightSidebarProps, type RouteTab, type RouteTabWithContent, Row, type RowStyle, type RowStyles, RuntimeCss, type RuntimeStyles, SIDE_NAV_LAYOUT_STATE_STORAGE_KEY, ScrollShadows, ScrollableContent, ScrollableFooter, ScrollableParent, SelectField, type SelectFieldProps, SelectToggle, type SelectedFilterLabelValue, type SelectedState, SideNav, SideNavLayout, type SideNavLayoutContextProps, type SideNavLayoutProps, SideNavLayoutProvider, type SideNavLayoutState, type SideNavProps, type SidePanelProps, type SidebarContentProps, type SimpleHeaderAndData, SortHeader, type SortOn, type SortState, StaticField, type Step, Stepper, type StepperProps, type StyleKind, SubmitButton, type SubmitButtonProps, SuperDrawerContent, SuperDrawerHeader, SuperDrawerWidth, type SupportedDateFormat, Switch, type SwitchProps, TOTALS, type Tab, TabContent, type TabWithContent, TableReviewLayout, type TableReviewLayoutProps, TableState, TableStateContext, type TableView, Tabs, TabsWithContent, Tag, type TagProps, type TagType, 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, beamLayoutViewportHeightVar, beamLayoutViewportWidthVar, beamNavbarLayoutHeightVar, beamPageHeaderLayoutHeightVar, beamSideNavLayoutWidthVar, beamTableActionsHeightVar, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundIconCardField, boundIconCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnLayout, calcColumnSizes, 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, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getJustification, getNavLinkStyles, getTableRefWidthStyles, getTableStyles, headerRenderFn, hoverStyles, iconCardStylesHover, increment, insertAtIndex, isContentColumn, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, layoutGutterLeftColumnId, layoutGutterRightColumnId, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeCssVar, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveTableContentWidth, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, selectedStyles, setDefaultStyle, setEnvironmentFavicon, setGridTableDefaults, setRunningInJest, shouldShowEnvironmentBanner, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, stickyNavAndHeaderOffset, stickyTableHeaderOffset, sumColumnSizesPx, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBreakpoint, useComputed, useContentOverflow, useContrastScope, useDnDGridItem, type useDnDGridItemProps, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHasSideNavLayoutProvider, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneContext, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSideNavLayoutContext, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, withColumnGutters, zIndices };
9115
+ export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, type AppEnvironment, type AppNavGroup, type AppNavItem, type AppNavLink, type AppNavSection, type AppNavSectionItem, AutoSaveIndicator, AutoSaveStatus, AutoSaveStatusContext, AutoSaveStatusProvider, Autocomplete, type AutocompleteProps, Avatar, AvatarButton, type AvatarButtonProps, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, Banner, type BannerProps, type BannerTypes, BaseFilter, type BaseQueryTableProps, type BaseTableProps, type BeamButtonProps, type BeamColor, type BeamFocusableProps, BeamProvider, type BeamTextFieldProps, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundIconCardField, type BoundIconCardFieldProps, BoundIconCardGroupField, type BoundIconCardGroupFieldProps, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardBadgeSlot, 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, 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, _FilterDropdownMenu as FilterDropdownMenu, type FilterImpls, FilterModal, _Filters as Filters, type FixedSort, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, type FormSectionConfig, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, HelperText, HomeboundLogo, Icon, IconButton, type IconButtonProps, type IconButtonVariant, IconCard, type IconCardProps, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type ImpersonatedUser, type InfiniteScroll, type InlineStyle, type InputStylePalette, KEPT_GROUP, type Kinded, Loader, LoadingSkeleton, type LoadingSkeletonProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectField, type MultiSelectFieldProps, NavLink, type NavLinkProps, type NavLinkVariant, Navbar, NavbarLayout, type NavbarLayoutProps, type NavbarProps, type NavbarUser, type NestedOption, type NestedOptionsOrLoad, NumberField, type NumberFieldProps, type NumberFieldType, type OffsetAndLimit, type OnRowDragEvent, type OnRowSelect, type Only, type OpenDetailOpts, type OpenInDrawerOpts, OpenModal, type OpenRightPaneOpts, type Optional, type Padding, PageHeader, PageHeaderLayout, type PageHeaderLayoutProps, type PageHeaderProps, type PageNumberAndSize, type PageSettings, Pagination, Palette, PinToggle, type Placement, type PlainDate, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, ResponsiveGrid, type ResponsiveGridConfig, ResponsiveGridContext, ResponsiveGridItem, type ResponsiveGridItemProps, type ResponsiveGridProps, RichTextField, RichTextFieldImpl, type RichTextFieldProps, RightPaneContext, RightPaneLayout, type RightPaneLayoutContextProps, RightPaneProvider, RightSidebar, type RightSidebarProps, type RouteTab, type RouteTabWithContent, Row, type RowStyle, type RowStyles, RuntimeCss, type RuntimeStyles, SIDE_NAV_LAYOUT_STATE_STORAGE_KEY, ScrollShadows, ScrollableContent, ScrollableFooter, ScrollableParent, SelectField, type SelectFieldProps, SelectToggle, type SelectedFilterLabelValue, type SelectedState, SideNav, SideNavLayout, type SideNavLayoutContextProps, type SideNavLayoutProps, SideNavLayoutProvider, type SideNavLayoutState, type SideNavProps, type SidePanelProps, type SidebarContentProps, type SimpleHeaderAndData, SortHeader, type SortOn, type SortState, StaticField, type Step, Stepper, type StepperProps, type StyleKind, SubmitButton, type SubmitButtonProps, SuperDrawerContent, SuperDrawerHeader, SuperDrawerWidth, type SupportedDateFormat, Switch, type SwitchProps, TOTALS, type Tab, TabContent, type TabWithContent, TableReviewLayout, type TableReviewLayoutProps, TableState, TableStateContext, type TableView, Tabs, TabsWithContent, Tag, type TagProps, type TagType, 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, beamLayoutViewportHeightVar, beamLayoutViewportWidthVar, beamNavbarLayoutHeightVar, beamPageHeaderLayoutHeightVar, beamSideNavLayoutWidthVar, beamTableActionsHeightVar, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundIconCardField, boundIconCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnLayout, calcColumnSizes, 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, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getJustification, getNavLinkStyles, getTableRefWidthStyles, getTableStyles, headerRenderFn, hoverStyles, iconCardStylesHover, 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, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pinColumn, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveTableContentWidth, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, selectedStyles, setDefaultStyle, setEnvironmentFavicon, setGridTableDefaults, setRunningInJest, shouldShowEnvironmentBanner, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, stickyNavAndHeaderOffset, stickyTableHeaderOffset, sumColumnSizesPx, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBreakpoint, useComputed, useContentOverflow, useContrastScope, useDnDGridItem, type useDnDGridItemProps, 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
@@ -5171,10 +5171,10 @@ type GridColumnWithId<R extends Kinded> = GridColumn<R> & {
5171
5171
  };
5172
5172
  declare const nonKindGridColumnKeys: string[];
5173
5173
  /**
5174
- * Used to indicate where to pin the DataRow and if whether it should be filtered or always visible, setting `filter` to `true` will hide this row
5175
- * if it doesn't match the provided filtering search term
5174
+ * Used to indicate where to fixed-sort the DataRow within its group, and whether it should be filtered
5175
+ * or always visible — setting `filter` to `true` will hide this row if it doesn't match the search term.
5176
5176
  */
5177
- type Pin = {
5177
+ type FixedSort = {
5178
5178
  at: "first" | "last";
5179
5179
  filter?: boolean;
5180
5180
  };
@@ -5311,6 +5311,8 @@ type GridStyle = {
5311
5311
  keptGroupRowCss?: Properties;
5312
5312
  /** Defines styles for the last row `keptGroup` to provide separation from the rest of the table */
5313
5313
  keptLastRowCss?: Properties;
5314
+ /** Applied to every cell of a runtime-pinned row — the green highlight for the pinned section. */
5315
+ pinnedRowCss?: Properties;
5314
5316
  };
5315
5317
  type GridStyleDef = {
5316
5318
  /** Changes the height of the rows when `rowHeight: fixed` to provide more space between rows for input fields. */
@@ -5464,6 +5466,12 @@ declare class TableState<R extends Kinded> {
5464
5466
  get collapsedIds(): string[];
5465
5467
  isCollapsed(id: string): boolean;
5466
5468
  toggleCollapsed(id: string): void;
5469
+ /** Returns rows pinned to the top, as RowStates for rendering. */
5470
+ get pinnedRows(): RowState<R>[];
5471
+ isPinnedRow(id: string): boolean;
5472
+ pinRow(id: string): void;
5473
+ unpinRow(id: string): void;
5474
+ togglePinned(id: string): void;
5467
5475
  deleteRows(ids: string[]): void;
5468
5476
  maybeSetRowDraggedOver(id: string, draggedOver: DraggedOver, requireSameParentRow?: GridDataRow<R> | undefined): void;
5469
5477
  }
@@ -5513,6 +5521,13 @@ declare class RowStates<R extends Kinded> {
5513
5521
  /** Returns kept rows, i.e. those that were user-selected but then client-side or server-side filtered. */
5514
5522
  get keptRows(): RowState<R>[];
5515
5523
  get collapsedRows(): RowState<R>[];
5524
+ /**
5525
+ * Returns rows pinned to the top at runtime.
5526
+ *
5527
+ * Sourced from `allStates` and not `visibleRows` so pinned rows stay visible even when the
5528
+ * current filter would otherwise hide them (like`keptRows`). Reserved rows are never pinnable.
5529
+ */
5530
+ get pinnedRows(): RowState<R>[];
5516
5531
  private createHeaderRow;
5517
5532
  /** Create our synthetic "group row" for kept rows, that users never pass in, but we self-inject as needed. */
5518
5533
  private createKeptGroupRow;
@@ -5543,6 +5558,12 @@ declare class RowState<R extends Kinded> {
5543
5558
  selected: boolean;
5544
5559
  /** Whether we are collapsed. */
5545
5560
  collapsed: boolean;
5561
+ /**
5562
+ * Whether this row is pinned to the top at runtime — distinct from the declarative `row.fixedSort`,
5563
+ * which only reorders within a group. Boolean for now; maybe someday we implement bottom pinning,
5564
+ * at which point this would become `"top" | "bottom"`.
5565
+ */
5566
+ pinned: boolean;
5546
5567
  /** Whether we are dragged over. */
5547
5568
  isDraggedOver: DraggedOver;
5548
5569
  /**
@@ -5605,6 +5626,10 @@ declare class RowState<R extends Kinded> {
5605
5626
  /** Marks the row as removed from `props.rows`, to potentially become kept. */
5606
5627
  markRemoved(): void;
5607
5628
  toggleCollapsed(): void;
5629
+ /** Pin/unpin this row at runtime. */
5630
+ setPinned(pinned: boolean): void;
5631
+ /** Toggle this row's runtime pin. */
5632
+ togglePinned(): void;
5608
5633
  /** Whether this is a selected-but-filtered-out row that we should hoist to the top. */
5609
5634
  get isKept(): boolean;
5610
5635
  get isLastKeptRow(): boolean;
@@ -5632,7 +5657,13 @@ declare class RowState<R extends Kinded> {
5632
5657
  * they want the row to be selectable.
5633
5658
  */
5634
5659
  private get isParent();
5635
- private get isPinned();
5660
+ /**
5661
+ * Whether the declarative `row.fixedSort` keeps this row visible through client-side filtering.
5662
+ *
5663
+ * Named for the behavior (not the prop): `fixedSort` reorders a row within its sibling group and
5664
+ * (here) exempts it from the filter — distinct from the runtime sticky `pinned`.
5665
+ */
5666
+ private get isAlwaysVisible();
5636
5667
  get api(): GridRowApi<R>;
5637
5668
  get isReservedKind(): boolean;
5638
5669
  /** A dedicated method to "looking down" recursively, to avoid loops in `isMatched`. */
@@ -5699,18 +5730,21 @@ type GridDataRow<R extends Kinded> = {
5699
5730
  /** A list of parent/grand-parent ids for collapsing parent/child rows. */
5700
5731
  children?: GridDataRow<R>[];
5701
5732
  /**
5702
- * Whether to pin this sort to the first/last of its parent's children.
5733
+ * Forces this row to sort to the first/last of its parent's children.
5703
5734
  *
5704
- * By default, pinned rows are always shown/not filtered out, however providing
5705
- * the pin `filter: true` property will allow pinned rows to be hidden
5706
- * while filtering.
5735
+ * By default, fixed-sorted rows are always shown/not filtered out; providing the
5736
+ * `filter: true` property allows them to be hidden while filtering. This is the
5737
+ * in-group ordering override, distinct from the runtime sticky "pin to top" feature
5738
+ * (`api.pinRow` / `pinColumn`).
5707
5739
  */
5708
- pin?: "first" | "last" | Pin;
5740
+ fixedSort?: "first" | "last" | FixedSort;
5709
5741
  data: unknown;
5710
5742
  /** Whether to have the row collapsed (children not visible) on initial load. This will be ignore in subsequent re-renders of the table */
5711
5743
  initCollapsed?: boolean;
5712
5744
  /** Whether to have the row selected on initial load. This will be ignore in subsequent re-renders of the table */
5713
5745
  initSelected?: boolean;
5746
+ /** Whether to pin this row to the top on initial load. Ignored on subsequent re-renders (like `initSelected`). */
5747
+ initPinned?: boolean;
5714
5748
  /** Whether row can be selected */
5715
5749
  selectable?: false;
5716
5750
  /** Whether this row should infer its selected state based on its children's selected state */
@@ -5790,6 +5824,16 @@ type GridTableApi<R extends Kinded> = {
5790
5824
  isCollapsedRow(id: string): boolean;
5791
5825
  /** Toggle collapse state of a row by id. */
5792
5826
  toggleCollapsedRow(id: string): void;
5827
+ /** Whether a row is currently pinned to the top. */
5828
+ isPinnedRow(id: string): boolean;
5829
+ /** Pins a row to the top so it stays visible (sticky) while the body scrolls. */
5830
+ pinRow(id: string): void;
5831
+ /** Removes a row's runtime pin. */
5832
+ unpinRow(id: string): void;
5833
+ /** Toggles a row's runtime pinned state. */
5834
+ togglePinnedRow(id: string): void;
5835
+ /** Returns the ids of currently pinned rows. */
5836
+ getPinnedRowIds(): string[];
5793
5837
  /** Sets the internal state of 'activeRowId' */
5794
5838
  setActiveRowId(id: string | undefined): void;
5795
5839
  /** Sets the internal state of 'activeCellId' */
@@ -5843,6 +5887,12 @@ declare class GridTableApiImpl<R extends Kinded> implements GridTableApi<R> {
5843
5887
  selectRow(id: string, selected?: boolean): void;
5844
5888
  toggleCollapsedRow(id: string): void;
5845
5889
  isCollapsedRow(id: string): boolean;
5890
+ isPinnedRow(id: string): boolean;
5891
+ pinRow(id: string): void;
5892
+ unpinRow(id: string): void;
5893
+ togglePinnedRow(id: string): void;
5894
+ getPinnedRowIds(): string[];
5895
+ private getPinnedRowIdsImpl;
5846
5896
  setVisibleColumns(ids: string[]): void;
5847
5897
  getVisibleColumnIds(): string[];
5848
5898
  resetColumnWidths(): void;
@@ -6147,6 +6197,30 @@ interface BannerProps {
6147
6197
  declare function Banner(props: BannerProps): JSX.Element;
6148
6198
  type BannerTypes = "error" | "warning" | "success" | "info" | "alert";
6149
6199
 
6200
+ type AppEnvironment = "local" | "dev" | "qa" | "local-prod" | "prod";
6201
+ type ImpersonatedUser = {
6202
+ name: string;
6203
+ };
6204
+ type EnvironmentBannerProps = {
6205
+ env: AppEnvironment;
6206
+ impersonating?: ImpersonatedUser;
6207
+ };
6208
+ /** Environment banner; horizontal/vertical pinning is owned by {@link EnvironmentBannerLayout}. */
6209
+ declare function EnvironmentBanner(props: EnvironmentBannerProps): JSX.Element | null;
6210
+ /** True when {@link EnvironmentBanner} should display: `dev`, `qa`, `local-prod`, or `prod` while impersonating. */
6211
+ declare function shouldShowEnvironmentBanner(env: AppEnvironment, impersonating: ImpersonatedUser | undefined): boolean;
6212
+ /** Fixed banner height (px); {@link EnvironmentBannerLayout} reads this for spacer/CSS var offsets. */
6213
+ declare const environmentBannerSizePx = 34;
6214
+
6215
+ type DocumentTitleConfig = {
6216
+ env: AppEnvironment;
6217
+ suffix?: string;
6218
+ };
6219
+ declare function DocumentTitleProvider(props: PropsWithChildren<DocumentTitleConfig>): JSX.Element;
6220
+
6221
+ /** Joins page-level title segments for {@link useDocumentTitle}. */
6222
+ declare function joinDocumentTitleSegments(...segments: (string | undefined)[]): string | undefined;
6223
+
6150
6224
  type ModalSize = "sm" | "md" | "lg" | "xl" | "xxl";
6151
6225
  type ModalProps = {
6152
6226
  /**
@@ -6250,9 +6324,10 @@ interface UseSuperDrawerHook {
6250
6324
  }
6251
6325
  declare function useSuperDrawer(): UseSuperDrawerHook;
6252
6326
 
6253
- interface BeamProviderProps extends PropsWithChildren<PresentationContextProps> {
6254
- }
6255
- declare function BeamProvider({ children, ...presentationProps }: BeamProviderProps): JSX.Element;
6327
+ type BeamProviderProps = {
6328
+ documentTitleConfig?: DocumentTitleConfig;
6329
+ } & PropsWithChildren<PresentationContextProps>;
6330
+ declare function BeamProvider({ children, documentTitleConfig, ...presentationProps }: BeamProviderProps): JSX.Element;
6256
6331
 
6257
6332
  type DatePickerProps = {
6258
6333
  value?: PlainDate;
@@ -6366,21 +6441,6 @@ type DnDGridItemHandleProps = {
6366
6441
  /** Provides a specific handle element for dragging a GridItem. Includes handling behaviors and interactions */
6367
6442
  declare function DnDGridItemHandle(props: DnDGridItemHandleProps): JSX.Element;
6368
6443
 
6369
- type AppEnvironment = "local" | "dev" | "qa" | "local-prod" | "prod";
6370
- type ImpersonatedUser = {
6371
- name: string;
6372
- };
6373
- type EnvironmentBannerProps = {
6374
- env: AppEnvironment;
6375
- impersonating?: ImpersonatedUser;
6376
- };
6377
- /** Environment banner; horizontal/vertical pinning is owned by {@link EnvironmentBannerLayout}. */
6378
- declare function EnvironmentBanner(props: EnvironmentBannerProps): JSX.Element | null;
6379
- /** True when {@link EnvironmentBanner} should display: `dev`, `qa`, `local-prod`, or `prod` while impersonating. */
6380
- declare function shouldShowEnvironmentBanner(env: AppEnvironment, impersonating: ImpersonatedUser | undefined): boolean;
6381
- /** Fixed banner height (px); {@link EnvironmentBannerLayout} reads this for spacer/CSS var offsets. */
6382
- declare const environmentBannerSizePx = 34;
6383
-
6384
6444
  /** App-hosted favicon URLs; `default` is required for envs without a dedicated entry (e.g. `local`). */
6385
6445
  type EnvironmentFaviconUrls = Partial<Record<AppEnvironment, string>> & {
6386
6446
  default: string;
@@ -7936,6 +7996,16 @@ type EditColumnsButtonProps<R extends Kinded> = {
7936
7996
  } & Pick<OverlayTriggerProps, "placement" | "disabled" | "tooltip">;
7937
7997
  declare function EditColumnsButton<R extends Kinded>(props: EditColumnsButtonProps<R>): JSX.Element;
7938
7998
 
7999
+ type PinToggleProps = {
8000
+ rowId: string;
8001
+ };
8002
+ /**
8003
+ * Provides a pin icon to pin/unpin a row to the top of the table at runtime.
8004
+ *
8005
+ * The pinned row is hoisted into a sticky pinned section that stays visible while the body scrolls.
8006
+ */
8007
+ declare function PinToggle({ rowId }: PinToggleProps): JSX.Element;
8008
+
7939
8009
  interface SelectToggleProps {
7940
8010
  id: string;
7941
8011
  disabled?: boolean | ReactNode;
@@ -8027,6 +8097,16 @@ declare function selectColumn<T extends Kinded>(columnDef?: Partial<GridColumn<T
8027
8097
  * all rows.
8028
8098
  */
8029
8099
  declare function collapseColumn<T extends Kinded>(columnDef?: Partial<GridColumn<T>>): GridColumn<T>;
8100
+ /**
8101
+ * Provides a GridColumn containing a {@link PinToggle} to pin/unpin rows to the top at runtime.
8102
+ *
8103
+ * Like `selectColumn`/`collapseColumn`, this accepts no `columnDef` or a partial one. The toggle is
8104
+ * rendered for data rows by default; header/totals/expandableHeader get an `emptyCell` since there's
8105
+ * no "pin all" concept and reserved rows aren't pinnable.
8106
+ *
8107
+ * Note: pinning a parent row hoists only that row into the sticky pinned section — its children stay in place.
8108
+ */
8109
+ declare function pinColumn<T extends Kinded>(columnDef?: Partial<GridColumn<T>>): GridColumn<T>;
8030
8110
  declare const layoutGutterLeftColumnId = "beamLayoutGutterLeft";
8031
8111
  declare const layoutGutterRightColumnId = "beamLayoutGutterRight";
8032
8112
  /** True for columns that display row data (not action controls or layout gutters). */
@@ -8274,6 +8354,9 @@ declare function useContentOverflow<TContainer extends HTMLElement = HTMLElement
8274
8354
  overflows: boolean;
8275
8355
  };
8276
8356
 
8357
+ /** Sets `document.title` from joined segments plus provider env prefix and app suffix. */
8358
+ declare function useDocumentTitle(...titleSegments: (string | undefined)[]): void;
8359
+
8277
8360
  interface UsePersistedFilterProps$1<F> {
8278
8361
  filterDefs: FilterDefs<F>;
8279
8362
  }
@@ -8726,11 +8809,13 @@ declare function TabContent<V extends string, X extends Only<TabsContentXss, X>>
8726
8809
  /** The top list of tabs. */
8727
8810
  declare function Tabs<V extends string, X extends Only<TabsContentXss, X>>(props: TabsProps<V, X> | RouteTabsProps<V, X>): JSX.Element;
8728
8811
 
8729
- interface PageHeaderProps<V extends string, X> {
8730
- title: ReactNode;
8812
+ type PageHeaderProps<V extends string, X> = {
8813
+ title: string;
8814
+ /** Extra segment(s) for `document.title` only; not shown in the visible page heading. */
8815
+ documentTitleSuffix?: string;
8731
8816
  rightSlot?: ReactNode;
8732
8817
  tabs?: Omit<TabsProps<V, X>, "contentXss" | "omitFullBleedPadding" | "includeBottomBorder"> | Omit<RouteTabsProps<V, X>, "contentXss" | "omitFullBleedPadding" | "includeBottomBorder">;
8733
- }
8818
+ };
8734
8819
  declare function PageHeader<V extends string, X extends Only<TabsContentXss, X>>(props: PageHeaderProps<V, X>): JSX.Element;
8735
8820
 
8736
8821
  /**
@@ -9027,4 +9112,4 @@ declare const zIndices: {
9027
9112
  };
9028
9113
  type ZIndex = (typeof zIndices)[keyof typeof zIndices];
9029
9114
 
9030
- export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, type AppEnvironment, type AppNavGroup, type AppNavItem, type AppNavLink, type AppNavSection, type AppNavSectionItem, AutoSaveIndicator, AutoSaveStatus, AutoSaveStatusContext, AutoSaveStatusProvider, Autocomplete, type AutocompleteProps, Avatar, AvatarButton, type AvatarButtonProps, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, Banner, type BannerProps, type BannerTypes, BaseFilter, type BaseQueryTableProps, type BaseTableProps, type BeamButtonProps, type BeamColor, type BeamFocusableProps, BeamProvider, type BeamTextFieldProps, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundIconCardField, type BoundIconCardFieldProps, BoundIconCardGroupField, type BoundIconCardGroupFieldProps, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardBadgeSlot, 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, type ContentStack, ContrastScope, Copy, CountBadge, type CountBadgeProps, Css, CssReset, type CssSetVarKeys, type CssSetVarScalar, type CssSetVarValue, DESC, DateField, type DateFieldFormat, type DateFieldMode, type DateFieldProps, type DateFilterValue, type DateMatcher, type DateRange, DateRangeField, type DateRangeFieldProps, type DateRangeFilterValue, type DefinedFilterValue, type Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, type DragData, EXPANDABLE_HEADER, EditColumnsButton, EnvironmentBanner, EnvironmentBannerLayout, type EnvironmentBannerLayoutProps, type EnvironmentBannerProps, type EnvironmentFaviconUrls, ErrorMessage, FieldGroup, type Filter, type FilterDefs, _FilterDropdownMenu as FilterDropdownMenu, type FilterImpls, FilterModal, _Filters as Filters, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, type FormSectionConfig, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, HelperText, HomeboundLogo, Icon, IconButton, type IconButtonProps, type IconButtonVariant, IconCard, type IconCardProps, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type ImpersonatedUser, type InfiniteScroll, type InlineStyle, type InputStylePalette, KEPT_GROUP, type Kinded, Loader, LoadingSkeleton, type LoadingSkeletonProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectField, type MultiSelectFieldProps, NavLink, type NavLinkProps, type NavLinkVariant, Navbar, NavbarLayout, type NavbarLayoutProps, type NavbarProps, type NavbarUser, type NestedOption, type NestedOptionsOrLoad, NumberField, type NumberFieldProps, type NumberFieldType, type OffsetAndLimit, type OnRowDragEvent, type OnRowSelect, type Only, type OpenDetailOpts, type OpenInDrawerOpts, OpenModal, type OpenRightPaneOpts, type Optional, type Padding, PageHeader, PageHeaderLayout, type PageHeaderLayoutProps, type PageHeaderProps, type PageNumberAndSize, type PageSettings, Pagination, Palette, type Pin, type Placement, type PlainDate, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, ResponsiveGrid, type ResponsiveGridConfig, ResponsiveGridContext, ResponsiveGridItem, type ResponsiveGridItemProps, type ResponsiveGridProps, RichTextField, RichTextFieldImpl, type RichTextFieldProps, RightPaneContext, RightPaneLayout, type RightPaneLayoutContextProps, RightPaneProvider, RightSidebar, type RightSidebarProps, type RouteTab, type RouteTabWithContent, Row, type RowStyle, type RowStyles, RuntimeCss, type RuntimeStyles, SIDE_NAV_LAYOUT_STATE_STORAGE_KEY, ScrollShadows, ScrollableContent, ScrollableFooter, ScrollableParent, SelectField, type SelectFieldProps, SelectToggle, type SelectedFilterLabelValue, type SelectedState, SideNav, SideNavLayout, type SideNavLayoutContextProps, type SideNavLayoutProps, SideNavLayoutProvider, type SideNavLayoutState, type SideNavProps, type SidePanelProps, type SidebarContentProps, type SimpleHeaderAndData, SortHeader, type SortOn, type SortState, StaticField, type Step, Stepper, type StepperProps, type StyleKind, SubmitButton, type SubmitButtonProps, SuperDrawerContent, SuperDrawerHeader, SuperDrawerWidth, type SupportedDateFormat, Switch, type SwitchProps, TOTALS, type Tab, TabContent, type TabWithContent, TableReviewLayout, type TableReviewLayoutProps, TableState, TableStateContext, type TableView, Tabs, TabsWithContent, Tag, type TagProps, type TagType, 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, beamLayoutViewportHeightVar, beamLayoutViewportWidthVar, beamNavbarLayoutHeightVar, beamPageHeaderLayoutHeightVar, beamSideNavLayoutWidthVar, beamTableActionsHeightVar, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundIconCardField, boundIconCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnLayout, calcColumnSizes, 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, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getJustification, getNavLinkStyles, getTableRefWidthStyles, getTableStyles, headerRenderFn, hoverStyles, iconCardStylesHover, increment, insertAtIndex, isContentColumn, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, layoutGutterLeftColumnId, layoutGutterRightColumnId, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeCssVar, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveTableContentWidth, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, selectedStyles, setDefaultStyle, setEnvironmentFavicon, setGridTableDefaults, setRunningInJest, shouldShowEnvironmentBanner, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, stickyNavAndHeaderOffset, stickyTableHeaderOffset, sumColumnSizesPx, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBreakpoint, useComputed, useContentOverflow, useContrastScope, useDnDGridItem, type useDnDGridItemProps, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHasSideNavLayoutProvider, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneContext, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSideNavLayoutContext, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, withColumnGutters, zIndices };
9115
+ export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, type AppEnvironment, type AppNavGroup, type AppNavItem, type AppNavLink, type AppNavSection, type AppNavSectionItem, AutoSaveIndicator, AutoSaveStatus, AutoSaveStatusContext, AutoSaveStatusProvider, Autocomplete, type AutocompleteProps, Avatar, AvatarButton, type AvatarButtonProps, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, Banner, type BannerProps, type BannerTypes, BaseFilter, type BaseQueryTableProps, type BaseTableProps, type BeamButtonProps, type BeamColor, type BeamFocusableProps, BeamProvider, type BeamTextFieldProps, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundIconCardField, type BoundIconCardFieldProps, BoundIconCardGroupField, type BoundIconCardGroupFieldProps, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardBadgeSlot, 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, 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, _FilterDropdownMenu as FilterDropdownMenu, type FilterImpls, FilterModal, _Filters as Filters, type FixedSort, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, type FormSectionConfig, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, HelperText, HomeboundLogo, Icon, IconButton, type IconButtonProps, type IconButtonVariant, IconCard, type IconCardProps, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type ImpersonatedUser, type InfiniteScroll, type InlineStyle, type InputStylePalette, KEPT_GROUP, type Kinded, Loader, LoadingSkeleton, type LoadingSkeletonProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectField, type MultiSelectFieldProps, NavLink, type NavLinkProps, type NavLinkVariant, Navbar, NavbarLayout, type NavbarLayoutProps, type NavbarProps, type NavbarUser, type NestedOption, type NestedOptionsOrLoad, NumberField, type NumberFieldProps, type NumberFieldType, type OffsetAndLimit, type OnRowDragEvent, type OnRowSelect, type Only, type OpenDetailOpts, type OpenInDrawerOpts, OpenModal, type OpenRightPaneOpts, type Optional, type Padding, PageHeader, PageHeaderLayout, type PageHeaderLayoutProps, type PageHeaderProps, type PageNumberAndSize, type PageSettings, Pagination, Palette, PinToggle, type Placement, type PlainDate, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, ResponsiveGrid, type ResponsiveGridConfig, ResponsiveGridContext, ResponsiveGridItem, type ResponsiveGridItemProps, type ResponsiveGridProps, RichTextField, RichTextFieldImpl, type RichTextFieldProps, RightPaneContext, RightPaneLayout, type RightPaneLayoutContextProps, RightPaneProvider, RightSidebar, type RightSidebarProps, type RouteTab, type RouteTabWithContent, Row, type RowStyle, type RowStyles, RuntimeCss, type RuntimeStyles, SIDE_NAV_LAYOUT_STATE_STORAGE_KEY, ScrollShadows, ScrollableContent, ScrollableFooter, ScrollableParent, SelectField, type SelectFieldProps, SelectToggle, type SelectedFilterLabelValue, type SelectedState, SideNav, SideNavLayout, type SideNavLayoutContextProps, type SideNavLayoutProps, SideNavLayoutProvider, type SideNavLayoutState, type SideNavProps, type SidePanelProps, type SidebarContentProps, type SimpleHeaderAndData, SortHeader, type SortOn, type SortState, StaticField, type Step, Stepper, type StepperProps, type StyleKind, SubmitButton, type SubmitButtonProps, SuperDrawerContent, SuperDrawerHeader, SuperDrawerWidth, type SupportedDateFormat, Switch, type SwitchProps, TOTALS, type Tab, TabContent, type TabWithContent, TableReviewLayout, type TableReviewLayoutProps, TableState, TableStateContext, type TableView, Tabs, TabsWithContent, Tag, type TagProps, type TagType, 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, beamLayoutViewportHeightVar, beamLayoutViewportWidthVar, beamNavbarLayoutHeightVar, beamPageHeaderLayoutHeightVar, beamSideNavLayoutWidthVar, beamTableActionsHeightVar, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundIconCardField, boundIconCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnLayout, calcColumnSizes, 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, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getJustification, getNavLinkStyles, getTableRefWidthStyles, getTableStyles, headerRenderFn, hoverStyles, iconCardStylesHover, 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, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pinColumn, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveTableContentWidth, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, selectedStyles, setDefaultStyle, setEnvironmentFavicon, setGridTableDefaults, setRunningInJest, shouldShowEnvironmentBanner, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, stickyNavAndHeaderOffset, stickyTableHeaderOffset, sumColumnSizesPx, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBreakpoint, useComputed, useContentOverflow, useContrastScope, useDnDGridItem, type useDnDGridItemProps, 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 };