@homebound/beam 4.5.0 → 4.7.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 +901 -845
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +55 -22
- package/dist/index.d.ts +55 -22
- package/dist/index.js +837 -786
- package/dist/index.js.map +1 -1
- package/dist/truss.css +0 -4
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -7793,23 +7793,28 @@ declare const filterTestIdPrefix = "filter";
|
|
|
7793
7793
|
* Labels are `string` so actions can collapse into a `ButtonMenu` on mobile.
|
|
7794
7794
|
* Icon actions always render with the `outline` `IconButton` variant, so `variant` is omitted here.
|
|
7795
7795
|
*/
|
|
7796
|
+
type HeaderActionKeepVisible = {
|
|
7797
|
+
/** At `sm`, render this action below the title instead of collapsing it into the overflow menu. */
|
|
7798
|
+
keepVisible?: boolean;
|
|
7799
|
+
};
|
|
7796
7800
|
type HeaderAction = ({
|
|
7797
7801
|
kind?: "default";
|
|
7798
|
-
} & Omit<ButtonProps, "label"> & {
|
|
7802
|
+
} & HeaderActionKeepVisible & Omit<ButtonProps, "label"> & {
|
|
7799
7803
|
label: string;
|
|
7800
7804
|
}) | ({
|
|
7801
7805
|
kind: "icon";
|
|
7802
|
-
} & Omit<IconButtonProps, "variant" | "label"> & {
|
|
7806
|
+
} & HeaderActionKeepVisible & Omit<IconButtonProps, "variant" | "label"> & {
|
|
7803
7807
|
label: string;
|
|
7804
7808
|
}) | ({
|
|
7805
7809
|
kind: "menu";
|
|
7806
|
-
} & ButtonMenuProps);
|
|
7810
|
+
} & HeaderActionKeepVisible & ButtonMenuProps);
|
|
7807
7811
|
|
|
7808
7812
|
type ContentHeaderXss = Xss<Padding>;
|
|
7809
7813
|
type ContentHeaderLevel = 2 | 3 | 4;
|
|
7810
7814
|
type ContentHeaderProps<X = ContentHeaderXss> = {
|
|
7811
7815
|
title?: string;
|
|
7812
7816
|
description?: ReactNode;
|
|
7817
|
+
/** Right slot on desktop; `keepVisible` actions move to the bottom slot at `sm`. */
|
|
7813
7818
|
actions?: HeaderAction[];
|
|
7814
7819
|
/** When true, prepends `AutoSaveIndicator` in the actions area. */
|
|
7815
7820
|
withAutoSave?: boolean;
|
|
@@ -8869,28 +8874,25 @@ type PersistedFilterHook<F> = {
|
|
|
8869
8874
|
*/
|
|
8870
8875
|
declare function usePersistedFilter<F>({ storageKey, filterDefs }: UsePersistedFilterProps$1<F>): PersistedFilterHook<F>;
|
|
8871
8876
|
|
|
8872
|
-
/** Desktop right-pane strategy. See `docs/layouts.md` for overlay / push / auto outcomes. */
|
|
8873
|
-
type DocumentScrollRightPaneMode = "auto" | "overlay" | "push";
|
|
8874
|
-
/** Desktop strategies for the upcoming inline (push/clear) pane only. */
|
|
8875
|
-
type DocumentScrollInlineRightPaneMode = "auto" | "push";
|
|
8876
8877
|
/** Default document-scroll detail pane width (px). */
|
|
8877
8878
|
declare const defaultDocumentScrollRightPaneWidth = 450;
|
|
8878
8879
|
/**
|
|
8879
|
-
*
|
|
8880
|
-
*
|
|
8880
|
+
* Minimum content-column width (px) on `md+` while the pane is open — form shell or table body.
|
|
8881
|
+
* Published as `--beam-right-pane-content-min` (not overlay `main`) so JumpLinks sit outside the floor.
|
|
8882
|
+
*/
|
|
8883
|
+
declare const minDocumentScrollContentWidthPx = 480;
|
|
8884
|
+
/**
|
|
8885
|
+
* Opt into a document-scroll right pane. `true` uses the default width; a number or
|
|
8886
|
+
* `{ width? }` sets the pane width in px (`width` omitted → default).
|
|
8881
8887
|
*/
|
|
8882
8888
|
type WithRightPane = boolean | number | {
|
|
8883
8889
|
width?: number;
|
|
8884
|
-
mode?: DocumentScrollRightPaneMode;
|
|
8885
8890
|
};
|
|
8886
8891
|
type ResolvedWithRightPane = {
|
|
8887
8892
|
width: number;
|
|
8888
|
-
mode: DocumentScrollRightPaneMode;
|
|
8889
8893
|
};
|
|
8890
|
-
/**
|
|
8891
|
-
|
|
8892
|
-
/** Normalize `withRightPane` into width + mode, or `undefined` when opted out. */
|
|
8893
|
-
declare function resolveWithRightPaneOptions(withRightPane: WithRightPane | undefined, defaultMode: DocumentScrollRightPaneMode): ResolvedWithRightPane | undefined;
|
|
8894
|
+
/** Normalize `withRightPane` into a pane width, or `undefined` when opted out. */
|
|
8895
|
+
declare function resolveWithRightPaneOptions(withRightPane: WithRightPane | undefined): ResolvedWithRightPane | undefined;
|
|
8894
8896
|
|
|
8895
8897
|
type QueryTablePropsWithQuery<R extends Kinded, X extends Only<GridTableXss, X>, QData> = BaseQueryTableProps<R, X, QData> & {
|
|
8896
8898
|
emptyFallback?: string;
|
|
@@ -8909,7 +8911,7 @@ type GridTableLayoutProps<F extends Record<string, unknown>, R extends Kinded, X
|
|
|
8909
8911
|
withCardView?: boolean;
|
|
8910
8912
|
defaultView?: TableView;
|
|
8911
8913
|
/**
|
|
8912
|
-
* Opt into the document-scroll detail pane (`useRightPane`).
|
|
8914
|
+
* Opt into the document-scroll detail pane (`useRightPane`).
|
|
8913
8915
|
* Only applies inside a document-scroll layout; hosts the pane around the table body only.
|
|
8914
8916
|
*/
|
|
8915
8917
|
withRightPane?: WithRightPane;
|
|
@@ -8989,6 +8991,15 @@ declare function RightPaneLayout(props: {
|
|
|
8989
8991
|
defaultPaneContent?: ReactElement;
|
|
8990
8992
|
}): React$1.JSX.Element;
|
|
8991
8993
|
|
|
8994
|
+
type RightPanePanelProps = {
|
|
8995
|
+
title: string;
|
|
8996
|
+
children: ReactNode;
|
|
8997
|
+
/** When false, omit the built-in close control (caller provides their own). Default true. */
|
|
8998
|
+
withClose?: boolean;
|
|
8999
|
+
};
|
|
9000
|
+
/** Pane body chrome: title row, close control, and scrollable children. See `docs/layouts.md`. */
|
|
9001
|
+
declare function RightPanePanel(props: RightPanePanelProps): React$1.JSX.Element;
|
|
9002
|
+
|
|
8992
9003
|
/** Body passed to `openRightPane`. */
|
|
8993
9004
|
type OpenRightPaneOpts = {
|
|
8994
9005
|
content: ReactNode;
|
|
@@ -10370,9 +10381,19 @@ type CenteredLayoutProps = {
|
|
|
10370
10381
|
/** `sm` = 720px content (768px shell max); `lg` = 1392px content (1440px shell max). Horizontal padding 12px / 24px from `md`. */
|
|
10371
10382
|
size: CenteredLayoutSize;
|
|
10372
10383
|
children?: ReactNode;
|
|
10384
|
+
/**
|
|
10385
|
+
* Opt into the document-scroll detail pane (`useRightPane`).
|
|
10386
|
+
* Do not also nest another document-scroll right-pane layout (e.g. `FormSectionLayout withRightPane`).
|
|
10387
|
+
*/
|
|
10388
|
+
withRightPane?: WithRightPane;
|
|
10373
10389
|
};
|
|
10374
10390
|
/** Centered body-width shell. Nest inside page-header / stepper layout children — see `docs/layouts.md`. */
|
|
10375
10391
|
declare function CenteredLayout(props: CenteredLayoutProps): React$1.JSX.Element;
|
|
10392
|
+
/** Shell max-width (content + horizontal padding at md+): 768 / 1440. */
|
|
10393
|
+
declare const centeredShellMaxPx: {
|
|
10394
|
+
readonly sm: number;
|
|
10395
|
+
readonly lg: number;
|
|
10396
|
+
};
|
|
10376
10397
|
|
|
10377
10398
|
type EnvironmentBannerLayoutProps = {
|
|
10378
10399
|
/** When provided and {@link shouldShowEnvironmentBanner} is true, renders {@link EnvironmentBanner} and publishes height. */
|
|
@@ -10430,6 +10451,11 @@ type FormSectionLayoutProps = {
|
|
|
10430
10451
|
* Default false — opt in for FocusedForm / Stepper form steps that want the rail.
|
|
10431
10452
|
*/
|
|
10432
10453
|
withJumpLinks?: boolean;
|
|
10454
|
+
/**
|
|
10455
|
+
* Opt into the document-scroll detail pane (`useRightPane`).
|
|
10456
|
+
* Hosts JumpLinks + form — do not also set `withRightPane` on the inner `CenteredLayout`.
|
|
10457
|
+
*/
|
|
10458
|
+
withRightPane?: WithRightPane;
|
|
10433
10459
|
};
|
|
10434
10460
|
/**
|
|
10435
10461
|
* Form of `FormSection`s in a `sm` {@link CenteredLayout} — e.g. a `StepperLayout` step's `content`
|
|
@@ -10482,12 +10508,19 @@ declare const beamLayoutContentPaddingXVar = "--beam-layout-content-padding-x";
|
|
|
10482
10508
|
/** Table actions toolbar height (px) while pinned in document-scroll layouts. */
|
|
10483
10509
|
declare const beamTableActionsHeightVar = "--beam-table-actions-height";
|
|
10484
10510
|
/**
|
|
10485
|
-
* Open
|
|
10511
|
+
* Open overlay pane width; `0px` when closed. Published on
|
|
10486
10512
|
* `DocumentScrollOverlayRightPaneLayout` so sticky right columns (descendants) inherit it.
|
|
10487
10513
|
* Not subtracted from `documentScrollChromeWidth` — the pane pins below page header /
|
|
10488
10514
|
* table actions.
|
|
10489
10515
|
*/
|
|
10490
10516
|
declare const beamRightPaneWidthVar = "--beam-right-pane-width";
|
|
10517
|
+
/**
|
|
10518
|
+
* Content-column min-width while the overlay pane is open; `0px` when closed.
|
|
10519
|
+
* Read on the form shell / table body (not overlay `main`) so JumpLinks sit outside the floor.
|
|
10520
|
+
*/
|
|
10521
|
+
declare const beamRightPaneContentMinVar = "--beam-right-pane-content-min";
|
|
10522
|
+
/** CSS `min-width` for the form shell or table body; `0px` when the pane is closed. */
|
|
10523
|
+
declare function documentScrollRightPaneContentMinCss(): string;
|
|
10491
10524
|
/**
|
|
10492
10525
|
* Extra `right` inset for floating page chrome when the document-scroll right pane is open.
|
|
10493
10526
|
* Published on `document.documentElement` so siblings outside the pane layout (e.g.
|
|
@@ -10557,7 +10590,7 @@ type BaseHeaderProps = {
|
|
|
10557
10590
|
};
|
|
10558
10591
|
|
|
10559
10592
|
type PageHeaderProps<V extends string, X> = Omit<BaseHeaderProps, "bottomSlot"> & {
|
|
10560
|
-
/**
|
|
10593
|
+
/** Buttons on desktop; two or more collapse into a overflow menu at `sm`. `keepVisible` actions stay in the bottom slot on mobile. */
|
|
10561
10594
|
actions?: HeaderAction[];
|
|
10562
10595
|
tabs?: Omit<TabsProps<V, X>, "contentXss" | "omitFullBleedPadding" | "includeBottomBorder"> | Omit<RouteTabsProps<V, X>, "contentXss" | "omitFullBleedPadding" | "includeBottomBorder">;
|
|
10563
10596
|
};
|
|
@@ -10578,13 +10611,13 @@ type FocusedFormLayoutProps = Pick<BaseHeaderProps, "title" | "documentTitleSuff
|
|
|
10578
10611
|
isDirty?: () => boolean;
|
|
10579
10612
|
/** Full-bleed AI wash on the body and the `ai` Create/Save variant. Pair with body `aiMode` (e.g. FormSectionLayout). */
|
|
10580
10613
|
aiMode?: boolean;
|
|
10581
|
-
/** Page body — typically {@link FormSectionLayout} (optionally with `withJumpLinks`). */
|
|
10614
|
+
/** Page body — typically {@link FormSectionLayout} (optionally with `withJumpLinks` / `withRightPane`). */
|
|
10582
10615
|
children: ReactNode;
|
|
10583
10616
|
};
|
|
10584
10617
|
/**
|
|
10585
10618
|
* Standalone workflow page without steps: workflow header + body.
|
|
10586
|
-
* Nest under `EnvironmentBannerLayout` only. JumpLinks live on the body
|
|
10587
|
-
* Contract: `docs/layouts.md`.
|
|
10619
|
+
* Nest under `EnvironmentBannerLayout` only. JumpLinks and the right pane live on the body
|
|
10620
|
+
* (e.g. `FormSectionLayout withJumpLinks withRightPane`). Contract: `docs/layouts.md`.
|
|
10588
10621
|
*/
|
|
10589
10622
|
declare function FocusedFormLayout(props: FocusedFormLayoutProps): React$1.JSX.Element;
|
|
10590
10623
|
|
|
@@ -10991,4 +11024,4 @@ declare const zIndices: {
|
|
|
10991
11024
|
};
|
|
10992
11025
|
type ZIndex = (typeof zIndices)[keyof typeof zIndices];
|
|
10993
11026
|
|
|
10994
|
-
export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, AiBanner, type AiBannerProps, AiCard, type AiCardProps, type AiCardSize, AiLinkCardGroup, type AiLinkCardGroupProps, AiLoader, type AiLoaderProps, AiLoadingPanel, type AiLoadingPanelProps, AiPanel, type AiPanelPadding, type AiPanelProps, AiSlimBanner, type AiSlimBannerProps, type AppEnvironment, type AppNavGroup, type AppNavItem, type AppNavLink, type AppNavSection, type AppNavSectionItem, AutoSaveIndicator, AutoSaveStatus, AutoSaveStatusContext, AutoSaveStatusProvider, Autocomplete, type AutocompleteProps, Avatar, AvatarButton, type AvatarButtonProps, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, Banner, type BannerProps, type BannerTypes, BaseCard, type BaseCardProps, BaseFilter, type BaseQueryTableProps, type BaseTableProps, type BeamButtonProps, type BeamColor, type BeamFocusableProps, BeamLogo, BeamProvider, type BeamTextFieldProps, BlueprintAiLogo, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectCardGroupField, type BoundMultiSelectCardGroupFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectCardGroupField, type BoundSelectCardGroupFieldProps, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breadcrumb, Breadcrumbs, type BreadcrumbsProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, type ButtonColorScheme, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardBadgeSlot, type CardBadgeTag, CardBody, type CardBodyProps, type CardCarouselFooter, type CardCarouselThumbnail, type CardData, type CardDataBlockSlot, type CardEyebrowSlot, type CardInteractiveFooter, type CardInteractiveFooterSlot, type CardLeftEyebrowSlot, type CardProgressSlot, type CardProps, type CardRightEyebrowSlot, type CardSlot, type CardStatusSlot, type CardTag, type CardTitleSlot, type CardType, Carousel, type CarouselProps, CenteredLayout, type CenteredLayoutProps, type CenteredLayoutSize, type CheckFn, Checkbox, CheckboxGroup, type CheckboxGroupItemOption, type CheckboxGroupProps, type CheckboxProps, Chip, type ChipProps, ChipSelectField, type ChipSelectFieldProps, type ChipType, ChipTypes, type ChipValue, Chips, type ChipsProps, CollapseToggle, CollapsedContext, type ColumnLayoutResult, type CompanionConfig, type CompanionContent, type CompanionPosition, ConfirmCloseModal, ContentHeader, type ContentHeaderLevel, type ContentHeaderProps, type ContentStack, ContrastScope, Copy, CountBadge, type CountBadgeProps, Css, CssReset, type CssSetVarKeys, type CssSetVarScalar, type CssSetVarValue, DESC, DateField, type DateFieldFormat, type DateFieldMode, type DateFieldProps, type DateFilterValue, type DateMatcher, type DateRange, DateRangeField, type DateRangeFieldProps, type DateRangeFilterValue, type DefinedFilterValue, type Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, type DocumentScrollInlineRightPaneMode, DocumentScrollOverlayRightPaneLayout, type DocumentScrollOverlayRightPaneLayoutProps, type DocumentScrollRightPaneMode, type DocumentTitleConfig, DocumentTitleProvider, type DragData, EXPANDABLE_HEADER, EditColumnsButton, EnvironmentBanner, EnvironmentBannerLayout, type EnvironmentBannerLayoutProps, type EnvironmentBannerProps, type EnvironmentFaviconUrls, ErrorMessage, FieldGroup, type Filter, type FilterDefs, type FilterImpls, FilterModal, _Filters as Filters, type FixedSort, FocusedFormLayout, type FocusedFormLayoutProps, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, FormSection, type FormSectionAction, type FormSectionConfig, FormSectionLayout, type FormSectionLayoutProps, type FormSectionLayoutSection, type FormSectionProps, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowCompanion, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableEmptyState, type GridTableEmptyStateProps, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, type HeaderAction, HelperText, HomeboundLogo, Icon, IconButton, type IconButtonProps, type IconButtonVariant, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type ImpersonatedUser, type InfiniteScroll, InlineFeedbackBanner, type InlineFeedbackBannerAction, type InlineFeedbackBannerProps, type InlineFeedbackBannerType, type InlineStyle, type InputStylePalette, JumpLink, type JumpLinkProps, KEPT_GROUP, Keyframes, type Kinded, LinkCard, type LinkCardProps, Loader, LoadingSkeleton, type LoadingSkeletonProps, type LogoSizeProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBanner, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectCardGroup, type MultiSelectCardGroupProps, MultiSelectField, type MultiSelectFieldProps, NavLink, type NavLinkProps, type NavLinkVariant, Navbar, NavbarLayout, type NavbarLayoutProps, type NavbarProps, type NavbarUser, type NestedOption, type NestedOptionsOrLoad, NumberField, type NumberFieldProps, type NumberFieldType, type OffsetAndLimit, type OnRowDragEvent, type OnRowSelect, type Only, type OpenDetailOpts, type OpenInDrawerOpts, OpenModal, type OpenRightPaneOpts, type Optional, type Padding, PageHeaderLayout, type PageHeaderLayoutProps, type PageNumberAndSize, type PageSettings, Pagination, Palette, PinToggle, type Placement, type PlainDate, type PlainFormSectionChild, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, ProposedValue$1 as ProposedValue, type ProposedValueProps, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, type ReorderableFormSectionChild, type ResolvedDocumentScrollRightPaneBehavior, type ResolvedWithRightPane, ResponsiveGrid, type ResponsiveGridConfig, ResponsiveGridContext, ResponsiveGridItem, type ResponsiveGridItemProps, type ResponsiveGridProps, RichTextField, RichTextFieldImpl, type RichTextFieldProps, RightPaneLayout, type RightPaneOpenActions, type RightPaneOpenState, RightSidebar, type RightSidebarProps, type RouteTab, type RouteTabWithContent, Row, type RowStyle, type RowStyles, RuntimeCss, type RuntimeStyles, SIDE_NAV_LAYOUT_STATE_STORAGE_KEY, ScrollShadows, ScrollableContent, ScrollableFooter, ScrollableParent, type SelectCardGridGroupItemOption, SelectCardGroup, type SelectCardGroupItemOption, type SelectCardGroupProps, type SelectCardLayout, type SelectCardListGroupItemOption, type SelectCardView, SelectField, type SelectFieldProps, SelectToggle, type SelectedFilterLabelValue, SelectedOptionPill, SelectedOptionPillList, type SelectedOptionPillListProps, type SelectedOptionPillProps, type SelectedState, SideNav, SideNavLayout, type SideNavLayoutContextProps, type SideNavLayoutProps, SideNavLayoutProvider, type SideNavLayoutState, type SideNavProps, type SidePanelProps, type SidebarContentProps, type SimpleHeaderAndData, SortHeader, type SortOn, type SortState, StaticField, type Step, Stepper, StepperLayout, type StepperLayoutProps, type StepperLayoutStep, type StepperProps, StepperTab, type StepperTabProps, StepperTabs, type StepperTabsProps, type StepperTabsStep, type StyleKind, SubmitButton, type SubmitButtonProps, SuperDrawerContent, SuperDrawerHeader, SuperDrawerWidth, type SupportedDateFormat, Switch, type SwitchProps, TOTALS, type Tab, TabContent, type TabWithContent, TableReviewLayout, type TableReviewLayoutProps, TableState, TableStateContext, type TableView, Tabs, TabsWithContent, Tag, TagGroup, type TagGroupItem, type TagGroupProps, type TagProps, type TagType, type TagVariant, type TagXss, type TestIds, TextAreaField, type TextAreaFieldProps, TextField, type TextFieldApi, type TextFieldInternalProps, type TextFieldProps, type TextFieldXss, Toast, ToggleButton, type ToggleButtonProps, ToggleChip, ToggleChipGroup, type ToggleChipGroupProps, type ToggleChipProps, ToggleChips, type ToggleChipsProps, Tokens, Tooltip, TreeSelectField, type TreeSelectFieldProps, type TriggerNoticeProps, type Typography, type UseModalHook, type UsePersistedFilterProps$1 as UsePersistedFilterProps, type UseQueryState, type UseRightPaneActionsHook, type UseRightPaneHook, type UseSnackbarHook, type UseSuperDrawerHook, type UseToastProps, type Value, ViewToggleButton, type WithRightPane, type Xss, type ZIndex, actionColumn, applyRowFn, assignDefaultColumnIds, bannerAndNavbarChromeTop, beamEnvironmentBannerLayoutHeightVar, beamFloatingRightOffsetVar, beamLayoutContentPaddingXVar, beamLayoutViewportHeightVar, beamLayoutViewportWidthVar, beamNavbarLayoutHeightVar, beamPageHeaderLayoutHeightVar, beamRightPaneWidthVar, beamSideNavLayoutWidthVar, beamTableActionsHeightVar, beamWorkflowLayoutFooterHeightVar, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundMultiSelectCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectCardGroupField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnLayout, calcColumnSizes, cardBadgeSlot, cardCarouselSlot, cardDataBlockSlot, cardEyebrowSlot, cardInteractiveFooterSlot, cardLeftEyebrowSlot, cardProgressSlot, cardRightEyebrowSlot, cardStatusSlot, cardStyle, cardTitleSlot, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, contrastDataTheme, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultDocumentScrollRightPaneWidth, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, documentScrollBodyMinHeight, documentScrollChromeLeft, documentScrollChromeWidth, documentScrollContentLeft, documentScrollContentWidth, documentScrollRightPaneHeight, documentScrollRightPaneWidthCss, dragHandleColumn, emptyCell, ensureClientSideSortValueIsSortable, environmentBannerSizePx, filterTestIdPrefix, formatDate, formatDateRange, formatPlainDate, formatValue, generateColumnId, getActiveFilterCount, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getFloatingBottomOffset, getFloatingRightOffset, getJustification, getNavLinkStyles, getTableRefWidthStyles, getTableStyles, headerContentPaddingX, headerRenderFn, hoverStyles, increment, insertAtIndex, isContentColumn, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, joinDocumentTitleSegments, layoutGutterLeftColumnId, layoutGutterRightColumnId, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeCssVar, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, pageContentGutterPx, pageContentPaddingX, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pinColumn, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resetRightPaneStore, resolveGridTableLayoutStyle, resolveTableContentWidth, resolveTooltip, resolveWithRightPaneOptions, rightPaneContentStore, rightPaneOpenActions, rightPaneOpenStore, rowClickRenderFn, rowLinkRenderFn, selectColumn, setDefaultStyle, setEnvironmentFavicon, setGridTableDefaults, setRunningInJest, shouldShowEnvironmentBanner, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, stickyNavAndHeaderOffset, stickyNavAndHeaderOffsetPx, stickyTableHeaderOffset, sumColumnSizesPx, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBodyBackgroundColor, useBreakpoint, useComputed, useContentOverflow, useContrastScope, useDnDGridItem, type useDnDGridItemProps, useDocumentTitle, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHasSideNavLayoutProvider, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneActions, useRightPaneContent, useRightPaneOpenActions, useRightPaneOpenState, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSideNavLayoutContext, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, withColumnGutters, zIndices };
|
|
11027
|
+
export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, AiBanner, type AiBannerProps, AiCard, type AiCardProps, type AiCardSize, AiLinkCardGroup, type AiLinkCardGroupProps, AiLoader, type AiLoaderProps, AiLoadingPanel, type AiLoadingPanelProps, AiPanel, type AiPanelPadding, type AiPanelProps, AiSlimBanner, type AiSlimBannerProps, type AppEnvironment, type AppNavGroup, type AppNavItem, type AppNavLink, type AppNavSection, type AppNavSectionItem, AutoSaveIndicator, AutoSaveStatus, AutoSaveStatusContext, AutoSaveStatusProvider, Autocomplete, type AutocompleteProps, Avatar, AvatarButton, type AvatarButtonProps, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, Banner, type BannerProps, type BannerTypes, BaseCard, type BaseCardProps, BaseFilter, type BaseQueryTableProps, type BaseTableProps, type BeamButtonProps, type BeamColor, type BeamFocusableProps, BeamLogo, BeamProvider, type BeamTextFieldProps, BlueprintAiLogo, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectCardGroupField, type BoundMultiSelectCardGroupFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectCardGroupField, type BoundSelectCardGroupFieldProps, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breadcrumb, Breadcrumbs, type BreadcrumbsProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, type ButtonColorScheme, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardBadgeSlot, type CardBadgeTag, CardBody, type CardBodyProps, type CardCarouselFooter, type CardCarouselThumbnail, type CardData, type CardDataBlockSlot, type CardEyebrowSlot, type CardInteractiveFooter, type CardInteractiveFooterSlot, type CardLeftEyebrowSlot, type CardProgressSlot, type CardProps, type CardRightEyebrowSlot, type CardSlot, type CardStatusSlot, type CardTag, type CardTitleSlot, type CardType, Carousel, type CarouselProps, CenteredLayout, type CenteredLayoutProps, type CenteredLayoutSize, type CheckFn, Checkbox, CheckboxGroup, type CheckboxGroupItemOption, type CheckboxGroupProps, type CheckboxProps, Chip, type ChipProps, ChipSelectField, type ChipSelectFieldProps, type ChipType, ChipTypes, type ChipValue, Chips, type ChipsProps, CollapseToggle, CollapsedContext, type ColumnLayoutResult, type CompanionConfig, type CompanionContent, type CompanionPosition, ConfirmCloseModal, ContentHeader, type ContentHeaderLevel, type ContentHeaderProps, type ContentStack, ContrastScope, Copy, CountBadge, type CountBadgeProps, Css, CssReset, type CssSetVarKeys, type CssSetVarScalar, type CssSetVarValue, DESC, DateField, type DateFieldFormat, type DateFieldMode, type DateFieldProps, type DateFilterValue, type DateMatcher, type DateRange, DateRangeField, type DateRangeFieldProps, type DateRangeFilterValue, type DefinedFilterValue, type Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, DocumentScrollOverlayRightPaneLayout, type DocumentScrollOverlayRightPaneLayoutProps, type DocumentTitleConfig, DocumentTitleProvider, type DragData, EXPANDABLE_HEADER, EditColumnsButton, EnvironmentBanner, EnvironmentBannerLayout, type EnvironmentBannerLayoutProps, type EnvironmentBannerProps, type EnvironmentFaviconUrls, ErrorMessage, FieldGroup, type Filter, type FilterDefs, type FilterImpls, FilterModal, _Filters as Filters, type FixedSort, FocusedFormLayout, type FocusedFormLayoutProps, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, FormSection, type FormSectionAction, type FormSectionConfig, FormSectionLayout, type FormSectionLayoutProps, type FormSectionLayoutSection, type FormSectionProps, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowCompanion, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableEmptyState, type GridTableEmptyStateProps, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, type HeaderAction, HelperText, HomeboundLogo, Icon, IconButton, type IconButtonProps, type IconButtonVariant, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type ImpersonatedUser, type InfiniteScroll, InlineFeedbackBanner, type InlineFeedbackBannerAction, type InlineFeedbackBannerProps, type InlineFeedbackBannerType, type InlineStyle, type InputStylePalette, JumpLink, type JumpLinkProps, KEPT_GROUP, Keyframes, type Kinded, LinkCard, type LinkCardProps, Loader, LoadingSkeleton, type LoadingSkeletonProps, type LogoSizeProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBanner, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectCardGroup, type MultiSelectCardGroupProps, MultiSelectField, type MultiSelectFieldProps, NavLink, type NavLinkProps, type NavLinkVariant, Navbar, NavbarLayout, type NavbarLayoutProps, type NavbarProps, type NavbarUser, type NestedOption, type NestedOptionsOrLoad, NumberField, type NumberFieldProps, type NumberFieldType, type OffsetAndLimit, type OnRowDragEvent, type OnRowSelect, type Only, type OpenDetailOpts, type OpenInDrawerOpts, OpenModal, type OpenRightPaneOpts, type Optional, type Padding, PageHeaderLayout, type PageHeaderLayoutProps, type PageNumberAndSize, type PageSettings, Pagination, Palette, PinToggle, type Placement, type PlainDate, type PlainFormSectionChild, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, ProposedValue$1 as ProposedValue, type ProposedValueProps, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, type ReorderableFormSectionChild, type ResolvedWithRightPane, ResponsiveGrid, type ResponsiveGridConfig, ResponsiveGridContext, ResponsiveGridItem, type ResponsiveGridItemProps, type ResponsiveGridProps, RichTextField, RichTextFieldImpl, type RichTextFieldProps, RightPaneLayout, type RightPaneOpenActions, type RightPaneOpenState, RightPanePanel, type RightPanePanelProps, RightSidebar, type RightSidebarProps, type RouteTab, type RouteTabWithContent, Row, type RowStyle, type RowStyles, RuntimeCss, type RuntimeStyles, SIDE_NAV_LAYOUT_STATE_STORAGE_KEY, ScrollShadows, ScrollableContent, ScrollableFooter, ScrollableParent, type SelectCardGridGroupItemOption, SelectCardGroup, type SelectCardGroupItemOption, type SelectCardGroupProps, type SelectCardLayout, type SelectCardListGroupItemOption, type SelectCardView, SelectField, type SelectFieldProps, SelectToggle, type SelectedFilterLabelValue, SelectedOptionPill, SelectedOptionPillList, type SelectedOptionPillListProps, type SelectedOptionPillProps, type SelectedState, SideNav, SideNavLayout, type SideNavLayoutContextProps, type SideNavLayoutProps, SideNavLayoutProvider, type SideNavLayoutState, type SideNavProps, type SidePanelProps, type SidebarContentProps, type SimpleHeaderAndData, SortHeader, type SortOn, type SortState, StaticField, type Step, Stepper, StepperLayout, type StepperLayoutProps, type StepperLayoutStep, type StepperProps, StepperTab, type StepperTabProps, StepperTabs, type StepperTabsProps, type StepperTabsStep, type StyleKind, SubmitButton, type SubmitButtonProps, SuperDrawerContent, SuperDrawerHeader, SuperDrawerWidth, type SupportedDateFormat, Switch, type SwitchProps, TOTALS, type Tab, TabContent, type TabWithContent, TableReviewLayout, type TableReviewLayoutProps, TableState, TableStateContext, type TableView, Tabs, TabsWithContent, Tag, TagGroup, type TagGroupItem, type TagGroupProps, type TagProps, type TagType, type TagVariant, type TagXss, type TestIds, TextAreaField, type TextAreaFieldProps, TextField, type TextFieldApi, type TextFieldInternalProps, type TextFieldProps, type TextFieldXss, Toast, ToggleButton, type ToggleButtonProps, ToggleChip, ToggleChipGroup, type ToggleChipGroupProps, type ToggleChipProps, ToggleChips, type ToggleChipsProps, Tokens, Tooltip, TreeSelectField, type TreeSelectFieldProps, type TriggerNoticeProps, type Typography, type UseModalHook, type UsePersistedFilterProps$1 as UsePersistedFilterProps, type UseQueryState, type UseRightPaneActionsHook, type UseRightPaneHook, type UseSnackbarHook, type UseSuperDrawerHook, type UseToastProps, type Value, ViewToggleButton, type WithRightPane, type Xss, type ZIndex, actionColumn, applyRowFn, assignDefaultColumnIds, bannerAndNavbarChromeTop, beamEnvironmentBannerLayoutHeightVar, beamFloatingRightOffsetVar, beamLayoutContentPaddingXVar, beamLayoutViewportHeightVar, beamLayoutViewportWidthVar, beamNavbarLayoutHeightVar, beamPageHeaderLayoutHeightVar, beamRightPaneContentMinVar, beamRightPaneWidthVar, beamSideNavLayoutWidthVar, beamTableActionsHeightVar, beamWorkflowLayoutFooterHeightVar, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundMultiSelectCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectCardGroupField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnLayout, calcColumnSizes, cardBadgeSlot, cardCarouselSlot, cardDataBlockSlot, cardEyebrowSlot, cardInteractiveFooterSlot, cardLeftEyebrowSlot, cardProgressSlot, cardRightEyebrowSlot, cardStatusSlot, cardStyle, cardTitleSlot, centeredShellMaxPx, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, contrastDataTheme, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultDocumentScrollRightPaneWidth, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, documentScrollBodyMinHeight, documentScrollChromeLeft, documentScrollChromeWidth, documentScrollContentLeft, documentScrollContentWidth, documentScrollRightPaneContentMinCss, documentScrollRightPaneHeight, documentScrollRightPaneWidthCss, dragHandleColumn, emptyCell, ensureClientSideSortValueIsSortable, environmentBannerSizePx, filterTestIdPrefix, formatDate, formatDateRange, formatPlainDate, formatValue, generateColumnId, getActiveFilterCount, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getFloatingBottomOffset, getFloatingRightOffset, getJustification, getNavLinkStyles, getTableRefWidthStyles, getTableStyles, headerContentPaddingX, headerRenderFn, hoverStyles, increment, insertAtIndex, isContentColumn, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, joinDocumentTitleSegments, layoutGutterLeftColumnId, layoutGutterRightColumnId, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeCssVar, maybeInc, maybeTooltip, minDocumentScrollContentWidthPx, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, pageContentGutterPx, pageContentPaddingX, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pinColumn, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resetRightPaneStore, resolveGridTableLayoutStyle, resolveTableContentWidth, resolveTooltip, resolveWithRightPaneOptions, rightPaneContentStore, rightPaneOpenActions, rightPaneOpenStore, rowClickRenderFn, rowLinkRenderFn, selectColumn, setDefaultStyle, setEnvironmentFavicon, setGridTableDefaults, setRunningInJest, shouldShowEnvironmentBanner, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, stickyNavAndHeaderOffset, stickyNavAndHeaderOffsetPx, stickyTableHeaderOffset, sumColumnSizesPx, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBodyBackgroundColor, useBreakpoint, useComputed, useContentOverflow, useContrastScope, useDnDGridItem, type useDnDGridItemProps, useDocumentTitle, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHasSideNavLayoutProvider, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneActions, useRightPaneContent, useRightPaneOpenActions, useRightPaneOpenState, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSideNavLayoutContext, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, withColumnGutters, zIndices };
|
package/dist/index.d.ts
CHANGED
|
@@ -7793,23 +7793,28 @@ declare const filterTestIdPrefix = "filter";
|
|
|
7793
7793
|
* Labels are `string` so actions can collapse into a `ButtonMenu` on mobile.
|
|
7794
7794
|
* Icon actions always render with the `outline` `IconButton` variant, so `variant` is omitted here.
|
|
7795
7795
|
*/
|
|
7796
|
+
type HeaderActionKeepVisible = {
|
|
7797
|
+
/** At `sm`, render this action below the title instead of collapsing it into the overflow menu. */
|
|
7798
|
+
keepVisible?: boolean;
|
|
7799
|
+
};
|
|
7796
7800
|
type HeaderAction = ({
|
|
7797
7801
|
kind?: "default";
|
|
7798
|
-
} & Omit<ButtonProps, "label"> & {
|
|
7802
|
+
} & HeaderActionKeepVisible & Omit<ButtonProps, "label"> & {
|
|
7799
7803
|
label: string;
|
|
7800
7804
|
}) | ({
|
|
7801
7805
|
kind: "icon";
|
|
7802
|
-
} & Omit<IconButtonProps, "variant" | "label"> & {
|
|
7806
|
+
} & HeaderActionKeepVisible & Omit<IconButtonProps, "variant" | "label"> & {
|
|
7803
7807
|
label: string;
|
|
7804
7808
|
}) | ({
|
|
7805
7809
|
kind: "menu";
|
|
7806
|
-
} & ButtonMenuProps);
|
|
7810
|
+
} & HeaderActionKeepVisible & ButtonMenuProps);
|
|
7807
7811
|
|
|
7808
7812
|
type ContentHeaderXss = Xss<Padding>;
|
|
7809
7813
|
type ContentHeaderLevel = 2 | 3 | 4;
|
|
7810
7814
|
type ContentHeaderProps<X = ContentHeaderXss> = {
|
|
7811
7815
|
title?: string;
|
|
7812
7816
|
description?: ReactNode;
|
|
7817
|
+
/** Right slot on desktop; `keepVisible` actions move to the bottom slot at `sm`. */
|
|
7813
7818
|
actions?: HeaderAction[];
|
|
7814
7819
|
/** When true, prepends `AutoSaveIndicator` in the actions area. */
|
|
7815
7820
|
withAutoSave?: boolean;
|
|
@@ -8869,28 +8874,25 @@ type PersistedFilterHook<F> = {
|
|
|
8869
8874
|
*/
|
|
8870
8875
|
declare function usePersistedFilter<F>({ storageKey, filterDefs }: UsePersistedFilterProps$1<F>): PersistedFilterHook<F>;
|
|
8871
8876
|
|
|
8872
|
-
/** Desktop right-pane strategy. See `docs/layouts.md` for overlay / push / auto outcomes. */
|
|
8873
|
-
type DocumentScrollRightPaneMode = "auto" | "overlay" | "push";
|
|
8874
|
-
/** Desktop strategies for the upcoming inline (push/clear) pane only. */
|
|
8875
|
-
type DocumentScrollInlineRightPaneMode = "auto" | "push";
|
|
8876
8877
|
/** Default document-scroll detail pane width (px). */
|
|
8877
8878
|
declare const defaultDocumentScrollRightPaneWidth = 450;
|
|
8878
8879
|
/**
|
|
8879
|
-
*
|
|
8880
|
-
*
|
|
8880
|
+
* Minimum content-column width (px) on `md+` while the pane is open — form shell or table body.
|
|
8881
|
+
* Published as `--beam-right-pane-content-min` (not overlay `main`) so JumpLinks sit outside the floor.
|
|
8882
|
+
*/
|
|
8883
|
+
declare const minDocumentScrollContentWidthPx = 480;
|
|
8884
|
+
/**
|
|
8885
|
+
* Opt into a document-scroll right pane. `true` uses the default width; a number or
|
|
8886
|
+
* `{ width? }` sets the pane width in px (`width` omitted → default).
|
|
8881
8887
|
*/
|
|
8882
8888
|
type WithRightPane = boolean | number | {
|
|
8883
8889
|
width?: number;
|
|
8884
|
-
mode?: DocumentScrollRightPaneMode;
|
|
8885
8890
|
};
|
|
8886
8891
|
type ResolvedWithRightPane = {
|
|
8887
8892
|
width: number;
|
|
8888
|
-
mode: DocumentScrollRightPaneMode;
|
|
8889
8893
|
};
|
|
8890
|
-
/**
|
|
8891
|
-
|
|
8892
|
-
/** Normalize `withRightPane` into width + mode, or `undefined` when opted out. */
|
|
8893
|
-
declare function resolveWithRightPaneOptions(withRightPane: WithRightPane | undefined, defaultMode: DocumentScrollRightPaneMode): ResolvedWithRightPane | undefined;
|
|
8894
|
+
/** Normalize `withRightPane` into a pane width, or `undefined` when opted out. */
|
|
8895
|
+
declare function resolveWithRightPaneOptions(withRightPane: WithRightPane | undefined): ResolvedWithRightPane | undefined;
|
|
8894
8896
|
|
|
8895
8897
|
type QueryTablePropsWithQuery<R extends Kinded, X extends Only<GridTableXss, X>, QData> = BaseQueryTableProps<R, X, QData> & {
|
|
8896
8898
|
emptyFallback?: string;
|
|
@@ -8909,7 +8911,7 @@ type GridTableLayoutProps<F extends Record<string, unknown>, R extends Kinded, X
|
|
|
8909
8911
|
withCardView?: boolean;
|
|
8910
8912
|
defaultView?: TableView;
|
|
8911
8913
|
/**
|
|
8912
|
-
* Opt into the document-scroll detail pane (`useRightPane`).
|
|
8914
|
+
* Opt into the document-scroll detail pane (`useRightPane`).
|
|
8913
8915
|
* Only applies inside a document-scroll layout; hosts the pane around the table body only.
|
|
8914
8916
|
*/
|
|
8915
8917
|
withRightPane?: WithRightPane;
|
|
@@ -8989,6 +8991,15 @@ declare function RightPaneLayout(props: {
|
|
|
8989
8991
|
defaultPaneContent?: ReactElement;
|
|
8990
8992
|
}): React$1.JSX.Element;
|
|
8991
8993
|
|
|
8994
|
+
type RightPanePanelProps = {
|
|
8995
|
+
title: string;
|
|
8996
|
+
children: ReactNode;
|
|
8997
|
+
/** When false, omit the built-in close control (caller provides their own). Default true. */
|
|
8998
|
+
withClose?: boolean;
|
|
8999
|
+
};
|
|
9000
|
+
/** Pane body chrome: title row, close control, and scrollable children. See `docs/layouts.md`. */
|
|
9001
|
+
declare function RightPanePanel(props: RightPanePanelProps): React$1.JSX.Element;
|
|
9002
|
+
|
|
8992
9003
|
/** Body passed to `openRightPane`. */
|
|
8993
9004
|
type OpenRightPaneOpts = {
|
|
8994
9005
|
content: ReactNode;
|
|
@@ -10370,9 +10381,19 @@ type CenteredLayoutProps = {
|
|
|
10370
10381
|
/** `sm` = 720px content (768px shell max); `lg` = 1392px content (1440px shell max). Horizontal padding 12px / 24px from `md`. */
|
|
10371
10382
|
size: CenteredLayoutSize;
|
|
10372
10383
|
children?: ReactNode;
|
|
10384
|
+
/**
|
|
10385
|
+
* Opt into the document-scroll detail pane (`useRightPane`).
|
|
10386
|
+
* Do not also nest another document-scroll right-pane layout (e.g. `FormSectionLayout withRightPane`).
|
|
10387
|
+
*/
|
|
10388
|
+
withRightPane?: WithRightPane;
|
|
10373
10389
|
};
|
|
10374
10390
|
/** Centered body-width shell. Nest inside page-header / stepper layout children — see `docs/layouts.md`. */
|
|
10375
10391
|
declare function CenteredLayout(props: CenteredLayoutProps): React$1.JSX.Element;
|
|
10392
|
+
/** Shell max-width (content + horizontal padding at md+): 768 / 1440. */
|
|
10393
|
+
declare const centeredShellMaxPx: {
|
|
10394
|
+
readonly sm: number;
|
|
10395
|
+
readonly lg: number;
|
|
10396
|
+
};
|
|
10376
10397
|
|
|
10377
10398
|
type EnvironmentBannerLayoutProps = {
|
|
10378
10399
|
/** When provided and {@link shouldShowEnvironmentBanner} is true, renders {@link EnvironmentBanner} and publishes height. */
|
|
@@ -10430,6 +10451,11 @@ type FormSectionLayoutProps = {
|
|
|
10430
10451
|
* Default false — opt in for FocusedForm / Stepper form steps that want the rail.
|
|
10431
10452
|
*/
|
|
10432
10453
|
withJumpLinks?: boolean;
|
|
10454
|
+
/**
|
|
10455
|
+
* Opt into the document-scroll detail pane (`useRightPane`).
|
|
10456
|
+
* Hosts JumpLinks + form — do not also set `withRightPane` on the inner `CenteredLayout`.
|
|
10457
|
+
*/
|
|
10458
|
+
withRightPane?: WithRightPane;
|
|
10433
10459
|
};
|
|
10434
10460
|
/**
|
|
10435
10461
|
* Form of `FormSection`s in a `sm` {@link CenteredLayout} — e.g. a `StepperLayout` step's `content`
|
|
@@ -10482,12 +10508,19 @@ declare const beamLayoutContentPaddingXVar = "--beam-layout-content-padding-x";
|
|
|
10482
10508
|
/** Table actions toolbar height (px) while pinned in document-scroll layouts. */
|
|
10483
10509
|
declare const beamTableActionsHeightVar = "--beam-table-actions-height";
|
|
10484
10510
|
/**
|
|
10485
|
-
* Open
|
|
10511
|
+
* Open overlay pane width; `0px` when closed. Published on
|
|
10486
10512
|
* `DocumentScrollOverlayRightPaneLayout` so sticky right columns (descendants) inherit it.
|
|
10487
10513
|
* Not subtracted from `documentScrollChromeWidth` — the pane pins below page header /
|
|
10488
10514
|
* table actions.
|
|
10489
10515
|
*/
|
|
10490
10516
|
declare const beamRightPaneWidthVar = "--beam-right-pane-width";
|
|
10517
|
+
/**
|
|
10518
|
+
* Content-column min-width while the overlay pane is open; `0px` when closed.
|
|
10519
|
+
* Read on the form shell / table body (not overlay `main`) so JumpLinks sit outside the floor.
|
|
10520
|
+
*/
|
|
10521
|
+
declare const beamRightPaneContentMinVar = "--beam-right-pane-content-min";
|
|
10522
|
+
/** CSS `min-width` for the form shell or table body; `0px` when the pane is closed. */
|
|
10523
|
+
declare function documentScrollRightPaneContentMinCss(): string;
|
|
10491
10524
|
/**
|
|
10492
10525
|
* Extra `right` inset for floating page chrome when the document-scroll right pane is open.
|
|
10493
10526
|
* Published on `document.documentElement` so siblings outside the pane layout (e.g.
|
|
@@ -10557,7 +10590,7 @@ type BaseHeaderProps = {
|
|
|
10557
10590
|
};
|
|
10558
10591
|
|
|
10559
10592
|
type PageHeaderProps<V extends string, X> = Omit<BaseHeaderProps, "bottomSlot"> & {
|
|
10560
|
-
/**
|
|
10593
|
+
/** Buttons on desktop; two or more collapse into a overflow menu at `sm`. `keepVisible` actions stay in the bottom slot on mobile. */
|
|
10561
10594
|
actions?: HeaderAction[];
|
|
10562
10595
|
tabs?: Omit<TabsProps<V, X>, "contentXss" | "omitFullBleedPadding" | "includeBottomBorder"> | Omit<RouteTabsProps<V, X>, "contentXss" | "omitFullBleedPadding" | "includeBottomBorder">;
|
|
10563
10596
|
};
|
|
@@ -10578,13 +10611,13 @@ type FocusedFormLayoutProps = Pick<BaseHeaderProps, "title" | "documentTitleSuff
|
|
|
10578
10611
|
isDirty?: () => boolean;
|
|
10579
10612
|
/** Full-bleed AI wash on the body and the `ai` Create/Save variant. Pair with body `aiMode` (e.g. FormSectionLayout). */
|
|
10580
10613
|
aiMode?: boolean;
|
|
10581
|
-
/** Page body — typically {@link FormSectionLayout} (optionally with `withJumpLinks`). */
|
|
10614
|
+
/** Page body — typically {@link FormSectionLayout} (optionally with `withJumpLinks` / `withRightPane`). */
|
|
10582
10615
|
children: ReactNode;
|
|
10583
10616
|
};
|
|
10584
10617
|
/**
|
|
10585
10618
|
* Standalone workflow page without steps: workflow header + body.
|
|
10586
|
-
* Nest under `EnvironmentBannerLayout` only. JumpLinks live on the body
|
|
10587
|
-
* Contract: `docs/layouts.md`.
|
|
10619
|
+
* Nest under `EnvironmentBannerLayout` only. JumpLinks and the right pane live on the body
|
|
10620
|
+
* (e.g. `FormSectionLayout withJumpLinks withRightPane`). Contract: `docs/layouts.md`.
|
|
10588
10621
|
*/
|
|
10589
10622
|
declare function FocusedFormLayout(props: FocusedFormLayoutProps): React$1.JSX.Element;
|
|
10590
10623
|
|
|
@@ -10991,4 +11024,4 @@ declare const zIndices: {
|
|
|
10991
11024
|
};
|
|
10992
11025
|
type ZIndex = (typeof zIndices)[keyof typeof zIndices];
|
|
10993
11026
|
|
|
10994
|
-
export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, AiBanner, type AiBannerProps, AiCard, type AiCardProps, type AiCardSize, AiLinkCardGroup, type AiLinkCardGroupProps, AiLoader, type AiLoaderProps, AiLoadingPanel, type AiLoadingPanelProps, AiPanel, type AiPanelPadding, type AiPanelProps, AiSlimBanner, type AiSlimBannerProps, type AppEnvironment, type AppNavGroup, type AppNavItem, type AppNavLink, type AppNavSection, type AppNavSectionItem, AutoSaveIndicator, AutoSaveStatus, AutoSaveStatusContext, AutoSaveStatusProvider, Autocomplete, type AutocompleteProps, Avatar, AvatarButton, type AvatarButtonProps, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, Banner, type BannerProps, type BannerTypes, BaseCard, type BaseCardProps, BaseFilter, type BaseQueryTableProps, type BaseTableProps, type BeamButtonProps, type BeamColor, type BeamFocusableProps, BeamLogo, BeamProvider, type BeamTextFieldProps, BlueprintAiLogo, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectCardGroupField, type BoundMultiSelectCardGroupFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectCardGroupField, type BoundSelectCardGroupFieldProps, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breadcrumb, Breadcrumbs, type BreadcrumbsProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, type ButtonColorScheme, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardBadgeSlot, type CardBadgeTag, CardBody, type CardBodyProps, type CardCarouselFooter, type CardCarouselThumbnail, type CardData, type CardDataBlockSlot, type CardEyebrowSlot, type CardInteractiveFooter, type CardInteractiveFooterSlot, type CardLeftEyebrowSlot, type CardProgressSlot, type CardProps, type CardRightEyebrowSlot, type CardSlot, type CardStatusSlot, type CardTag, type CardTitleSlot, type CardType, Carousel, type CarouselProps, CenteredLayout, type CenteredLayoutProps, type CenteredLayoutSize, type CheckFn, Checkbox, CheckboxGroup, type CheckboxGroupItemOption, type CheckboxGroupProps, type CheckboxProps, Chip, type ChipProps, ChipSelectField, type ChipSelectFieldProps, type ChipType, ChipTypes, type ChipValue, Chips, type ChipsProps, CollapseToggle, CollapsedContext, type ColumnLayoutResult, type CompanionConfig, type CompanionContent, type CompanionPosition, ConfirmCloseModal, ContentHeader, type ContentHeaderLevel, type ContentHeaderProps, type ContentStack, ContrastScope, Copy, CountBadge, type CountBadgeProps, Css, CssReset, type CssSetVarKeys, type CssSetVarScalar, type CssSetVarValue, DESC, DateField, type DateFieldFormat, type DateFieldMode, type DateFieldProps, type DateFilterValue, type DateMatcher, type DateRange, DateRangeField, type DateRangeFieldProps, type DateRangeFilterValue, type DefinedFilterValue, type Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, type DocumentScrollInlineRightPaneMode, DocumentScrollOverlayRightPaneLayout, type DocumentScrollOverlayRightPaneLayoutProps, type DocumentScrollRightPaneMode, type DocumentTitleConfig, DocumentTitleProvider, type DragData, EXPANDABLE_HEADER, EditColumnsButton, EnvironmentBanner, EnvironmentBannerLayout, type EnvironmentBannerLayoutProps, type EnvironmentBannerProps, type EnvironmentFaviconUrls, ErrorMessage, FieldGroup, type Filter, type FilterDefs, type FilterImpls, FilterModal, _Filters as Filters, type FixedSort, FocusedFormLayout, type FocusedFormLayoutProps, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, FormSection, type FormSectionAction, type FormSectionConfig, FormSectionLayout, type FormSectionLayoutProps, type FormSectionLayoutSection, type FormSectionProps, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowCompanion, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableEmptyState, type GridTableEmptyStateProps, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, type HeaderAction, HelperText, HomeboundLogo, Icon, IconButton, type IconButtonProps, type IconButtonVariant, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type ImpersonatedUser, type InfiniteScroll, InlineFeedbackBanner, type InlineFeedbackBannerAction, type InlineFeedbackBannerProps, type InlineFeedbackBannerType, type InlineStyle, type InputStylePalette, JumpLink, type JumpLinkProps, KEPT_GROUP, Keyframes, type Kinded, LinkCard, type LinkCardProps, Loader, LoadingSkeleton, type LoadingSkeletonProps, type LogoSizeProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBanner, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectCardGroup, type MultiSelectCardGroupProps, MultiSelectField, type MultiSelectFieldProps, NavLink, type NavLinkProps, type NavLinkVariant, Navbar, NavbarLayout, type NavbarLayoutProps, type NavbarProps, type NavbarUser, type NestedOption, type NestedOptionsOrLoad, NumberField, type NumberFieldProps, type NumberFieldType, type OffsetAndLimit, type OnRowDragEvent, type OnRowSelect, type Only, type OpenDetailOpts, type OpenInDrawerOpts, OpenModal, type OpenRightPaneOpts, type Optional, type Padding, PageHeaderLayout, type PageHeaderLayoutProps, type PageNumberAndSize, type PageSettings, Pagination, Palette, PinToggle, type Placement, type PlainDate, type PlainFormSectionChild, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, ProposedValue$1 as ProposedValue, type ProposedValueProps, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, type ReorderableFormSectionChild, type ResolvedDocumentScrollRightPaneBehavior, type ResolvedWithRightPane, ResponsiveGrid, type ResponsiveGridConfig, ResponsiveGridContext, ResponsiveGridItem, type ResponsiveGridItemProps, type ResponsiveGridProps, RichTextField, RichTextFieldImpl, type RichTextFieldProps, RightPaneLayout, type RightPaneOpenActions, type RightPaneOpenState, RightSidebar, type RightSidebarProps, type RouteTab, type RouteTabWithContent, Row, type RowStyle, type RowStyles, RuntimeCss, type RuntimeStyles, SIDE_NAV_LAYOUT_STATE_STORAGE_KEY, ScrollShadows, ScrollableContent, ScrollableFooter, ScrollableParent, type SelectCardGridGroupItemOption, SelectCardGroup, type SelectCardGroupItemOption, type SelectCardGroupProps, type SelectCardLayout, type SelectCardListGroupItemOption, type SelectCardView, SelectField, type SelectFieldProps, SelectToggle, type SelectedFilterLabelValue, SelectedOptionPill, SelectedOptionPillList, type SelectedOptionPillListProps, type SelectedOptionPillProps, type SelectedState, SideNav, SideNavLayout, type SideNavLayoutContextProps, type SideNavLayoutProps, SideNavLayoutProvider, type SideNavLayoutState, type SideNavProps, type SidePanelProps, type SidebarContentProps, type SimpleHeaderAndData, SortHeader, type SortOn, type SortState, StaticField, type Step, Stepper, StepperLayout, type StepperLayoutProps, type StepperLayoutStep, type StepperProps, StepperTab, type StepperTabProps, StepperTabs, type StepperTabsProps, type StepperTabsStep, type StyleKind, SubmitButton, type SubmitButtonProps, SuperDrawerContent, SuperDrawerHeader, SuperDrawerWidth, type SupportedDateFormat, Switch, type SwitchProps, TOTALS, type Tab, TabContent, type TabWithContent, TableReviewLayout, type TableReviewLayoutProps, TableState, TableStateContext, type TableView, Tabs, TabsWithContent, Tag, TagGroup, type TagGroupItem, type TagGroupProps, type TagProps, type TagType, type TagVariant, type TagXss, type TestIds, TextAreaField, type TextAreaFieldProps, TextField, type TextFieldApi, type TextFieldInternalProps, type TextFieldProps, type TextFieldXss, Toast, ToggleButton, type ToggleButtonProps, ToggleChip, ToggleChipGroup, type ToggleChipGroupProps, type ToggleChipProps, ToggleChips, type ToggleChipsProps, Tokens, Tooltip, TreeSelectField, type TreeSelectFieldProps, type TriggerNoticeProps, type Typography, type UseModalHook, type UsePersistedFilterProps$1 as UsePersistedFilterProps, type UseQueryState, type UseRightPaneActionsHook, type UseRightPaneHook, type UseSnackbarHook, type UseSuperDrawerHook, type UseToastProps, type Value, ViewToggleButton, type WithRightPane, type Xss, type ZIndex, actionColumn, applyRowFn, assignDefaultColumnIds, bannerAndNavbarChromeTop, beamEnvironmentBannerLayoutHeightVar, beamFloatingRightOffsetVar, beamLayoutContentPaddingXVar, beamLayoutViewportHeightVar, beamLayoutViewportWidthVar, beamNavbarLayoutHeightVar, beamPageHeaderLayoutHeightVar, beamRightPaneWidthVar, beamSideNavLayoutWidthVar, beamTableActionsHeightVar, beamWorkflowLayoutFooterHeightVar, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundMultiSelectCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectCardGroupField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnLayout, calcColumnSizes, cardBadgeSlot, cardCarouselSlot, cardDataBlockSlot, cardEyebrowSlot, cardInteractiveFooterSlot, cardLeftEyebrowSlot, cardProgressSlot, cardRightEyebrowSlot, cardStatusSlot, cardStyle, cardTitleSlot, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, contrastDataTheme, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultDocumentScrollRightPaneWidth, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, documentScrollBodyMinHeight, documentScrollChromeLeft, documentScrollChromeWidth, documentScrollContentLeft, documentScrollContentWidth, documentScrollRightPaneHeight, documentScrollRightPaneWidthCss, dragHandleColumn, emptyCell, ensureClientSideSortValueIsSortable, environmentBannerSizePx, filterTestIdPrefix, formatDate, formatDateRange, formatPlainDate, formatValue, generateColumnId, getActiveFilterCount, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getFloatingBottomOffset, getFloatingRightOffset, getJustification, getNavLinkStyles, getTableRefWidthStyles, getTableStyles, headerContentPaddingX, headerRenderFn, hoverStyles, increment, insertAtIndex, isContentColumn, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, joinDocumentTitleSegments, layoutGutterLeftColumnId, layoutGutterRightColumnId, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeCssVar, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, pageContentGutterPx, pageContentPaddingX, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pinColumn, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resetRightPaneStore, resolveGridTableLayoutStyle, resolveTableContentWidth, resolveTooltip, resolveWithRightPaneOptions, rightPaneContentStore, rightPaneOpenActions, rightPaneOpenStore, rowClickRenderFn, rowLinkRenderFn, selectColumn, setDefaultStyle, setEnvironmentFavicon, setGridTableDefaults, setRunningInJest, shouldShowEnvironmentBanner, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, stickyNavAndHeaderOffset, stickyNavAndHeaderOffsetPx, stickyTableHeaderOffset, sumColumnSizesPx, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBodyBackgroundColor, useBreakpoint, useComputed, useContentOverflow, useContrastScope, useDnDGridItem, type useDnDGridItemProps, useDocumentTitle, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHasSideNavLayoutProvider, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneActions, useRightPaneContent, useRightPaneOpenActions, useRightPaneOpenState, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSideNavLayoutContext, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, withColumnGutters, zIndices };
|
|
11027
|
+
export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, AiBanner, type AiBannerProps, AiCard, type AiCardProps, type AiCardSize, AiLinkCardGroup, type AiLinkCardGroupProps, AiLoader, type AiLoaderProps, AiLoadingPanel, type AiLoadingPanelProps, AiPanel, type AiPanelPadding, type AiPanelProps, AiSlimBanner, type AiSlimBannerProps, type AppEnvironment, type AppNavGroup, type AppNavItem, type AppNavLink, type AppNavSection, type AppNavSectionItem, AutoSaveIndicator, AutoSaveStatus, AutoSaveStatusContext, AutoSaveStatusProvider, Autocomplete, type AutocompleteProps, Avatar, AvatarButton, type AvatarButtonProps, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, Banner, type BannerProps, type BannerTypes, BaseCard, type BaseCardProps, BaseFilter, type BaseQueryTableProps, type BaseTableProps, type BeamButtonProps, type BeamColor, type BeamFocusableProps, BeamLogo, BeamProvider, type BeamTextFieldProps, BlueprintAiLogo, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectCardGroupField, type BoundMultiSelectCardGroupFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectCardGroupField, type BoundSelectCardGroupFieldProps, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breadcrumb, Breadcrumbs, type BreadcrumbsProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, type ButtonColorScheme, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardBadgeSlot, type CardBadgeTag, CardBody, type CardBodyProps, type CardCarouselFooter, type CardCarouselThumbnail, type CardData, type CardDataBlockSlot, type CardEyebrowSlot, type CardInteractiveFooter, type CardInteractiveFooterSlot, type CardLeftEyebrowSlot, type CardProgressSlot, type CardProps, type CardRightEyebrowSlot, type CardSlot, type CardStatusSlot, type CardTag, type CardTitleSlot, type CardType, Carousel, type CarouselProps, CenteredLayout, type CenteredLayoutProps, type CenteredLayoutSize, type CheckFn, Checkbox, CheckboxGroup, type CheckboxGroupItemOption, type CheckboxGroupProps, type CheckboxProps, Chip, type ChipProps, ChipSelectField, type ChipSelectFieldProps, type ChipType, ChipTypes, type ChipValue, Chips, type ChipsProps, CollapseToggle, CollapsedContext, type ColumnLayoutResult, type CompanionConfig, type CompanionContent, type CompanionPosition, ConfirmCloseModal, ContentHeader, type ContentHeaderLevel, type ContentHeaderProps, type ContentStack, ContrastScope, Copy, CountBadge, type CountBadgeProps, Css, CssReset, type CssSetVarKeys, type CssSetVarScalar, type CssSetVarValue, DESC, DateField, type DateFieldFormat, type DateFieldMode, type DateFieldProps, type DateFilterValue, type DateMatcher, type DateRange, DateRangeField, type DateRangeFieldProps, type DateRangeFilterValue, type DefinedFilterValue, type Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, DocumentScrollOverlayRightPaneLayout, type DocumentScrollOverlayRightPaneLayoutProps, type DocumentTitleConfig, DocumentTitleProvider, type DragData, EXPANDABLE_HEADER, EditColumnsButton, EnvironmentBanner, EnvironmentBannerLayout, type EnvironmentBannerLayoutProps, type EnvironmentBannerProps, type EnvironmentFaviconUrls, ErrorMessage, FieldGroup, type Filter, type FilterDefs, type FilterImpls, FilterModal, _Filters as Filters, type FixedSort, FocusedFormLayout, type FocusedFormLayoutProps, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, FormSection, type FormSectionAction, type FormSectionConfig, FormSectionLayout, type FormSectionLayoutProps, type FormSectionLayoutSection, type FormSectionProps, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowCompanion, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableEmptyState, type GridTableEmptyStateProps, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, type HeaderAction, HelperText, HomeboundLogo, Icon, IconButton, type IconButtonProps, type IconButtonVariant, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type ImpersonatedUser, type InfiniteScroll, InlineFeedbackBanner, type InlineFeedbackBannerAction, type InlineFeedbackBannerProps, type InlineFeedbackBannerType, type InlineStyle, type InputStylePalette, JumpLink, type JumpLinkProps, KEPT_GROUP, Keyframes, type Kinded, LinkCard, type LinkCardProps, Loader, LoadingSkeleton, type LoadingSkeletonProps, type LogoSizeProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBanner, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectCardGroup, type MultiSelectCardGroupProps, MultiSelectField, type MultiSelectFieldProps, NavLink, type NavLinkProps, type NavLinkVariant, Navbar, NavbarLayout, type NavbarLayoutProps, type NavbarProps, type NavbarUser, type NestedOption, type NestedOptionsOrLoad, NumberField, type NumberFieldProps, type NumberFieldType, type OffsetAndLimit, type OnRowDragEvent, type OnRowSelect, type Only, type OpenDetailOpts, type OpenInDrawerOpts, OpenModal, type OpenRightPaneOpts, type Optional, type Padding, PageHeaderLayout, type PageHeaderLayoutProps, type PageNumberAndSize, type PageSettings, Pagination, Palette, PinToggle, type Placement, type PlainDate, type PlainFormSectionChild, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, ProposedValue$1 as ProposedValue, type ProposedValueProps, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, type ReorderableFormSectionChild, type ResolvedWithRightPane, ResponsiveGrid, type ResponsiveGridConfig, ResponsiveGridContext, ResponsiveGridItem, type ResponsiveGridItemProps, type ResponsiveGridProps, RichTextField, RichTextFieldImpl, type RichTextFieldProps, RightPaneLayout, type RightPaneOpenActions, type RightPaneOpenState, RightPanePanel, type RightPanePanelProps, RightSidebar, type RightSidebarProps, type RouteTab, type RouteTabWithContent, Row, type RowStyle, type RowStyles, RuntimeCss, type RuntimeStyles, SIDE_NAV_LAYOUT_STATE_STORAGE_KEY, ScrollShadows, ScrollableContent, ScrollableFooter, ScrollableParent, type SelectCardGridGroupItemOption, SelectCardGroup, type SelectCardGroupItemOption, type SelectCardGroupProps, type SelectCardLayout, type SelectCardListGroupItemOption, type SelectCardView, SelectField, type SelectFieldProps, SelectToggle, type SelectedFilterLabelValue, SelectedOptionPill, SelectedOptionPillList, type SelectedOptionPillListProps, type SelectedOptionPillProps, type SelectedState, SideNav, SideNavLayout, type SideNavLayoutContextProps, type SideNavLayoutProps, SideNavLayoutProvider, type SideNavLayoutState, type SideNavProps, type SidePanelProps, type SidebarContentProps, type SimpleHeaderAndData, SortHeader, type SortOn, type SortState, StaticField, type Step, Stepper, StepperLayout, type StepperLayoutProps, type StepperLayoutStep, type StepperProps, StepperTab, type StepperTabProps, StepperTabs, type StepperTabsProps, type StepperTabsStep, type StyleKind, SubmitButton, type SubmitButtonProps, SuperDrawerContent, SuperDrawerHeader, SuperDrawerWidth, type SupportedDateFormat, Switch, type SwitchProps, TOTALS, type Tab, TabContent, type TabWithContent, TableReviewLayout, type TableReviewLayoutProps, TableState, TableStateContext, type TableView, Tabs, TabsWithContent, Tag, TagGroup, type TagGroupItem, type TagGroupProps, type TagProps, type TagType, type TagVariant, type TagXss, type TestIds, TextAreaField, type TextAreaFieldProps, TextField, type TextFieldApi, type TextFieldInternalProps, type TextFieldProps, type TextFieldXss, Toast, ToggleButton, type ToggleButtonProps, ToggleChip, ToggleChipGroup, type ToggleChipGroupProps, type ToggleChipProps, ToggleChips, type ToggleChipsProps, Tokens, Tooltip, TreeSelectField, type TreeSelectFieldProps, type TriggerNoticeProps, type Typography, type UseModalHook, type UsePersistedFilterProps$1 as UsePersistedFilterProps, type UseQueryState, type UseRightPaneActionsHook, type UseRightPaneHook, type UseSnackbarHook, type UseSuperDrawerHook, type UseToastProps, type Value, ViewToggleButton, type WithRightPane, type Xss, type ZIndex, actionColumn, applyRowFn, assignDefaultColumnIds, bannerAndNavbarChromeTop, beamEnvironmentBannerLayoutHeightVar, beamFloatingRightOffsetVar, beamLayoutContentPaddingXVar, beamLayoutViewportHeightVar, beamLayoutViewportWidthVar, beamNavbarLayoutHeightVar, beamPageHeaderLayoutHeightVar, beamRightPaneContentMinVar, beamRightPaneWidthVar, beamSideNavLayoutWidthVar, beamTableActionsHeightVar, beamWorkflowLayoutFooterHeightVar, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundMultiSelectCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectCardGroupField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnLayout, calcColumnSizes, cardBadgeSlot, cardCarouselSlot, cardDataBlockSlot, cardEyebrowSlot, cardInteractiveFooterSlot, cardLeftEyebrowSlot, cardProgressSlot, cardRightEyebrowSlot, cardStatusSlot, cardStyle, cardTitleSlot, centeredShellMaxPx, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, contrastDataTheme, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultDocumentScrollRightPaneWidth, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, documentScrollBodyMinHeight, documentScrollChromeLeft, documentScrollChromeWidth, documentScrollContentLeft, documentScrollContentWidth, documentScrollRightPaneContentMinCss, documentScrollRightPaneHeight, documentScrollRightPaneWidthCss, dragHandleColumn, emptyCell, ensureClientSideSortValueIsSortable, environmentBannerSizePx, filterTestIdPrefix, formatDate, formatDateRange, formatPlainDate, formatValue, generateColumnId, getActiveFilterCount, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getFloatingBottomOffset, getFloatingRightOffset, getJustification, getNavLinkStyles, getTableRefWidthStyles, getTableStyles, headerContentPaddingX, headerRenderFn, hoverStyles, increment, insertAtIndex, isContentColumn, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, joinDocumentTitleSegments, layoutGutterLeftColumnId, layoutGutterRightColumnId, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeCssVar, maybeInc, maybeTooltip, minDocumentScrollContentWidthPx, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, pageContentGutterPx, pageContentPaddingX, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pinColumn, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resetRightPaneStore, resolveGridTableLayoutStyle, resolveTableContentWidth, resolveTooltip, resolveWithRightPaneOptions, rightPaneContentStore, rightPaneOpenActions, rightPaneOpenStore, rowClickRenderFn, rowLinkRenderFn, selectColumn, setDefaultStyle, setEnvironmentFavicon, setGridTableDefaults, setRunningInJest, shouldShowEnvironmentBanner, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, stickyNavAndHeaderOffset, stickyNavAndHeaderOffsetPx, stickyTableHeaderOffset, sumColumnSizesPx, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBodyBackgroundColor, useBreakpoint, useComputed, useContentOverflow, useContrastScope, useDnDGridItem, type useDnDGridItemProps, useDocumentTitle, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHasSideNavLayoutProvider, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneActions, useRightPaneContent, useRightPaneOpenActions, useRightPaneOpenState, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSideNavLayoutContext, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, withColumnGutters, zIndices };
|