@homebound/beam 3.1.0-alpha.2 → 3.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -2,10 +2,11 @@ import * as csstype from 'csstype';
2
2
  import { Properties as Properties$1 } from 'csstype';
3
3
  import * as React$1 from 'react';
4
4
  import React__default, { PropsWithChildren, AriaAttributes, ReactNode, ReactElement, MutableRefObject, Dispatch, SetStateAction, RefObject, ButtonHTMLAttributes, KeyboardEvent, LabelHTMLAttributes, InputHTMLAttributes, TextareaHTMLAttributes, Key, HTMLAttributes, ReactPortal } from 'react';
5
- import { Temporal } from 'temporal-polyfill';
6
5
  import { DOMProps, PressEvent, Key as Key$1 } from '@react-types/shared';
7
6
  import { VirtuosoHandle, ListRange } from 'react-virtuoso';
8
7
  import { AriaButtonProps } from '@react-types/button';
8
+ import { Matcher, DateRange } from 'react-day-picker';
9
+ export { DateRange } from 'react-day-picker';
9
10
  import { MenuTriggerState } from 'react-stately';
10
11
  import { FieldState, ListFieldState, ObjectState } from '@homebound/form-state';
11
12
  import { NumberFieldAria } from '@react-aria/numberfield';
@@ -4261,12 +4262,6 @@ declare enum Breakpoints {
4261
4262
  mdOrLg = "@media screen and (min-width: 600px)"
4262
4263
  }
4263
4264
 
4264
- type PlainDate = Temporal.PlainDate;
4265
- type DateRange = {
4266
- from: PlainDate | undefined;
4267
- to?: PlainDate | undefined;
4268
- };
4269
- type DateMatcher = PlainDate | PlainDate[] | DateRange | ((date: PlainDate) => boolean);
4270
4265
  type HasIdIsh<V = string> = {
4271
4266
  id: V;
4272
4267
  } | {
@@ -5895,13 +5890,13 @@ declare function Button(props: ButtonProps): JSX.Element;
5895
5890
  type ButtonSize = "sm" | "md" | "lg";
5896
5891
  type ButtonVariant = "primary" | "secondary" | "secondaryBlack" | "tertiary" | "tertiaryDanger" | "caution" | "danger" | "quaternary" | "text" | "textSecondary";
5897
5892
 
5898
- type DatePickerProps = {
5899
- value?: PlainDate;
5900
- onSelect: (value: PlainDate) => void;
5901
- disabledDays?: DateMatcher | DateMatcher[];
5902
- dottedDays?: DateMatcher | DateMatcher[];
5893
+ interface DatePickerProps {
5894
+ value?: Date;
5895
+ onSelect: (value: Date) => void;
5896
+ disabledDays?: Matcher | Matcher[];
5897
+ dottedDays?: Matcher[];
5903
5898
  useYearPicker?: boolean;
5904
- };
5899
+ }
5905
5900
 
5906
5901
  interface IconButtonProps extends BeamButtonProps, BeamFocusableProps {
5907
5902
  /** The icon to use within the button. */
@@ -6227,20 +6222,6 @@ interface Filter<V> {
6227
6222
  hideLabelInModal?: boolean;
6228
6223
  /** The default value to use in `usePersistedFilter` for creating the initial filter. */
6229
6224
  defaultValue: V | undefined;
6230
- /**
6231
- * Rehydrates persisted query/session values back into the filter's runtime shape.
6232
- *
6233
- * This exists because persisted filter state is JSON-based, so rich values like
6234
- * `Temporal.PlainDate` round-trip as strings and need explicit reconstruction.
6235
- */
6236
- hydrate?(value: unknown): V | undefined;
6237
- /**
6238
- * Converts the filter's runtime value into a JSON-safe value for query params/session storage.
6239
- *
6240
- * This keeps persistence stable for non-plain JS values and lets filters preserve
6241
- * backwards-compatible serialized formats when needed.
6242
- */
6243
- dehydrate?(value: V | undefined): unknown;
6244
6225
  /** Renders the filter into either the page or the modal. */
6245
6226
  render(value: V | undefined, setValue: (value: V | undefined) => void, tid: TestIds, inModal: boolean, vertical: boolean): JSX.Element;
6246
6227
  }
@@ -6394,24 +6375,21 @@ type ListBoxSection<O> = {
6394
6375
  };
6395
6376
  declare function isListBoxSection<O>(obj: O | ListBoxSection<O>): obj is ListBoxSection<O>;
6396
6377
 
6397
- type SupportedDateFormat = "shortDate" | "date" | "shortWeekdayMonthDay" | "longWeekdayMonthDayYear" | "monthYear" | "shortMonth" | "year" | "weekdayInitial" | "weekday";
6398
- declare function formatPlainDate(date: PlainDate, format: SupportedDateFormat): string;
6399
-
6378
+ type DateFieldModeTuple = readonly ["range", DateRange] | readonly ["single", Date];
6400
6379
  type DateFieldMode = "single" | "range";
6401
6380
  declare const dateFormats: {
6402
- readonly short: "shortDate";
6403
- readonly medium: "shortWeekdayMonthDay";
6404
- readonly long: "longWeekdayMonthDayYear";
6405
- };
6406
- type DateFieldFormat = (typeof dateFormats)[keyof typeof dateFormats];
6407
- declare function getDateFormat(format: keyof typeof dateFormats | undefined): "shortDate" | "shortWeekdayMonthDay" | "longWeekdayMonthDayYear";
6408
- declare function formatDate(date: PlainDate | undefined, format: SupportedDateFormat): string;
6409
- declare function formatDateRange(date: DateRange | undefined, format: SupportedDateFormat): string | undefined;
6410
- declare function parseDate(str: string, format: DateFieldFormat | "date"): PlainDate | undefined;
6411
- declare function parseDateRange(str: string, format: DateFieldFormat | "date"): DateRange | undefined;
6412
- declare function isValidDate(d: PlainDate | undefined): boolean;
6413
-
6414
- type DateFieldBaseProps = Pick<TextFieldBaseProps<Properties>, "borderless" | "visuallyDisabled" | "labelStyle" | "compact" | "fullWidth"> & {
6381
+ short: string;
6382
+ medium: string;
6383
+ long: string;
6384
+ };
6385
+ declare function getDateFormat(format: keyof typeof dateFormats | undefined): string;
6386
+ declare function formatDate(date: Date | undefined, format: string): string;
6387
+ declare function formatDateRange(date: DateRange | undefined, format: string): string | undefined;
6388
+ declare function parseDate(str: string, format: string): Date | undefined;
6389
+ declare function parseDateRange(str: string, format: string): DateRange | undefined;
6390
+ declare function isValidDate(d: Date | undefined): boolean;
6391
+
6392
+ interface DateFieldBaseProps extends Pick<TextFieldBaseProps<Properties>, "borderless" | "visuallyDisabled" | "labelStyle" | "compact" | "fullWidth"> {
6415
6393
  label: string;
6416
6394
  /** Called when the component loses focus */
6417
6395
  onBlur?: () => void;
@@ -6430,28 +6408,29 @@ type DateFieldBaseProps = Pick<TextFieldBaseProps<Properties>, "borderless" | "v
6430
6408
  hideCalendarIcon?: boolean;
6431
6409
  /**
6432
6410
  * Set custom logic for individual dates or date ranges to be disabled in the picker
6411
+ * exposed from `react-day-picker`: https://react-day-picker.js.org/api/DayPicker#modifiers
6433
6412
  */
6434
- disabledDays?: DateMatcher | DateMatcher[];
6413
+ disabledDays?: Matcher | Matcher[];
6435
6414
  onEnter?: VoidFunction;
6436
6415
  /** for storybook */
6437
6416
  defaultOpen?: boolean;
6438
- onChange: ((value: PlainDate | undefined) => void) | ((value: DateRange | undefined) => void);
6417
+ onChange: ((value: Date | undefined) => void) | ((value: DateRange | undefined) => void);
6439
6418
  mode: DateFieldMode;
6440
6419
  /** Range filters should only allow a full DateRange or nothing */
6441
6420
  isRangeFilterField?: boolean;
6442
6421
  /** Render header that skips years in addition to months */
6443
6422
  useYearPicker?: boolean;
6444
- };
6445
- type DateSingleFieldBaseProps = DateFieldBaseProps & {
6423
+ }
6424
+ interface DateSingleFieldBaseProps extends DateFieldBaseProps {
6446
6425
  mode: "single";
6447
- value: PlainDate | undefined;
6448
- onChange: (value: PlainDate | undefined) => void;
6449
- };
6450
- type DateRangeFieldBaseProps = DateFieldBaseProps & {
6426
+ value: Date | undefined;
6427
+ onChange: (value: Date | undefined) => void;
6428
+ }
6429
+ interface DateRangeFieldBaseProps extends DateFieldBaseProps {
6451
6430
  mode: "range";
6452
6431
  value: DateRange | undefined;
6453
6432
  onChange: (value: DateRange | undefined) => void;
6454
- };
6433
+ }
6455
6434
 
6456
6435
  interface DateFieldProps extends Omit<DateSingleFieldBaseProps, "mode"> {
6457
6436
  }
@@ -6921,14 +6900,16 @@ type TreeSelectFieldProps<O, V extends Value> = {
6921
6900
  * @default root */
6922
6901
  chipDisplay?: "all" | "leaf" | "root";
6923
6902
  disabledOptions?: V[];
6903
+ groupOptions?: V[];
6924
6904
  } & BeamFocusableProps & PresentationFieldProps;
6925
6905
  declare function TreeSelectField<O, V extends Value>(props: TreeSelectFieldProps<O, V>): JSX.Element;
6926
6906
  declare function TreeSelectField<O extends HasIdAndName<V>, V extends Value>(props: Optional<TreeSelectFieldProps<O, V>, "getOptionValue" | "getOptionLabel">): JSX.Element;
6927
- declare function useTreeSelectFieldProvider<O, V extends Value>(): CollapsedChildrenState<any, any>;
6907
+ declare function useTreeSelectFieldProvider<O, V extends Value>(): CollapsedChildrenState<O, V>;
6928
6908
  type CollapsedChildrenState<O, V extends Value> = {
6929
6909
  collapsedKeys: Key$1[];
6930
6910
  setCollapsedKeys: Dispatch<SetStateAction<Key$1[]>>;
6931
6911
  getOptionValue: (opt: O) => V;
6912
+ groupKeys: Key$1[];
6932
6913
  };
6933
6914
  declare const CollapsedContext: React__default.Context<CollapsedChildrenState<any, any>>;
6934
6915
 
@@ -6941,7 +6922,7 @@ type DateFilterProps<O, V extends Value, DV extends DateFilterValue<V>> = {
6941
6922
  };
6942
6923
  type DateFilterValue<V extends Value> = {
6943
6924
  op: V;
6944
- value: PlainDate;
6925
+ value: Date;
6945
6926
  };
6946
6927
  declare function dateFilter<O, V extends Value>(props: DateFilterProps<O, V, DateFilterValue<V>>): (key: string) => Filter<DateFilterValue<V>>;
6947
6928
 
@@ -6949,7 +6930,7 @@ type DateRangeFilterProps<O extends string> = {
6949
6930
  label: string;
6950
6931
  defaultValue?: DateRangeFilterValue<O>;
6951
6932
  placeholderText?: string;
6952
- disabledDays?: DateMatcher | DateMatcher[];
6933
+ disabledDays?: Matcher | Matcher[];
6953
6934
  testFieldLabel?: string;
6954
6935
  };
6955
6936
  type DateRangeFilterValue<O extends string> = {
@@ -7310,9 +7291,9 @@ declare function BoundChipSelectField<O, V extends Value>(props: BoundChipSelect
7310
7291
  declare function BoundChipSelectField<O extends HasIdAndName<V>, V extends Value>(props: Optional<BoundChipSelectFieldProps<O, V>, "getOptionValue" | "getOptionLabel">): JSX.Element;
7311
7292
 
7312
7293
  type BoundDateFieldProps = Omit<DateFieldProps, "label" | "value" | "onChange"> & {
7313
- field: FieldState<PlainDate | null | undefined>;
7294
+ field: FieldState<Date | null | undefined>;
7314
7295
  label?: string;
7315
- onChange?: (value: PlainDate | undefined) => void;
7296
+ onChange?: (value: Date | undefined) => void;
7316
7297
  };
7317
7298
  /** Wraps `TextField` and binds it to a form field. */
7318
7299
  declare function BoundDateField(props: BoundDateFieldProps): JSX.Element;
@@ -7786,14 +7767,14 @@ declare function useHover(props: useHoverProps): {
7786
7767
  isHovered: boolean;
7787
7768
  };
7788
7769
 
7789
- type UsePersistedFilterProps<F> = {
7770
+ interface UsePersistedFilterProps<F> {
7790
7771
  filterDefs: FilterDefs<F>;
7791
7772
  storageKey: string;
7792
- };
7793
- type PersistedFilterHook<F> = {
7773
+ }
7774
+ interface PersistedFilterHook<F> {
7794
7775
  filter: F;
7795
7776
  setFilter: (filter: F) => void;
7796
- };
7777
+ }
7797
7778
  /**
7798
7779
  * Persists filter details in both browser storage and query parameters.
7799
7780
  * If a valid filter is present in the query params, then that will be used.
@@ -8534,4 +8515,4 @@ declare function resolveTooltip(disabled?: boolean | ReactNode, tooltip?: ReactN
8534
8515
  */
8535
8516
  declare function defaultTestId(label: string): string;
8536
8517
 
8537
- export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, 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 BeamButtonProps, type BeamFocusableProps, BeamProvider, type BeamTextFieldProps, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundIconCardField, type BoundIconCardFieldProps, BoundIconCardGroupField, type BoundIconCardGroupFieldProps, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardProps, type CardTag, type CardType, type CheckFn, Checkbox, CheckboxGroup, type CheckboxGroupItemOption, type CheckboxGroupProps, type CheckboxProps, Chip, type ChipProps, ChipSelectField, type ChipSelectFieldProps, type ChipType, ChipTypes, type ChipValue, Chips, type ChipsProps, CollapseToggle, CollapsedContext, ConfirmCloseModal, type ContentStack, Copy, CountBadge, type CountBadgeProps, Css, CssReset, DESC, DateField, type DateFieldFormat, type DateFieldMode, type DateFieldProps, type DateFilterValue, type DateMatcher, type DateRange, DateRangeField, type DateRangeFieldProps, type DateRangeFilterValue, type Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, type DragData, EXPANDABLE_HEADER, EditColumnsButton, ErrorMessage, FieldGroup, type Filter, type FilterDefs, _FilterDropdownMenu as FilterDropdownMenu, type FilterImpls, FilterModal, _Filters as Filters, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, type FormSectionConfig, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, HelperText, Icon, IconButton, type IconButtonProps, IconCard, type IconCardProps, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type InfiniteScroll, type InlineStyle, type InputStylePalette, KEPT_GROUP, type Kinded, Loader, LoadingSkeleton, type LoadingSkeletonProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectField, type MultiSelectFieldProps, NavLink, type NestedOption, type NestedOptionsOrLoad, NumberField, type NumberFieldProps, type NumberFieldType, type OffsetAndLimit, type OnRowDragEvent, type OnRowSelect, type Only, type OpenDetailOpts, type OpenInDrawerOpts, OpenModal, type OpenRightPaneOpts, type Optional, type Padding, type PageNumberAndSize, type PageSettings, Pagination, type PaginationConfig, Palette, type Pin, type Placement, type PlainDate, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, ResponsiveGrid, type ResponsiveGridConfig, ResponsiveGridContext, ResponsiveGridItem, type ResponsiveGridItemProps, type ResponsiveGridProps, RichTextField, RichTextFieldImpl, type RichTextFieldProps, RightPaneContext, RightPaneLayout, type RightPaneLayoutContextProps, RightPaneProvider, RightSidebar, type RightSidebarProps, type RouteTab, type RouteTabWithContent, Row, type RowStyle, type RowStyles, RuntimeCss, type RuntimeStyles, ScrollShadows, ScrollableContent, ScrollableParent, SelectField, type SelectFieldProps, SelectToggle, type SelectedState, 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, TableState, TableStateContext, Tabs, TabsWithContent, Tag, type TagType, type TestIds, TextAreaField, type TextAreaFieldProps, TextField, type TextFieldApi, type TextFieldInternalProps, type TextFieldProps, type TextFieldXss, Toast, ToggleButton, type ToggleButtonProps, ToggleChip, ToggleChipGroup, type ToggleChipGroupProps, type ToggleChipProps, ToggleChips, type ToggleChipsProps, Tooltip, TreeSelectField, type TreeSelectFieldProps, type TriggerNoticeProps, type Typography, type UseModalHook, type UsePersistedFilterProps, type UseQueryState, type UseRightPaneHook, type UseSnackbarHook, type UseSuperDrawerHook, type UseToastProps, type Value, type Xss, actionColumn, applyRowFn, assignDefaultColumnIds, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundIconCardField, boundIconCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnSizes, cardStyle, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, dragHandleColumn, emptyCell, ensureClientSideSortValueIsSortable, filterTestIdPrefix, formatDate, formatDateRange, formatPlainDate, formatValue, generateColumnId, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getJustification, getTableRefWidthStyles, getTableStyles, headerRenderFn, hoverStyles, iconButtonCircleStylesHover, iconButtonContrastStylesHover, iconButtonStylesHover, iconCardStylesHover, increment, insertAtIndex, isCursorBelowMidpoint, isGridCellContent, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, selectedStyles, setDefaultStyle, setGridTableDefaults, setRunningInJest, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBreakpoint, useComputed, useDnDGridItem, type useDnDGridItemProps, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneContext, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, zIndices };
8518
+ export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, 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 BeamButtonProps, type BeamFocusableProps, BeamProvider, type BeamTextFieldProps, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundIconCardField, type BoundIconCardFieldProps, BoundIconCardGroupField, type BoundIconCardGroupFieldProps, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardProps, type CardTag, type CardType, type CheckFn, Checkbox, CheckboxGroup, type CheckboxGroupItemOption, type CheckboxGroupProps, type CheckboxProps, Chip, type ChipProps, ChipSelectField, type ChipSelectFieldProps, type ChipType, ChipTypes, type ChipValue, Chips, type ChipsProps, CollapseToggle, CollapsedContext, ConfirmCloseModal, type ContentStack, Copy, CountBadge, type CountBadgeProps, Css, CssReset, DESC, DateField, type DateFieldMode, type DateFieldModeTuple, type DateFieldProps, type DateFilterValue, DateRangeField, type DateRangeFieldProps, type DateRangeFilterValue, type Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, type DragData, EXPANDABLE_HEADER, EditColumnsButton, ErrorMessage, FieldGroup, type Filter, type FilterDefs, _FilterDropdownMenu as FilterDropdownMenu, type FilterImpls, FilterModal, _Filters as Filters, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, type FormSectionConfig, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, HelperText, Icon, IconButton, type IconButtonProps, IconCard, type IconCardProps, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type InfiniteScroll, type InlineStyle, type InputStylePalette, KEPT_GROUP, type Kinded, Loader, LoadingSkeleton, type LoadingSkeletonProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectField, type MultiSelectFieldProps, NavLink, type NestedOption, type NestedOptionsOrLoad, NumberField, type NumberFieldProps, type NumberFieldType, type OffsetAndLimit, type OnRowDragEvent, type OnRowSelect, type Only, type OpenDetailOpts, type OpenInDrawerOpts, OpenModal, type OpenRightPaneOpts, type Optional, type Padding, type PageNumberAndSize, type PageSettings, Pagination, type PaginationConfig, Palette, type Pin, type Placement, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, ResponsiveGrid, type ResponsiveGridConfig, ResponsiveGridContext, ResponsiveGridItem, type ResponsiveGridItemProps, type ResponsiveGridProps, RichTextField, RichTextFieldImpl, type RichTextFieldProps, RightPaneContext, RightPaneLayout, type RightPaneLayoutContextProps, RightPaneProvider, RightSidebar, type RightSidebarProps, type RouteTab, type RouteTabWithContent, Row, type RowStyle, type RowStyles, RuntimeCss, type RuntimeStyles, ScrollShadows, ScrollableContent, ScrollableParent, SelectField, type SelectFieldProps, SelectToggle, type SelectedState, type SidebarContentProps, type SimpleHeaderAndData, SortHeader, type SortOn, type SortState, StaticField, type Step, Stepper, type StepperProps, type StyleKind, SubmitButton, type SubmitButtonProps, SuperDrawerContent, SuperDrawerHeader, SuperDrawerWidth, Switch, type SwitchProps, TOTALS, type Tab, TabContent, type TabWithContent, TableState, TableStateContext, Tabs, TabsWithContent, Tag, type TagType, type TestIds, TextAreaField, type TextAreaFieldProps, TextField, type TextFieldApi, type TextFieldInternalProps, type TextFieldProps, type TextFieldXss, Toast, ToggleButton, type ToggleButtonProps, ToggleChip, ToggleChipGroup, type ToggleChipGroupProps, type ToggleChipProps, ToggleChips, type ToggleChipsProps, Tooltip, TreeSelectField, type TreeSelectFieldProps, type TriggerNoticeProps, type Typography, type UseModalHook, type UsePersistedFilterProps, type UseQueryState, type UseRightPaneHook, type UseSnackbarHook, type UseSuperDrawerHook, type UseToastProps, type Value, type Xss, actionColumn, applyRowFn, assignDefaultColumnIds, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundIconCardField, boundIconCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnSizes, cardStyle, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, dragHandleColumn, emptyCell, ensureClientSideSortValueIsSortable, filterTestIdPrefix, formatDate, formatDateRange, formatValue, generateColumnId, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getJustification, getTableRefWidthStyles, getTableStyles, headerRenderFn, hoverStyles, iconButtonCircleStylesHover, iconButtonContrastStylesHover, iconButtonStylesHover, iconCardStylesHover, increment, insertAtIndex, isCursorBelowMidpoint, isGridCellContent, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, selectedStyles, setDefaultStyle, setGridTableDefaults, setRunningInJest, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBreakpoint, useComputed, useDnDGridItem, type useDnDGridItemProps, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneContext, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, zIndices };
package/dist/index.d.ts CHANGED
@@ -2,10 +2,11 @@ import * as csstype from 'csstype';
2
2
  import { Properties as Properties$1 } from 'csstype';
3
3
  import * as React$1 from 'react';
4
4
  import React__default, { PropsWithChildren, AriaAttributes, ReactNode, ReactElement, MutableRefObject, Dispatch, SetStateAction, RefObject, ButtonHTMLAttributes, KeyboardEvent, LabelHTMLAttributes, InputHTMLAttributes, TextareaHTMLAttributes, Key, HTMLAttributes, ReactPortal } from 'react';
5
- import { Temporal } from 'temporal-polyfill';
6
5
  import { DOMProps, PressEvent, Key as Key$1 } from '@react-types/shared';
7
6
  import { VirtuosoHandle, ListRange } from 'react-virtuoso';
8
7
  import { AriaButtonProps } from '@react-types/button';
8
+ import { Matcher, DateRange } from 'react-day-picker';
9
+ export { DateRange } from 'react-day-picker';
9
10
  import { MenuTriggerState } from 'react-stately';
10
11
  import { FieldState, ListFieldState, ObjectState } from '@homebound/form-state';
11
12
  import { NumberFieldAria } from '@react-aria/numberfield';
@@ -4261,12 +4262,6 @@ declare enum Breakpoints {
4261
4262
  mdOrLg = "@media screen and (min-width: 600px)"
4262
4263
  }
4263
4264
 
4264
- type PlainDate = Temporal.PlainDate;
4265
- type DateRange = {
4266
- from: PlainDate | undefined;
4267
- to?: PlainDate | undefined;
4268
- };
4269
- type DateMatcher = PlainDate | PlainDate[] | DateRange | ((date: PlainDate) => boolean);
4270
4265
  type HasIdIsh<V = string> = {
4271
4266
  id: V;
4272
4267
  } | {
@@ -5895,13 +5890,13 @@ declare function Button(props: ButtonProps): JSX.Element;
5895
5890
  type ButtonSize = "sm" | "md" | "lg";
5896
5891
  type ButtonVariant = "primary" | "secondary" | "secondaryBlack" | "tertiary" | "tertiaryDanger" | "caution" | "danger" | "quaternary" | "text" | "textSecondary";
5897
5892
 
5898
- type DatePickerProps = {
5899
- value?: PlainDate;
5900
- onSelect: (value: PlainDate) => void;
5901
- disabledDays?: DateMatcher | DateMatcher[];
5902
- dottedDays?: DateMatcher | DateMatcher[];
5893
+ interface DatePickerProps {
5894
+ value?: Date;
5895
+ onSelect: (value: Date) => void;
5896
+ disabledDays?: Matcher | Matcher[];
5897
+ dottedDays?: Matcher[];
5903
5898
  useYearPicker?: boolean;
5904
- };
5899
+ }
5905
5900
 
5906
5901
  interface IconButtonProps extends BeamButtonProps, BeamFocusableProps {
5907
5902
  /** The icon to use within the button. */
@@ -6227,20 +6222,6 @@ interface Filter<V> {
6227
6222
  hideLabelInModal?: boolean;
6228
6223
  /** The default value to use in `usePersistedFilter` for creating the initial filter. */
6229
6224
  defaultValue: V | undefined;
6230
- /**
6231
- * Rehydrates persisted query/session values back into the filter's runtime shape.
6232
- *
6233
- * This exists because persisted filter state is JSON-based, so rich values like
6234
- * `Temporal.PlainDate` round-trip as strings and need explicit reconstruction.
6235
- */
6236
- hydrate?(value: unknown): V | undefined;
6237
- /**
6238
- * Converts the filter's runtime value into a JSON-safe value for query params/session storage.
6239
- *
6240
- * This keeps persistence stable for non-plain JS values and lets filters preserve
6241
- * backwards-compatible serialized formats when needed.
6242
- */
6243
- dehydrate?(value: V | undefined): unknown;
6244
6225
  /** Renders the filter into either the page or the modal. */
6245
6226
  render(value: V | undefined, setValue: (value: V | undefined) => void, tid: TestIds, inModal: boolean, vertical: boolean): JSX.Element;
6246
6227
  }
@@ -6394,24 +6375,21 @@ type ListBoxSection<O> = {
6394
6375
  };
6395
6376
  declare function isListBoxSection<O>(obj: O | ListBoxSection<O>): obj is ListBoxSection<O>;
6396
6377
 
6397
- type SupportedDateFormat = "shortDate" | "date" | "shortWeekdayMonthDay" | "longWeekdayMonthDayYear" | "monthYear" | "shortMonth" | "year" | "weekdayInitial" | "weekday";
6398
- declare function formatPlainDate(date: PlainDate, format: SupportedDateFormat): string;
6399
-
6378
+ type DateFieldModeTuple = readonly ["range", DateRange] | readonly ["single", Date];
6400
6379
  type DateFieldMode = "single" | "range";
6401
6380
  declare const dateFormats: {
6402
- readonly short: "shortDate";
6403
- readonly medium: "shortWeekdayMonthDay";
6404
- readonly long: "longWeekdayMonthDayYear";
6405
- };
6406
- type DateFieldFormat = (typeof dateFormats)[keyof typeof dateFormats];
6407
- declare function getDateFormat(format: keyof typeof dateFormats | undefined): "shortDate" | "shortWeekdayMonthDay" | "longWeekdayMonthDayYear";
6408
- declare function formatDate(date: PlainDate | undefined, format: SupportedDateFormat): string;
6409
- declare function formatDateRange(date: DateRange | undefined, format: SupportedDateFormat): string | undefined;
6410
- declare function parseDate(str: string, format: DateFieldFormat | "date"): PlainDate | undefined;
6411
- declare function parseDateRange(str: string, format: DateFieldFormat | "date"): DateRange | undefined;
6412
- declare function isValidDate(d: PlainDate | undefined): boolean;
6413
-
6414
- type DateFieldBaseProps = Pick<TextFieldBaseProps<Properties>, "borderless" | "visuallyDisabled" | "labelStyle" | "compact" | "fullWidth"> & {
6381
+ short: string;
6382
+ medium: string;
6383
+ long: string;
6384
+ };
6385
+ declare function getDateFormat(format: keyof typeof dateFormats | undefined): string;
6386
+ declare function formatDate(date: Date | undefined, format: string): string;
6387
+ declare function formatDateRange(date: DateRange | undefined, format: string): string | undefined;
6388
+ declare function parseDate(str: string, format: string): Date | undefined;
6389
+ declare function parseDateRange(str: string, format: string): DateRange | undefined;
6390
+ declare function isValidDate(d: Date | undefined): boolean;
6391
+
6392
+ interface DateFieldBaseProps extends Pick<TextFieldBaseProps<Properties>, "borderless" | "visuallyDisabled" | "labelStyle" | "compact" | "fullWidth"> {
6415
6393
  label: string;
6416
6394
  /** Called when the component loses focus */
6417
6395
  onBlur?: () => void;
@@ -6430,28 +6408,29 @@ type DateFieldBaseProps = Pick<TextFieldBaseProps<Properties>, "borderless" | "v
6430
6408
  hideCalendarIcon?: boolean;
6431
6409
  /**
6432
6410
  * Set custom logic for individual dates or date ranges to be disabled in the picker
6411
+ * exposed from `react-day-picker`: https://react-day-picker.js.org/api/DayPicker#modifiers
6433
6412
  */
6434
- disabledDays?: DateMatcher | DateMatcher[];
6413
+ disabledDays?: Matcher | Matcher[];
6435
6414
  onEnter?: VoidFunction;
6436
6415
  /** for storybook */
6437
6416
  defaultOpen?: boolean;
6438
- onChange: ((value: PlainDate | undefined) => void) | ((value: DateRange | undefined) => void);
6417
+ onChange: ((value: Date | undefined) => void) | ((value: DateRange | undefined) => void);
6439
6418
  mode: DateFieldMode;
6440
6419
  /** Range filters should only allow a full DateRange or nothing */
6441
6420
  isRangeFilterField?: boolean;
6442
6421
  /** Render header that skips years in addition to months */
6443
6422
  useYearPicker?: boolean;
6444
- };
6445
- type DateSingleFieldBaseProps = DateFieldBaseProps & {
6423
+ }
6424
+ interface DateSingleFieldBaseProps extends DateFieldBaseProps {
6446
6425
  mode: "single";
6447
- value: PlainDate | undefined;
6448
- onChange: (value: PlainDate | undefined) => void;
6449
- };
6450
- type DateRangeFieldBaseProps = DateFieldBaseProps & {
6426
+ value: Date | undefined;
6427
+ onChange: (value: Date | undefined) => void;
6428
+ }
6429
+ interface DateRangeFieldBaseProps extends DateFieldBaseProps {
6451
6430
  mode: "range";
6452
6431
  value: DateRange | undefined;
6453
6432
  onChange: (value: DateRange | undefined) => void;
6454
- };
6433
+ }
6455
6434
 
6456
6435
  interface DateFieldProps extends Omit<DateSingleFieldBaseProps, "mode"> {
6457
6436
  }
@@ -6921,14 +6900,16 @@ type TreeSelectFieldProps<O, V extends Value> = {
6921
6900
  * @default root */
6922
6901
  chipDisplay?: "all" | "leaf" | "root";
6923
6902
  disabledOptions?: V[];
6903
+ groupOptions?: V[];
6924
6904
  } & BeamFocusableProps & PresentationFieldProps;
6925
6905
  declare function TreeSelectField<O, V extends Value>(props: TreeSelectFieldProps<O, V>): JSX.Element;
6926
6906
  declare function TreeSelectField<O extends HasIdAndName<V>, V extends Value>(props: Optional<TreeSelectFieldProps<O, V>, "getOptionValue" | "getOptionLabel">): JSX.Element;
6927
- declare function useTreeSelectFieldProvider<O, V extends Value>(): CollapsedChildrenState<any, any>;
6907
+ declare function useTreeSelectFieldProvider<O, V extends Value>(): CollapsedChildrenState<O, V>;
6928
6908
  type CollapsedChildrenState<O, V extends Value> = {
6929
6909
  collapsedKeys: Key$1[];
6930
6910
  setCollapsedKeys: Dispatch<SetStateAction<Key$1[]>>;
6931
6911
  getOptionValue: (opt: O) => V;
6912
+ groupKeys: Key$1[];
6932
6913
  };
6933
6914
  declare const CollapsedContext: React__default.Context<CollapsedChildrenState<any, any>>;
6934
6915
 
@@ -6941,7 +6922,7 @@ type DateFilterProps<O, V extends Value, DV extends DateFilterValue<V>> = {
6941
6922
  };
6942
6923
  type DateFilterValue<V extends Value> = {
6943
6924
  op: V;
6944
- value: PlainDate;
6925
+ value: Date;
6945
6926
  };
6946
6927
  declare function dateFilter<O, V extends Value>(props: DateFilterProps<O, V, DateFilterValue<V>>): (key: string) => Filter<DateFilterValue<V>>;
6947
6928
 
@@ -6949,7 +6930,7 @@ type DateRangeFilterProps<O extends string> = {
6949
6930
  label: string;
6950
6931
  defaultValue?: DateRangeFilterValue<O>;
6951
6932
  placeholderText?: string;
6952
- disabledDays?: DateMatcher | DateMatcher[];
6933
+ disabledDays?: Matcher | Matcher[];
6953
6934
  testFieldLabel?: string;
6954
6935
  };
6955
6936
  type DateRangeFilterValue<O extends string> = {
@@ -7310,9 +7291,9 @@ declare function BoundChipSelectField<O, V extends Value>(props: BoundChipSelect
7310
7291
  declare function BoundChipSelectField<O extends HasIdAndName<V>, V extends Value>(props: Optional<BoundChipSelectFieldProps<O, V>, "getOptionValue" | "getOptionLabel">): JSX.Element;
7311
7292
 
7312
7293
  type BoundDateFieldProps = Omit<DateFieldProps, "label" | "value" | "onChange"> & {
7313
- field: FieldState<PlainDate | null | undefined>;
7294
+ field: FieldState<Date | null | undefined>;
7314
7295
  label?: string;
7315
- onChange?: (value: PlainDate | undefined) => void;
7296
+ onChange?: (value: Date | undefined) => void;
7316
7297
  };
7317
7298
  /** Wraps `TextField` and binds it to a form field. */
7318
7299
  declare function BoundDateField(props: BoundDateFieldProps): JSX.Element;
@@ -7786,14 +7767,14 @@ declare function useHover(props: useHoverProps): {
7786
7767
  isHovered: boolean;
7787
7768
  };
7788
7769
 
7789
- type UsePersistedFilterProps<F> = {
7770
+ interface UsePersistedFilterProps<F> {
7790
7771
  filterDefs: FilterDefs<F>;
7791
7772
  storageKey: string;
7792
- };
7793
- type PersistedFilterHook<F> = {
7773
+ }
7774
+ interface PersistedFilterHook<F> {
7794
7775
  filter: F;
7795
7776
  setFilter: (filter: F) => void;
7796
- };
7777
+ }
7797
7778
  /**
7798
7779
  * Persists filter details in both browser storage and query parameters.
7799
7780
  * If a valid filter is present in the query params, then that will be used.
@@ -8534,4 +8515,4 @@ declare function resolveTooltip(disabled?: boolean | ReactNode, tooltip?: ReactN
8534
8515
  */
8535
8516
  declare function defaultTestId(label: string): string;
8536
8517
 
8537
- export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, 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 BeamButtonProps, type BeamFocusableProps, BeamProvider, type BeamTextFieldProps, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundIconCardField, type BoundIconCardFieldProps, BoundIconCardGroupField, type BoundIconCardGroupFieldProps, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardProps, type CardTag, type CardType, type CheckFn, Checkbox, CheckboxGroup, type CheckboxGroupItemOption, type CheckboxGroupProps, type CheckboxProps, Chip, type ChipProps, ChipSelectField, type ChipSelectFieldProps, type ChipType, ChipTypes, type ChipValue, Chips, type ChipsProps, CollapseToggle, CollapsedContext, ConfirmCloseModal, type ContentStack, Copy, CountBadge, type CountBadgeProps, Css, CssReset, DESC, DateField, type DateFieldFormat, type DateFieldMode, type DateFieldProps, type DateFilterValue, type DateMatcher, type DateRange, DateRangeField, type DateRangeFieldProps, type DateRangeFilterValue, type Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, type DragData, EXPANDABLE_HEADER, EditColumnsButton, ErrorMessage, FieldGroup, type Filter, type FilterDefs, _FilterDropdownMenu as FilterDropdownMenu, type FilterImpls, FilterModal, _Filters as Filters, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, type FormSectionConfig, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, HelperText, Icon, IconButton, type IconButtonProps, IconCard, type IconCardProps, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type InfiniteScroll, type InlineStyle, type InputStylePalette, KEPT_GROUP, type Kinded, Loader, LoadingSkeleton, type LoadingSkeletonProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectField, type MultiSelectFieldProps, NavLink, type NestedOption, type NestedOptionsOrLoad, NumberField, type NumberFieldProps, type NumberFieldType, type OffsetAndLimit, type OnRowDragEvent, type OnRowSelect, type Only, type OpenDetailOpts, type OpenInDrawerOpts, OpenModal, type OpenRightPaneOpts, type Optional, type Padding, type PageNumberAndSize, type PageSettings, Pagination, type PaginationConfig, Palette, type Pin, type Placement, type PlainDate, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, ResponsiveGrid, type ResponsiveGridConfig, ResponsiveGridContext, ResponsiveGridItem, type ResponsiveGridItemProps, type ResponsiveGridProps, RichTextField, RichTextFieldImpl, type RichTextFieldProps, RightPaneContext, RightPaneLayout, type RightPaneLayoutContextProps, RightPaneProvider, RightSidebar, type RightSidebarProps, type RouteTab, type RouteTabWithContent, Row, type RowStyle, type RowStyles, RuntimeCss, type RuntimeStyles, ScrollShadows, ScrollableContent, ScrollableParent, SelectField, type SelectFieldProps, SelectToggle, type SelectedState, 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, TableState, TableStateContext, Tabs, TabsWithContent, Tag, type TagType, type TestIds, TextAreaField, type TextAreaFieldProps, TextField, type TextFieldApi, type TextFieldInternalProps, type TextFieldProps, type TextFieldXss, Toast, ToggleButton, type ToggleButtonProps, ToggleChip, ToggleChipGroup, type ToggleChipGroupProps, type ToggleChipProps, ToggleChips, type ToggleChipsProps, Tooltip, TreeSelectField, type TreeSelectFieldProps, type TriggerNoticeProps, type Typography, type UseModalHook, type UsePersistedFilterProps, type UseQueryState, type UseRightPaneHook, type UseSnackbarHook, type UseSuperDrawerHook, type UseToastProps, type Value, type Xss, actionColumn, applyRowFn, assignDefaultColumnIds, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundIconCardField, boundIconCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnSizes, cardStyle, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, dragHandleColumn, emptyCell, ensureClientSideSortValueIsSortable, filterTestIdPrefix, formatDate, formatDateRange, formatPlainDate, formatValue, generateColumnId, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getJustification, getTableRefWidthStyles, getTableStyles, headerRenderFn, hoverStyles, iconButtonCircleStylesHover, iconButtonContrastStylesHover, iconButtonStylesHover, iconCardStylesHover, increment, insertAtIndex, isCursorBelowMidpoint, isGridCellContent, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, selectedStyles, setDefaultStyle, setGridTableDefaults, setRunningInJest, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBreakpoint, useComputed, useDnDGridItem, type useDnDGridItemProps, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneContext, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, zIndices };
8518
+ export { ASC, Accordion, AccordionList, type AccordionProps, type AccordionSize, 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 BeamButtonProps, type BeamFocusableProps, BeamProvider, type BeamTextFieldProps, BoundCheckboxField, type BoundCheckboxFieldProps, BoundCheckboxGroupField, type BoundCheckboxGroupFieldProps, BoundChipSelectField, BoundDateField, type BoundDateFieldProps, BoundDateRangeField, type BoundDateRangeFieldProps, BoundForm, type BoundFormInputConfig, type BoundFormProps, type BoundFormRowInputs, BoundIconCardField, type BoundIconCardFieldProps, BoundIconCardGroupField, type BoundIconCardGroupFieldProps, BoundMultiLineSelectField, type BoundMultiLineSelectFieldProps, BoundMultiSelectField, type BoundMultiSelectFieldProps, BoundNumberField, type BoundNumberFieldProps, BoundRadioGroupField, type BoundRadioGroupFieldProps, BoundRichTextField, type BoundRichTextFieldProps, BoundSelectAndTextField, BoundSelectField, type BoundSelectFieldProps, BoundSwitchField, type BoundSwitchFieldProps, BoundTextAreaField, type BoundTextAreaFieldProps, BoundTextField, type BoundTextFieldProps, BoundToggleChipGroupField, type BoundToggleChipGroupFieldProps, BoundTreeSelectField, type BoundTreeSelectFieldProps, type Breakpoint, Breakpoints, type BuildtimeStyles, Button, ButtonDatePicker, ButtonGroup, type ButtonGroupButton, type ButtonGroupProps, ButtonMenu, type ButtonMenuProps, ButtonModal, type ButtonModalProps, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardProps, type CardTag, type CardType, type CheckFn, Checkbox, CheckboxGroup, type CheckboxGroupItemOption, type CheckboxGroupProps, type CheckboxProps, Chip, type ChipProps, ChipSelectField, type ChipSelectFieldProps, type ChipType, ChipTypes, type ChipValue, Chips, type ChipsProps, CollapseToggle, CollapsedContext, ConfirmCloseModal, type ContentStack, Copy, CountBadge, type CountBadgeProps, Css, CssReset, DESC, DateField, type DateFieldMode, type DateFieldModeTuple, type DateFieldProps, type DateFilterValue, DateRangeField, type DateRangeFieldProps, type DateRangeFilterValue, type Direction, type DiscriminateUnion, type DividerMenuItemType, DnDGrid, DnDGridItemHandle, type DnDGridItemHandleProps, type DnDGridItemProps, type DnDGridProps, type DragData, EXPANDABLE_HEADER, EditColumnsButton, ErrorMessage, FieldGroup, type Filter, type FilterDefs, _FilterDropdownMenu as FilterDropdownMenu, type FilterImpls, FilterModal, _Filters as Filters, type Font, FormDivider, FormHeading, type FormHeadingProps, FormLines, type FormLinesProps, FormPageLayout, FormRow, type FormSectionConfig, type FormWidth, FullBleed, type GridCellAlignment, type GridCellContent, type GridColumn, type GridColumnBorder, type GridColumnWithId, type GridDataRow, type GridRowKind, type GridRowLookup, type GridSortConfig, type GridStyle, GridTable, type GridTableApi, type GridTableCollapseToggleProps, type GridTableDefaults, GridTableLayout, type GridTableLayoutProps, type GridTableProps, type GridTableScrollOptions, type GridTableXss, type GroupByHook, HB_QUIPS_FLAVOR, HB_QUIPS_MISSION, HEADER, type HasIdAndName, HbLoadingSpinner, HbSpinnerProvider, HelperText, Icon, IconButton, type IconButtonProps, IconCard, type IconCardProps, type IconKey, type IconMenuItemType, type IconProps, Icons, type IfAny, type ImageFitType, type ImageMenuItemType, type InfiniteScroll, type InlineStyle, type InputStylePalette, KEPT_GROUP, type Kinded, Loader, LoadingSkeleton, type LoadingSkeletonProps, type Margin, type Marker, MaxLines, type MaxLinesProps, type MaybeFn, type MenuItem, type MenuSection, ModalBody, ModalFilterItem, ModalFooter, ModalHeader, type ModalProps, type ModalSize, MultiLineSelectField, type MultiLineSelectFieldProps, MultiSelectField, type MultiSelectFieldProps, NavLink, type NestedOption, type NestedOptionsOrLoad, NumberField, type NumberFieldProps, type NumberFieldType, type OffsetAndLimit, type OnRowDragEvent, type OnRowSelect, type Only, type OpenDetailOpts, type OpenInDrawerOpts, OpenModal, type OpenRightPaneOpts, type Optional, type Padding, type PageNumberAndSize, type PageSettings, Pagination, type PaginationConfig, Palette, type Pin, type Placement, type PresentationFieldProps, PresentationProvider, PreventBrowserScroll, type Properties, RIGHT_SIDEBAR_MIN_WIDTH, type RadioFieldOption, RadioGroupField, type RadioGroupFieldProps, type RenderAs, type RenderCellFn, ResponsiveGrid, type ResponsiveGridConfig, ResponsiveGridContext, ResponsiveGridItem, type ResponsiveGridItemProps, type ResponsiveGridProps, RichTextField, RichTextFieldImpl, type RichTextFieldProps, RightPaneContext, RightPaneLayout, type RightPaneLayoutContextProps, RightPaneProvider, RightSidebar, type RightSidebarProps, type RouteTab, type RouteTabWithContent, Row, type RowStyle, type RowStyles, RuntimeCss, type RuntimeStyles, ScrollShadows, ScrollableContent, ScrollableParent, SelectField, type SelectFieldProps, SelectToggle, type SelectedState, type SidebarContentProps, type SimpleHeaderAndData, SortHeader, type SortOn, type SortState, StaticField, type Step, Stepper, type StepperProps, type StyleKind, SubmitButton, type SubmitButtonProps, SuperDrawerContent, SuperDrawerHeader, SuperDrawerWidth, Switch, type SwitchProps, TOTALS, type Tab, TabContent, type TabWithContent, TableState, TableStateContext, Tabs, TabsWithContent, Tag, type TagType, type TestIds, TextAreaField, type TextAreaFieldProps, TextField, type TextFieldApi, type TextFieldInternalProps, type TextFieldProps, type TextFieldXss, Toast, ToggleButton, type ToggleButtonProps, ToggleChip, ToggleChipGroup, type ToggleChipGroupProps, type ToggleChipProps, ToggleChips, type ToggleChipsProps, Tooltip, TreeSelectField, type TreeSelectFieldProps, type TriggerNoticeProps, type Typography, type UseModalHook, type UsePersistedFilterProps, type UseQueryState, type UseRightPaneHook, type UseSnackbarHook, type UseSuperDrawerHook, type UseToastProps, type Value, type Xss, actionColumn, applyRowFn, assignDefaultColumnIds, booleanFilter, boundCheckboxField, boundCheckboxGroupField, boundDateField, boundDateRangeField, boundIconCardField, boundIconCardGroupField, boundMultiSelectField, boundMultilineSelectField, boundNumberField, boundRadioGroupField, boundRichTextField, boundSelectField, boundSwitchField, boundTextAreaField, boundTextField, boundToggleChipGroupField, boundTreeSelectField, calcColumnSizes, cardStyle, checkboxFilter, chipBaseStyles, chipDisabledStyles, chipHoverOnlyStyles, chipHoverStyles, collapseColumn, column, condensedStyle, createRowLookup, dateColumn, dateFilter, dateFormats, dateRangeFilter, defaultPage, defaultRenderFn, defaultStyle, defaultTestId, dragHandleColumn, emptyCell, ensureClientSideSortValueIsSortable, filterTestIdPrefix, formatDate, formatDateRange, formatValue, generateColumnId, getAlignment, getColumnBorderCss, getDateFormat, getFirstOrLastCellCss, getJustification, getTableRefWidthStyles, getTableStyles, headerRenderFn, hoverStyles, iconButtonCircleStylesHover, iconButtonContrastStylesHover, iconButtonStylesHover, iconCardStylesHover, increment, insertAtIndex, isCursorBelowMidpoint, isGridCellContent, isJSX, isListBoxSection, isPersistentItem, isPersistentKey, isValidDate, listFieldPrefix, loadArrayOrUndefined, marker, matchesFilter, maybeInc, maybeTooltip, multiFilter, navLink, newMethodMissingProxy, nonKindGridColumnKeys, numberRangeFilter, numericColumn, parseDate, parseDateRange, parseWidthToPx, persistentItemPrefix, pressedOverlayCss, px, recursivelyGetContainingRow, reservedRowKinds, resolveTooltip, rowClickRenderFn, rowLinkRenderFn, selectColumn, selectedStyles, setDefaultStyle, setGridTableDefaults, setRunningInJest, shouldSkipScrollTo, simpleDataRows, simpleHeader, singleFilter, sortFn, sortRows, switchFocusStyles, switchHoverStyles, switchSelectedHoverStyles, toContent, toLimitAndOffset, toPageNumberSize, toggleFilter, toggleFocusStyles, toggleHoverStyles, togglePressStyles, treeFilter, updateFilter, useAutoSaveStatus, useBreakpoint, useComputed, useDnDGridItem, type useDnDGridItemProps, useFilter, useGridTableApi, useGridTableLayoutState, useGroupBy, useHover, useModal, usePersistedFilter, useQueryState, useResponsiveGrid, useResponsiveGridItem, type useResponsiveGridProps, useRightPane, useRightPaneContext, useRuntimeStyle, useScrollableParent, useSessionStorage, useSetupColumnSizes, useSnackbar, useSuperDrawer, useTestIds, useToast, useTreeSelectFieldProvider, useVirtualizedScrollParent, visit, zIndices };