@homebound/beam 3.34.0 → 3.35.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 +776 -712
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +87 -71
- package/dist/index.d.ts +87 -71
- package/dist/index.js +629 -565
- package/dist/index.js.map +1 -1
- package/dist/truss.css +10 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -4644,6 +4644,9 @@ declare const Icons: {
|
|
|
4644
4644
|
subdivision: JSX.Element;
|
|
4645
4645
|
lot: JSX.Element;
|
|
4646
4646
|
houseFilled: JSX.Element;
|
|
4647
|
+
single: JSX.Element;
|
|
4648
|
+
linked: JSX.Element;
|
|
4649
|
+
package: JSX.Element;
|
|
4647
4650
|
};
|
|
4648
4651
|
type IconKey = keyof typeof Icons;
|
|
4649
4652
|
|
|
@@ -6766,33 +6769,6 @@ type ErrorMessageProps = {
|
|
|
6766
6769
|
*/
|
|
6767
6770
|
declare function ErrorMessage(props: ErrorMessageProps): JSX.Element;
|
|
6768
6771
|
|
|
6769
|
-
interface IconCardProps {
|
|
6770
|
-
/** The icon to use within the card. */
|
|
6771
|
-
icon: IconProps["icon"];
|
|
6772
|
-
label: string;
|
|
6773
|
-
selected?: boolean;
|
|
6774
|
-
/** Handler that is called when the element's selection state changes. */
|
|
6775
|
-
onChange?: (selected: boolean) => void;
|
|
6776
|
-
cardRef?: RefObject<HTMLInputElement>;
|
|
6777
|
-
disabled?: boolean;
|
|
6778
|
-
tooltip?: string;
|
|
6779
|
-
}
|
|
6780
|
-
declare function IconCard(props: IconCardProps): JSX.Element;
|
|
6781
|
-
declare const selectedStyles: Pick<Properties, never> & {
|
|
6782
|
-
borderWidth: csstype.Property.BorderWidth<string | 0> | undefined;
|
|
6783
|
-
} & {
|
|
6784
|
-
borderColor: csstype.Property.BorderColor | undefined;
|
|
6785
|
-
} & {
|
|
6786
|
-
backgroundColor: csstype.Property.BackgroundColor | undefined;
|
|
6787
|
-
} & {
|
|
6788
|
-
readonly __kind: "buildtime";
|
|
6789
|
-
};
|
|
6790
|
-
declare const iconCardStylesHover: Pick<Properties, never> & {
|
|
6791
|
-
backgroundColor: csstype.Property.BackgroundColor | undefined;
|
|
6792
|
-
} & {
|
|
6793
|
-
readonly __kind: "buildtime";
|
|
6794
|
-
};
|
|
6795
|
-
|
|
6796
6772
|
/** Base props for either `SelectField` or `MultiSelectField`. */
|
|
6797
6773
|
type ComboBoxBaseProps<O, V extends Value> = {
|
|
6798
6774
|
/** Renders `opt` in the dropdown menu, defaults to the `getOptionLabel` prop. `isUnsetOpt` is only defined for single SelectField */
|
|
@@ -7010,6 +6986,68 @@ declare const RichTextField: (props: RichTextFieldProps) => JSX.Element;
|
|
|
7010
6986
|
*/
|
|
7011
6987
|
declare function RichTextFieldImpl(props: RichTextFieldProps): JSX.Element;
|
|
7012
6988
|
|
|
6989
|
+
type SelectCardLayout = "width" | "height" | "flexBasis" | "flexGrow" | "flexShrink" | "alignSelf" | "minWidth";
|
|
6990
|
+
type SelectCardProps = {
|
|
6991
|
+
/** The icon to use within the card. */
|
|
6992
|
+
icon: IconProps["icon"];
|
|
6993
|
+
label: string;
|
|
6994
|
+
/** Optional secondary copy shown beneath the label. When present the card grows to fit it. */
|
|
6995
|
+
description?: string;
|
|
6996
|
+
selected?: boolean;
|
|
6997
|
+
/** Handler that is called when the element's selection state changes. */
|
|
6998
|
+
onChange?: (selected: boolean) => void;
|
|
6999
|
+
cardRef?: RefObject<HTMLInputElement>;
|
|
7000
|
+
disabled?: boolean;
|
|
7001
|
+
tooltip?: string;
|
|
7002
|
+
/** Layout overrides applied by a parent to align this card within a row (see `fillRowStyles`). */
|
|
7003
|
+
xss?: Xss<SelectCardLayout>;
|
|
7004
|
+
};
|
|
7005
|
+
declare function SelectCard(props: SelectCardProps): JSX.Element;
|
|
7006
|
+
declare const fillRowStyles: Pick<Properties, never> & {
|
|
7007
|
+
flexBasis: csstype.Property.FlexBasis<string | 0> | undefined;
|
|
7008
|
+
} & {
|
|
7009
|
+
flexGrow: csstype.Property.FlexGrow | undefined;
|
|
7010
|
+
} & {
|
|
7011
|
+
flexShrink: csstype.Property.FlexShrink | undefined;
|
|
7012
|
+
} & {
|
|
7013
|
+
alignSelf: csstype.Property.AlignSelf | undefined;
|
|
7014
|
+
} & {
|
|
7015
|
+
minWidth: csstype.Property.MinWidth<string | 0> | undefined;
|
|
7016
|
+
} & {
|
|
7017
|
+
width: csstype.Property.Width<string | 0> | undefined;
|
|
7018
|
+
} & {
|
|
7019
|
+
height: csstype.Property.Height<string | 0> | undefined;
|
|
7020
|
+
} & {
|
|
7021
|
+
readonly __kind: "buildtime";
|
|
7022
|
+
};
|
|
7023
|
+
|
|
7024
|
+
type SelectCardGroupItemOption<V extends Value> = {
|
|
7025
|
+
icon: IconProps["icon"];
|
|
7026
|
+
label: string;
|
|
7027
|
+
/** Optional secondary copy shown beneath the label. */
|
|
7028
|
+
description?: string;
|
|
7029
|
+
disabled?: boolean;
|
|
7030
|
+
/** Tooltip shown on hover, i.e. to explain why the option is disabled. */
|
|
7031
|
+
tooltip?: string;
|
|
7032
|
+
/** The value of the SelectCardGroup item, stored in value array in state. */
|
|
7033
|
+
value: V;
|
|
7034
|
+
/** Exclusive: if true, this option will override all other options when selected. */
|
|
7035
|
+
exclusive?: boolean;
|
|
7036
|
+
};
|
|
7037
|
+
type SelectCardGroupProps<V extends Value> = {
|
|
7038
|
+
label: string;
|
|
7039
|
+
/** Called when a card is selected */
|
|
7040
|
+
onChange: (values: V[]) => void;
|
|
7041
|
+
/** Options for the cards contained within the SelectCardGroup. */
|
|
7042
|
+
options: SelectCardGroupItemOption<V>[];
|
|
7043
|
+
/** The values currently selected. */
|
|
7044
|
+
values: V[];
|
|
7045
|
+
errorMsg?: string;
|
|
7046
|
+
helperText?: string | ReactNode;
|
|
7047
|
+
disabled?: boolean;
|
|
7048
|
+
} & Pick<PresentationFieldProps, "labelStyle">;
|
|
7049
|
+
declare function SelectCardGroup<V extends Value>(props: SelectCardGroupProps<V>): JSX.Element;
|
|
7050
|
+
|
|
7013
7051
|
type SelectFieldProps<O, V extends Value> = {
|
|
7014
7052
|
/** The current value; it can be `undefined`, even if `V` cannot be. */
|
|
7015
7053
|
value: V | undefined;
|
|
@@ -7659,47 +7697,6 @@ type BoundDateRangeFieldProps = Omit<DateRangeFieldProps, "label" | "value" | "o
|
|
|
7659
7697
|
/** Wraps `TextField` and binds it to a form field. */
|
|
7660
7698
|
declare function BoundDateRangeField(props: BoundDateRangeFieldProps): JSX.Element;
|
|
7661
7699
|
|
|
7662
|
-
type BoundIconCardFieldProps = Omit<IconCardProps, "label" | "selected" | "onChange"> & {
|
|
7663
|
-
field: FieldState<boolean | null | undefined>;
|
|
7664
|
-
icon: IconProps["icon"];
|
|
7665
|
-
/** Make optional so that callers can override if they want to. */
|
|
7666
|
-
onChange?: (values: boolean) => void;
|
|
7667
|
-
label?: string;
|
|
7668
|
-
};
|
|
7669
|
-
/** Wraps `IconCard` and binds it to a form field. */
|
|
7670
|
-
declare function BoundIconCardField(props: BoundIconCardFieldProps): JSX.Element;
|
|
7671
|
-
|
|
7672
|
-
interface IconCardGroupItemOption<V extends Value> {
|
|
7673
|
-
icon: IconProps["icon"];
|
|
7674
|
-
label: string;
|
|
7675
|
-
disabled?: boolean;
|
|
7676
|
-
/** The value of the IconCardGroup item, stored in value array in state. */
|
|
7677
|
-
value: V;
|
|
7678
|
-
/** Exclusive: if true, this option will override all other options when selected. */
|
|
7679
|
-
exclusive?: boolean;
|
|
7680
|
-
}
|
|
7681
|
-
interface IconCardGroupProps<V extends Value> extends Pick<PresentationFieldProps, "labelStyle"> {
|
|
7682
|
-
label: string;
|
|
7683
|
-
/** Called when a card is selected */
|
|
7684
|
-
onChange: (values: V[]) => void;
|
|
7685
|
-
/** Options for the cards contained within the IconCardGroup. */
|
|
7686
|
-
options: IconCardGroupItemOption<V>[];
|
|
7687
|
-
/** The values currently selected. */
|
|
7688
|
-
values: V[];
|
|
7689
|
-
errorMsg?: string;
|
|
7690
|
-
helperText?: string | ReactNode;
|
|
7691
|
-
disabled?: boolean;
|
|
7692
|
-
}
|
|
7693
|
-
|
|
7694
|
-
type BoundIconCardGroupFieldProps<V extends Value> = Omit<IconCardGroupProps<V>, "label" | "values" | "onChange"> & {
|
|
7695
|
-
field: FieldState<V[] | null | undefined>;
|
|
7696
|
-
/** Make optional so that callers can override if they want to. */
|
|
7697
|
-
onChange?: (values: V[]) => void;
|
|
7698
|
-
label?: string;
|
|
7699
|
-
};
|
|
7700
|
-
/** Wraps `IconCardGroup` and binds it to a form field. */
|
|
7701
|
-
declare function BoundIconCardGroupField<V extends Value>(props: BoundIconCardGroupFieldProps<V>): JSX.Element;
|
|
7702
|
-
|
|
7703
7700
|
type ListFieldKey<F> = {
|
|
7704
7701
|
[K in keyof F]: F[K] extends (infer T)[] | null | undefined ? (T extends object ? K : never) : never;
|
|
7705
7702
|
}[keyof F];
|
|
@@ -7768,6 +7765,25 @@ type BoundRichTextFieldProps = Omit<RichTextFieldProps, "value" | "onChange"> &
|
|
|
7768
7765
|
/** Wraps `RichTextField` and binds it to a form field. */
|
|
7769
7766
|
declare function BoundRichTextField(props: BoundRichTextFieldProps): JSX.Element;
|
|
7770
7767
|
|
|
7768
|
+
type BoundSelectCardFieldProps = Omit<SelectCardProps, "label" | "selected" | "onChange"> & {
|
|
7769
|
+
field: FieldState<boolean | null | undefined>;
|
|
7770
|
+
icon: IconProps["icon"];
|
|
7771
|
+
/** Make optional so that callers can override if they want to. */
|
|
7772
|
+
onChange?: (values: boolean) => void;
|
|
7773
|
+
label?: string;
|
|
7774
|
+
};
|
|
7775
|
+
/** Wraps `SelectCard` and binds it to a form field. */
|
|
7776
|
+
declare function BoundSelectCardField(props: BoundSelectCardFieldProps): JSX.Element;
|
|
7777
|
+
|
|
7778
|
+
type BoundSelectCardGroupFieldProps<V extends Value> = Omit<SelectCardGroupProps<V>, "label" | "values" | "onChange"> & {
|
|
7779
|
+
field: FieldState<V[] | null | undefined>;
|
|
7780
|
+
/** Make optional so that callers can override if they want to. */
|
|
7781
|
+
onChange?: (values: V[]) => void;
|
|
7782
|
+
label?: string;
|
|
7783
|
+
};
|
|
7784
|
+
/** Wraps `SelectCardGroup` and binds it to a form field. */
|
|
7785
|
+
declare function BoundSelectCardGroupField<V extends Value>(props: BoundSelectCardGroupFieldProps<V>): JSX.Element;
|
|
7786
|
+
|
|
7771
7787
|
type BoundSelectFieldProps<O, V extends Value> = Omit<SelectFieldProps<O, V>, "value" | "onSelect" | "label"> & {
|
|
7772
7788
|
/** Optional, to allow `onSelect` to be overridden to do more than just `field.set`. */
|
|
7773
7789
|
onSelect?: (value: V | undefined, opt: O | undefined) => void;
|
|
@@ -7909,8 +7925,8 @@ declare function boundDateField(props?: Omit<BoundDateFieldProps, KeysToOmit>):
|
|
|
7909
7925
|
declare function boundDateRangeField(props?: Omit<BoundDateRangeFieldProps, KeysToOmit>): (field: FieldState<any>) => BoundFieldInputFnReturn;
|
|
7910
7926
|
declare function boundCheckboxField(props?: Omit<BoundCheckboxFieldProps, KeysToOmit>): (field: FieldState<any>) => BoundFieldInputFnReturn;
|
|
7911
7927
|
declare function boundCheckboxGroupField(props: Omit<BoundCheckboxGroupFieldProps, KeysToOmit>): (field: FieldState<any>) => BoundFieldInputFnReturn;
|
|
7912
|
-
declare function
|
|
7913
|
-
declare function
|
|
7928
|
+
declare function boundSelectCardField(props: Omit<BoundSelectCardFieldProps, KeysToOmit>): (field: FieldState<any>) => BoundFieldInputFnReturn;
|
|
7929
|
+
declare function boundSelectCardGroupField<V extends Value>(props: Omit<BoundSelectCardGroupFieldProps<V>, KeysToOmit>): (field: FieldState<any>) => BoundFieldInputFnReturn;
|
|
7914
7930
|
declare function boundRadioGroupField<K extends string>(props: Omit<BoundRadioGroupFieldProps<K>, KeysToOmit>): (field: FieldState<any>) => BoundFieldInputFnReturn;
|
|
7915
7931
|
declare function boundRichTextField(props?: Omit<BoundRichTextFieldProps, KeysToOmit>): (field: FieldState<any>) => BoundFieldInputFnReturn;
|
|
7916
7932
|
declare function boundSwitchField(props?: Omit<BoundSwitchFieldProps, KeysToOmit>): (field: FieldState<any>) => BoundFieldInputFnReturn;
|
|
@@ -9137,4 +9153,4 @@ declare const zIndices: {
|
|
|
9137
9153
|
};
|
|
9138
9154
|
type ZIndex = (typeof zIndices)[keyof typeof zIndices];
|
|
9139
9155
|
|
|
9140
|
-
export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, type AppEnvironment, type AppNavGroup, type AppNavItem, type AppNavLink, type AppNavSection, type AppNavSectionItem, AutoSaveIndicator, AutoSaveStatus, AutoSaveStatusContext, AutoSaveStatusProvider, Autocomplete, type AutocompleteProps, Avatar, AvatarButton, type AvatarButtonProps, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, Banner, type BannerProps, type BannerTypes, BaseFilter, type BaseQueryTableProps, type BaseTableProps, type BeamButtonProps, type BeamColor, type BeamFocusableProps, BeamProvider, type BeamTextFieldProps, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundIconCardField, type BoundIconCardFieldProps, BoundIconCardGroupField, type BoundIconCardGroupFieldProps, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardBadgeSlot, type CardDataBlockSlot, type CardEyebrowSlot, type CardProgressSlot, type CardProps, type CardSlot, type CardStatusSlot, type CardTag, type CardTitleSlot, type CardType, type CheckFn, Checkbox, CheckboxGroup, type CheckboxGroupItemOption, type CheckboxGroupProps, type CheckboxProps, Chip, type ChipProps, ChipSelectField, type ChipSelectFieldProps, type ChipType, ChipTypes, type ChipValue, Chips, type ChipsProps, CollapseToggle, CollapsedContext, type ColumnLayoutResult, ConfirmCloseModal, type ContentStack, ContrastScope, Copy, CountBadge, type CountBadgeProps, Css, CssReset, type CssSetVarKeys, type CssSetVarScalar, type CssSetVarValue, DESC, DateField, type DateFieldFormat, type DateFieldMode, type DateFieldProps, type DateFilterValue, type DateMatcher, type DateRange, DateRangeField, type DateRangeFieldProps, type DateRangeFilterValue, type DefinedFilterValue, type Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, type DocumentTitleConfig, DocumentTitleProvider, type DragData, EXPANDABLE_HEADER, EditColumnsButton, EnvironmentBanner, EnvironmentBannerLayout, type EnvironmentBannerLayoutProps, type EnvironmentBannerProps, type EnvironmentFaviconUrls, ErrorMessage, FieldGroup, type Filter, type FilterDefs, _FilterDropdownMenu as FilterDropdownMenu, type FilterImpls, FilterModal, _Filters as Filters, type FixedSort, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, type FormSectionConfig, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, HelperText, HomeboundLogo, Icon, IconButton, type IconButtonProps, type IconButtonVariant, IconCard, type IconCardProps, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type ImpersonatedUser, type InfiniteScroll, type InlineStyle, type InputStylePalette, KEPT_GROUP, type Kinded, Loader, LoadingSkeleton, type LoadingSkeletonProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectField, type MultiSelectFieldProps, NavLink, type NavLinkProps, type NavLinkVariant, Navbar, NavbarLayout, type NavbarLayoutProps, type NavbarProps, type NavbarUser, type NestedOption, type NestedOptionsOrLoad, NumberField, type NumberFieldProps, type NumberFieldType, type OffsetAndLimit, type OnRowDragEvent, type OnRowSelect, type Only, type OpenDetailOpts, type OpenInDrawerOpts, OpenModal, type OpenRightPaneOpts, type Optional, type Padding, PageHeader, PageHeaderLayout, type PageHeaderLayoutProps, type PageHeaderProps, type PageNumberAndSize, type PageSettings, Pagination, Palette, PinToggle, type Placement, type PlainDate, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, ResponsiveGrid, type ResponsiveGridConfig, ResponsiveGridContext, ResponsiveGridItem, type ResponsiveGridItemProps, type ResponsiveGridProps, RichTextField, RichTextFieldImpl, type RichTextFieldProps, RightPaneContext, RightPaneLayout, type RightPaneLayoutContextProps, RightPaneProvider, RightSidebar, type RightSidebarProps, type RouteTab, type RouteTabWithContent, Row, type RowStyle, type RowStyles, RuntimeCss, type RuntimeStyles, SIDE_NAV_LAYOUT_STATE_STORAGE_KEY, ScrollShadows, ScrollableContent, ScrollableFooter, ScrollableParent, SelectField, type SelectFieldProps, SelectToggle, type SelectedFilterLabelValue, type SelectedState, SideNav, SideNavLayout, type SideNavLayoutContextProps, type SideNavLayoutProps, SideNavLayoutProvider, type SideNavLayoutState, type SideNavProps, type SidePanelProps, type SidebarContentProps, type SimpleHeaderAndData, SortHeader, type SortOn, type SortState, StaticField, type Step, Stepper, type StepperProps, type StyleKind, SubmitButton, type SubmitButtonProps, SuperDrawerContent, SuperDrawerHeader, SuperDrawerWidth, type SupportedDateFormat, Switch, type SwitchProps, TOTALS, type Tab, TabContent, type TabWithContent, TableReviewLayout, type TableReviewLayoutProps, TableState, TableStateContext, type TableView, Tabs, TabsWithContent, Tag, type TagProps, type TagType, type TagXss, type TestIds, TextAreaField, type TextAreaFieldProps, TextField, type TextFieldApi, type TextFieldInternalProps, type TextFieldProps, type TextFieldXss, Toast, ToggleButton, type ToggleButtonProps, ToggleChip, ToggleChipGroup, type ToggleChipGroupProps, type ToggleChipProps, ToggleChips, type ToggleChipsProps, Tokens, Tooltip, TreeSelectField, type TreeSelectFieldProps, type TriggerNoticeProps, type Typography, type UseModalHook, type UsePersistedFilterProps, type UseQueryState, type UseRightPaneHook, type UseSnackbarHook, type UseSuperDrawerHook, type UseToastProps, type Value, ViewToggleButton, type Xss, type ZIndex, actionColumn, applyRowFn, assignDefaultColumnIds, bannerAndNavbarChromeTop, beamEnvironmentBannerLayoutHeightVar, beamLayoutViewportHeightVar, beamLayoutViewportWidthVar, beamNavbarLayoutHeightVar, beamPageHeaderLayoutHeightVar, beamSideNavLayoutWidthVar, beamTableActionsHeightVar, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundIconCardField, boundIconCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnLayout, calcColumnSizes, cardBadgeSlot, cardDataBlockSlot, cardEyebrowSlot, cardProgressSlot, cardStatusSlot, cardStyle, cardTitleSlot, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, contrastDataTheme, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, documentScrollChromeLeft, documentScrollChromeWidth, dragHandleColumn, emptyCell, ensureClientSideSortValueIsSortable, environmentBannerSizePx, filterTestIdPrefix, formatDate, formatDateRange, formatPlainDate, formatValue, generateColumnId, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getJustification, getNavLinkStyles, getTableRefWidthStyles, getTableStyles, headerRenderFn, hoverStyles, iconCardStylesHover, increment, insertAtIndex, isContentColumn, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, joinDocumentTitleSegments, layoutGutterLeftColumnId, layoutGutterRightColumnId, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeCssVar, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pinColumn, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveTableContentWidth, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, selectedStyles, setDefaultStyle, setEnvironmentFavicon, setGridTableDefaults, setRunningInJest, shouldShowEnvironmentBanner, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, stickyNavAndHeaderOffset, stickyTableHeaderOffset, sumColumnSizesPx, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBreakpoint, useComputed, useContentOverflow, useContrastScope, useDnDGridItem, type useDnDGridItemProps, useDocumentTitle, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHasSideNavLayoutProvider, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneContext, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSideNavLayoutContext, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, withColumnGutters, zIndices };
|
|
9156
|
+
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, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectCardField, type BoundSelectCardFieldProps, BoundSelectCardGroupField, type BoundSelectCardGroupFieldProps, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardBadgeSlot, type CardDataBlockSlot, type CardEyebrowSlot, type CardProgressSlot, type CardProps, type CardSlot, type CardStatusSlot, type CardTag, type CardTitleSlot, type CardType, type CheckFn, Checkbox, CheckboxGroup, type CheckboxGroupItemOption, type CheckboxGroupProps, type CheckboxProps, Chip, type ChipProps, ChipSelectField, type ChipSelectFieldProps, type ChipType, ChipTypes, type ChipValue, Chips, type ChipsProps, CollapseToggle, CollapsedContext, type ColumnLayoutResult, ConfirmCloseModal, type ContentStack, ContrastScope, Copy, CountBadge, type CountBadgeProps, Css, CssReset, type CssSetVarKeys, type CssSetVarScalar, type CssSetVarValue, DESC, DateField, type DateFieldFormat, type DateFieldMode, type DateFieldProps, type DateFilterValue, type DateMatcher, type DateRange, DateRangeField, type DateRangeFieldProps, type DateRangeFilterValue, type DefinedFilterValue, type Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, type DocumentTitleConfig, DocumentTitleProvider, type DragData, EXPANDABLE_HEADER, EditColumnsButton, EnvironmentBanner, EnvironmentBannerLayout, type EnvironmentBannerLayoutProps, type EnvironmentBannerProps, type EnvironmentFaviconUrls, ErrorMessage, FieldGroup, type Filter, type FilterDefs, _FilterDropdownMenu as FilterDropdownMenu, type FilterImpls, FilterModal, _Filters as Filters, type FixedSort, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, type FormSectionConfig, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, HelperText, HomeboundLogo, Icon, IconButton, type IconButtonProps, type IconButtonVariant, 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, SelectCard, SelectCardGroup, type SelectCardGroupItemOption, type SelectCardGroupProps, type SelectCardProps, 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, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectCardField, boundSelectCardGroupField, 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, fillRowStyles, filterTestIdPrefix, formatDate, formatDateRange, formatPlainDate, formatValue, generateColumnId, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getJustification, getNavLinkStyles, getTableRefWidthStyles, getTableStyles, 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, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pinColumn, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveTableContentWidth, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, setDefaultStyle, setEnvironmentFavicon, setGridTableDefaults, setRunningInJest, shouldShowEnvironmentBanner, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, stickyNavAndHeaderOffset, stickyTableHeaderOffset, sumColumnSizesPx, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBreakpoint, useComputed, useContentOverflow, useContrastScope, useDnDGridItem, type useDnDGridItemProps, useDocumentTitle, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHasSideNavLayoutProvider, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneContext, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSideNavLayoutContext, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, withColumnGutters, zIndices };
|
package/dist/index.d.ts
CHANGED
|
@@ -4644,6 +4644,9 @@ declare const Icons: {
|
|
|
4644
4644
|
subdivision: JSX.Element;
|
|
4645
4645
|
lot: JSX.Element;
|
|
4646
4646
|
houseFilled: JSX.Element;
|
|
4647
|
+
single: JSX.Element;
|
|
4648
|
+
linked: JSX.Element;
|
|
4649
|
+
package: JSX.Element;
|
|
4647
4650
|
};
|
|
4648
4651
|
type IconKey = keyof typeof Icons;
|
|
4649
4652
|
|
|
@@ -6766,33 +6769,6 @@ type ErrorMessageProps = {
|
|
|
6766
6769
|
*/
|
|
6767
6770
|
declare function ErrorMessage(props: ErrorMessageProps): JSX.Element;
|
|
6768
6771
|
|
|
6769
|
-
interface IconCardProps {
|
|
6770
|
-
/** The icon to use within the card. */
|
|
6771
|
-
icon: IconProps["icon"];
|
|
6772
|
-
label: string;
|
|
6773
|
-
selected?: boolean;
|
|
6774
|
-
/** Handler that is called when the element's selection state changes. */
|
|
6775
|
-
onChange?: (selected: boolean) => void;
|
|
6776
|
-
cardRef?: RefObject<HTMLInputElement>;
|
|
6777
|
-
disabled?: boolean;
|
|
6778
|
-
tooltip?: string;
|
|
6779
|
-
}
|
|
6780
|
-
declare function IconCard(props: IconCardProps): JSX.Element;
|
|
6781
|
-
declare const selectedStyles: Pick<Properties, never> & {
|
|
6782
|
-
borderWidth: csstype.Property.BorderWidth<string | 0> | undefined;
|
|
6783
|
-
} & {
|
|
6784
|
-
borderColor: csstype.Property.BorderColor | undefined;
|
|
6785
|
-
} & {
|
|
6786
|
-
backgroundColor: csstype.Property.BackgroundColor | undefined;
|
|
6787
|
-
} & {
|
|
6788
|
-
readonly __kind: "buildtime";
|
|
6789
|
-
};
|
|
6790
|
-
declare const iconCardStylesHover: Pick<Properties, never> & {
|
|
6791
|
-
backgroundColor: csstype.Property.BackgroundColor | undefined;
|
|
6792
|
-
} & {
|
|
6793
|
-
readonly __kind: "buildtime";
|
|
6794
|
-
};
|
|
6795
|
-
|
|
6796
6772
|
/** Base props for either `SelectField` or `MultiSelectField`. */
|
|
6797
6773
|
type ComboBoxBaseProps<O, V extends Value> = {
|
|
6798
6774
|
/** Renders `opt` in the dropdown menu, defaults to the `getOptionLabel` prop. `isUnsetOpt` is only defined for single SelectField */
|
|
@@ -7010,6 +6986,68 @@ declare const RichTextField: (props: RichTextFieldProps) => JSX.Element;
|
|
|
7010
6986
|
*/
|
|
7011
6987
|
declare function RichTextFieldImpl(props: RichTextFieldProps): JSX.Element;
|
|
7012
6988
|
|
|
6989
|
+
type SelectCardLayout = "width" | "height" | "flexBasis" | "flexGrow" | "flexShrink" | "alignSelf" | "minWidth";
|
|
6990
|
+
type SelectCardProps = {
|
|
6991
|
+
/** The icon to use within the card. */
|
|
6992
|
+
icon: IconProps["icon"];
|
|
6993
|
+
label: string;
|
|
6994
|
+
/** Optional secondary copy shown beneath the label. When present the card grows to fit it. */
|
|
6995
|
+
description?: string;
|
|
6996
|
+
selected?: boolean;
|
|
6997
|
+
/** Handler that is called when the element's selection state changes. */
|
|
6998
|
+
onChange?: (selected: boolean) => void;
|
|
6999
|
+
cardRef?: RefObject<HTMLInputElement>;
|
|
7000
|
+
disabled?: boolean;
|
|
7001
|
+
tooltip?: string;
|
|
7002
|
+
/** Layout overrides applied by a parent to align this card within a row (see `fillRowStyles`). */
|
|
7003
|
+
xss?: Xss<SelectCardLayout>;
|
|
7004
|
+
};
|
|
7005
|
+
declare function SelectCard(props: SelectCardProps): JSX.Element;
|
|
7006
|
+
declare const fillRowStyles: Pick<Properties, never> & {
|
|
7007
|
+
flexBasis: csstype.Property.FlexBasis<string | 0> | undefined;
|
|
7008
|
+
} & {
|
|
7009
|
+
flexGrow: csstype.Property.FlexGrow | undefined;
|
|
7010
|
+
} & {
|
|
7011
|
+
flexShrink: csstype.Property.FlexShrink | undefined;
|
|
7012
|
+
} & {
|
|
7013
|
+
alignSelf: csstype.Property.AlignSelf | undefined;
|
|
7014
|
+
} & {
|
|
7015
|
+
minWidth: csstype.Property.MinWidth<string | 0> | undefined;
|
|
7016
|
+
} & {
|
|
7017
|
+
width: csstype.Property.Width<string | 0> | undefined;
|
|
7018
|
+
} & {
|
|
7019
|
+
height: csstype.Property.Height<string | 0> | undefined;
|
|
7020
|
+
} & {
|
|
7021
|
+
readonly __kind: "buildtime";
|
|
7022
|
+
};
|
|
7023
|
+
|
|
7024
|
+
type SelectCardGroupItemOption<V extends Value> = {
|
|
7025
|
+
icon: IconProps["icon"];
|
|
7026
|
+
label: string;
|
|
7027
|
+
/** Optional secondary copy shown beneath the label. */
|
|
7028
|
+
description?: string;
|
|
7029
|
+
disabled?: boolean;
|
|
7030
|
+
/** Tooltip shown on hover, i.e. to explain why the option is disabled. */
|
|
7031
|
+
tooltip?: string;
|
|
7032
|
+
/** The value of the SelectCardGroup item, stored in value array in state. */
|
|
7033
|
+
value: V;
|
|
7034
|
+
/** Exclusive: if true, this option will override all other options when selected. */
|
|
7035
|
+
exclusive?: boolean;
|
|
7036
|
+
};
|
|
7037
|
+
type SelectCardGroupProps<V extends Value> = {
|
|
7038
|
+
label: string;
|
|
7039
|
+
/** Called when a card is selected */
|
|
7040
|
+
onChange: (values: V[]) => void;
|
|
7041
|
+
/** Options for the cards contained within the SelectCardGroup. */
|
|
7042
|
+
options: SelectCardGroupItemOption<V>[];
|
|
7043
|
+
/** The values currently selected. */
|
|
7044
|
+
values: V[];
|
|
7045
|
+
errorMsg?: string;
|
|
7046
|
+
helperText?: string | ReactNode;
|
|
7047
|
+
disabled?: boolean;
|
|
7048
|
+
} & Pick<PresentationFieldProps, "labelStyle">;
|
|
7049
|
+
declare function SelectCardGroup<V extends Value>(props: SelectCardGroupProps<V>): JSX.Element;
|
|
7050
|
+
|
|
7013
7051
|
type SelectFieldProps<O, V extends Value> = {
|
|
7014
7052
|
/** The current value; it can be `undefined`, even if `V` cannot be. */
|
|
7015
7053
|
value: V | undefined;
|
|
@@ -7659,47 +7697,6 @@ type BoundDateRangeFieldProps = Omit<DateRangeFieldProps, "label" | "value" | "o
|
|
|
7659
7697
|
/** Wraps `TextField` and binds it to a form field. */
|
|
7660
7698
|
declare function BoundDateRangeField(props: BoundDateRangeFieldProps): JSX.Element;
|
|
7661
7699
|
|
|
7662
|
-
type BoundIconCardFieldProps = Omit<IconCardProps, "label" | "selected" | "onChange"> & {
|
|
7663
|
-
field: FieldState<boolean | null | undefined>;
|
|
7664
|
-
icon: IconProps["icon"];
|
|
7665
|
-
/** Make optional so that callers can override if they want to. */
|
|
7666
|
-
onChange?: (values: boolean) => void;
|
|
7667
|
-
label?: string;
|
|
7668
|
-
};
|
|
7669
|
-
/** Wraps `IconCard` and binds it to a form field. */
|
|
7670
|
-
declare function BoundIconCardField(props: BoundIconCardFieldProps): JSX.Element;
|
|
7671
|
-
|
|
7672
|
-
interface IconCardGroupItemOption<V extends Value> {
|
|
7673
|
-
icon: IconProps["icon"];
|
|
7674
|
-
label: string;
|
|
7675
|
-
disabled?: boolean;
|
|
7676
|
-
/** The value of the IconCardGroup item, stored in value array in state. */
|
|
7677
|
-
value: V;
|
|
7678
|
-
/** Exclusive: if true, this option will override all other options when selected. */
|
|
7679
|
-
exclusive?: boolean;
|
|
7680
|
-
}
|
|
7681
|
-
interface IconCardGroupProps<V extends Value> extends Pick<PresentationFieldProps, "labelStyle"> {
|
|
7682
|
-
label: string;
|
|
7683
|
-
/** Called when a card is selected */
|
|
7684
|
-
onChange: (values: V[]) => void;
|
|
7685
|
-
/** Options for the cards contained within the IconCardGroup. */
|
|
7686
|
-
options: IconCardGroupItemOption<V>[];
|
|
7687
|
-
/** The values currently selected. */
|
|
7688
|
-
values: V[];
|
|
7689
|
-
errorMsg?: string;
|
|
7690
|
-
helperText?: string | ReactNode;
|
|
7691
|
-
disabled?: boolean;
|
|
7692
|
-
}
|
|
7693
|
-
|
|
7694
|
-
type BoundIconCardGroupFieldProps<V extends Value> = Omit<IconCardGroupProps<V>, "label" | "values" | "onChange"> & {
|
|
7695
|
-
field: FieldState<V[] | null | undefined>;
|
|
7696
|
-
/** Make optional so that callers can override if they want to. */
|
|
7697
|
-
onChange?: (values: V[]) => void;
|
|
7698
|
-
label?: string;
|
|
7699
|
-
};
|
|
7700
|
-
/** Wraps `IconCardGroup` and binds it to a form field. */
|
|
7701
|
-
declare function BoundIconCardGroupField<V extends Value>(props: BoundIconCardGroupFieldProps<V>): JSX.Element;
|
|
7702
|
-
|
|
7703
7700
|
type ListFieldKey<F> = {
|
|
7704
7701
|
[K in keyof F]: F[K] extends (infer T)[] | null | undefined ? (T extends object ? K : never) : never;
|
|
7705
7702
|
}[keyof F];
|
|
@@ -7768,6 +7765,25 @@ type BoundRichTextFieldProps = Omit<RichTextFieldProps, "value" | "onChange"> &
|
|
|
7768
7765
|
/** Wraps `RichTextField` and binds it to a form field. */
|
|
7769
7766
|
declare function BoundRichTextField(props: BoundRichTextFieldProps): JSX.Element;
|
|
7770
7767
|
|
|
7768
|
+
type BoundSelectCardFieldProps = Omit<SelectCardProps, "label" | "selected" | "onChange"> & {
|
|
7769
|
+
field: FieldState<boolean | null | undefined>;
|
|
7770
|
+
icon: IconProps["icon"];
|
|
7771
|
+
/** Make optional so that callers can override if they want to. */
|
|
7772
|
+
onChange?: (values: boolean) => void;
|
|
7773
|
+
label?: string;
|
|
7774
|
+
};
|
|
7775
|
+
/** Wraps `SelectCard` and binds it to a form field. */
|
|
7776
|
+
declare function BoundSelectCardField(props: BoundSelectCardFieldProps): JSX.Element;
|
|
7777
|
+
|
|
7778
|
+
type BoundSelectCardGroupFieldProps<V extends Value> = Omit<SelectCardGroupProps<V>, "label" | "values" | "onChange"> & {
|
|
7779
|
+
field: FieldState<V[] | null | undefined>;
|
|
7780
|
+
/** Make optional so that callers can override if they want to. */
|
|
7781
|
+
onChange?: (values: V[]) => void;
|
|
7782
|
+
label?: string;
|
|
7783
|
+
};
|
|
7784
|
+
/** Wraps `SelectCardGroup` and binds it to a form field. */
|
|
7785
|
+
declare function BoundSelectCardGroupField<V extends Value>(props: BoundSelectCardGroupFieldProps<V>): JSX.Element;
|
|
7786
|
+
|
|
7771
7787
|
type BoundSelectFieldProps<O, V extends Value> = Omit<SelectFieldProps<O, V>, "value" | "onSelect" | "label"> & {
|
|
7772
7788
|
/** Optional, to allow `onSelect` to be overridden to do more than just `field.set`. */
|
|
7773
7789
|
onSelect?: (value: V | undefined, opt: O | undefined) => void;
|
|
@@ -7909,8 +7925,8 @@ declare function boundDateField(props?: Omit<BoundDateFieldProps, KeysToOmit>):
|
|
|
7909
7925
|
declare function boundDateRangeField(props?: Omit<BoundDateRangeFieldProps, KeysToOmit>): (field: FieldState<any>) => BoundFieldInputFnReturn;
|
|
7910
7926
|
declare function boundCheckboxField(props?: Omit<BoundCheckboxFieldProps, KeysToOmit>): (field: FieldState<any>) => BoundFieldInputFnReturn;
|
|
7911
7927
|
declare function boundCheckboxGroupField(props: Omit<BoundCheckboxGroupFieldProps, KeysToOmit>): (field: FieldState<any>) => BoundFieldInputFnReturn;
|
|
7912
|
-
declare function
|
|
7913
|
-
declare function
|
|
7928
|
+
declare function boundSelectCardField(props: Omit<BoundSelectCardFieldProps, KeysToOmit>): (field: FieldState<any>) => BoundFieldInputFnReturn;
|
|
7929
|
+
declare function boundSelectCardGroupField<V extends Value>(props: Omit<BoundSelectCardGroupFieldProps<V>, KeysToOmit>): (field: FieldState<any>) => BoundFieldInputFnReturn;
|
|
7914
7930
|
declare function boundRadioGroupField<K extends string>(props: Omit<BoundRadioGroupFieldProps<K>, KeysToOmit>): (field: FieldState<any>) => BoundFieldInputFnReturn;
|
|
7915
7931
|
declare function boundRichTextField(props?: Omit<BoundRichTextFieldProps, KeysToOmit>): (field: FieldState<any>) => BoundFieldInputFnReturn;
|
|
7916
7932
|
declare function boundSwitchField(props?: Omit<BoundSwitchFieldProps, KeysToOmit>): (field: FieldState<any>) => BoundFieldInputFnReturn;
|
|
@@ -9137,4 +9153,4 @@ declare const zIndices: {
|
|
|
9137
9153
|
};
|
|
9138
9154
|
type ZIndex = (typeof zIndices)[keyof typeof zIndices];
|
|
9139
9155
|
|
|
9140
|
-
export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, type ActionButtonProps, type AppEnvironment, type AppNavGroup, type AppNavItem, type AppNavLink, type AppNavSection, type AppNavSectionItem, AutoSaveIndicator, AutoSaveStatus, AutoSaveStatusContext, AutoSaveStatusProvider, Autocomplete, type AutocompleteProps, Avatar, AvatarButton, type AvatarButtonProps, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, Banner, type BannerProps, type BannerTypes, BaseFilter, type BaseQueryTableProps, type BaseTableProps, type BeamButtonProps, type BeamColor, type BeamFocusableProps, BeamProvider, type BeamTextFieldProps, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundIconCardField, type BoundIconCardFieldProps, BoundIconCardGroupField, type BoundIconCardGroupFieldProps, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardBadgeSlot, type CardDataBlockSlot, type CardEyebrowSlot, type CardProgressSlot, type CardProps, type CardSlot, type CardStatusSlot, type CardTag, type CardTitleSlot, type CardType, type CheckFn, Checkbox, CheckboxGroup, type CheckboxGroupItemOption, type CheckboxGroupProps, type CheckboxProps, Chip, type ChipProps, ChipSelectField, type ChipSelectFieldProps, type ChipType, ChipTypes, type ChipValue, Chips, type ChipsProps, CollapseToggle, CollapsedContext, type ColumnLayoutResult, ConfirmCloseModal, type ContentStack, ContrastScope, Copy, CountBadge, type CountBadgeProps, Css, CssReset, type CssSetVarKeys, type CssSetVarScalar, type CssSetVarValue, DESC, DateField, type DateFieldFormat, type DateFieldMode, type DateFieldProps, type DateFilterValue, type DateMatcher, type DateRange, DateRangeField, type DateRangeFieldProps, type DateRangeFilterValue, type DefinedFilterValue, type Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, type DocumentTitleConfig, DocumentTitleProvider, type DragData, EXPANDABLE_HEADER, EditColumnsButton, EnvironmentBanner, EnvironmentBannerLayout, type EnvironmentBannerLayoutProps, type EnvironmentBannerProps, type EnvironmentFaviconUrls, ErrorMessage, FieldGroup, type Filter, type FilterDefs, _FilterDropdownMenu as FilterDropdownMenu, type FilterImpls, FilterModal, _Filters as Filters, type FixedSort, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, type FormSectionConfig, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, HelperText, HomeboundLogo, Icon, IconButton, type IconButtonProps, type IconButtonVariant, IconCard, type IconCardProps, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type ImpersonatedUser, type InfiniteScroll, type InlineStyle, type InputStylePalette, KEPT_GROUP, type Kinded, Loader, LoadingSkeleton, type LoadingSkeletonProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectField, type MultiSelectFieldProps, NavLink, type NavLinkProps, type NavLinkVariant, Navbar, NavbarLayout, type NavbarLayoutProps, type NavbarProps, type NavbarUser, type NestedOption, type NestedOptionsOrLoad, NumberField, type NumberFieldProps, type NumberFieldType, type OffsetAndLimit, type OnRowDragEvent, type OnRowSelect, type Only, type OpenDetailOpts, type OpenInDrawerOpts, OpenModal, type OpenRightPaneOpts, type Optional, type Padding, PageHeader, PageHeaderLayout, type PageHeaderLayoutProps, type PageHeaderProps, type PageNumberAndSize, type PageSettings, Pagination, Palette, PinToggle, type Placement, type PlainDate, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, ResponsiveGrid, type ResponsiveGridConfig, ResponsiveGridContext, ResponsiveGridItem, type ResponsiveGridItemProps, type ResponsiveGridProps, RichTextField, RichTextFieldImpl, type RichTextFieldProps, RightPaneContext, RightPaneLayout, type RightPaneLayoutContextProps, RightPaneProvider, RightSidebar, type RightSidebarProps, type RouteTab, type RouteTabWithContent, Row, type RowStyle, type RowStyles, RuntimeCss, type RuntimeStyles, SIDE_NAV_LAYOUT_STATE_STORAGE_KEY, ScrollShadows, ScrollableContent, ScrollableFooter, ScrollableParent, SelectField, type SelectFieldProps, SelectToggle, type SelectedFilterLabelValue, type SelectedState, SideNav, SideNavLayout, type SideNavLayoutContextProps, type SideNavLayoutProps, SideNavLayoutProvider, type SideNavLayoutState, type SideNavProps, type SidePanelProps, type SidebarContentProps, type SimpleHeaderAndData, SortHeader, type SortOn, type SortState, StaticField, type Step, Stepper, type StepperProps, type StyleKind, SubmitButton, type SubmitButtonProps, SuperDrawerContent, SuperDrawerHeader, SuperDrawerWidth, type SupportedDateFormat, Switch, type SwitchProps, TOTALS, type Tab, TabContent, type TabWithContent, TableReviewLayout, type TableReviewLayoutProps, TableState, TableStateContext, type TableView, Tabs, TabsWithContent, Tag, type TagProps, type TagType, type TagXss, type TestIds, TextAreaField, type TextAreaFieldProps, TextField, type TextFieldApi, type TextFieldInternalProps, type TextFieldProps, type TextFieldXss, Toast, ToggleButton, type ToggleButtonProps, ToggleChip, ToggleChipGroup, type ToggleChipGroupProps, type ToggleChipProps, ToggleChips, type ToggleChipsProps, Tokens, Tooltip, TreeSelectField, type TreeSelectFieldProps, type TriggerNoticeProps, type Typography, type UseModalHook, type UsePersistedFilterProps, type UseQueryState, type UseRightPaneHook, type UseSnackbarHook, type UseSuperDrawerHook, type UseToastProps, type Value, ViewToggleButton, type Xss, type ZIndex, actionColumn, applyRowFn, assignDefaultColumnIds, bannerAndNavbarChromeTop, beamEnvironmentBannerLayoutHeightVar, beamLayoutViewportHeightVar, beamLayoutViewportWidthVar, beamNavbarLayoutHeightVar, beamPageHeaderLayoutHeightVar, beamSideNavLayoutWidthVar, beamTableActionsHeightVar, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundIconCardField, boundIconCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnLayout, calcColumnSizes, cardBadgeSlot, cardDataBlockSlot, cardEyebrowSlot, cardProgressSlot, cardStatusSlot, cardStyle, cardTitleSlot, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, contrastDataTheme, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, documentScrollChromeLeft, documentScrollChromeWidth, dragHandleColumn, emptyCell, ensureClientSideSortValueIsSortable, environmentBannerSizePx, filterTestIdPrefix, formatDate, formatDateRange, formatPlainDate, formatValue, generateColumnId, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getJustification, getNavLinkStyles, getTableRefWidthStyles, getTableStyles, headerRenderFn, hoverStyles, iconCardStylesHover, increment, insertAtIndex, isContentColumn, isCursorBelowMidpoint, isGridCellContent, isGridTableProps, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, joinDocumentTitleSegments, layoutGutterLeftColumnId, layoutGutterRightColumnId, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeCssVar, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pinColumn, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveTableContentWidth, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, selectedStyles, setDefaultStyle, setEnvironmentFavicon, setGridTableDefaults, setRunningInJest, shouldShowEnvironmentBanner, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, stickyNavAndHeaderOffset, stickyTableHeaderOffset, sumColumnSizesPx, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBreakpoint, useComputed, useContentOverflow, useContrastScope, useDnDGridItem, type useDnDGridItemProps, useDocumentTitle, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHasSideNavLayoutProvider, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneContext, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSideNavLayoutContext, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, withColumnGutters, zIndices };
|
|
9156
|
+
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, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectCardField, type BoundSelectCardFieldProps, BoundSelectCardGroupField, type BoundSelectCardGroupFieldProps, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardBadgeSlot, type CardDataBlockSlot, type CardEyebrowSlot, type CardProgressSlot, type CardProps, type CardSlot, type CardStatusSlot, type CardTag, type CardTitleSlot, type CardType, type CheckFn, Checkbox, CheckboxGroup, type CheckboxGroupItemOption, type CheckboxGroupProps, type CheckboxProps, Chip, type ChipProps, ChipSelectField, type ChipSelectFieldProps, type ChipType, ChipTypes, type ChipValue, Chips, type ChipsProps, CollapseToggle, CollapsedContext, type ColumnLayoutResult, ConfirmCloseModal, type ContentStack, ContrastScope, Copy, CountBadge, type CountBadgeProps, Css, CssReset, type CssSetVarKeys, type CssSetVarScalar, type CssSetVarValue, DESC, DateField, type DateFieldFormat, type DateFieldMode, type DateFieldProps, type DateFilterValue, type DateMatcher, type DateRange, DateRangeField, type DateRangeFieldProps, type DateRangeFilterValue, type DefinedFilterValue, type Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, type DocumentTitleConfig, DocumentTitleProvider, type DragData, EXPANDABLE_HEADER, EditColumnsButton, EnvironmentBanner, EnvironmentBannerLayout, type EnvironmentBannerLayoutProps, type EnvironmentBannerProps, type EnvironmentFaviconUrls, ErrorMessage, FieldGroup, type Filter, type FilterDefs, _FilterDropdownMenu as FilterDropdownMenu, type FilterImpls, FilterModal, _Filters as Filters, type FixedSort, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, type FormSectionConfig, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTablePropsWithRows, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, HelperText, HomeboundLogo, Icon, IconButton, type IconButtonProps, type IconButtonVariant, 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, SelectCard, SelectCardGroup, type SelectCardGroupItemOption, type SelectCardGroupProps, type SelectCardProps, 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, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectCardField, boundSelectCardGroupField, 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, fillRowStyles, filterTestIdPrefix, formatDate, formatDateRange, formatPlainDate, formatValue, generateColumnId, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getJustification, getNavLinkStyles, getTableRefWidthStyles, getTableStyles, 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, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pinColumn, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveTableContentWidth, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, setDefaultStyle, setEnvironmentFavicon, setGridTableDefaults, setRunningInJest, shouldShowEnvironmentBanner, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, stickyNavAndHeaderOffset, stickyTableHeaderOffset, sumColumnSizesPx, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBreakpoint, useComputed, useContentOverflow, useContrastScope, useDnDGridItem, type useDnDGridItemProps, useDocumentTitle, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHasSideNavLayoutProvider, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneContext, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSideNavLayoutContext, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, withColumnGutters, zIndices };
|