@homebound/beam 3.9.1 → 3.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -64,6 +64,7 @@ declare enum Tokens {
64
64
  FocusRingInset = "--b-focus-ring-inset",
65
65
  FocusRingMuted = "--b-focus-ring-muted",
66
66
  ListRowBgHover = "--b-list-row-bg-hover",
67
+ LoaderFill = "--b-loader-fill",
67
68
  LoaderSpinner = "--b-loader-spinner",
68
69
  LoaderTrack = "--b-loader-track",
69
70
  MenuItemBgHover = "--b-menu-item-bg-hover",
@@ -82,6 +83,7 @@ declare enum Tokens {
82
83
  OnPrimary = "--b-on-primary",
83
84
  OnSurface = "--b-on-surface",
84
85
  OnSurfaceMuted = "--b-on-surface-muted",
86
+ OnSurfaceSubtle = "--b-on-surface-subtle",
85
87
  PopoverSurface = "--b-popover-surface",
86
88
  Primary = "--b-primary",
87
89
  PrimaryHover = "--b-primary-hover",
@@ -90,6 +92,8 @@ declare enum Tokens {
90
92
  SelectionIndicator = "--b-selection-indicator",
91
93
  StatusSuccessFg = "--b-status-success-fg",
92
94
  Surface = "--b-surface",
95
+ SurfaceSeparator = "--b-surface-separator",
96
+ SurfaceSubtle = "--b-surface-subtle",
93
97
  TextDisabled = "--b-text-disabled",
94
98
  TextHelper = "--b-text-helper",
95
99
  TextLabel = "--b-text-label",
@@ -4067,11 +4071,27 @@ declare class CssBuilder<T extends Properties, S extends StyleKind = "buildtime"
4067
4071
  fontFamily(value: Properties["fontFamily"]): CssBuilder<T & {
4068
4072
  fontFamily: csstype.Property.FontFamily | undefined;
4069
4073
  }, S>;
4070
- /** Sets `transition: "background-color 200ms, border-color 200ms, box-shadow 200ms, left 200ms, right 200ms, margin 200ms"`. */
4074
+ /** Sets `transition: "background-color 200ms cubic-bezier(0.4, 0, 0.2, 1), border-color 200ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1), left 200ms cubic-bezier(0.4, 0, 0.2, 1), right 200ms cubic-bezier(0.4, 0, 0.2, 1), margin 200ms cubic-bezier(0.4, 0, 0.2, 1), width 200ms cubic-bezier(0.4, 0, 0.2, 1), opacity 200ms cubic-bezier(0.4, 0, 0.2, 1)"`. */
4071
4075
  get transition(): CssBuilder<T & {
4072
4076
  transition: csstype.Property.Transition<string> | undefined;
4073
4077
  }, S>;
4074
- /** Sets `fontWeight: 600; fontSize: "14px"; lineHeight: "20px"; outline: 0; borderRadius: "8px"; display: "inline-flex"; alignItems: "center"; whiteSpace: "nowrap"; transition: "background-color 200ms, border-color 200ms, box-shadow 200ms, left 200ms, right 200ms, margin 200ms"`. */
4078
+ /** Sets `transition: "width 200ms cubic-bezier(0.4, 0, 0.2, 1)"`. */
4079
+ get transitionWidth(): CssBuilder<T & {
4080
+ transition: csstype.Property.Transition<string> | undefined;
4081
+ }, S>;
4082
+ /** Sets `transition: "opacity 200ms cubic-bezier(0.4, 0, 0.2, 1)"`. */
4083
+ get transitionOpacity(): CssBuilder<T & {
4084
+ transition: csstype.Property.Transition<string> | undefined;
4085
+ }, S>;
4086
+ /** Sets `transition: "transform 200ms cubic-bezier(0.4, 0, 0.2, 1)"`. */
4087
+ get transitionTransform(): CssBuilder<T & {
4088
+ transition: csstype.Property.Transition<string> | undefined;
4089
+ }, S>;
4090
+ /** Sets `transition: "height 200ms cubic-bezier(0.4, 0, 0.2, 1)"`. */
4091
+ get transitionHeight(): CssBuilder<T & {
4092
+ transition: csstype.Property.Transition<string> | undefined;
4093
+ }, S>;
4094
+ /** Sets `fontWeight: 600; fontSize: "14px"; lineHeight: "20px"; outline: 0; borderRadius: "8px"; display: "inline-flex"; alignItems: "center"; whiteSpace: "nowrap"; transition: "background-color 200ms cubic-bezier(0.4, 0, 0.2, 1), border-color 200ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1), left 200ms cubic-bezier(0.4, 0, 0.2, 1), right 200ms cubic-bezier(0.4, 0, 0.2, 1), margin 200ms cubic-bezier(0.4, 0, 0.2, 1), width 200ms cubic-bezier(0.4, 0, 0.2, 1), opacity 200ms cubic-bezier(0.4, 0, 0.2, 1)"`. */
4075
4095
  get buttonBase(): CssBuilder<T & {
4076
4096
  fontWeight: csstype.Property.FontWeight | undefined;
4077
4097
  } & {
@@ -5277,7 +5297,7 @@ declare class RowState<R extends Kinded> {
5277
5297
  private get isDirectlyMatched();
5278
5298
  }
5279
5299
 
5280
- interface RowProps<R extends Kinded> {
5300
+ type RowProps<R extends Kinded> = {
5281
5301
  as: RenderAs;
5282
5302
  rs: RowState<R>;
5283
5303
  style: GridStyle;
@@ -5299,7 +5319,7 @@ interface RowProps<R extends Kinded> {
5299
5319
  onDrop?: (row: GridDataRow<R>, event: React__default.DragEvent<HTMLElement>) => void;
5300
5320
  onDragEnter?: (row: GridDataRow<R>, event: React__default.DragEvent<HTMLElement>) => void;
5301
5321
  onDragOver?: (row: GridDataRow<R>, event: React__default.DragEvent<HTMLElement>) => void;
5302
- }
5322
+ };
5303
5323
  declare function RowImpl<R extends Kinded, S>(props: RowProps<R>): ReactElement;
5304
5324
  /**
5305
5325
  * Memoizes rows so that re-rendering the table doesn't re-render every single row.
@@ -5487,10 +5507,10 @@ declare class GridTableApiImpl<R extends Kinded> implements GridTableApi<R> {
5487
5507
 
5488
5508
  /** Tells GridTable we're running in Jest, which forces as=virtual to be as=div, to work in jsdom. */
5489
5509
  declare function setRunningInJest(): void;
5490
- interface GridTableDefaults {
5510
+ type GridTableDefaults = {
5491
5511
  style: GridStyle | GridStyleDef;
5492
5512
  stickyHeader: boolean;
5493
- }
5513
+ };
5494
5514
  /** Configures the default/app-wide GridStyle. */
5495
5515
  declare function setDefaultStyle(style: GridStyle): void;
5496
5516
  /** Configures the default/app-wide GridTable settings. */
@@ -5535,7 +5555,7 @@ type OnRowSelect<R extends Kinded> = {
5535
5555
  };
5536
5556
  type DragEventType = React__default.DragEvent<HTMLElement>;
5537
5557
  type OnRowDragEvent<R extends Kinded> = (draggedRow: GridDataRow<R>, event: DragEventType) => void;
5538
- interface GridTableProps<R extends Kinded, X> {
5558
+ type GridTableProps<R extends Kinded, X> = {
5539
5559
  id?: string;
5540
5560
  /**
5541
5561
  * The HTML used to create the table.
@@ -5627,7 +5647,7 @@ interface GridTableProps<R extends Kinded, X> {
5627
5647
  onRowDrop?: (draggedRow: GridDataRow<R>, droppedRow: GridDataRow<R>, indexOffset: number) => void;
5628
5648
  /** Disable column resizing functionality. Defaults to false. */
5629
5649
  disableColumnResizing?: boolean;
5630
- }
5650
+ };
5631
5651
  /**
5632
5652
  * Renders data in our table layout.
5633
5653
  *
@@ -5856,7 +5876,7 @@ declare function Banner(props: BannerProps): JSX.Element;
5856
5876
  type BannerTypes = "error" | "warning" | "success" | "info" | "alert";
5857
5877
 
5858
5878
  type ModalSize = "sm" | "md" | "lg" | "xl" | "xxl";
5859
- interface ModalProps {
5879
+ type ModalProps = {
5860
5880
  /**
5861
5881
  * The modal size, defaults to `md`.
5862
5882
  *
@@ -5885,7 +5905,7 @@ interface ModalProps {
5885
5905
  * Useful if you definitely need to force the user to make a choice.
5886
5906
  * */
5887
5907
  allowClosing?: boolean;
5888
- }
5908
+ };
5889
5909
  type ModalApi = {
5890
5910
  setSize: (size: ModalProps["size"]) => void;
5891
5911
  };
@@ -6033,12 +6053,11 @@ declare const iconButtonCircleStylesHover: Pick<Properties, never> & {
6033
6053
  readonly __kind: "buildtime";
6034
6054
  };
6035
6055
 
6056
+ type NavLinkVariant = "side" | "global";
6036
6057
  type NavLinkProps = {
6037
6058
  /** active indicates the user is on the current page */
6038
6059
  active?: boolean;
6039
6060
  disabled?: boolean;
6040
- /** if `href` isn't provided, it is treated as a <button> */
6041
- href?: string;
6042
6061
  label: ReactNode;
6043
6062
  icon?: IconKey;
6044
6063
  variant: NavLinkVariant;
@@ -6046,20 +6065,42 @@ type NavLinkProps = {
6046
6065
  /** HTML attributes to apply to the button element when it is being used to trigger a menu. */
6047
6066
  menuTriggerProps?: AriaButtonProps;
6048
6067
  buttonRef?: RefObject<HTMLElement>;
6068
+ /**
6069
+ * When true with an `icon`, shows icon only but keeps `label` for accessibility
6070
+ * (visually hidden text). Used by SideNav when the rail is collapsed.
6071
+ */
6072
+ iconOnly?: boolean;
6073
+ onClick?: BeamButtonProps["onClick"];
6049
6074
  } & BeamFocusableProps;
6050
- type NavLinkVariant = "side" | "global";
6051
6075
  declare function NavLink(props: NavLinkProps): JSX.Element;
6076
+ declare function getNavLinkStyles(variant: NavLinkVariant): {
6077
+ baseStyles: Properties;
6078
+ hoverStyles: Properties;
6079
+ disabledStyles: Properties;
6080
+ focusRingStyles: Properties;
6081
+ activeStyles: Properties;
6082
+ pressedStyles: Properties;
6083
+ };
6052
6084
 
6053
- interface TextButtonTriggerProps extends Pick<ButtonProps, "label" | "variant" | "size" | "icon"> {
6054
- }
6055
- interface IconButtonTriggerProps extends Pick<IconButtonProps, "icon" | "color" | "compact" | "inc"> {
6056
- }
6057
- interface AvatarButtonTriggerProps extends Pick<AvatarButtonProps, "src" | "name" | "size"> {
6058
- }
6059
- interface NavLinkButtonTriggerProps extends Pick<NavLinkProps, "active" | "variant" | "icon"> {
6085
+ /** Side-nav link config; `label` is a string (NavLink itself still accepts ReactNode for other callers). */
6086
+ type NavGroupLink = Pick<NavLinkProps, "icon" | "onClick" | "active" | "disabled" | "openInNew"> & {
6087
+ label: string;
6088
+ };
6089
+ type NavGroupProps = {
6090
+ label: string;
6091
+ links: NavGroupLink[];
6092
+ expanded: boolean;
6093
+ onClick: VoidFunction;
6094
+ };
6095
+ declare function NavGroup(props: NavGroupProps): JSX.Element;
6096
+
6097
+ type TextButtonTriggerProps = Pick<ButtonProps, "label" | "variant" | "size" | "icon">;
6098
+ type IconButtonTriggerProps = Pick<IconButtonProps, "icon" | "color" | "compact" | "inc">;
6099
+ type AvatarButtonTriggerProps = Pick<AvatarButtonProps, "src" | "name" | "size">;
6100
+ type NavLinkButtonTriggerProps = {
6060
6101
  navLabel: string;
6061
- }
6062
- interface OverlayTriggerProps {
6102
+ } & Pick<NavLinkProps, "active" | "variant" | "icon">;
6103
+ type OverlayTriggerProps = {
6063
6104
  trigger: TextButtonTriggerProps | IconButtonTriggerProps | AvatarButtonTriggerProps | NavLinkButtonTriggerProps;
6064
6105
  /** Defaults to "left" */
6065
6106
  placement?: "left" | "right";
@@ -6079,7 +6120,7 @@ interface OverlayTriggerProps {
6079
6120
  variant?: ButtonVariant;
6080
6121
  hideEndAdornment?: boolean;
6081
6122
  showActiveBorder?: boolean;
6082
- }
6123
+ };
6083
6124
 
6084
6125
  type ButtonDatePickerProps = {
6085
6126
  defaultOpen?: boolean;
@@ -7917,12 +7958,6 @@ declare const TOTALS = "totals";
7917
7958
  declare const EXPANDABLE_HEADER = "expandableHeader";
7918
7959
  declare const KEPT_GROUP = "keptGroup";
7919
7960
  declare const reservedRowKinds: string[];
7920
- declare const zIndices: {
7921
- stickyHeader: number;
7922
- stickyColumns: number;
7923
- expandableHeaderTitle: number;
7924
- expandableHeaderIcon: number;
7925
- };
7926
7961
  /** Loads an array from sessionStorage, if it exists, or `undefined`. */
7927
7962
  declare function loadArrayOrUndefined(key: string): any;
7928
7963
  declare function insertAtIndex<T>(array: Array<T>, element: T, index: number): Array<T>;
@@ -8470,7 +8505,7 @@ interface UseModalHook {
8470
8505
  }
8471
8506
  declare function useModal(): UseModalHook;
8472
8507
 
8473
- interface ScrollShadowsProps {
8508
+ type ScrollShadowsProps = {
8474
8509
  children: ReactNode;
8475
8510
  /** Allows for styling the container */
8476
8511
  xss?: Properties;
@@ -8478,9 +8513,35 @@ interface ScrollShadowsProps {
8478
8513
  horizontal?: boolean;
8479
8514
  /** Defines the background color for the shadows */
8480
8515
  bgColor?: Palette;
8481
- }
8516
+ };
8482
8517
  declare function ScrollShadows(props: ScrollShadowsProps): JSX.Element;
8483
8518
 
8519
+ /** String labels only; see `NavGroupLink` / `NavLinkProps.label` (ReactNode) for the wider API. */
8520
+ type SideNavLink = NavGroupLink;
8521
+ /** Collapsible labeled block of side-nav links (renders as an expandable disclosure). */
8522
+ type SideNavLinkGroup = {
8523
+ label: string;
8524
+ links: SideNavLink[];
8525
+ defaultExpanded?: boolean;
8526
+ };
8527
+ type SideNavSectionItem = SideNavLink | SideNavLinkGroup;
8528
+ /** Static section chrome (optional heading, divider) containing links, link groups, and/or nested sections. */
8529
+ type SideNavSection = {
8530
+ label?: string;
8531
+ items: SideNavItem[];
8532
+ };
8533
+ type SideNavItem = SideNavLink | SideNavLinkGroup | SideNavSection;
8534
+
8535
+ type SideNavProps = {
8536
+ /** Optional area above the item list (logo, workspace switcher, etc.). */
8537
+ top?: ReactNode;
8538
+ /** Top-level entries — links, link groups, and/or sections. */
8539
+ items: SideNavItem[];
8540
+ /** Optional area pinned to the bottom (user menu, settings, sign-out). */
8541
+ footer?: ReactNode;
8542
+ };
8543
+ declare function SideNav(props: SideNavProps): JSX.Element;
8544
+
8484
8545
  type SnackbarNoticeTypes = "error" | "warning" | "success" | "info" | "alert";
8485
8546
  interface SnackbarNoticeProps {
8486
8547
  /** Adds action button to the right of the notice */
@@ -8664,6 +8725,55 @@ declare function maybeTooltip(props: Omit<TooltipProps, "children"> & {
8664
8725
  }): JSX.Element;
8665
8726
  declare function resolveTooltip(disabled?: boolean | ReactNode, tooltip?: ReactNode, readOnly?: boolean | ReactNode): ReactNode | undefined;
8666
8727
 
8728
+ type SideNavLayoutProps = {
8729
+ /**
8730
+ * Content for the side rail. The layout owns the rail's width, surface chrome, and
8731
+ * collapse toggle, so any content (`SideNav` from `src/components/SideNav`,
8732
+ * or custom JSX) gets the rail look and expand/collapse behavior for free. Content
8733
+ * that wants to react to collapse state should consume `useSideNavLayoutContext()`.
8734
+ */
8735
+ sideNav?: ReactNode;
8736
+ children?: ReactNode;
8737
+ /** Padding-x forwarded to the content's `ScrollableParent`. Defaults to `3` / 24px. */
8738
+ contentPx?: number | string;
8739
+ /** Width of the rail when `navState === "expanded"` on `mdAndUp`. On mobile the expanded rail fills the viewport. Defaults to `220`. */
8740
+ railWidthPx?: number;
8741
+ /** Render the built-in collapse toggle at the bottom of the rail. Defaults to `true`. */
8742
+ showCollapseToggle?: boolean;
8743
+ /**
8744
+ * When true, the rail (chrome + sideNav content) renders inside a `ContrastScope` so
8745
+ * `Tokens.Surface`, `Tokens.OnSurface`, NavLink colors, and the toggle resolve to contrast
8746
+ * values. Use for dark-sidebar layouts. Defaults to `false`.
8747
+ */
8748
+ contrastRail?: boolean;
8749
+ };
8750
+ declare function SideNavLayout(props: SideNavLayoutProps): JSX.Element;
8751
+
8752
+ type SideNavLayoutState = "hidden" | "collapse" | "expanded";
8753
+ type SideNavLayoutContextProps = {
8754
+ navState: SideNavLayoutState;
8755
+ setNavState: Dispatch<SetStateAction<SideNavLayoutState>>;
8756
+ };
8757
+ /**
8758
+ * localStorage key for persisting the user's open/closed choice across sessions.
8759
+ * Only "expanded" and "collapse" are written; "hidden" is treated as consumer-driven
8760
+ * (typically per-route) programmatic state, not a user toggle to remember.
8761
+ */
8762
+ declare const SIDE_NAV_LAYOUT_STATE_STORAGE_KEY = "beam.sideNavLayout.navState";
8763
+ declare function SideNavLayoutProvider(props: {
8764
+ children: ReactNode;
8765
+ defaultNavState?: SideNavLayoutState;
8766
+ }): JSX.Element;
8767
+ /**
8768
+ * Read the side-nav layout state.
8769
+ *
8770
+ * Defaults to `expanded` + a noop setter when called outside a provider, so pattern components
8771
+ * (e.g. `SideNav`) can render in isolation without crashing.
8772
+ */
8773
+ declare function useSideNavLayoutContext(): SideNavLayoutContextProps;
8774
+ /** Internal: returns true if a `SideNavLayoutProvider` exists above. */
8775
+ declare function useHasSideNavLayoutProvider(): boolean;
8776
+
8667
8777
  /**
8668
8778
  * Guesses an id based on a label string, i.e. given `Homeowner Contract`,
8669
8779
  * returns `homeownerContract`.
@@ -8675,4 +8785,25 @@ declare function resolveTooltip(disabled?: boolean | ReactNode, tooltip?: ReactN
8675
8785
  */
8676
8786
  declare function defaultTestId(label: string): string;
8677
8787
 
8678
- export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, AutoSaveIndicator, AutoSaveStatus, AutoSaveStatusContext, AutoSaveStatusProvider, Autocomplete, type AutocompleteProps, Avatar, AvatarButton, type AvatarButtonProps, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, Banner, type BannerProps, type BannerTypes, BaseFilter, type BaseQueryTableProps, type BaseTableProps, type BeamButtonProps, type BeamColor, type BeamFocusableProps, BeamProvider, type BeamTextFieldProps, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundIconCardField, type BoundIconCardFieldProps, BoundIconCardGroupField, type BoundIconCardGroupFieldProps, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardProps, type CardTag, type CardType, type CheckFn, Checkbox, CheckboxGroup, type CheckboxGroupItemOption, type CheckboxGroupProps, type CheckboxProps, Chip, type ChipProps, ChipSelectField, type ChipSelectFieldProps, type ChipType, ChipTypes, type ChipValue, Chips, type ChipsProps, CollapseToggle, CollapsedContext, 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 Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, type DragData, EXPANDABLE_HEADER, EditColumnsButton, ErrorMessage, FieldGroup, type Filter, type FilterDefs, _FilterDropdownMenu as FilterDropdownMenu, type FilterImpls, FilterModal, _Filters as Filters, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, type FormSectionConfig, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, HelperText, Icon, IconButton, type IconButtonProps, IconCard, type IconCardProps, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type InfiniteScroll, type InlineStyle, type InputStylePalette, KEPT_GROUP, type Kinded, Loader, LoadingSkeleton, type LoadingSkeletonProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectField, type MultiSelectFieldProps, NavLink, type 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, type PageNumberAndSize, type PageSettings, Pagination, type PaginationConfig, 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, ScrollShadows, ScrollableContent, ScrollableFooter, ScrollableParent, SelectField, type SelectFieldProps, SelectToggle, type SelectedState, 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, Tabs, TabsWithContent, Tag, type TagType, type TestIds, TextAreaField, type TextAreaFieldProps, TextField, type TextFieldApi, type TextFieldInternalProps, type TextFieldProps, type TextFieldXss, Toast, ToggleButton, type ToggleButtonProps, ToggleChip, ToggleChipGroup, type ToggleChipGroupProps, type ToggleChipProps, ToggleChips, type ToggleChipsProps, Tokens, Tooltip, TreeSelectField, type TreeSelectFieldProps, type TriggerNoticeProps, type Typography, type UseModalHook, type UsePersistedFilterProps, type UseQueryState, type UseRightPaneHook, type UseSnackbarHook, type UseSuperDrawerHook, type UseToastProps, type Value, type Xss, actionColumn, applyRowFn, assignDefaultColumnIds, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundIconCardField, boundIconCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnSizes, cardStyle, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, contrastDataTheme, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, dragHandleColumn, emptyCell, ensureClientSideSortValueIsSortable, filterTestIdPrefix, formatDate, formatDateRange, formatPlainDate, formatValue, generateColumnId, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getJustification, getTableRefWidthStyles, getTableStyles, headerRenderFn, hoverStyles, iconButtonCircleStylesHover, iconButtonContrastStylesHover, iconButtonStylesHover, iconCardStylesHover, increment, insertAtIndex, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeCssVar, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, selectedStyles, setDefaultStyle, setGridTableDefaults, setRunningInJest, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBreakpoint, useComputed, useContrastScope, useDnDGridItem, type useDnDGridItemProps, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneContext, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, zIndices };
8788
+ /**
8789
+ * Cross-component z-index layers.
8790
+ *
8791
+ * Keep values sparse so new layers can slot between existing ones without ripple
8792
+ * edits. Lower numbers sit behind higher numbers in the same stacking context.
8793
+ */
8794
+ declare const zIndices: {
8795
+ readonly tableExpandableIcon: 10;
8796
+ readonly tableExpandableTitle: 20;
8797
+ readonly tableStickyColumn: 30;
8798
+ readonly tableStickyHeader: 40;
8799
+ readonly scrollShadow: 50;
8800
+ readonly superDrawerScrim: 50;
8801
+ readonly modalUnderlay: 60;
8802
+ readonly pageStickyHeader: 70;
8803
+ readonly dragHandle: 80;
8804
+ readonly sideNav: 100;
8805
+ readonly snackbar: 120;
8806
+ };
8807
+ type ZIndex = (typeof zIndices)[keyof typeof zIndices];
8808
+
8809
+ export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, AutoSaveIndicator, AutoSaveStatus, AutoSaveStatusContext, AutoSaveStatusProvider, Autocomplete, type AutocompleteProps, Avatar, AvatarButton, type AvatarButtonProps, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, Banner, type BannerProps, type BannerTypes, BaseFilter, type BaseQueryTableProps, type BaseTableProps, type BeamButtonProps, type BeamColor, type BeamFocusableProps, BeamProvider, type BeamTextFieldProps, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundIconCardField, type BoundIconCardFieldProps, BoundIconCardGroupField, type BoundIconCardGroupFieldProps, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardProps, type CardTag, type CardType, type CheckFn, Checkbox, CheckboxGroup, type CheckboxGroupItemOption, type CheckboxGroupProps, type CheckboxProps, Chip, type ChipProps, ChipSelectField, type ChipSelectFieldProps, type ChipType, ChipTypes, type ChipValue, Chips, type ChipsProps, CollapseToggle, CollapsedContext, 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 Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, type DragData, EXPANDABLE_HEADER, EditColumnsButton, ErrorMessage, FieldGroup, type Filter, type FilterDefs, _FilterDropdownMenu as FilterDropdownMenu, type FilterImpls, FilterModal, _Filters as Filters, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, type FormSectionConfig, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, HelperText, Icon, IconButton, type IconButtonProps, IconCard, type IconCardProps, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type InfiniteScroll, type InlineStyle, type InputStylePalette, KEPT_GROUP, type Kinded, Loader, LoadingSkeleton, type LoadingSkeletonProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectField, type MultiSelectFieldProps, NavGroup, type NavGroupLink, type NavGroupProps, NavLink, type NavLinkProps, type NavLinkVariant, 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, type PageNumberAndSize, type PageSettings, Pagination, type PaginationConfig, 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 SelectedState, SideNav, type SideNavItem, SideNavLayout, type SideNavLayoutContextProps, type SideNavLayoutProps, SideNavLayoutProvider, type SideNavLayoutState, type SideNavLink, type SideNavLinkGroup, type SideNavProps, type SideNavSection, type SideNavSectionItem, 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, Tabs, TabsWithContent, Tag, type TagType, type TestIds, TextAreaField, type TextAreaFieldProps, TextField, type TextFieldApi, type TextFieldInternalProps, type TextFieldProps, type TextFieldXss, Toast, ToggleButton, type ToggleButtonProps, ToggleChip, ToggleChipGroup, type ToggleChipGroupProps, type ToggleChipProps, ToggleChips, type ToggleChipsProps, Tokens, Tooltip, TreeSelectField, type TreeSelectFieldProps, type TriggerNoticeProps, type Typography, type UseModalHook, type UsePersistedFilterProps, type UseQueryState, type UseRightPaneHook, type UseSnackbarHook, type UseSuperDrawerHook, type UseToastProps, type Value, type Xss, type ZIndex, actionColumn, applyRowFn, assignDefaultColumnIds, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundIconCardField, boundIconCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnSizes, cardStyle, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, contrastDataTheme, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, dragHandleColumn, emptyCell, ensureClientSideSortValueIsSortable, filterTestIdPrefix, formatDate, formatDateRange, formatPlainDate, formatValue, generateColumnId, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getJustification, getNavLinkStyles, getTableRefWidthStyles, getTableStyles, headerRenderFn, hoverStyles, iconButtonCircleStylesHover, iconButtonContrastStylesHover, iconButtonStylesHover, iconCardStylesHover, increment, insertAtIndex, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeCssVar, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, selectedStyles, setDefaultStyle, setGridTableDefaults, setRunningInJest, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBreakpoint, useComputed, 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, zIndices };