@homebound/beam 3.27.1 → 3.29.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
@@ -4900,23 +4900,6 @@ type IconButtonProps = {
4900
4900
  preventTooltip?: boolean;
4901
4901
  } & BeamButtonProps & BeamFocusableProps;
4902
4902
  declare function IconButton(props: IconButtonProps): JSX.Element;
4903
- declare const iconButtonStylesHover: Pick<Properties, never> & {
4904
- backgroundColor: csstype.Property.BackgroundColor | undefined;
4905
- } & {
4906
- readonly __kind: "buildtime";
4907
- };
4908
- declare const iconButtonContrastStylesHover: Pick<Properties, never> & {
4909
- backgroundColor: csstype.Property.BackgroundColor | undefined;
4910
- } & {
4911
- readonly __kind: "buildtime";
4912
- };
4913
- declare const iconButtonCircleStylesHover: Pick<Properties, never> & {
4914
- backgroundColor: csstype.Property.BackgroundColor | undefined;
4915
- } & {
4916
- borderColor: csstype.Property.BorderColor | undefined;
4917
- } & {
4918
- readonly __kind: "buildtime";
4919
- };
4920
4903
 
4921
4904
  type NavLinkVariant = "side" | "global";
4922
4905
  type NavLinkProps = {
@@ -5188,10 +5171,10 @@ type GridColumnWithId<R extends Kinded> = GridColumn<R> & {
5188
5171
  };
5189
5172
  declare const nonKindGridColumnKeys: string[];
5190
5173
  /**
5191
- * 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
5192
- * 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.
5193
5176
  */
5194
- type Pin = {
5177
+ type FixedSort = {
5195
5178
  at: "first" | "last";
5196
5179
  filter?: boolean;
5197
5180
  };
@@ -5328,6 +5311,8 @@ type GridStyle = {
5328
5311
  keptGroupRowCss?: Properties;
5329
5312
  /** Defines styles for the last row `keptGroup` to provide separation from the rest of the table */
5330
5313
  keptLastRowCss?: Properties;
5314
+ /** Applied to every cell of a runtime-pinned row — the green highlight for the pinned section. */
5315
+ pinnedRowCss?: Properties;
5331
5316
  };
5332
5317
  type GridStyleDef = {
5333
5318
  /** Changes the height of the rows when `rowHeight: fixed` to provide more space between rows for input fields. */
@@ -5481,6 +5466,12 @@ declare class TableState<R extends Kinded> {
5481
5466
  get collapsedIds(): string[];
5482
5467
  isCollapsed(id: string): boolean;
5483
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;
5484
5475
  deleteRows(ids: string[]): void;
5485
5476
  maybeSetRowDraggedOver(id: string, draggedOver: DraggedOver, requireSameParentRow?: GridDataRow<R> | undefined): void;
5486
5477
  }
@@ -5530,6 +5521,13 @@ declare class RowStates<R extends Kinded> {
5530
5521
  /** Returns kept rows, i.e. those that were user-selected but then client-side or server-side filtered. */
5531
5522
  get keptRows(): RowState<R>[];
5532
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>[];
5533
5531
  private createHeaderRow;
5534
5532
  /** Create our synthetic "group row" for kept rows, that users never pass in, but we self-inject as needed. */
5535
5533
  private createKeptGroupRow;
@@ -5560,6 +5558,12 @@ declare class RowState<R extends Kinded> {
5560
5558
  selected: boolean;
5561
5559
  /** Whether we are collapsed. */
5562
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;
5563
5567
  /** Whether we are dragged over. */
5564
5568
  isDraggedOver: DraggedOver;
5565
5569
  /**
@@ -5622,6 +5626,10 @@ declare class RowState<R extends Kinded> {
5622
5626
  /** Marks the row as removed from `props.rows`, to potentially become kept. */
5623
5627
  markRemoved(): void;
5624
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;
5625
5633
  /** Whether this is a selected-but-filtered-out row that we should hoist to the top. */
5626
5634
  get isKept(): boolean;
5627
5635
  get isLastKeptRow(): boolean;
@@ -5649,7 +5657,13 @@ declare class RowState<R extends Kinded> {
5649
5657
  * they want the row to be selectable.
5650
5658
  */
5651
5659
  private get isParent();
5652
- 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();
5653
5667
  get api(): GridRowApi<R>;
5654
5668
  get isReservedKind(): boolean;
5655
5669
  /** A dedicated method to "looking down" recursively, to avoid loops in `isMatched`. */
@@ -5716,18 +5730,21 @@ type GridDataRow<R extends Kinded> = {
5716
5730
  /** A list of parent/grand-parent ids for collapsing parent/child rows. */
5717
5731
  children?: GridDataRow<R>[];
5718
5732
  /**
5719
- * 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.
5720
5734
  *
5721
- * By default, pinned rows are always shown/not filtered out, however providing
5722
- * the pin `filter: true` property will allow pinned rows to be hidden
5723
- * 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`).
5724
5739
  */
5725
- pin?: "first" | "last" | Pin;
5740
+ fixedSort?: "first" | "last" | FixedSort;
5726
5741
  data: unknown;
5727
5742
  /** Whether to have the row collapsed (children not visible) on initial load. This will be ignore in subsequent re-renders of the table */
5728
5743
  initCollapsed?: boolean;
5729
5744
  /** Whether to have the row selected on initial load. This will be ignore in subsequent re-renders of the table */
5730
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;
5731
5748
  /** Whether row can be selected */
5732
5749
  selectable?: false;
5733
5750
  /** Whether this row should infer its selected state based on its children's selected state */
@@ -5807,6 +5824,16 @@ type GridTableApi<R extends Kinded> = {
5807
5824
  isCollapsedRow(id: string): boolean;
5808
5825
  /** Toggle collapse state of a row by id. */
5809
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[];
5810
5837
  /** Sets the internal state of 'activeRowId' */
5811
5838
  setActiveRowId(id: string | undefined): void;
5812
5839
  /** Sets the internal state of 'activeCellId' */
@@ -5860,6 +5887,12 @@ declare class GridTableApiImpl<R extends Kinded> implements GridTableApi<R> {
5860
5887
  selectRow(id: string, selected?: boolean): void;
5861
5888
  toggleCollapsedRow(id: string): void;
5862
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;
5863
5896
  setVisibleColumns(ids: string[]): void;
5864
5897
  getVisibleColumnIds(): string[];
5865
5898
  resetColumnWidths(): void;
@@ -7953,6 +7986,16 @@ type EditColumnsButtonProps<R extends Kinded> = {
7953
7986
  } & Pick<OverlayTriggerProps, "placement" | "disabled" | "tooltip">;
7954
7987
  declare function EditColumnsButton<R extends Kinded>(props: EditColumnsButtonProps<R>): JSX.Element;
7955
7988
 
7989
+ type PinToggleProps = {
7990
+ rowId: string;
7991
+ };
7992
+ /**
7993
+ * Provides a pin icon to pin/unpin a row to the top of the table at runtime.
7994
+ *
7995
+ * The pinned row is hoisted into a sticky pinned section that stays visible while the body scrolls.
7996
+ */
7997
+ declare function PinToggle({ rowId }: PinToggleProps): JSX.Element;
7998
+
7956
7999
  interface SelectToggleProps {
7957
8000
  id: string;
7958
8001
  disabled?: boolean | ReactNode;
@@ -8044,6 +8087,16 @@ declare function selectColumn<T extends Kinded>(columnDef?: Partial<GridColumn<T
8044
8087
  * all rows.
8045
8088
  */
8046
8089
  declare function collapseColumn<T extends Kinded>(columnDef?: Partial<GridColumn<T>>): GridColumn<T>;
8090
+ /**
8091
+ * Provides a GridColumn containing a {@link PinToggle} to pin/unpin rows to the top at runtime.
8092
+ *
8093
+ * Like `selectColumn`/`collapseColumn`, this accepts no `columnDef` or a partial one. The toggle is
8094
+ * rendered for data rows by default; header/totals/expandableHeader get an `emptyCell` since there's
8095
+ * no "pin all" concept and reserved rows aren't pinnable.
8096
+ *
8097
+ * Note: pinning a parent row hoists only that row into the sticky pinned section — its children stay in place.
8098
+ */
8099
+ declare function pinColumn<T extends Kinded>(columnDef?: Partial<GridColumn<T>>): GridColumn<T>;
8047
8100
  declare const layoutGutterLeftColumnId = "beamLayoutGutterLeft";
8048
8101
  declare const layoutGutterRightColumnId = "beamLayoutGutterRight";
8049
8102
  /** True for columns that display row data (not action controls or layout gutters). */
@@ -9044,4 +9097,4 @@ declare const zIndices: {
9044
9097
  };
9045
9098
  type ZIndex = (typeof zIndices)[keyof typeof zIndices];
9046
9099
 
9047
- 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, iconButtonCircleStylesHover, iconButtonContrastStylesHover, iconButtonStylesHover, iconCardStylesHover, increment, insertAtIndex, isContentColumn, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, layoutGutterLeftColumnId, layoutGutterRightColumnId, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeCssVar, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveTableContentWidth, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, selectedStyles, setDefaultStyle, setEnvironmentFavicon, setGridTableDefaults, setRunningInJest, shouldShowEnvironmentBanner, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, stickyNavAndHeaderOffset, stickyTableHeaderOffset, sumColumnSizesPx, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBreakpoint, useComputed, useContentOverflow, useContrastScope, useDnDGridItem, type useDnDGridItemProps, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHasSideNavLayoutProvider, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneContext, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSideNavLayoutContext, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, withColumnGutters, zIndices };
9100
+ 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 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, 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, 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
@@ -4900,23 +4900,6 @@ type IconButtonProps = {
4900
4900
  preventTooltip?: boolean;
4901
4901
  } & BeamButtonProps & BeamFocusableProps;
4902
4902
  declare function IconButton(props: IconButtonProps): JSX.Element;
4903
- declare const iconButtonStylesHover: Pick<Properties, never> & {
4904
- backgroundColor: csstype.Property.BackgroundColor | undefined;
4905
- } & {
4906
- readonly __kind: "buildtime";
4907
- };
4908
- declare const iconButtonContrastStylesHover: Pick<Properties, never> & {
4909
- backgroundColor: csstype.Property.BackgroundColor | undefined;
4910
- } & {
4911
- readonly __kind: "buildtime";
4912
- };
4913
- declare const iconButtonCircleStylesHover: Pick<Properties, never> & {
4914
- backgroundColor: csstype.Property.BackgroundColor | undefined;
4915
- } & {
4916
- borderColor: csstype.Property.BorderColor | undefined;
4917
- } & {
4918
- readonly __kind: "buildtime";
4919
- };
4920
4903
 
4921
4904
  type NavLinkVariant = "side" | "global";
4922
4905
  type NavLinkProps = {
@@ -5188,10 +5171,10 @@ type GridColumnWithId<R extends Kinded> = GridColumn<R> & {
5188
5171
  };
5189
5172
  declare const nonKindGridColumnKeys: string[];
5190
5173
  /**
5191
- * 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
5192
- * 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.
5193
5176
  */
5194
- type Pin = {
5177
+ type FixedSort = {
5195
5178
  at: "first" | "last";
5196
5179
  filter?: boolean;
5197
5180
  };
@@ -5328,6 +5311,8 @@ type GridStyle = {
5328
5311
  keptGroupRowCss?: Properties;
5329
5312
  /** Defines styles for the last row `keptGroup` to provide separation from the rest of the table */
5330
5313
  keptLastRowCss?: Properties;
5314
+ /** Applied to every cell of a runtime-pinned row — the green highlight for the pinned section. */
5315
+ pinnedRowCss?: Properties;
5331
5316
  };
5332
5317
  type GridStyleDef = {
5333
5318
  /** Changes the height of the rows when `rowHeight: fixed` to provide more space between rows for input fields. */
@@ -5481,6 +5466,12 @@ declare class TableState<R extends Kinded> {
5481
5466
  get collapsedIds(): string[];
5482
5467
  isCollapsed(id: string): boolean;
5483
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;
5484
5475
  deleteRows(ids: string[]): void;
5485
5476
  maybeSetRowDraggedOver(id: string, draggedOver: DraggedOver, requireSameParentRow?: GridDataRow<R> | undefined): void;
5486
5477
  }
@@ -5530,6 +5521,13 @@ declare class RowStates<R extends Kinded> {
5530
5521
  /** Returns kept rows, i.e. those that were user-selected but then client-side or server-side filtered. */
5531
5522
  get keptRows(): RowState<R>[];
5532
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>[];
5533
5531
  private createHeaderRow;
5534
5532
  /** Create our synthetic "group row" for kept rows, that users never pass in, but we self-inject as needed. */
5535
5533
  private createKeptGroupRow;
@@ -5560,6 +5558,12 @@ declare class RowState<R extends Kinded> {
5560
5558
  selected: boolean;
5561
5559
  /** Whether we are collapsed. */
5562
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;
5563
5567
  /** Whether we are dragged over. */
5564
5568
  isDraggedOver: DraggedOver;
5565
5569
  /**
@@ -5622,6 +5626,10 @@ declare class RowState<R extends Kinded> {
5622
5626
  /** Marks the row as removed from `props.rows`, to potentially become kept. */
5623
5627
  markRemoved(): void;
5624
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;
5625
5633
  /** Whether this is a selected-but-filtered-out row that we should hoist to the top. */
5626
5634
  get isKept(): boolean;
5627
5635
  get isLastKeptRow(): boolean;
@@ -5649,7 +5657,13 @@ declare class RowState<R extends Kinded> {
5649
5657
  * they want the row to be selectable.
5650
5658
  */
5651
5659
  private get isParent();
5652
- 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();
5653
5667
  get api(): GridRowApi<R>;
5654
5668
  get isReservedKind(): boolean;
5655
5669
  /** A dedicated method to "looking down" recursively, to avoid loops in `isMatched`. */
@@ -5716,18 +5730,21 @@ type GridDataRow<R extends Kinded> = {
5716
5730
  /** A list of parent/grand-parent ids for collapsing parent/child rows. */
5717
5731
  children?: GridDataRow<R>[];
5718
5732
  /**
5719
- * 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.
5720
5734
  *
5721
- * By default, pinned rows are always shown/not filtered out, however providing
5722
- * the pin `filter: true` property will allow pinned rows to be hidden
5723
- * 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`).
5724
5739
  */
5725
- pin?: "first" | "last" | Pin;
5740
+ fixedSort?: "first" | "last" | FixedSort;
5726
5741
  data: unknown;
5727
5742
  /** Whether to have the row collapsed (children not visible) on initial load. This will be ignore in subsequent re-renders of the table */
5728
5743
  initCollapsed?: boolean;
5729
5744
  /** Whether to have the row selected on initial load. This will be ignore in subsequent re-renders of the table */
5730
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;
5731
5748
  /** Whether row can be selected */
5732
5749
  selectable?: false;
5733
5750
  /** Whether this row should infer its selected state based on its children's selected state */
@@ -5807,6 +5824,16 @@ type GridTableApi<R extends Kinded> = {
5807
5824
  isCollapsedRow(id: string): boolean;
5808
5825
  /** Toggle collapse state of a row by id. */
5809
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[];
5810
5837
  /** Sets the internal state of 'activeRowId' */
5811
5838
  setActiveRowId(id: string | undefined): void;
5812
5839
  /** Sets the internal state of 'activeCellId' */
@@ -5860,6 +5887,12 @@ declare class GridTableApiImpl<R extends Kinded> implements GridTableApi<R> {
5860
5887
  selectRow(id: string, selected?: boolean): void;
5861
5888
  toggleCollapsedRow(id: string): void;
5862
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;
5863
5896
  setVisibleColumns(ids: string[]): void;
5864
5897
  getVisibleColumnIds(): string[];
5865
5898
  resetColumnWidths(): void;
@@ -7953,6 +7986,16 @@ type EditColumnsButtonProps<R extends Kinded> = {
7953
7986
  } & Pick<OverlayTriggerProps, "placement" | "disabled" | "tooltip">;
7954
7987
  declare function EditColumnsButton<R extends Kinded>(props: EditColumnsButtonProps<R>): JSX.Element;
7955
7988
 
7989
+ type PinToggleProps = {
7990
+ rowId: string;
7991
+ };
7992
+ /**
7993
+ * Provides a pin icon to pin/unpin a row to the top of the table at runtime.
7994
+ *
7995
+ * The pinned row is hoisted into a sticky pinned section that stays visible while the body scrolls.
7996
+ */
7997
+ declare function PinToggle({ rowId }: PinToggleProps): JSX.Element;
7998
+
7956
7999
  interface SelectToggleProps {
7957
8000
  id: string;
7958
8001
  disabled?: boolean | ReactNode;
@@ -8044,6 +8087,16 @@ declare function selectColumn<T extends Kinded>(columnDef?: Partial<GridColumn<T
8044
8087
  * all rows.
8045
8088
  */
8046
8089
  declare function collapseColumn<T extends Kinded>(columnDef?: Partial<GridColumn<T>>): GridColumn<T>;
8090
+ /**
8091
+ * Provides a GridColumn containing a {@link PinToggle} to pin/unpin rows to the top at runtime.
8092
+ *
8093
+ * Like `selectColumn`/`collapseColumn`, this accepts no `columnDef` or a partial one. The toggle is
8094
+ * rendered for data rows by default; header/totals/expandableHeader get an `emptyCell` since there's
8095
+ * no "pin all" concept and reserved rows aren't pinnable.
8096
+ *
8097
+ * Note: pinning a parent row hoists only that row into the sticky pinned section — its children stay in place.
8098
+ */
8099
+ declare function pinColumn<T extends Kinded>(columnDef?: Partial<GridColumn<T>>): GridColumn<T>;
8047
8100
  declare const layoutGutterLeftColumnId = "beamLayoutGutterLeft";
8048
8101
  declare const layoutGutterRightColumnId = "beamLayoutGutterRight";
8049
8102
  /** True for columns that display row data (not action controls or layout gutters). */
@@ -9044,4 +9097,4 @@ declare const zIndices: {
9044
9097
  };
9045
9098
  type ZIndex = (typeof zIndices)[keyof typeof zIndices];
9046
9099
 
9047
- 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, iconButtonCircleStylesHover, iconButtonContrastStylesHover, iconButtonStylesHover, iconCardStylesHover, increment, insertAtIndex, isContentColumn, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, layoutGutterLeftColumnId, layoutGutterRightColumnId, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeCssVar, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveTableContentWidth, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, selectedStyles, setDefaultStyle, setEnvironmentFavicon, setGridTableDefaults, setRunningInJest, shouldShowEnvironmentBanner, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, stickyNavAndHeaderOffset, stickyTableHeaderOffset, sumColumnSizesPx, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBreakpoint, useComputed, useContentOverflow, useContrastScope, useDnDGridItem, type useDnDGridItemProps, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHasSideNavLayoutProvider, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneContext, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSideNavLayoutContext, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, withColumnGutters, zIndices };
9100
+ 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 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, 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, 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 };