@helpwave/hightide 0.11.0 → 0.12.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.d.mts CHANGED
@@ -49,6 +49,46 @@ type AvatarGroupProps = HTMLAttributes<HTMLDivElement> & {
49
49
  * A component for showing a group of Avatar's
50
50
  */
51
51
  declare const AvatarGroup: ({ avatars, showTotalNumber, size, ...props }: AvatarGroupProps) => react_jsx_runtime.JSX.Element;
52
+ type AvatarWithStatusProps = AvatarProps & {
53
+ isOnline: boolean;
54
+ };
55
+ declare const AvatarWithStatus: ({ isOnline, className, size, ...avatarProps }: AvatarWithStatusProps) => react_jsx_runtime.JSX.Element;
56
+
57
+ type CardSize = 'sm' | 'md' | 'lg';
58
+ type CardProps = Omit<HTMLAttributes<HTMLDivElement>, 'title'> & {
59
+ title: ReactNode;
60
+ description?: ReactNode;
61
+ size?: CardSize;
62
+ };
63
+ declare const Card: ({ title, description, size, children, className, ...props }: CardProps) => react_jsx_runtime.JSX.Element;
64
+ type ActionCardProps = Omit<HTMLAttributes<HTMLDivElement>, 'title'> & {
65
+ title: ReactNode;
66
+ description?: ReactNode;
67
+ size?: CardSize;
68
+ action?: ReactNode;
69
+ disabled?: boolean;
70
+ };
71
+ declare const ActionCard: react.ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLDivElement>, "title"> & {
72
+ title: ReactNode;
73
+ description?: ReactNode;
74
+ size?: CardSize;
75
+ action?: ReactNode;
76
+ disabled?: boolean;
77
+ } & react.RefAttributes<HTMLDivElement>>;
78
+ type NavigationCardProps = Omit<HTMLAttributes<HTMLDivElement>, 'title'> & {
79
+ title: ReactNode;
80
+ description?: ReactNode;
81
+ size?: CardSize;
82
+ href: string;
83
+ isExternal?: boolean;
84
+ };
85
+ declare const NavigationCard: react.ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLDivElement>, "title"> & {
86
+ title: ReactNode;
87
+ description?: ReactNode;
88
+ size?: CardSize;
89
+ href: string;
90
+ isExternal?: boolean;
91
+ } & react.RefAttributes<HTMLDivElement>>;
52
92
 
53
93
  type ChipSize = 'xs' | 'sm' | 'md' | 'lg' | null;
54
94
  type ChipColoringStyle = 'solid' | 'tonal' | 'outline' | 'tonal-outline' | null;
@@ -516,13 +556,14 @@ interface FormObserverKeyProps<T extends FormValue, K extends keyof T> extends U
516
556
  declare const FormObserverKey: <T extends FormValue, K extends keyof T>({ children, formStore, formKey }: FormObserverKeyProps<T, K>) => ReactNode;
517
557
 
518
558
  type FloatingElementAlignment = 'beforeStart' | 'afterStart' | 'center' | 'beforeEnd' | 'afterEnd';
519
- type CalculatePositionOptions = {
520
- verticalAlignment?: FloatingElementAlignment;
521
- horizontalAlignment?: FloatingElementAlignment;
522
- screenPadding?: number;
523
- gap?: number;
524
- avoidOverlap?: boolean;
525
- };
559
+ type CalculatePositionOptionsResolved = {
560
+ verticalAlignment: FloatingElementAlignment;
561
+ horizontalAlignment: FloatingElementAlignment;
562
+ screenPadding: number;
563
+ gap: number;
564
+ avoidOverlap: boolean;
565
+ };
566
+ type CalculatePositionOptions = Partial<CalculatePositionOptionsResolved>;
526
567
  type UseAnchoredPositionOptions = CalculatePositionOptions & {
527
568
  isPolling?: boolean;
528
569
  isReactingToResize?: boolean;
@@ -530,9 +571,9 @@ type UseAnchoredPositionOptions = CalculatePositionOptions & {
530
571
  pollingInterval?: number;
531
572
  };
532
573
  type UseAnchoredPostitionProps = UseAnchoredPositionOptions & {
533
- container: RefObject<HTMLElement>;
534
- anchor: RefObject<HTMLElement>;
535
- window?: RefObject<HTMLElement>;
574
+ container: RefObject<HTMLElement | null>;
575
+ anchor: RefObject<HTMLElement | null>;
576
+ window?: RefObject<HTMLElement | null>;
536
577
  active?: boolean;
537
578
  };
538
579
  declare function useAnchoredPosition({ active, window: windowRef, anchor: anchorRef, container: containerRef, isPolling, isReactingToResize, isReactingToScroll, pollingInterval, verticalAlignment, horizontalAlignment, avoidOverlap, screenPadding, gap, }: UseAnchoredPostitionProps): CSSProperties;
@@ -751,6 +792,136 @@ type VisibilityProps = PropsWithChildren & {
751
792
  };
752
793
  declare function Visibility({ children, isVisible }: VisibilityProps): react_jsx_runtime.JSX.Element;
753
794
 
795
+ interface TreeNode {
796
+ id: string;
797
+ items: TreeNode[];
798
+ }
799
+ interface TreeItem {
800
+ id: string;
801
+ path: ReadonlyArray<string>;
802
+ expanded: boolean;
803
+ }
804
+ interface TreeNavigationOptions {
805
+ nodes: ReadonlyArray<TreeNode>;
806
+ activeId?: string | null;
807
+ onActiveIdChange?: (activeId: string | null) => void;
808
+ initialActiveId?: string | null;
809
+ onlyOneExpandedTree?: boolean;
810
+ }
811
+ interface TreeNavigationActionOptions {
812
+ isFocusing?: boolean;
813
+ }
814
+ interface TreeNavigationReturn {
815
+ items: ReadonlyArray<TreeItem>;
816
+ activeItem: TreeItem | null;
817
+ navigateTo: (id: string) => void;
818
+ expand: (id: string, options?: TreeNavigationActionOptions) => void;
819
+ collapse: (id: string, options?: TreeNavigationActionOptions) => void;
820
+ toggleExpansion: (id: string, options?: TreeNavigationActionOptions) => void;
821
+ next: () => void;
822
+ previous: () => void;
823
+ first: () => void;
824
+ last: () => void;
825
+ }
826
+ declare function useTreeNavigation({ nodes, activeId: controlledActiveId, onActiveIdChange, initialActiveId, onlyOneExpandedTree, }: TreeNavigationOptions): TreeNavigationReturn;
827
+
828
+ interface NavigationItemState {
829
+ expanded: boolean;
830
+ isFocused: boolean;
831
+ path: ReadonlyArray<string>;
832
+ }
833
+ interface NavigationContextActions {
834
+ navigateTo: TreeNavigationReturn['navigateTo'];
835
+ expand: TreeNavigationReturn['expand'];
836
+ collapse: TreeNavigationReturn['collapse'];
837
+ next: TreeNavigationReturn['next'];
838
+ previous: TreeNavigationReturn['previous'];
839
+ first: TreeNavigationReturn['first'];
840
+ last: TreeNavigationReturn['last'];
841
+ toggleExpansion: TreeNavigationReturn['toggleExpansion'];
842
+ registerItemRef: (id: string, element: HTMLElement | null) => void;
843
+ }
844
+ interface NavigationContextType extends NavigationContextActions {
845
+ activeItem: TreeItem | null;
846
+ focusedId: string | null;
847
+ items: ReadonlyArray<TreeItem>;
848
+ getItemState: (id: string) => NavigationItemState | null;
849
+ }
850
+ type NavigationProviderProps = PropsWithChildren<TreeNavigationOptions>;
851
+ declare function NavigationProvider({ children, ...options }: NavigationProviderProps): react_jsx_runtime.JSX.Element;
852
+ declare function useNavigationContext(): NavigationContextType;
853
+ declare function useNavigationItem(id: string): {
854
+ ref: (element: HTMLLIElement | null) => void;
855
+ navigateTo: (id: string) => void;
856
+ expand: (id: string, options?: TreeNavigationActionOptions) => void;
857
+ collapse: (id: string, options?: TreeNavigationActionOptions) => void;
858
+ next: () => void;
859
+ previous: () => void;
860
+ first: () => void;
861
+ last: () => void;
862
+ toggleExpansion: (id: string, options?: TreeNavigationActionOptions) => void;
863
+ expanded: boolean;
864
+ isFocused: boolean;
865
+ path: ReadonlyArray<string>;
866
+ };
867
+
868
+ interface NavigationItemData {
869
+ id: string;
870
+ label: ReactNode;
871
+ url?: string;
872
+ external?: boolean;
873
+ items?: NavigationItemData[];
874
+ }
875
+ declare function toTreeNodes(items: ReadonlyArray<NavigationItemData>): TreeNode[];
876
+
877
+ interface VerticalNavigationItemProps {
878
+ id: string;
879
+ label: NavigationItemData['label'];
880
+ url?: string;
881
+ external?: boolean;
882
+ items?: NavigationItemData[];
883
+ depth?: number;
884
+ }
885
+ declare function VerticalNavigationItem({ id, label, url, external, items, depth, }: VerticalNavigationItemProps): react_jsx_runtime.JSX.Element;
886
+
887
+ interface VerticalNavigationTreeProps extends Omit<NavigationProviderProps, 'children' | 'nodes'> {
888
+ items: NavigationItemData[];
889
+ }
890
+ declare function VerticalNavigationTree({ items, ...navigationOptions }: VerticalNavigationTreeProps): react_jsx_runtime.JSX.Element;
891
+
892
+ interface AppSidebarProps extends HTMLAttributes<HTMLDivElement> {
893
+ isOpen?: boolean;
894
+ onClose?: () => void;
895
+ }
896
+ declare const AppSidebar: ({ isOpen, onClose, children, ...props }: AppSidebarProps) => react_jsx_runtime.JSX.Element;
897
+ interface AppPageSidebarWithNavigationProps extends AppSidebarProps {
898
+ header?: ReactNode;
899
+ footer?: ReactNode;
900
+ navigationItems?: NavigationItemData[];
901
+ contentOverwrite?: ReactNode;
902
+ }
903
+ declare const AppPageSidebarWithNavigation: ({ header, footer, navigationItems, contentOverwrite, ...props }: AppPageSidebarWithNavigationProps) => react_jsx_runtime.JSX.Element;
904
+ interface AppPageNavigationItem {
905
+ id: string;
906
+ label: ReactNode;
907
+ icon?: ReactNode;
908
+ isActive?: boolean;
909
+ url?: string;
910
+ external?: boolean;
911
+ items?: AppPageNavigationItem[];
912
+ }
913
+ interface AppPageSidebarProps {
914
+ header: ReactNode;
915
+ items: AppPageNavigationItem[];
916
+ content: ReactNode;
917
+ footer: ReactNode;
918
+ }
919
+ interface AppPageProps extends HTMLAttributes<HTMLDivElement> {
920
+ headerActions?: ReactNode[];
921
+ sidebarProps: AppPageSidebarWithNavigationProps;
922
+ }
923
+ declare const AppPage: ({ children, headerActions, sidebarProps, ...props }: AppPageProps) => react_jsx_runtime.JSX.Element;
924
+
754
925
  type DialogPosition = 'top' | 'center' | 'none';
755
926
  type DialogProps = HTMLAttributes<HTMLDivElement> & {
756
927
  /** Whether the dialog is currently open */
@@ -1217,6 +1388,7 @@ type HightideTranslationEntries = {
1217
1388
  'locale': string;
1218
1389
  'max': string;
1219
1390
  'maxLengthError': string;
1391
+ 'menu': string;
1220
1392
  'min': string;
1221
1393
  'minLengthError': string;
1222
1394
  'more': string;
@@ -1853,44 +2025,16 @@ type TableHeaderProps = {
1853
2025
  declare const TableHeader: ({ isSticky }: TableHeaderProps) => react_jsx_runtime.JSX.Element;
1854
2026
 
1855
2027
  type TableVirtualizationOptions = {
1856
- /** Estimated row height in px, refined by measurement once rows mount. Default `48`. */
1857
2028
  estimateRowHeight?: number;
1858
- /** Rows rendered above and below the viewport to avoid blank space while scrolling. Default `8`. */
1859
2029
  overscan?: number;
1860
- /**
1861
- * Which scroll context to track:
1862
- * - `'window'` (default) windows against the page/document scroll. Use this when the list
1863
- * scrolls with the page (e.g. a document-scroll infinite list with a sentinel below the table).
1864
- * - `'container'` windows against the table container's own scroll. The container
1865
- * (`data-name="table-container"`) needs a bounded height and `overflow-y: auto` for this.
1866
- */
1867
2030
  scroll?: 'window' | 'container';
1868
2031
  };
1869
2032
  type VirtualizedTableBodyProps = TableVirtualizationOptions;
1870
- /**
1871
- * Drop-in replacement for {@link TableBody} that only mounts the visible rows (plus a small
1872
- * overscan) instead of the whole row model. Rows stay in normal table flow — a single spacer
1873
- * `<tr>` above and below the window reserves the scroll height — so column sizing (driven by the
1874
- * `<colgroup>`), the sticky header, resizing, sorting/filtering, selection and row clicks all keep
1875
- * working unchanged. Per-row heights are measured, so variable-height rows are supported.
1876
- *
1877
- * Filler rows are intentionally ignored here: virtualization already reserves the full scroll
1878
- * height, so `isUsingFillerRows` is a no-op while virtualized.
1879
- */
1880
2033
  declare const VirtualizedTableBody: ({ estimateRowHeight, overscan, scroll, }: VirtualizedTableBodyProps) => react_jsx_runtime.JSX.Element;
1881
2034
 
1882
2035
  interface TableDisplayProps extends TableHTMLAttributes<HTMLTableElement> {
1883
2036
  containerProps?: Omit<React.HTMLAttributes<HTMLDivElement>, 'children'>;
1884
2037
  tableHeaderProps?: Omit<TableHeaderProps, 'children' | 'table'>;
1885
- /**
1886
- * Opt into row virtualization (windowing): only the rows in (or near) the viewport are mounted to
1887
- * the DOM, so very large lists stay responsive. Pass `true` for the defaults or an options object
1888
- * to tune it (see {@link TableVirtualizationOptions}). Defaults to window-scroll, which drops into
1889
- * page-scrolled / infinite-scroll layouts without any change.
1890
- *
1891
- * Filler rows are ignored while virtualized (the reserved scroll height already fills the table),
1892
- * so `isUsingFillerRows` has no effect in this mode. Defaults to `false` (unchanged behaviour).
1893
- */
1894
2038
  virtualized?: boolean | TableVirtualizationOptions;
1895
2039
  }
1896
2040
  /**
@@ -2082,13 +2226,14 @@ type CheckboxProps = HTMLAttributes<HTMLDivElement> & Partial<FormFieldInteracti
2082
2226
  indeterminate?: boolean;
2083
2227
  size?: CheckBoxSize;
2084
2228
  alwaysShowCheckIcon?: boolean;
2229
+ isRounded?: boolean;
2085
2230
  };
2086
2231
  /**
2087
2232
  * A Tristate checkbox
2088
2233
  *
2089
2234
  * The state is managed by the parent
2090
2235
  */
2091
- declare const Checkbox: ({ value: controlledValue, initialValue, indeterminate, required, invalid, disabled, readOnly, onValueChange, onEditComplete, size, alwaysShowCheckIcon, ...props }: CheckboxProps) => react_jsx_runtime.JSX.Element;
2236
+ declare const Checkbox: ({ value: controlledValue, initialValue, indeterminate, required, invalid, disabled, readOnly, onValueChange, onEditComplete, size, alwaysShowCheckIcon, isRounded, ...props }: CheckboxProps) => react_jsx_runtime.JSX.Element;
2092
2237
 
2093
2238
  type ComboboxInputProps = Omit<ComponentProps<typeof Input>, 'value'>;
2094
2239
  declare const ComboboxInput: react.ForwardRefExoticComponent<Omit<ComboboxInputProps, "ref"> & react.RefAttributes<HTMLInputElement>>;
@@ -2485,7 +2630,7 @@ type OperatorInfoResult = {
2485
2630
  declare function getDefaultOperator(dataType: DataType): FilterOperator;
2486
2631
  declare const FilterOperatorUtils: {
2487
2632
  operators: readonly ["equals", "notEquals", "contains", "notContains", "startsWith", "endsWith", "greaterThan", "greaterThanOrEqual", "lessThan", "lessThanOrEqual", "between", "notBetween", "isTrue", "isFalse", "isUndefined", "isNotUndefined"];
2488
- operatorsByCategory: Record<"number" | "boolean" | "text" | "date" | "dateTime" | "multiTags" | "singleTag" | "unknownType", ("endsWith" | "startsWith" | "between" | "contains" | "equals" | "greaterThan" | "greaterThanOrEqual" | "isFalse" | "isNotUndefined" | "isTrue" | "isUndefined" | "lessThan" | "lessThanOrEqual" | "notBetween" | "notContains" | "notEquals")[]>;
2633
+ operatorsByCategory: Record<"number" | "boolean" | "text" | "date" | "dateTime" | "singleTag" | "multiTags" | "unknownType", ("endsWith" | "startsWith" | "between" | "contains" | "equals" | "greaterThan" | "greaterThanOrEqual" | "isFalse" | "isNotUndefined" | "isTrue" | "isUndefined" | "lessThan" | "lessThanOrEqual" | "notBetween" | "notContains" | "notEquals")[]>;
2489
2634
  getInfo: (operator: FilterOperator) => OperatorInfoResult;
2490
2635
  getDefaultOperator: typeof getDefaultOperator;
2491
2636
  typeCheck: {
@@ -2520,7 +2665,7 @@ type FilterValue = {
2520
2665
  };
2521
2666
  declare function isFilterValueValid(value: FilterValue): boolean;
2522
2667
  declare const FilterValueUtils: {
2523
- allowedOperatorsByDataType: Record<"number" | "boolean" | "text" | "date" | "dateTime" | "multiTags" | "singleTag" | "unknownType", ("endsWith" | "startsWith" | "between" | "contains" | "equals" | "greaterThan" | "greaterThanOrEqual" | "isFalse" | "isNotUndefined" | "isTrue" | "isUndefined" | "lessThan" | "lessThanOrEqual" | "notBetween" | "notContains" | "notEquals")[]>;
2668
+ allowedOperatorsByDataType: Record<"number" | "boolean" | "text" | "date" | "dateTime" | "singleTag" | "multiTags" | "unknownType", ("endsWith" | "startsWith" | "between" | "contains" | "equals" | "greaterThan" | "greaterThanOrEqual" | "isFalse" | "isNotUndefined" | "isTrue" | "isUndefined" | "lessThan" | "lessThanOrEqual" | "notBetween" | "notContains" | "notEquals")[]>;
2524
2669
  isValid: typeof isFilterValueValid;
2525
2670
  };
2526
2671
  declare const FilterFunctions: Record<DataType, (value: unknown, operator: FilterOperator, parameter: FilterParameter) => boolean>;
@@ -3242,14 +3387,14 @@ declare const useRerender: () => react.ActionDispatch<[]>;
3242
3387
  declare const useWindowResizeObserver: (onResize: () => void) => void;
3243
3388
 
3244
3389
  type UseResizeObserverProps = {
3245
- observedElementRef?: RefObject<Element>;
3390
+ observedElementRef?: RefObject<Element | null>;
3246
3391
  onResize: () => void;
3247
3392
  isActive?: boolean;
3248
3393
  };
3249
3394
  declare function useResizeObserver({ observedElementRef, onResize, isActive }: UseResizeObserverProps): void;
3250
3395
 
3251
3396
  type UseScrollObserverProps = {
3252
- observedElementRef?: RefObject<HTMLElement>;
3397
+ observedElementRef?: RefObject<HTMLElement | null>;
3253
3398
  onScroll: () => void;
3254
3399
  isActive?: boolean;
3255
3400
  };
@@ -3600,4 +3745,4 @@ declare const SimpleSearch: (search: string, objects: string[]) => string[];
3600
3745
 
3601
3746
  declare const writeToClipboard: (text: string) => Promise<void>;
3602
3747
 
3603
- export { ASTNodeInterpreter, type ASTNodeInterpreterProps, AnchoredFloatingContainer, type AnchoredFloatingContainerProps, ArrayUtil, AutoColumnOrderFeature, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, type BackgroundOverlayProps, type BagFunction, type BagFunctionOrNode, type BagFunctionOrValue, BagFunctionUtil, BooleanFilterPopUp, BreadCrumbGroup, BreadCrumbLink, type BreadCrumbLinkProps, type BreadCrumbProps, BreadCrumbs, Button, type ButtonColor, type ButtonProps, ButtonUtil, Carousel, type CarouselProps, CarouselSlide, type CarouselSlideProps, Checkbox, CheckboxProperty, type CheckboxPropertyProps, type CheckboxProps, Chip, type ChipColor, ChipList, type ChipListProps, type ChipProps, ChipUtil, type ColumnSizeCalculatoProps, ColumnSizeUtil, ColumnSizingWithTargetFeature, Combobox, ComboboxContext, type ComboboxContextActions, type ComboboxContextComputedState, type ComboboxContextConfig, type ComboboxContextIds, type ComboboxContextInternalState, type ComboboxContextLayout, type ComboboxContextSearch, type ComboboxContextType, ComboboxInput, type ComboboxInputProps, ComboboxList, type ComboboxListProps, ComboboxOption, type ComboboxOptionProps, type ComboboxOptionType, type ComboboxProps, ComboboxRoot, type ComboboxRootProps, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogType, type ControlledStateProps, CopyToClipboardWrapper, type CopyToClipboardWrapperProps, type Crumb, DOMUtils, type DataType, type DataTypeFilterPopUpProps, DataTypeUtils, type DataValue, DateFilterPopUp, DatePicker, type DatePickerProps, DateProperty, type DatePropertyProps, DateTimeField, type DateTimeFieldProps, DateTimeFormat, DateTimeInput, type DateTimeInputProps, DateTimePicker, DateTimePickerDialog, type DateTimePickerDialogProps, type DateTimePickerProps, type DateTimePrecision, type DateTimeSegment, DateUtils, DatetimeFilterPopUp, DayPicker, type DayPickerProps, type DeepPartial, Dialog, DialogContext, type DialogContextType, type DialogOpenerPassingProps, DialogOpenerWrapper, type DialogOpenerWrapperBag, type DialogOpenerWrapperProps, type DialogPosition, type DialogProps, DialogRoot, type DialogRootProps, type Direction, DiscardChangesDialog, DividerInserter, type DividerInserterProps, Drawer, type DrawerAligment, DrawerCloseButton, type DrawerCloseButtonProps, DrawerContent, type DrawerContentProps, DrawerContext, type DrawerContextType, type DrawerProps, DrawerRoot, type DrawerRootProps, Duration, type DurationJSON, type EaseFunction, EaseFunctions, type EditCompleteOptions, type EditCompleteOptionsResolved, type EditableSegmentType, type ElementHandle, ErrorComponent, type ErrorComponentProps, type Exact, Expandable, ExpandableContent, type ExpandableContentProps, ExpandableHeader, type ExpandableHeaderProps, type ExpandableProps, ExpandableRoot, type ExpandableRootProps, ExpansionIcon, type ExpansionIconProps, type FAQItem, FAQSection, type FAQSectionProps, FillerCell, type FillerCellProps, FilterBasePopUp, FilterFunctions, FilterList, type FilterListItem, type FilterListPopUpBuilderProps, type FilterListProps, type FilterOperator, type FilterOperatorBoolean, type FilterOperatorDate, type FilterOperatorDatetime, FilterOperatorLabel, type FilterOperatorLabelProps, type FilterOperatorNumber, type FilterOperatorTags, type FilterOperatorTagsSingle, type FilterOperatorText, type FilterOperatorUnknownType, FilterOperatorUtils, type FilterParameter, FilterPopUp, type FilterPopUpBaseProps, type FilterPopUpProps, type FilterValue, type FilterValueTranslationOptions, FilterValueUtils, FlexibleDateTimeInput, type FlexibleDateTimeInputProps, type FloatingElementAlignment, FocusTrap, type FocusTrapProps, FocusTrapWrapper, type FocusTrapWrapperProps, FormContext, type FormContextType, type FormEvent, type FormEventListener, FormField, type FormFieldAriaAttributes, type FormFieldBag, type FormFieldDataHandling, type FormFieldFocusableElementProps, type FormFieldInteractionStates, FormFieldLayout, type FormFieldLayoutBag, type FormFieldLayoutIds, type FormFieldLayoutProps, type FormFieldProps, type FormFieldResult, FormObserver, FormObserverKey, type FormObserverKeyProps, type FormObserverKeyResult, type FormObserverProps, type FormObserverResult, FormProvider, type FormProviderProps, FormStore, type FormStoreProps, type FormValidationBehaviour, type FormValidator, type FormValue, GenericFilterPopUp, HelpwaveBadge, type HelpwaveBadgeProps, HelpwaveLogo, type HelpwaveProps, type HightideConfig, HightideConfigContext, HightideConfigProvider, type HightideConfigProviderProps, HightideProvider, type HightideTranslationEntries, type HightideTranslationLocales, IconButton, IconButtonBase, type IconButtonBaseProps, type IconButtonProps, type IdentifierFilterValue, InfiniteScroll, type InfiniteScrollProps, Input, InputDialog, type InputModalProps, type InputProps, InsideLabelInput, LanguageDialog, LanguageSelect, type ListNavigationOptions, type ListNavigationReturn, LoadingAndErrorComponent, type LoadingAndErrorComponentProps, LoadingAnimation, type LoadingAnimationProps, type LoadingComponentProps, LoadingContainer, LocaleContext, type LocaleContextValue, LocaleProvider, type LocaleProviderProps, type LocalizationConfig, LocalizationUtil, LoopingArrayCalculator, MarkdownInterpreter, type MarkdownInterpreterProps, MathUtil, Menu, type MenuBag, MenuItem, type MenuItemProps, type MenuProps, type Month, MultiSearchWithMapping, MultiSelect, MultiSelectButton, type MultiSelectButtonProps, MultiSelectChipDisplay, MultiSelectChipDisplayButton, type MultiSelectChipDisplayButtonProps, type MultiSelectChipDisplayProps, MultiSelectContent, type MultiSelectContentProps, MultiSelectContext, type MultiSelectContextActions, type MultiSelectContextComputedState, type MultiSelectContextConfig, type MultiSelectContextIds, type MultiSelectContextLayout, type MultiSelectContextSearch, type MultiSelectContextState, type MultiSelectContextType, type MultiSelectIconAppearance, type MultiSelectIds, MultiSelectOption, MultiSelectOptionDisplayContext, type MultiSelectOptionDisplayLocation, type MultiSelectOptionProps, type MultiSelectOptionType, MultiSelectProperty, type MultiSelectPropertyProps, type MultiSelectProps, MultiSelectRoot, type MultiSelectRootProps, MultiSubjectSearchWithMapping, Navigation, NavigationItemList, type NavigationItemListProps, type NavigationItemType, type NavigationProps, NumberFilterPopUp, NumberProperty, type NumberPropertyProps, type OverlayItem, OverlayRegistry, Pagination, type PaginationProps, PolymorphicSlot, type PolymorphicSlotProps, PopUp, PopUpContext, type PopUpContextType, PopUpOpener, type PopUpOpenerBag, type PopUpOpenerProps, type PopUpProps, PopUpRoot, type PopUpRootProps, Portal, type PortalProps, type ProcessModelActivityIconKind, ProcessModelActivityNode, type ProcessModelActivityNodeKind, type ProcessModelActivityNodeProps, ProcessModelCanvas, type ProcessModelCanvasProps, type ProcessModelEdge, type ProcessModelEdgePointResult, type ProcessModelEdgeStrokeStyle, type ProcessModelGraph, type ProcessModelGraphActivityNode, type ProcessModelGraphNode, type ProcessModelGraphTerminalNode, type ProcessModelGraphWithTraces, type ProcessModelLayoutResult, ProcessModelLayoutUtilities, type ProcessModelLibraryEntry, type ProcessModelNodeBase, type ProcessModelNodePosition, type ProcessModelTerminalKind, ProcessModelTerminalNode, type ProcessModelTerminalNodeProps, type ProcessModelTrace, ProcessModelTraceReplay, type ProcessModelTraceReplayProps, ProgressIndicator, type ProgressIndicatorProps, PromiseUtils, PropertyBase, type PropertyBaseProps, type PropertyField, PropsUtil, type PropsWithBagFunction, type PropsWithBagFunctionOrChildren, type Range, type RangeOptions, type ResolvedTheme, ScrollPicker, type ScrollPickerProps, SearchBar, type SearchBarProps, type SegmentBounds, type SegmentBuffer, type SegmentEditState, type SegmentLayoutOptions, type SegmentValues, Select, SelectButton, type SelectButtonProps, SelectContent, type SelectContentProps, SelectContext, type SelectContextActions, type SelectContextComputedState, type SelectContextConfig, type SelectContextIds, type SelectContextLayout, type SelectContextSearch, type SelectContextState, type SelectContextType, type SelectIconAppearance, type SelectIds, SelectOption, SelectOptionDisplayContext, type SelectOptionDisplayLocation, type SelectOptionProps, type SelectOptionType, type SelectProps, SelectRoot, type SelectRootProps, type SelectionOption, SimpleSearch, SimpleSearchWithMapping, type SingleOrArray, SingleSelectProperty, type SingleSelectPropertyProps, type SingleSelectionReturn, SortingList, type SortingListItem, type SortingListProps, StepperBar, type StepperBarProps, type StepperState, StorageListener, type StorageSubscriber, type SuperSet, Switch, type SwitchProps, type TabContextType, type TabInfo, TabList, TabPanel, TabSwitcher, type TabSwitcherProps, TabView, Table, TableBody, TableCell, type TableCellProps, TableColumn, TableColumnDefinitionContext, type TableColumnDefinitionContextType, type TableColumnProps, TableColumnSwitcher, TableColumnSwitcherPopUp, type TableColumnSwitcherPopUpProps, type TableColumnSwitcherProps, TableContainerContext, type TableContainerContextType, TableDisplay, type TableDisplayProps, TableFilter, TableFilterButton, type TableFilterButtonProps, TableHeader, type TableHeaderProps, TablePageSizeSelect, type TablePageSizeSelectProps, TablePagination, TablePaginationMenu, type TablePaginationMenuProps, type TablePaginationProps, type TableProps, TableProvider, type TableProviderProps, TableSortButton, type TableSortButtonProps, TableStateContext, type TableStateContextType, TableStateWithoutSizingContext, type TableStateWithoutSizingContextType, type TableVirtualizationOptions, TableWithSelection, type TableWithSelectionProps, TableWithSelectionProvider, type TableWithSelectionProviderProps, TagIcon, type TagProps, TagsFilterPopUp, type TagsFilterPopUpProps, TagsSingleFilterPopUp, type TagsSingleFilterPopUpProps, TextFilterPopUp, TextImage, type TextImageProps, TextProperty, type TextPropertyProps, Textarea, type TextareaProps, TextareaWithHeadline, type TextareaWithHeadlineProps, type ThemeConfig, ThemeContext, ThemeDialog, type ThemeDialogProps, ThemeIcon, type ThemeIconProps, ThemeProvider, type ThemeProviderProps, ThemeSelect, type ThemeSelectProps, type ThemeType, ThemeUtil, TimeDisplay, TimePicker, type TimePickerMillisecondIncrement, type TimePickerMinuteIncrement, type TimePickerProps, type TimePickerSecondIncrement, ToggleableInput, Tooltip, type TooltipConfig, TooltipContext, type TooltipContextType, TooltipDisplay, type TooltipDisplayProps, type TooltipProps, TooltipRoot, type TooltipRootProps, TooltipTrigger, type TooltipTriggerBag, type TooltipTriggerContextValue, type TooltipTriggerProps, Transition, type TransitionState, type TransitionWrapperProps, type UnBoundedRange, type UseAnchoredPositionOptions, type UseAnchoredPostitionProps, type UseComboboxActions, type UseComboboxComputedState, type UseComboboxOption, type UseComboboxOptions, type UseComboboxReturn, type UseComboboxState, type UseCreateFormProps, type UseCreateFormResult, type UseDelayOptions, type UseDelayOptionsResolved, type UseFocusTrapProps, type UseFormFieldOptions, type UseFormFieldParameter, type UseFormObserverKeyProps, type UseFormObserverProps, type UseMultiSelectActions, type UseMultiSelectComputedState, type UseMultiSelectFirstHighlightBehavior, type UseMultiSelectOption, type UseMultiSelectOptions, type UseMultiSelectReturn, type UseMultiSelectState, type UseMultiSelectionOption, type UseMultiSelectionOptions, type UseMultiSelectionReturn, type UseOutsideClickHandlers, type UseOutsideClickOptions, type UseOutsideClickProps, type UseOverlayRegistryProps, type UseOverlayRegistryResult, type UsePresenceRefProps, type UseResizeObserverProps, type UseSearchOptions, type UseSearchReturn, type UseSelectActions, type UseSelectComputedState, type UseSelectFirstHighlightBehavior, type UseSelectOption, type UseSelectOptions, type UseSelectReturn, type UseSelectState, type UseSingleSelectionOptions, type UseTypeAheadSearchOptions, type UseTypeAheadSearchReturn, type UseUpdatingDateStringProps, UseValidators, type UserFormFieldProps, type ValidatorError, type ValidatorResult, VerticalDivider, type VerticalDividerProps, VirtualizedTableBody, type VirtualizedTableBodyProps, Visibility, type VisibilityProps, type WeekDay, YearMonthPicker, type YearMonthPickerProps, buildSegmentLayout, builder, clearSegment, closestMatch, composeDate, createLoopingList, createLoopingListWithIndex, decomposeDate, editableSegmentTypes, editableTypesOf, equalSizeGroups, formatSegment, getNeighbours, getProcessModelLibraryEntry, hightideTranslation, hightideTranslationLocales, isComplete, isEmpty, match, mergeProps, noop, processModelLibrary, range, resolveSetState, segmentBounds, segmentPlaceholder, setDayPeriod, stepSegment, timeUnitTranslationKey, toSizeVars, typeDigit, useAnchoredPosition, useCombobox, useComboboxContext, useControlledState, useCreateForm, useDateTimeFormat, useDelay, useDialogContext, useDrawerContext, useEventCallbackStabilizer, useFilterValueTranslation, useFocusGuards, useFocusManagement, useFocusOnceVisible, useFocusTrap, useForm, useFormField, useFormObserver, useFormObserverKey, useHandleRefs, useHightideConfig, useHightideTranslation, useICUTranslation, useIsMounted, useLanguage, useListNavigation, useLocale, useLogOnce, useLogUnstableDependencies, useMultiSelect, useMultiSelectContext, useMultiSelectOptionDisplayLocation, useMultiSelection, useOutsideClick, useOverlayRegistry, useOverwritableState, usePopUpContext, usePresenceRef, useRerender, useResizeObserver, useScrollObserver, useSearch, useSelect, useSelectContext, useSelectOptionDisplayLocation, useSingleSelection, useStorage, useTabContext, useTableColumnDefinitionContext, useTableContainerContext, useTableStateContext, useTableStateWithoutSizingContext, useTheme, useTimeZone, useTooltip, useTransitionState, useTranslatedValidators, useTypeAheadSearch, useUpdatingDateString, useWindowResizeObserver, validateEmail, writeToClipboard };
3748
+ export { ASTNodeInterpreter, type ASTNodeInterpreterProps, ActionCard, type ActionCardProps, AnchoredFloatingContainer, type AnchoredFloatingContainerProps, AppPage, type AppPageNavigationItem, type AppPageProps, type AppPageSidebarProps, AppPageSidebarWithNavigation, type AppPageSidebarWithNavigationProps, AppSidebar, type AppSidebarProps, ArrayUtil, AutoColumnOrderFeature, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, AvatarWithStatus, type AvatarWithStatusProps, type BackgroundOverlayProps, type BagFunction, type BagFunctionOrNode, type BagFunctionOrValue, BagFunctionUtil, BooleanFilterPopUp, BreadCrumbGroup, BreadCrumbLink, type BreadCrumbLinkProps, type BreadCrumbProps, BreadCrumbs, Button, type ButtonColor, type ButtonProps, ButtonUtil, Card, type CardProps, type CardSize, Carousel, type CarouselProps, CarouselSlide, type CarouselSlideProps, Checkbox, CheckboxProperty, type CheckboxPropertyProps, type CheckboxProps, Chip, type ChipColor, ChipList, type ChipListProps, type ChipProps, ChipUtil, type ColumnSizeCalculatoProps, ColumnSizeUtil, ColumnSizingWithTargetFeature, Combobox, ComboboxContext, type ComboboxContextActions, type ComboboxContextComputedState, type ComboboxContextConfig, type ComboboxContextIds, type ComboboxContextInternalState, type ComboboxContextLayout, type ComboboxContextSearch, type ComboboxContextType, ComboboxInput, type ComboboxInputProps, ComboboxList, type ComboboxListProps, ComboboxOption, type ComboboxOptionProps, type ComboboxOptionType, type ComboboxProps, ComboboxRoot, type ComboboxRootProps, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogType, type ControlledStateProps, CopyToClipboardWrapper, type CopyToClipboardWrapperProps, type Crumb, DOMUtils, type DataType, type DataTypeFilterPopUpProps, DataTypeUtils, type DataValue, DateFilterPopUp, DatePicker, type DatePickerProps, DateProperty, type DatePropertyProps, DateTimeField, type DateTimeFieldProps, DateTimeFormat, DateTimeInput, type DateTimeInputProps, DateTimePicker, DateTimePickerDialog, type DateTimePickerDialogProps, type DateTimePickerProps, type DateTimePrecision, type DateTimeSegment, DateUtils, DatetimeFilterPopUp, DayPicker, type DayPickerProps, type DeepPartial, Dialog, DialogContext, type DialogContextType, type DialogOpenerPassingProps, DialogOpenerWrapper, type DialogOpenerWrapperBag, type DialogOpenerWrapperProps, type DialogPosition, type DialogProps, DialogRoot, type DialogRootProps, type Direction, DiscardChangesDialog, DividerInserter, type DividerInserterProps, Drawer, type DrawerAligment, DrawerCloseButton, type DrawerCloseButtonProps, DrawerContent, type DrawerContentProps, DrawerContext, type DrawerContextType, type DrawerProps, DrawerRoot, type DrawerRootProps, Duration, type DurationJSON, type EaseFunction, EaseFunctions, type EditCompleteOptions, type EditCompleteOptionsResolved, type EditableSegmentType, type ElementHandle, ErrorComponent, type ErrorComponentProps, type Exact, Expandable, ExpandableContent, type ExpandableContentProps, ExpandableHeader, type ExpandableHeaderProps, type ExpandableProps, ExpandableRoot, type ExpandableRootProps, ExpansionIcon, type ExpansionIconProps, type FAQItem, FAQSection, type FAQSectionProps, FillerCell, type FillerCellProps, FilterBasePopUp, FilterFunctions, FilterList, type FilterListItem, type FilterListPopUpBuilderProps, type FilterListProps, type FilterOperator, type FilterOperatorBoolean, type FilterOperatorDate, type FilterOperatorDatetime, FilterOperatorLabel, type FilterOperatorLabelProps, type FilterOperatorNumber, type FilterOperatorTags, type FilterOperatorTagsSingle, type FilterOperatorText, type FilterOperatorUnknownType, FilterOperatorUtils, type FilterParameter, FilterPopUp, type FilterPopUpBaseProps, type FilterPopUpProps, type FilterValue, type FilterValueTranslationOptions, FilterValueUtils, FlexibleDateTimeInput, type FlexibleDateTimeInputProps, type FloatingElementAlignment, FocusTrap, type FocusTrapProps, FocusTrapWrapper, type FocusTrapWrapperProps, FormContext, type FormContextType, type FormEvent, type FormEventListener, FormField, type FormFieldAriaAttributes, type FormFieldBag, type FormFieldDataHandling, type FormFieldFocusableElementProps, type FormFieldInteractionStates, FormFieldLayout, type FormFieldLayoutBag, type FormFieldLayoutIds, type FormFieldLayoutProps, type FormFieldProps, type FormFieldResult, FormObserver, FormObserverKey, type FormObserverKeyProps, type FormObserverKeyResult, type FormObserverProps, type FormObserverResult, FormProvider, type FormProviderProps, FormStore, type FormStoreProps, type FormValidationBehaviour, type FormValidator, type FormValue, GenericFilterPopUp, HelpwaveBadge, type HelpwaveBadgeProps, HelpwaveLogo, type HelpwaveProps, type HightideConfig, HightideConfigContext, HightideConfigProvider, type HightideConfigProviderProps, HightideProvider, type HightideTranslationEntries, type HightideTranslationLocales, IconButton, IconButtonBase, type IconButtonBaseProps, type IconButtonProps, type IdentifierFilterValue, InfiniteScroll, type InfiniteScrollProps, Input, InputDialog, type InputModalProps, type InputProps, InsideLabelInput, LanguageDialog, LanguageSelect, type ListNavigationOptions, type ListNavigationReturn, LoadingAndErrorComponent, type LoadingAndErrorComponentProps, LoadingAnimation, type LoadingAnimationProps, type LoadingComponentProps, LoadingContainer, LocaleContext, type LocaleContextValue, LocaleProvider, type LocaleProviderProps, type LocalizationConfig, LocalizationUtil, LoopingArrayCalculator, MarkdownInterpreter, type MarkdownInterpreterProps, MathUtil, Menu, type MenuBag, MenuItem, type MenuItemProps, type MenuProps, type Month, MultiSearchWithMapping, MultiSelect, MultiSelectButton, type MultiSelectButtonProps, MultiSelectChipDisplay, MultiSelectChipDisplayButton, type MultiSelectChipDisplayButtonProps, type MultiSelectChipDisplayProps, MultiSelectContent, type MultiSelectContentProps, MultiSelectContext, type MultiSelectContextActions, type MultiSelectContextComputedState, type MultiSelectContextConfig, type MultiSelectContextIds, type MultiSelectContextLayout, type MultiSelectContextSearch, type MultiSelectContextState, type MultiSelectContextType, type MultiSelectIconAppearance, type MultiSelectIds, MultiSelectOption, MultiSelectOptionDisplayContext, type MultiSelectOptionDisplayLocation, type MultiSelectOptionProps, type MultiSelectOptionType, MultiSelectProperty, type MultiSelectPropertyProps, type MultiSelectProps, MultiSelectRoot, type MultiSelectRootProps, MultiSubjectSearchWithMapping, Navigation, NavigationCard, type NavigationCardProps, type NavigationContextActions, type NavigationContextType, type NavigationItemData, NavigationItemList, type NavigationItemListProps, type NavigationItemState, type NavigationItemType, type NavigationProps, NavigationProvider, type NavigationProviderProps, NumberFilterPopUp, NumberProperty, type NumberPropertyProps, type OverlayItem, OverlayRegistry, Pagination, type PaginationProps, PolymorphicSlot, type PolymorphicSlotProps, PopUp, PopUpContext, type PopUpContextType, PopUpOpener, type PopUpOpenerBag, type PopUpOpenerProps, type PopUpProps, PopUpRoot, type PopUpRootProps, Portal, type PortalProps, type ProcessModelActivityIconKind, ProcessModelActivityNode, type ProcessModelActivityNodeKind, type ProcessModelActivityNodeProps, ProcessModelCanvas, type ProcessModelCanvasProps, type ProcessModelEdge, type ProcessModelEdgePointResult, type ProcessModelEdgeStrokeStyle, type ProcessModelGraph, type ProcessModelGraphActivityNode, type ProcessModelGraphNode, type ProcessModelGraphTerminalNode, type ProcessModelGraphWithTraces, type ProcessModelLayoutResult, ProcessModelLayoutUtilities, type ProcessModelLibraryEntry, type ProcessModelNodeBase, type ProcessModelNodePosition, type ProcessModelTerminalKind, ProcessModelTerminalNode, type ProcessModelTerminalNodeProps, type ProcessModelTrace, ProcessModelTraceReplay, type ProcessModelTraceReplayProps, ProgressIndicator, type ProgressIndicatorProps, PromiseUtils, PropertyBase, type PropertyBaseProps, type PropertyField, PropsUtil, type PropsWithBagFunction, type PropsWithBagFunctionOrChildren, type Range, type RangeOptions, type ResolvedTheme, ScrollPicker, type ScrollPickerProps, SearchBar, type SearchBarProps, type SegmentBounds, type SegmentBuffer, type SegmentEditState, type SegmentLayoutOptions, type SegmentValues, Select, SelectButton, type SelectButtonProps, SelectContent, type SelectContentProps, SelectContext, type SelectContextActions, type SelectContextComputedState, type SelectContextConfig, type SelectContextIds, type SelectContextLayout, type SelectContextSearch, type SelectContextState, type SelectContextType, type SelectIconAppearance, type SelectIds, SelectOption, SelectOptionDisplayContext, type SelectOptionDisplayLocation, type SelectOptionProps, type SelectOptionType, type SelectProps, SelectRoot, type SelectRootProps, type SelectionOption, SimpleSearch, SimpleSearchWithMapping, type SingleOrArray, SingleSelectProperty, type SingleSelectPropertyProps, type SingleSelectionReturn, SortingList, type SortingListItem, type SortingListProps, StepperBar, type StepperBarProps, type StepperState, StorageListener, type StorageSubscriber, type SuperSet, Switch, type SwitchProps, type TabContextType, type TabInfo, TabList, TabPanel, TabSwitcher, type TabSwitcherProps, TabView, Table, TableBody, TableCell, type TableCellProps, TableColumn, TableColumnDefinitionContext, type TableColumnDefinitionContextType, type TableColumnProps, TableColumnSwitcher, TableColumnSwitcherPopUp, type TableColumnSwitcherPopUpProps, type TableColumnSwitcherProps, TableContainerContext, type TableContainerContextType, TableDisplay, type TableDisplayProps, TableFilter, TableFilterButton, type TableFilterButtonProps, TableHeader, type TableHeaderProps, TablePageSizeSelect, type TablePageSizeSelectProps, TablePagination, TablePaginationMenu, type TablePaginationMenuProps, type TablePaginationProps, type TableProps, TableProvider, type TableProviderProps, TableSortButton, type TableSortButtonProps, TableStateContext, type TableStateContextType, TableStateWithoutSizingContext, type TableStateWithoutSizingContextType, type TableVirtualizationOptions, TableWithSelection, type TableWithSelectionProps, TableWithSelectionProvider, type TableWithSelectionProviderProps, TagIcon, type TagProps, TagsFilterPopUp, type TagsFilterPopUpProps, TagsSingleFilterPopUp, type TagsSingleFilterPopUpProps, TextFilterPopUp, TextImage, type TextImageProps, TextProperty, type TextPropertyProps, Textarea, type TextareaProps, TextareaWithHeadline, type TextareaWithHeadlineProps, type ThemeConfig, ThemeContext, ThemeDialog, type ThemeDialogProps, ThemeIcon, type ThemeIconProps, ThemeProvider, type ThemeProviderProps, ThemeSelect, type ThemeSelectProps, type ThemeType, ThemeUtil, TimeDisplay, TimePicker, type TimePickerMillisecondIncrement, type TimePickerMinuteIncrement, type TimePickerProps, type TimePickerSecondIncrement, ToggleableInput, Tooltip, type TooltipConfig, TooltipContext, type TooltipContextType, TooltipDisplay, type TooltipDisplayProps, type TooltipProps, TooltipRoot, type TooltipRootProps, TooltipTrigger, type TooltipTriggerBag, type TooltipTriggerContextValue, type TooltipTriggerProps, Transition, type TransitionState, type TransitionWrapperProps, type TreeItem, type TreeNavigationActionOptions, type TreeNavigationOptions, type TreeNavigationReturn, type TreeNode, type UnBoundedRange, type UseAnchoredPositionOptions, type UseAnchoredPostitionProps, type UseComboboxActions, type UseComboboxComputedState, type UseComboboxOption, type UseComboboxOptions, type UseComboboxReturn, type UseComboboxState, type UseCreateFormProps, type UseCreateFormResult, type UseDelayOptions, type UseDelayOptionsResolved, type UseFocusTrapProps, type UseFormFieldOptions, type UseFormFieldParameter, type UseFormObserverKeyProps, type UseFormObserverProps, type UseMultiSelectActions, type UseMultiSelectComputedState, type UseMultiSelectFirstHighlightBehavior, type UseMultiSelectOption, type UseMultiSelectOptions, type UseMultiSelectReturn, type UseMultiSelectState, type UseMultiSelectionOption, type UseMultiSelectionOptions, type UseMultiSelectionReturn, type UseOutsideClickHandlers, type UseOutsideClickOptions, type UseOutsideClickProps, type UseOverlayRegistryProps, type UseOverlayRegistryResult, type UsePresenceRefProps, type UseResizeObserverProps, type UseSearchOptions, type UseSearchReturn, type UseSelectActions, type UseSelectComputedState, type UseSelectFirstHighlightBehavior, type UseSelectOption, type UseSelectOptions, type UseSelectReturn, type UseSelectState, type UseSingleSelectionOptions, type UseTypeAheadSearchOptions, type UseTypeAheadSearchReturn, type UseUpdatingDateStringProps, UseValidators, type UserFormFieldProps, type ValidatorError, type ValidatorResult, VerticalDivider, type VerticalDividerProps, VerticalNavigationItem, type VerticalNavigationItemProps, NavigationProvider as VerticalNavigationProvider, VerticalNavigationTree, type VerticalNavigationTreeProps, VirtualizedTableBody, type VirtualizedTableBodyProps, Visibility, type VisibilityProps, type WeekDay, YearMonthPicker, type YearMonthPickerProps, buildSegmentLayout, builder, clearSegment, closestMatch, composeDate, createLoopingList, createLoopingListWithIndex, decomposeDate, editableSegmentTypes, editableTypesOf, equalSizeGroups, formatSegment, getNeighbours, getProcessModelLibraryEntry, hightideTranslation, hightideTranslationLocales, isComplete, isEmpty, match, mergeProps, noop, processModelLibrary, range, resolveSetState, segmentBounds, segmentPlaceholder, setDayPeriod, stepSegment, timeUnitTranslationKey, toSizeVars, toTreeNodes, typeDigit, useAnchoredPosition, useCombobox, useComboboxContext, useControlledState, useCreateForm, useDateTimeFormat, useDelay, useDialogContext, useDrawerContext, useEventCallbackStabilizer, useFilterValueTranslation, useFocusGuards, useFocusManagement, useFocusOnceVisible, useFocusTrap, useForm, useFormField, useFormObserver, useFormObserverKey, useHandleRefs, useHightideConfig, useHightideTranslation, useICUTranslation, useIsMounted, useLanguage, useListNavigation, useLocale, useLogOnce, useLogUnstableDependencies, useMultiSelect, useMultiSelectContext, useMultiSelectOptionDisplayLocation, useMultiSelection, useNavigationContext, useNavigationItem, useOutsideClick, useOverlayRegistry, useOverwritableState, usePopUpContext, usePresenceRef, useRerender, useResizeObserver, useScrollObserver, useSearch, useSelect, useSelectContext, useSelectOptionDisplayLocation, useSingleSelection, useStorage, useTabContext, useTableColumnDefinitionContext, useTableContainerContext, useTableStateContext, useTableStateWithoutSizingContext, useTheme, useTimeZone, useTooltip, useTransitionState, useTranslatedValidators, useTreeNavigation, useTypeAheadSearch, useUpdatingDateString, useNavigationContext as useVerticalNavigationContext, useNavigationItem as useVerticalNavigationItem, useWindowResizeObserver, validateEmail, writeToClipboard };