@homebound/beam 3.28.0 → 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.cjs +1746 -1611
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +80 -10
- package/dist/index.d.ts +80 -10
- package/dist/index.js +1039 -906
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -5171,10 +5171,10 @@ type GridColumnWithId<R extends Kinded> = GridColumn<R> & {
|
|
|
5171
5171
|
};
|
|
5172
5172
|
declare const nonKindGridColumnKeys: string[];
|
|
5173
5173
|
/**
|
|
5174
|
-
* Used to indicate where to
|
|
5175
|
-
* if it doesn't match the
|
|
5174
|
+
* Used to indicate where to fixed-sort the DataRow within its group, and whether it should be filtered
|
|
5175
|
+
* or always visible — setting `filter` to `true` will hide this row if it doesn't match the search term.
|
|
5176
5176
|
*/
|
|
5177
|
-
type
|
|
5177
|
+
type FixedSort = {
|
|
5178
5178
|
at: "first" | "last";
|
|
5179
5179
|
filter?: boolean;
|
|
5180
5180
|
};
|
|
@@ -5311,6 +5311,8 @@ type GridStyle = {
|
|
|
5311
5311
|
keptGroupRowCss?: Properties;
|
|
5312
5312
|
/** Defines styles for the last row `keptGroup` to provide separation from the rest of the table */
|
|
5313
5313
|
keptLastRowCss?: Properties;
|
|
5314
|
+
/** Applied to every cell of a runtime-pinned row — the green highlight for the pinned section. */
|
|
5315
|
+
pinnedRowCss?: Properties;
|
|
5314
5316
|
};
|
|
5315
5317
|
type GridStyleDef = {
|
|
5316
5318
|
/** Changes the height of the rows when `rowHeight: fixed` to provide more space between rows for input fields. */
|
|
@@ -5464,6 +5466,12 @@ declare class TableState<R extends Kinded> {
|
|
|
5464
5466
|
get collapsedIds(): string[];
|
|
5465
5467
|
isCollapsed(id: string): boolean;
|
|
5466
5468
|
toggleCollapsed(id: string): void;
|
|
5469
|
+
/** Returns rows pinned to the top, as RowStates for rendering. */
|
|
5470
|
+
get pinnedRows(): RowState<R>[];
|
|
5471
|
+
isPinnedRow(id: string): boolean;
|
|
5472
|
+
pinRow(id: string): void;
|
|
5473
|
+
unpinRow(id: string): void;
|
|
5474
|
+
togglePinned(id: string): void;
|
|
5467
5475
|
deleteRows(ids: string[]): void;
|
|
5468
5476
|
maybeSetRowDraggedOver(id: string, draggedOver: DraggedOver, requireSameParentRow?: GridDataRow<R> | undefined): void;
|
|
5469
5477
|
}
|
|
@@ -5513,6 +5521,13 @@ declare class RowStates<R extends Kinded> {
|
|
|
5513
5521
|
/** Returns kept rows, i.e. those that were user-selected but then client-side or server-side filtered. */
|
|
5514
5522
|
get keptRows(): RowState<R>[];
|
|
5515
5523
|
get collapsedRows(): RowState<R>[];
|
|
5524
|
+
/**
|
|
5525
|
+
* Returns rows pinned to the top at runtime.
|
|
5526
|
+
*
|
|
5527
|
+
* Sourced from `allStates` and not `visibleRows` so pinned rows stay visible even when the
|
|
5528
|
+
* current filter would otherwise hide them (like`keptRows`). Reserved rows are never pinnable.
|
|
5529
|
+
*/
|
|
5530
|
+
get pinnedRows(): RowState<R>[];
|
|
5516
5531
|
private createHeaderRow;
|
|
5517
5532
|
/** Create our synthetic "group row" for kept rows, that users never pass in, but we self-inject as needed. */
|
|
5518
5533
|
private createKeptGroupRow;
|
|
@@ -5543,6 +5558,12 @@ declare class RowState<R extends Kinded> {
|
|
|
5543
5558
|
selected: boolean;
|
|
5544
5559
|
/** Whether we are collapsed. */
|
|
5545
5560
|
collapsed: boolean;
|
|
5561
|
+
/**
|
|
5562
|
+
* Whether this row is pinned to the top at runtime — distinct from the declarative `row.fixedSort`,
|
|
5563
|
+
* which only reorders within a group. Boolean for now; maybe someday we implement bottom pinning,
|
|
5564
|
+
* at which point this would become `"top" | "bottom"`.
|
|
5565
|
+
*/
|
|
5566
|
+
pinned: boolean;
|
|
5546
5567
|
/** Whether we are dragged over. */
|
|
5547
5568
|
isDraggedOver: DraggedOver;
|
|
5548
5569
|
/**
|
|
@@ -5605,6 +5626,10 @@ declare class RowState<R extends Kinded> {
|
|
|
5605
5626
|
/** Marks the row as removed from `props.rows`, to potentially become kept. */
|
|
5606
5627
|
markRemoved(): void;
|
|
5607
5628
|
toggleCollapsed(): void;
|
|
5629
|
+
/** Pin/unpin this row at runtime. */
|
|
5630
|
+
setPinned(pinned: boolean): void;
|
|
5631
|
+
/** Toggle this row's runtime pin. */
|
|
5632
|
+
togglePinned(): void;
|
|
5608
5633
|
/** Whether this is a selected-but-filtered-out row that we should hoist to the top. */
|
|
5609
5634
|
get isKept(): boolean;
|
|
5610
5635
|
get isLastKeptRow(): boolean;
|
|
@@ -5632,7 +5657,13 @@ declare class RowState<R extends Kinded> {
|
|
|
5632
5657
|
* they want the row to be selectable.
|
|
5633
5658
|
*/
|
|
5634
5659
|
private get isParent();
|
|
5635
|
-
|
|
5660
|
+
/**
|
|
5661
|
+
* Whether the declarative `row.fixedSort` keeps this row visible through client-side filtering.
|
|
5662
|
+
*
|
|
5663
|
+
* Named for the behavior (not the prop): `fixedSort` reorders a row within its sibling group and
|
|
5664
|
+
* (here) exempts it from the filter — distinct from the runtime sticky `pinned`.
|
|
5665
|
+
*/
|
|
5666
|
+
private get isAlwaysVisible();
|
|
5636
5667
|
get api(): GridRowApi<R>;
|
|
5637
5668
|
get isReservedKind(): boolean;
|
|
5638
5669
|
/** A dedicated method to "looking down" recursively, to avoid loops in `isMatched`. */
|
|
@@ -5699,18 +5730,21 @@ type GridDataRow<R extends Kinded> = {
|
|
|
5699
5730
|
/** A list of parent/grand-parent ids for collapsing parent/child rows. */
|
|
5700
5731
|
children?: GridDataRow<R>[];
|
|
5701
5732
|
/**
|
|
5702
|
-
*
|
|
5733
|
+
* Forces this row to sort to the first/last of its parent's children.
|
|
5703
5734
|
*
|
|
5704
|
-
* By default,
|
|
5705
|
-
*
|
|
5706
|
-
*
|
|
5735
|
+
* By default, fixed-sorted rows are always shown/not filtered out; providing the
|
|
5736
|
+
* `filter: true` property allows them to be hidden while filtering. This is the
|
|
5737
|
+
* in-group ordering override, distinct from the runtime sticky "pin to top" feature
|
|
5738
|
+
* (`api.pinRow` / `pinColumn`).
|
|
5707
5739
|
*/
|
|
5708
|
-
|
|
5740
|
+
fixedSort?: "first" | "last" | FixedSort;
|
|
5709
5741
|
data: unknown;
|
|
5710
5742
|
/** Whether to have the row collapsed (children not visible) on initial load. This will be ignore in subsequent re-renders of the table */
|
|
5711
5743
|
initCollapsed?: boolean;
|
|
5712
5744
|
/** Whether to have the row selected on initial load. This will be ignore in subsequent re-renders of the table */
|
|
5713
5745
|
initSelected?: boolean;
|
|
5746
|
+
/** Whether to pin this row to the top on initial load. Ignored on subsequent re-renders (like `initSelected`). */
|
|
5747
|
+
initPinned?: boolean;
|
|
5714
5748
|
/** Whether row can be selected */
|
|
5715
5749
|
selectable?: false;
|
|
5716
5750
|
/** Whether this row should infer its selected state based on its children's selected state */
|
|
@@ -5790,6 +5824,16 @@ type GridTableApi<R extends Kinded> = {
|
|
|
5790
5824
|
isCollapsedRow(id: string): boolean;
|
|
5791
5825
|
/** Toggle collapse state of a row by id. */
|
|
5792
5826
|
toggleCollapsedRow(id: string): void;
|
|
5827
|
+
/** Whether a row is currently pinned to the top. */
|
|
5828
|
+
isPinnedRow(id: string): boolean;
|
|
5829
|
+
/** Pins a row to the top so it stays visible (sticky) while the body scrolls. */
|
|
5830
|
+
pinRow(id: string): void;
|
|
5831
|
+
/** Removes a row's runtime pin. */
|
|
5832
|
+
unpinRow(id: string): void;
|
|
5833
|
+
/** Toggles a row's runtime pinned state. */
|
|
5834
|
+
togglePinnedRow(id: string): void;
|
|
5835
|
+
/** Returns the ids of currently pinned rows. */
|
|
5836
|
+
getPinnedRowIds(): string[];
|
|
5793
5837
|
/** Sets the internal state of 'activeRowId' */
|
|
5794
5838
|
setActiveRowId(id: string | undefined): void;
|
|
5795
5839
|
/** Sets the internal state of 'activeCellId' */
|
|
@@ -5843,6 +5887,12 @@ declare class GridTableApiImpl<R extends Kinded> implements GridTableApi<R> {
|
|
|
5843
5887
|
selectRow(id: string, selected?: boolean): void;
|
|
5844
5888
|
toggleCollapsedRow(id: string): void;
|
|
5845
5889
|
isCollapsedRow(id: string): boolean;
|
|
5890
|
+
isPinnedRow(id: string): boolean;
|
|
5891
|
+
pinRow(id: string): void;
|
|
5892
|
+
unpinRow(id: string): void;
|
|
5893
|
+
togglePinnedRow(id: string): void;
|
|
5894
|
+
getPinnedRowIds(): string[];
|
|
5895
|
+
private getPinnedRowIdsImpl;
|
|
5846
5896
|
setVisibleColumns(ids: string[]): void;
|
|
5847
5897
|
getVisibleColumnIds(): string[];
|
|
5848
5898
|
resetColumnWidths(): void;
|
|
@@ -7936,6 +7986,16 @@ type EditColumnsButtonProps<R extends Kinded> = {
|
|
|
7936
7986
|
} & Pick<OverlayTriggerProps, "placement" | "disabled" | "tooltip">;
|
|
7937
7987
|
declare function EditColumnsButton<R extends Kinded>(props: EditColumnsButtonProps<R>): JSX.Element;
|
|
7938
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
|
+
|
|
7939
7999
|
interface SelectToggleProps {
|
|
7940
8000
|
id: string;
|
|
7941
8001
|
disabled?: boolean | ReactNode;
|
|
@@ -8027,6 +8087,16 @@ declare function selectColumn<T extends Kinded>(columnDef?: Partial<GridColumn<T
|
|
|
8027
8087
|
* all rows.
|
|
8028
8088
|
*/
|
|
8029
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>;
|
|
8030
8100
|
declare const layoutGutterLeftColumnId = "beamLayoutGutterLeft";
|
|
8031
8101
|
declare const layoutGutterRightColumnId = "beamLayoutGutterRight";
|
|
8032
8102
|
/** True for columns that display row data (not action controls or layout gutters). */
|
|
@@ -9027,4 +9097,4 @@ declare const zIndices: {
|
|
|
9027
9097
|
};
|
|
9028
9098
|
type ZIndex = (typeof zIndices)[keyof typeof zIndices];
|
|
9029
9099
|
|
|
9030
|
-
export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, type AppEnvironment, type AppNavGroup, type AppNavItem, type AppNavLink, type AppNavSection, type AppNavSectionItem, AutoSaveIndicator, AutoSaveStatus, AutoSaveStatusContext, AutoSaveStatusProvider, Autocomplete, type AutocompleteProps, Avatar, AvatarButton, type AvatarButtonProps, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, Banner, type BannerProps, type BannerTypes, BaseFilter, type BaseQueryTableProps, type BaseTableProps, type BeamButtonProps, type BeamColor, type BeamFocusableProps, BeamProvider, type BeamTextFieldProps, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundIconCardField, type BoundIconCardFieldProps, BoundIconCardGroupField, type BoundIconCardGroupFieldProps, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardBadgeSlot, type CardDataBlockSlot, type CardEyebrowSlot, type CardProgressSlot, type CardProps, type CardSlot, type CardStatusSlot, type CardTag, type CardTitleSlot, type CardType, type CheckFn, Checkbox, CheckboxGroup, type CheckboxGroupItemOption, type CheckboxGroupProps, type CheckboxProps, Chip, type ChipProps, ChipSelectField, type ChipSelectFieldProps, type ChipType, ChipTypes, type ChipValue, Chips, type ChipsProps, CollapseToggle, CollapsedContext, type ColumnLayoutResult, ConfirmCloseModal, type ContentStack, ContrastScope, Copy, CountBadge, type CountBadgeProps, Css, CssReset, type CssSetVarKeys, type CssSetVarScalar, type CssSetVarValue, DESC, DateField, type DateFieldFormat, type DateFieldMode, type DateFieldProps, type DateFilterValue, type DateMatcher, type DateRange, DateRangeField, type DateRangeFieldProps, type DateRangeFilterValue, type DefinedFilterValue, type Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, type DragData, EXPANDABLE_HEADER, EditColumnsButton, EnvironmentBanner, EnvironmentBannerLayout, type EnvironmentBannerLayoutProps, type EnvironmentBannerProps, type EnvironmentFaviconUrls, ErrorMessage, FieldGroup, type Filter, type FilterDefs, _FilterDropdownMenu as FilterDropdownMenu, type FilterImpls, FilterModal, _Filters as Filters, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, type FormSectionConfig, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, HelperText, HomeboundLogo, Icon, IconButton, type IconButtonProps, type IconButtonVariant, IconCard, type IconCardProps, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type ImpersonatedUser, type InfiniteScroll, type InlineStyle, type InputStylePalette, KEPT_GROUP, type Kinded, Loader, LoadingSkeleton, type LoadingSkeletonProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectField, type MultiSelectFieldProps, NavLink, type NavLinkProps, type NavLinkVariant, Navbar, NavbarLayout, type NavbarLayoutProps, type NavbarProps, type NavbarUser, type NestedOption, type NestedOptionsOrLoad, NumberField, type NumberFieldProps, type NumberFieldType, type OffsetAndLimit, type OnRowDragEvent, type OnRowSelect, type Only, type OpenDetailOpts, type OpenInDrawerOpts, OpenModal, type OpenRightPaneOpts, type Optional, type Padding, PageHeader, PageHeaderLayout, type PageHeaderLayoutProps, type PageHeaderProps, type PageNumberAndSize, type PageSettings, Pagination, Palette, type Pin, type Placement, type PlainDate, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, ResponsiveGrid, type ResponsiveGridConfig, ResponsiveGridContext, ResponsiveGridItem, type ResponsiveGridItemProps, type ResponsiveGridProps, RichTextField, RichTextFieldImpl, type RichTextFieldProps, RightPaneContext, RightPaneLayout, type RightPaneLayoutContextProps, RightPaneProvider, RightSidebar, type RightSidebarProps, type RouteTab, type RouteTabWithContent, Row, type RowStyle, type RowStyles, RuntimeCss, type RuntimeStyles, SIDE_NAV_LAYOUT_STATE_STORAGE_KEY, ScrollShadows, ScrollableContent, ScrollableFooter, ScrollableParent, SelectField, type SelectFieldProps, SelectToggle, type SelectedFilterLabelValue, type SelectedState, SideNav, SideNavLayout, type SideNavLayoutContextProps, type SideNavLayoutProps, SideNavLayoutProvider, type SideNavLayoutState, type SideNavProps, type SidePanelProps, type SidebarContentProps, type SimpleHeaderAndData, SortHeader, type SortOn, type SortState, StaticField, type Step, Stepper, type StepperProps, type StyleKind, SubmitButton, type SubmitButtonProps, SuperDrawerContent, SuperDrawerHeader, SuperDrawerWidth, type SupportedDateFormat, Switch, type SwitchProps, TOTALS, type Tab, TabContent, type TabWithContent, TableReviewLayout, type TableReviewLayoutProps, TableState, TableStateContext, type TableView, Tabs, TabsWithContent, Tag, type TagProps, type TagType, type TagXss, type TestIds, TextAreaField, type TextAreaFieldProps, TextField, type TextFieldApi, type TextFieldInternalProps, type TextFieldProps, type TextFieldXss, Toast, ToggleButton, type ToggleButtonProps, ToggleChip, ToggleChipGroup, type ToggleChipGroupProps, type ToggleChipProps, ToggleChips, type ToggleChipsProps, Tokens, Tooltip, TreeSelectField, type TreeSelectFieldProps, type TriggerNoticeProps, type Typography, type UseModalHook, type UsePersistedFilterProps, type UseQueryState, type UseRightPaneHook, type UseSnackbarHook, type UseSuperDrawerHook, type UseToastProps, type Value, ViewToggleButton, type Xss, type ZIndex, actionColumn, applyRowFn, assignDefaultColumnIds, bannerAndNavbarChromeTop, beamEnvironmentBannerLayoutHeightVar, beamLayoutViewportHeightVar, beamLayoutViewportWidthVar, beamNavbarLayoutHeightVar, beamPageHeaderLayoutHeightVar, beamSideNavLayoutWidthVar, beamTableActionsHeightVar, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundIconCardField, boundIconCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnLayout, calcColumnSizes, cardBadgeSlot, cardDataBlockSlot, cardEyebrowSlot, cardProgressSlot, cardStatusSlot, cardStyle, cardTitleSlot, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, contrastDataTheme, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, documentScrollChromeLeft, documentScrollChromeWidth, dragHandleColumn, emptyCell, ensureClientSideSortValueIsSortable, environmentBannerSizePx, filterTestIdPrefix, formatDate, formatDateRange, formatPlainDate, formatValue, generateColumnId, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getJustification, getNavLinkStyles, getTableRefWidthStyles, getTableStyles, headerRenderFn, hoverStyles, iconCardStylesHover, increment, insertAtIndex, isContentColumn, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, layoutGutterLeftColumnId, layoutGutterRightColumnId, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeCssVar, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveTableContentWidth, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, selectedStyles, setDefaultStyle, setEnvironmentFavicon, setGridTableDefaults, setRunningInJest, shouldShowEnvironmentBanner, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, stickyNavAndHeaderOffset, stickyTableHeaderOffset, sumColumnSizesPx, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBreakpoint, useComputed, useContentOverflow, useContrastScope, useDnDGridItem, type useDnDGridItemProps, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHasSideNavLayoutProvider, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneContext, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSideNavLayoutContext, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, withColumnGutters, zIndices };
|
|
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
|
@@ -5171,10 +5171,10 @@ type GridColumnWithId<R extends Kinded> = GridColumn<R> & {
|
|
|
5171
5171
|
};
|
|
5172
5172
|
declare const nonKindGridColumnKeys: string[];
|
|
5173
5173
|
/**
|
|
5174
|
-
* Used to indicate where to
|
|
5175
|
-
* if it doesn't match the
|
|
5174
|
+
* Used to indicate where to fixed-sort the DataRow within its group, and whether it should be filtered
|
|
5175
|
+
* or always visible — setting `filter` to `true` will hide this row if it doesn't match the search term.
|
|
5176
5176
|
*/
|
|
5177
|
-
type
|
|
5177
|
+
type FixedSort = {
|
|
5178
5178
|
at: "first" | "last";
|
|
5179
5179
|
filter?: boolean;
|
|
5180
5180
|
};
|
|
@@ -5311,6 +5311,8 @@ type GridStyle = {
|
|
|
5311
5311
|
keptGroupRowCss?: Properties;
|
|
5312
5312
|
/** Defines styles for the last row `keptGroup` to provide separation from the rest of the table */
|
|
5313
5313
|
keptLastRowCss?: Properties;
|
|
5314
|
+
/** Applied to every cell of a runtime-pinned row — the green highlight for the pinned section. */
|
|
5315
|
+
pinnedRowCss?: Properties;
|
|
5314
5316
|
};
|
|
5315
5317
|
type GridStyleDef = {
|
|
5316
5318
|
/** Changes the height of the rows when `rowHeight: fixed` to provide more space between rows for input fields. */
|
|
@@ -5464,6 +5466,12 @@ declare class TableState<R extends Kinded> {
|
|
|
5464
5466
|
get collapsedIds(): string[];
|
|
5465
5467
|
isCollapsed(id: string): boolean;
|
|
5466
5468
|
toggleCollapsed(id: string): void;
|
|
5469
|
+
/** Returns rows pinned to the top, as RowStates for rendering. */
|
|
5470
|
+
get pinnedRows(): RowState<R>[];
|
|
5471
|
+
isPinnedRow(id: string): boolean;
|
|
5472
|
+
pinRow(id: string): void;
|
|
5473
|
+
unpinRow(id: string): void;
|
|
5474
|
+
togglePinned(id: string): void;
|
|
5467
5475
|
deleteRows(ids: string[]): void;
|
|
5468
5476
|
maybeSetRowDraggedOver(id: string, draggedOver: DraggedOver, requireSameParentRow?: GridDataRow<R> | undefined): void;
|
|
5469
5477
|
}
|
|
@@ -5513,6 +5521,13 @@ declare class RowStates<R extends Kinded> {
|
|
|
5513
5521
|
/** Returns kept rows, i.e. those that were user-selected but then client-side or server-side filtered. */
|
|
5514
5522
|
get keptRows(): RowState<R>[];
|
|
5515
5523
|
get collapsedRows(): RowState<R>[];
|
|
5524
|
+
/**
|
|
5525
|
+
* Returns rows pinned to the top at runtime.
|
|
5526
|
+
*
|
|
5527
|
+
* Sourced from `allStates` and not `visibleRows` so pinned rows stay visible even when the
|
|
5528
|
+
* current filter would otherwise hide them (like`keptRows`). Reserved rows are never pinnable.
|
|
5529
|
+
*/
|
|
5530
|
+
get pinnedRows(): RowState<R>[];
|
|
5516
5531
|
private createHeaderRow;
|
|
5517
5532
|
/** Create our synthetic "group row" for kept rows, that users never pass in, but we self-inject as needed. */
|
|
5518
5533
|
private createKeptGroupRow;
|
|
@@ -5543,6 +5558,12 @@ declare class RowState<R extends Kinded> {
|
|
|
5543
5558
|
selected: boolean;
|
|
5544
5559
|
/** Whether we are collapsed. */
|
|
5545
5560
|
collapsed: boolean;
|
|
5561
|
+
/**
|
|
5562
|
+
* Whether this row is pinned to the top at runtime — distinct from the declarative `row.fixedSort`,
|
|
5563
|
+
* which only reorders within a group. Boolean for now; maybe someday we implement bottom pinning,
|
|
5564
|
+
* at which point this would become `"top" | "bottom"`.
|
|
5565
|
+
*/
|
|
5566
|
+
pinned: boolean;
|
|
5546
5567
|
/** Whether we are dragged over. */
|
|
5547
5568
|
isDraggedOver: DraggedOver;
|
|
5548
5569
|
/**
|
|
@@ -5605,6 +5626,10 @@ declare class RowState<R extends Kinded> {
|
|
|
5605
5626
|
/** Marks the row as removed from `props.rows`, to potentially become kept. */
|
|
5606
5627
|
markRemoved(): void;
|
|
5607
5628
|
toggleCollapsed(): void;
|
|
5629
|
+
/** Pin/unpin this row at runtime. */
|
|
5630
|
+
setPinned(pinned: boolean): void;
|
|
5631
|
+
/** Toggle this row's runtime pin. */
|
|
5632
|
+
togglePinned(): void;
|
|
5608
5633
|
/** Whether this is a selected-but-filtered-out row that we should hoist to the top. */
|
|
5609
5634
|
get isKept(): boolean;
|
|
5610
5635
|
get isLastKeptRow(): boolean;
|
|
@@ -5632,7 +5657,13 @@ declare class RowState<R extends Kinded> {
|
|
|
5632
5657
|
* they want the row to be selectable.
|
|
5633
5658
|
*/
|
|
5634
5659
|
private get isParent();
|
|
5635
|
-
|
|
5660
|
+
/**
|
|
5661
|
+
* Whether the declarative `row.fixedSort` keeps this row visible through client-side filtering.
|
|
5662
|
+
*
|
|
5663
|
+
* Named for the behavior (not the prop): `fixedSort` reorders a row within its sibling group and
|
|
5664
|
+
* (here) exempts it from the filter — distinct from the runtime sticky `pinned`.
|
|
5665
|
+
*/
|
|
5666
|
+
private get isAlwaysVisible();
|
|
5636
5667
|
get api(): GridRowApi<R>;
|
|
5637
5668
|
get isReservedKind(): boolean;
|
|
5638
5669
|
/** A dedicated method to "looking down" recursively, to avoid loops in `isMatched`. */
|
|
@@ -5699,18 +5730,21 @@ type GridDataRow<R extends Kinded> = {
|
|
|
5699
5730
|
/** A list of parent/grand-parent ids for collapsing parent/child rows. */
|
|
5700
5731
|
children?: GridDataRow<R>[];
|
|
5701
5732
|
/**
|
|
5702
|
-
*
|
|
5733
|
+
* Forces this row to sort to the first/last of its parent's children.
|
|
5703
5734
|
*
|
|
5704
|
-
* By default,
|
|
5705
|
-
*
|
|
5706
|
-
*
|
|
5735
|
+
* By default, fixed-sorted rows are always shown/not filtered out; providing the
|
|
5736
|
+
* `filter: true` property allows them to be hidden while filtering. This is the
|
|
5737
|
+
* in-group ordering override, distinct from the runtime sticky "pin to top" feature
|
|
5738
|
+
* (`api.pinRow` / `pinColumn`).
|
|
5707
5739
|
*/
|
|
5708
|
-
|
|
5740
|
+
fixedSort?: "first" | "last" | FixedSort;
|
|
5709
5741
|
data: unknown;
|
|
5710
5742
|
/** Whether to have the row collapsed (children not visible) on initial load. This will be ignore in subsequent re-renders of the table */
|
|
5711
5743
|
initCollapsed?: boolean;
|
|
5712
5744
|
/** Whether to have the row selected on initial load. This will be ignore in subsequent re-renders of the table */
|
|
5713
5745
|
initSelected?: boolean;
|
|
5746
|
+
/** Whether to pin this row to the top on initial load. Ignored on subsequent re-renders (like `initSelected`). */
|
|
5747
|
+
initPinned?: boolean;
|
|
5714
5748
|
/** Whether row can be selected */
|
|
5715
5749
|
selectable?: false;
|
|
5716
5750
|
/** Whether this row should infer its selected state based on its children's selected state */
|
|
@@ -5790,6 +5824,16 @@ type GridTableApi<R extends Kinded> = {
|
|
|
5790
5824
|
isCollapsedRow(id: string): boolean;
|
|
5791
5825
|
/** Toggle collapse state of a row by id. */
|
|
5792
5826
|
toggleCollapsedRow(id: string): void;
|
|
5827
|
+
/** Whether a row is currently pinned to the top. */
|
|
5828
|
+
isPinnedRow(id: string): boolean;
|
|
5829
|
+
/** Pins a row to the top so it stays visible (sticky) while the body scrolls. */
|
|
5830
|
+
pinRow(id: string): void;
|
|
5831
|
+
/** Removes a row's runtime pin. */
|
|
5832
|
+
unpinRow(id: string): void;
|
|
5833
|
+
/** Toggles a row's runtime pinned state. */
|
|
5834
|
+
togglePinnedRow(id: string): void;
|
|
5835
|
+
/** Returns the ids of currently pinned rows. */
|
|
5836
|
+
getPinnedRowIds(): string[];
|
|
5793
5837
|
/** Sets the internal state of 'activeRowId' */
|
|
5794
5838
|
setActiveRowId(id: string | undefined): void;
|
|
5795
5839
|
/** Sets the internal state of 'activeCellId' */
|
|
@@ -5843,6 +5887,12 @@ declare class GridTableApiImpl<R extends Kinded> implements GridTableApi<R> {
|
|
|
5843
5887
|
selectRow(id: string, selected?: boolean): void;
|
|
5844
5888
|
toggleCollapsedRow(id: string): void;
|
|
5845
5889
|
isCollapsedRow(id: string): boolean;
|
|
5890
|
+
isPinnedRow(id: string): boolean;
|
|
5891
|
+
pinRow(id: string): void;
|
|
5892
|
+
unpinRow(id: string): void;
|
|
5893
|
+
togglePinnedRow(id: string): void;
|
|
5894
|
+
getPinnedRowIds(): string[];
|
|
5895
|
+
private getPinnedRowIdsImpl;
|
|
5846
5896
|
setVisibleColumns(ids: string[]): void;
|
|
5847
5897
|
getVisibleColumnIds(): string[];
|
|
5848
5898
|
resetColumnWidths(): void;
|
|
@@ -7936,6 +7986,16 @@ type EditColumnsButtonProps<R extends Kinded> = {
|
|
|
7936
7986
|
} & Pick<OverlayTriggerProps, "placement" | "disabled" | "tooltip">;
|
|
7937
7987
|
declare function EditColumnsButton<R extends Kinded>(props: EditColumnsButtonProps<R>): JSX.Element;
|
|
7938
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
|
+
|
|
7939
7999
|
interface SelectToggleProps {
|
|
7940
8000
|
id: string;
|
|
7941
8001
|
disabled?: boolean | ReactNode;
|
|
@@ -8027,6 +8087,16 @@ declare function selectColumn<T extends Kinded>(columnDef?: Partial<GridColumn<T
|
|
|
8027
8087
|
* all rows.
|
|
8028
8088
|
*/
|
|
8029
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>;
|
|
8030
8100
|
declare const layoutGutterLeftColumnId = "beamLayoutGutterLeft";
|
|
8031
8101
|
declare const layoutGutterRightColumnId = "beamLayoutGutterRight";
|
|
8032
8102
|
/** True for columns that display row data (not action controls or layout gutters). */
|
|
@@ -9027,4 +9097,4 @@ declare const zIndices: {
|
|
|
9027
9097
|
};
|
|
9028
9098
|
type ZIndex = (typeof zIndices)[keyof typeof zIndices];
|
|
9029
9099
|
|
|
9030
|
-
export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, type AppEnvironment, type AppNavGroup, type AppNavItem, type AppNavLink, type AppNavSection, type AppNavSectionItem, AutoSaveIndicator, AutoSaveStatus, AutoSaveStatusContext, AutoSaveStatusProvider, Autocomplete, type AutocompleteProps, Avatar, AvatarButton, type AvatarButtonProps, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, Banner, type BannerProps, type BannerTypes, BaseFilter, type BaseQueryTableProps, type BaseTableProps, type BeamButtonProps, type BeamColor, type BeamFocusableProps, BeamProvider, type BeamTextFieldProps, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundIconCardField, type BoundIconCardFieldProps, BoundIconCardGroupField, type BoundIconCardGroupFieldProps, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardBadgeSlot, type CardDataBlockSlot, type CardEyebrowSlot, type CardProgressSlot, type CardProps, type CardSlot, type CardStatusSlot, type CardTag, type CardTitleSlot, type CardType, type CheckFn, Checkbox, CheckboxGroup, type CheckboxGroupItemOption, type CheckboxGroupProps, type CheckboxProps, Chip, type ChipProps, ChipSelectField, type ChipSelectFieldProps, type ChipType, ChipTypes, type ChipValue, Chips, type ChipsProps, CollapseToggle, CollapsedContext, type ColumnLayoutResult, ConfirmCloseModal, type ContentStack, ContrastScope, Copy, CountBadge, type CountBadgeProps, Css, CssReset, type CssSetVarKeys, type CssSetVarScalar, type CssSetVarValue, DESC, DateField, type DateFieldFormat, type DateFieldMode, type DateFieldProps, type DateFilterValue, type DateMatcher, type DateRange, DateRangeField, type DateRangeFieldProps, type DateRangeFilterValue, type DefinedFilterValue, type Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, type DragData, EXPANDABLE_HEADER, EditColumnsButton, EnvironmentBanner, EnvironmentBannerLayout, type EnvironmentBannerLayoutProps, type EnvironmentBannerProps, type EnvironmentFaviconUrls, ErrorMessage, FieldGroup, type Filter, type FilterDefs, _FilterDropdownMenu as FilterDropdownMenu, type FilterImpls, FilterModal, _Filters as Filters, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, type FormSectionConfig, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, HelperText, HomeboundLogo, Icon, IconButton, type IconButtonProps, type IconButtonVariant, IconCard, type IconCardProps, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type ImpersonatedUser, type InfiniteScroll, type InlineStyle, type InputStylePalette, KEPT_GROUP, type Kinded, Loader, LoadingSkeleton, type LoadingSkeletonProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectField, type MultiSelectFieldProps, NavLink, type NavLinkProps, type NavLinkVariant, Navbar, NavbarLayout, type NavbarLayoutProps, type NavbarProps, type NavbarUser, type NestedOption, type NestedOptionsOrLoad, NumberField, type NumberFieldProps, type NumberFieldType, type OffsetAndLimit, type OnRowDragEvent, type OnRowSelect, type Only, type OpenDetailOpts, type OpenInDrawerOpts, OpenModal, type OpenRightPaneOpts, type Optional, type Padding, PageHeader, PageHeaderLayout, type PageHeaderLayoutProps, type PageHeaderProps, type PageNumberAndSize, type PageSettings, Pagination, Palette, type Pin, type Placement, type PlainDate, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, ResponsiveGrid, type ResponsiveGridConfig, ResponsiveGridContext, ResponsiveGridItem, type ResponsiveGridItemProps, type ResponsiveGridProps, RichTextField, RichTextFieldImpl, type RichTextFieldProps, RightPaneContext, RightPaneLayout, type RightPaneLayoutContextProps, RightPaneProvider, RightSidebar, type RightSidebarProps, type RouteTab, type RouteTabWithContent, Row, type RowStyle, type RowStyles, RuntimeCss, type RuntimeStyles, SIDE_NAV_LAYOUT_STATE_STORAGE_KEY, ScrollShadows, ScrollableContent, ScrollableFooter, ScrollableParent, SelectField, type SelectFieldProps, SelectToggle, type SelectedFilterLabelValue, type SelectedState, SideNav, SideNavLayout, type SideNavLayoutContextProps, type SideNavLayoutProps, SideNavLayoutProvider, type SideNavLayoutState, type SideNavProps, type SidePanelProps, type SidebarContentProps, type SimpleHeaderAndData, SortHeader, type SortOn, type SortState, StaticField, type Step, Stepper, type StepperProps, type StyleKind, SubmitButton, type SubmitButtonProps, SuperDrawerContent, SuperDrawerHeader, SuperDrawerWidth, type SupportedDateFormat, Switch, type SwitchProps, TOTALS, type Tab, TabContent, type TabWithContent, TableReviewLayout, type TableReviewLayoutProps, TableState, TableStateContext, type TableView, Tabs, TabsWithContent, Tag, type TagProps, type TagType, type TagXss, type TestIds, TextAreaField, type TextAreaFieldProps, TextField, type TextFieldApi, type TextFieldInternalProps, type TextFieldProps, type TextFieldXss, Toast, ToggleButton, type ToggleButtonProps, ToggleChip, ToggleChipGroup, type ToggleChipGroupProps, type ToggleChipProps, ToggleChips, type ToggleChipsProps, Tokens, Tooltip, TreeSelectField, type TreeSelectFieldProps, type TriggerNoticeProps, type Typography, type UseModalHook, type UsePersistedFilterProps, type UseQueryState, type UseRightPaneHook, type UseSnackbarHook, type UseSuperDrawerHook, type UseToastProps, type Value, ViewToggleButton, type Xss, type ZIndex, actionColumn, applyRowFn, assignDefaultColumnIds, bannerAndNavbarChromeTop, beamEnvironmentBannerLayoutHeightVar, beamLayoutViewportHeightVar, beamLayoutViewportWidthVar, beamNavbarLayoutHeightVar, beamPageHeaderLayoutHeightVar, beamSideNavLayoutWidthVar, beamTableActionsHeightVar, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundIconCardField, boundIconCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnLayout, calcColumnSizes, cardBadgeSlot, cardDataBlockSlot, cardEyebrowSlot, cardProgressSlot, cardStatusSlot, cardStyle, cardTitleSlot, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, contrastDataTheme, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, documentScrollChromeLeft, documentScrollChromeWidth, dragHandleColumn, emptyCell, ensureClientSideSortValueIsSortable, environmentBannerSizePx, filterTestIdPrefix, formatDate, formatDateRange, formatPlainDate, formatValue, generateColumnId, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getJustification, getNavLinkStyles, getTableRefWidthStyles, getTableStyles, headerRenderFn, hoverStyles, iconCardStylesHover, increment, insertAtIndex, isContentColumn, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, layoutGutterLeftColumnId, layoutGutterRightColumnId, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeCssVar, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveTableContentWidth, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, selectedStyles, setDefaultStyle, setEnvironmentFavicon, setGridTableDefaults, setRunningInJest, shouldShowEnvironmentBanner, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, stickyNavAndHeaderOffset, stickyTableHeaderOffset, sumColumnSizesPx, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBreakpoint, useComputed, useContentOverflow, useContrastScope, useDnDGridItem, type useDnDGridItemProps, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHasSideNavLayoutProvider, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneContext, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSideNavLayoutContext, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, withColumnGutters, zIndices };
|
|
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 };
|