@helpwave/hightide 0.12.5 → 0.12.7

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
@@ -41,53 +41,66 @@ type AvatarProps = Omit<HTMLAttributes<HTMLDivElement>, 'children'> & {
41
41
  */
42
42
  declare const Avatar: ({ image: initialImage, name, size, ...props }: AvatarProps) => react_jsx_runtime.JSX.Element;
43
43
  type AvatarGroupProps = HTMLAttributes<HTMLDivElement> & {
44
- avatars: Omit<AvatarProps, 'size'>[];
45
- showTotalNumber?: boolean;
46
- size?: AvatarSize;
44
+ 'avatars': Omit<AvatarProps, 'size'>[];
45
+ 'showTotalNumber'?: boolean;
46
+ 'size'?: AvatarSize;
47
+ 'data-name'?: string;
47
48
  };
48
49
  /**
49
50
  * A component for showing a group of Avatar's
50
51
  */
51
52
  declare const AvatarGroup: ({ avatars, showTotalNumber, size, ...props }: AvatarGroupProps) => react_jsx_runtime.JSX.Element;
53
+ type AvatarStatus = 'online' | 'offline' | 'away' | 'busy' | 'unknown';
52
54
  type AvatarWithStatusProps = AvatarProps & {
53
- isOnline: boolean;
55
+ status?: AvatarStatus;
54
56
  };
55
- declare const AvatarWithStatus: ({ isOnline, className, size, ...avatarProps }: AvatarWithStatusProps) => react_jsx_runtime.JSX.Element;
57
+ declare const AvatarWithStatus: ({ status, className, size, ...avatarProps }: AvatarWithStatusProps) => react_jsx_runtime.JSX.Element;
56
58
 
57
59
  type CardSize = 'sm' | 'md' | 'lg';
58
60
  type CardProps = Omit<HTMLAttributes<HTMLDivElement>, 'title'> & {
59
- title: ReactNode;
60
- description?: ReactNode;
61
- size?: CardSize;
61
+ 'title': ReactNode;
62
+ 'description'?: ReactNode;
63
+ 'size'?: CardSize;
64
+ 'leading'?: ReactNode;
65
+ 'trailing'?: ReactNode;
66
+ 'data-name'?: string;
62
67
  };
63
- declare const Card: ({ title, description, size, children, className, ...props }: CardProps) => react_jsx_runtime.JSX.Element;
68
+ declare const Card: ({ title, description, size, leading, trailing, children, className, ...props }: CardProps) => react_jsx_runtime.JSX.Element;
64
69
  type ActionCardProps = Omit<HTMLAttributes<HTMLDivElement>, 'title'> & {
65
- title: ReactNode;
66
- description?: ReactNode;
67
- size?: CardSize;
68
- action?: ReactNode;
69
- disabled?: boolean;
70
+ 'title': ReactNode;
71
+ 'description'?: ReactNode;
72
+ 'size'?: CardSize;
73
+ 'leading'?: ReactNode;
74
+ 'trailing'?: ReactNode;
75
+ 'disabled'?: boolean;
76
+ 'data-name'?: string;
70
77
  };
71
78
  declare const ActionCard: react.ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLDivElement>, "title"> & {
72
79
  title: ReactNode;
73
80
  description?: ReactNode;
74
81
  size?: CardSize;
75
- action?: ReactNode;
82
+ leading?: ReactNode;
83
+ trailing?: ReactNode;
76
84
  disabled?: boolean;
85
+ 'data-name'?: string;
77
86
  } & react.RefAttributes<HTMLDivElement>>;
78
87
  type NavigationCardProps = Omit<HTMLAttributes<HTMLDivElement>, 'title'> & {
79
- title: ReactNode;
80
- description?: ReactNode;
81
- size?: CardSize;
82
- href: string;
83
- isExternal?: boolean;
88
+ 'title': ReactNode;
89
+ 'description'?: ReactNode;
90
+ 'size'?: CardSize;
91
+ 'leading'?: ReactNode;
92
+ 'href': string;
93
+ 'isExternal'?: boolean;
94
+ 'data-name'?: string;
84
95
  };
85
96
  declare const NavigationCard: react.ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLDivElement>, "title"> & {
86
97
  title: ReactNode;
87
98
  description?: ReactNode;
88
99
  size?: CardSize;
100
+ leading?: ReactNode;
89
101
  href: string;
90
102
  isExternal?: boolean;
103
+ 'data-name'?: string;
91
104
  } & react.RefAttributes<HTMLDivElement>>;
92
105
 
93
106
  type ChipSize = 'xs' | 'sm' | 'md' | 'lg' | null;
@@ -803,17 +816,18 @@ interface TreeItem {
803
816
  }
804
817
  interface TreeNavigationOptions {
805
818
  nodes: ReadonlyArray<TreeNode>;
806
- activeId?: string | null;
807
- onActiveIdChange?: (activeId: string | null) => void;
808
- initialActiveId?: string | null;
819
+ focusedId?: string | null;
820
+ onFocusedIdChange?: (focusedId: string | null) => void;
821
+ initialFocusedId?: string | null;
809
822
  onlyOneExpandedTree?: boolean;
810
823
  }
811
824
  interface TreeNavigationActionOptions {
812
825
  isFocusing?: boolean;
813
826
  }
814
827
  interface TreeNavigationReturn {
815
- items: ReadonlyArray<TreeItem>;
816
- activeItem: TreeItem | null;
828
+ visibleItems: ReadonlyArray<TreeItem>;
829
+ allItems: ReadonlyArray<TreeItem>;
830
+ focusedItem: TreeItem | null;
817
831
  navigateTo: (id: string) => void;
818
832
  expand: (id: string, options?: TreeNavigationActionOptions) => void;
819
833
  collapse: (id: string, options?: TreeNavigationActionOptions) => void;
@@ -823,11 +837,14 @@ interface TreeNavigationReturn {
823
837
  first: () => void;
824
838
  last: () => void;
825
839
  }
826
- declare function useTreeNavigation({ nodes, activeId: controlledActiveId, onActiveIdChange, initialActiveId, onlyOneExpandedTree, }: TreeNavigationOptions): TreeNavigationReturn;
840
+ declare function resolveTreeNodePath(nodes: ReadonlyArray<TreeNode>, id: string | null): ReadonlyArray<string> | null;
841
+ declare function useTreeNavigation({ nodes, focusedId: controlledFocusedId, onFocusedIdChange, initialFocusedId, onlyOneExpandedTree, }: TreeNavigationOptions): TreeNavigationReturn;
827
842
 
828
843
  interface NavigationItemState {
829
844
  expanded: boolean;
830
845
  isFocused: boolean;
846
+ isActive: boolean;
847
+ isOnActivePath: boolean;
831
848
  path: ReadonlyArray<string>;
832
849
  }
833
850
  interface NavigationContextActions {
@@ -842,13 +859,18 @@ interface NavigationContextActions {
842
859
  registerItemRef: (id: string, element: HTMLElement | null) => void;
843
860
  }
844
861
  interface NavigationContextType extends NavigationContextActions {
845
- activeItem: TreeItem | null;
862
+ focusedItem: TreeItem | null;
846
863
  focusedId: string | null;
847
- items: ReadonlyArray<TreeItem>;
864
+ activeId: string | null;
865
+ activePath: ReadonlyArray<string> | null;
866
+ visibleItems: ReadonlyArray<TreeItem>;
867
+ allItems: ReadonlyArray<TreeItem>;
848
868
  getItemState: (id: string) => NavigationItemState | null;
849
869
  }
850
- type NavigationProviderProps = PropsWithChildren<TreeNavigationOptions>;
851
- declare function NavigationProvider({ children, ...options }: NavigationProviderProps): react_jsx_runtime.JSX.Element;
870
+ interface NavigationProviderProps extends PropsWithChildren<TreeNavigationOptions> {
871
+ activeId?: string | null;
872
+ }
873
+ declare function NavigationProvider({ children, activeId, ...treeOptions }: NavigationProviderProps): react_jsx_runtime.JSX.Element;
852
874
  declare function useNavigationContext(): NavigationContextType;
853
875
  declare function useNavigationItem(id: string): {
854
876
  ref: (element: HTMLLIElement | null) => void;
@@ -862,6 +884,8 @@ declare function useNavigationItem(id: string): {
862
884
  toggleExpansion: (id: string, options?: TreeNavigationActionOptions) => void;
863
885
  expanded: boolean;
864
886
  isFocused: boolean;
887
+ isActive: boolean;
888
+ isOnActivePath: boolean;
865
889
  path: ReadonlyArray<string>;
866
890
  };
867
891
 
@@ -899,9 +923,12 @@ interface AppPageSidebarWithNavigationProps extends AppSidebarProps {
899
923
  footer?: ReactNode;
900
924
  navigationItems?: NavigationItemData[];
901
925
  contentOverwrite?: ReactNode;
902
- initialActiveId?: string;
926
+ initialFocusedId?: string;
927
+ focusedId?: string | null;
928
+ onFocusedIdChange?: (focusedId: string | null) => void;
929
+ activeId?: string | null;
903
930
  }
904
- declare const AppPageSidebarWithNavigation: ({ header, footer, navigationItems, contentOverwrite, initialActiveId, ...props }: AppPageSidebarWithNavigationProps) => react_jsx_runtime.JSX.Element;
931
+ declare const AppPageSidebarWithNavigation: ({ header, footer, navigationItems, contentOverwrite, initialFocusedId, focusedId, onFocusedIdChange, activeId, ...props }: AppPageSidebarWithNavigationProps) => react_jsx_runtime.JSX.Element;
905
932
  interface AppPageNavigationItem {
906
933
  id: string;
907
934
  label: ReactNode;
@@ -911,8 +938,11 @@ interface AppPageNavigationItem {
911
938
  items?: AppPageNavigationItem[];
912
939
  }
913
940
  interface AppPageSidebarProps {
941
+ initialFocusedId?: string;
942
+ focusedId?: string | null;
943
+ onFocusedIdChange?: (focusedId: string | null) => void;
944
+ activeId?: string | null;
914
945
  activeUrl?: string;
915
- initialActiveId?: string;
916
946
  header?: ReactNode;
917
947
  items?: AppPageNavigationItem[];
918
948
  contentOverwrite?: ReactNode;
@@ -3769,4 +3799,4 @@ declare const SimpleSearch: (search: string, objects: string[]) => string[];
3769
3799
 
3770
3800
  declare const writeToClipboard: (text: string) => Promise<void>;
3771
3801
 
3772
- 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, type SwipeDirection, type SwipeEventData, type SwipeInputMode, type SwipeStartRegion, 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, useSwipeGesture, useTabContext, useTableColumnDefinitionContext, useTableContainerContext, useTableStateContext, useTableStateWithoutSizingContext, useTheme, useTimeZone, useTooltip, useTransitionState, useTranslatedValidators, useTreeNavigation, useTypeAheadSearch, useUpdatingDateString, useNavigationContext as useVerticalNavigationContext, useNavigationItem as useVerticalNavigationItem, useWindowResizeObserver, validateEmail, writeToClipboard };
3802
+ 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, type AvatarStatus, 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, type SwipeDirection, type SwipeEventData, type SwipeInputMode, type SwipeStartRegion, 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, resolveTreeNodePath, 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, useSwipeGesture, useTabContext, useTableColumnDefinitionContext, useTableContainerContext, useTableStateContext, useTableStateWithoutSizingContext, useTheme, useTimeZone, useTooltip, useTransitionState, useTranslatedValidators, useTreeNavigation, useTypeAheadSearch, useUpdatingDateString, useNavigationContext as useVerticalNavigationContext, useNavigationItem as useVerticalNavigationItem, useWindowResizeObserver, validateEmail, writeToClipboard };
package/dist/index.d.ts CHANGED
@@ -41,53 +41,66 @@ type AvatarProps = Omit<HTMLAttributes<HTMLDivElement>, 'children'> & {
41
41
  */
42
42
  declare const Avatar: ({ image: initialImage, name, size, ...props }: AvatarProps) => react_jsx_runtime.JSX.Element;
43
43
  type AvatarGroupProps = HTMLAttributes<HTMLDivElement> & {
44
- avatars: Omit<AvatarProps, 'size'>[];
45
- showTotalNumber?: boolean;
46
- size?: AvatarSize;
44
+ 'avatars': Omit<AvatarProps, 'size'>[];
45
+ 'showTotalNumber'?: boolean;
46
+ 'size'?: AvatarSize;
47
+ 'data-name'?: string;
47
48
  };
48
49
  /**
49
50
  * A component for showing a group of Avatar's
50
51
  */
51
52
  declare const AvatarGroup: ({ avatars, showTotalNumber, size, ...props }: AvatarGroupProps) => react_jsx_runtime.JSX.Element;
53
+ type AvatarStatus = 'online' | 'offline' | 'away' | 'busy' | 'unknown';
52
54
  type AvatarWithStatusProps = AvatarProps & {
53
- isOnline: boolean;
55
+ status?: AvatarStatus;
54
56
  };
55
- declare const AvatarWithStatus: ({ isOnline, className, size, ...avatarProps }: AvatarWithStatusProps) => react_jsx_runtime.JSX.Element;
57
+ declare const AvatarWithStatus: ({ status, className, size, ...avatarProps }: AvatarWithStatusProps) => react_jsx_runtime.JSX.Element;
56
58
 
57
59
  type CardSize = 'sm' | 'md' | 'lg';
58
60
  type CardProps = Omit<HTMLAttributes<HTMLDivElement>, 'title'> & {
59
- title: ReactNode;
60
- description?: ReactNode;
61
- size?: CardSize;
61
+ 'title': ReactNode;
62
+ 'description'?: ReactNode;
63
+ 'size'?: CardSize;
64
+ 'leading'?: ReactNode;
65
+ 'trailing'?: ReactNode;
66
+ 'data-name'?: string;
62
67
  };
63
- declare const Card: ({ title, description, size, children, className, ...props }: CardProps) => react_jsx_runtime.JSX.Element;
68
+ declare const Card: ({ title, description, size, leading, trailing, children, className, ...props }: CardProps) => react_jsx_runtime.JSX.Element;
64
69
  type ActionCardProps = Omit<HTMLAttributes<HTMLDivElement>, 'title'> & {
65
- title: ReactNode;
66
- description?: ReactNode;
67
- size?: CardSize;
68
- action?: ReactNode;
69
- disabled?: boolean;
70
+ 'title': ReactNode;
71
+ 'description'?: ReactNode;
72
+ 'size'?: CardSize;
73
+ 'leading'?: ReactNode;
74
+ 'trailing'?: ReactNode;
75
+ 'disabled'?: boolean;
76
+ 'data-name'?: string;
70
77
  };
71
78
  declare const ActionCard: react.ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLDivElement>, "title"> & {
72
79
  title: ReactNode;
73
80
  description?: ReactNode;
74
81
  size?: CardSize;
75
- action?: ReactNode;
82
+ leading?: ReactNode;
83
+ trailing?: ReactNode;
76
84
  disabled?: boolean;
85
+ 'data-name'?: string;
77
86
  } & react.RefAttributes<HTMLDivElement>>;
78
87
  type NavigationCardProps = Omit<HTMLAttributes<HTMLDivElement>, 'title'> & {
79
- title: ReactNode;
80
- description?: ReactNode;
81
- size?: CardSize;
82
- href: string;
83
- isExternal?: boolean;
88
+ 'title': ReactNode;
89
+ 'description'?: ReactNode;
90
+ 'size'?: CardSize;
91
+ 'leading'?: ReactNode;
92
+ 'href': string;
93
+ 'isExternal'?: boolean;
94
+ 'data-name'?: string;
84
95
  };
85
96
  declare const NavigationCard: react.ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLDivElement>, "title"> & {
86
97
  title: ReactNode;
87
98
  description?: ReactNode;
88
99
  size?: CardSize;
100
+ leading?: ReactNode;
89
101
  href: string;
90
102
  isExternal?: boolean;
103
+ 'data-name'?: string;
91
104
  } & react.RefAttributes<HTMLDivElement>>;
92
105
 
93
106
  type ChipSize = 'xs' | 'sm' | 'md' | 'lg' | null;
@@ -803,17 +816,18 @@ interface TreeItem {
803
816
  }
804
817
  interface TreeNavigationOptions {
805
818
  nodes: ReadonlyArray<TreeNode>;
806
- activeId?: string | null;
807
- onActiveIdChange?: (activeId: string | null) => void;
808
- initialActiveId?: string | null;
819
+ focusedId?: string | null;
820
+ onFocusedIdChange?: (focusedId: string | null) => void;
821
+ initialFocusedId?: string | null;
809
822
  onlyOneExpandedTree?: boolean;
810
823
  }
811
824
  interface TreeNavigationActionOptions {
812
825
  isFocusing?: boolean;
813
826
  }
814
827
  interface TreeNavigationReturn {
815
- items: ReadonlyArray<TreeItem>;
816
- activeItem: TreeItem | null;
828
+ visibleItems: ReadonlyArray<TreeItem>;
829
+ allItems: ReadonlyArray<TreeItem>;
830
+ focusedItem: TreeItem | null;
817
831
  navigateTo: (id: string) => void;
818
832
  expand: (id: string, options?: TreeNavigationActionOptions) => void;
819
833
  collapse: (id: string, options?: TreeNavigationActionOptions) => void;
@@ -823,11 +837,14 @@ interface TreeNavigationReturn {
823
837
  first: () => void;
824
838
  last: () => void;
825
839
  }
826
- declare function useTreeNavigation({ nodes, activeId: controlledActiveId, onActiveIdChange, initialActiveId, onlyOneExpandedTree, }: TreeNavigationOptions): TreeNavigationReturn;
840
+ declare function resolveTreeNodePath(nodes: ReadonlyArray<TreeNode>, id: string | null): ReadonlyArray<string> | null;
841
+ declare function useTreeNavigation({ nodes, focusedId: controlledFocusedId, onFocusedIdChange, initialFocusedId, onlyOneExpandedTree, }: TreeNavigationOptions): TreeNavigationReturn;
827
842
 
828
843
  interface NavigationItemState {
829
844
  expanded: boolean;
830
845
  isFocused: boolean;
846
+ isActive: boolean;
847
+ isOnActivePath: boolean;
831
848
  path: ReadonlyArray<string>;
832
849
  }
833
850
  interface NavigationContextActions {
@@ -842,13 +859,18 @@ interface NavigationContextActions {
842
859
  registerItemRef: (id: string, element: HTMLElement | null) => void;
843
860
  }
844
861
  interface NavigationContextType extends NavigationContextActions {
845
- activeItem: TreeItem | null;
862
+ focusedItem: TreeItem | null;
846
863
  focusedId: string | null;
847
- items: ReadonlyArray<TreeItem>;
864
+ activeId: string | null;
865
+ activePath: ReadonlyArray<string> | null;
866
+ visibleItems: ReadonlyArray<TreeItem>;
867
+ allItems: ReadonlyArray<TreeItem>;
848
868
  getItemState: (id: string) => NavigationItemState | null;
849
869
  }
850
- type NavigationProviderProps = PropsWithChildren<TreeNavigationOptions>;
851
- declare function NavigationProvider({ children, ...options }: NavigationProviderProps): react_jsx_runtime.JSX.Element;
870
+ interface NavigationProviderProps extends PropsWithChildren<TreeNavigationOptions> {
871
+ activeId?: string | null;
872
+ }
873
+ declare function NavigationProvider({ children, activeId, ...treeOptions }: NavigationProviderProps): react_jsx_runtime.JSX.Element;
852
874
  declare function useNavigationContext(): NavigationContextType;
853
875
  declare function useNavigationItem(id: string): {
854
876
  ref: (element: HTMLLIElement | null) => void;
@@ -862,6 +884,8 @@ declare function useNavigationItem(id: string): {
862
884
  toggleExpansion: (id: string, options?: TreeNavigationActionOptions) => void;
863
885
  expanded: boolean;
864
886
  isFocused: boolean;
887
+ isActive: boolean;
888
+ isOnActivePath: boolean;
865
889
  path: ReadonlyArray<string>;
866
890
  };
867
891
 
@@ -899,9 +923,12 @@ interface AppPageSidebarWithNavigationProps extends AppSidebarProps {
899
923
  footer?: ReactNode;
900
924
  navigationItems?: NavigationItemData[];
901
925
  contentOverwrite?: ReactNode;
902
- initialActiveId?: string;
926
+ initialFocusedId?: string;
927
+ focusedId?: string | null;
928
+ onFocusedIdChange?: (focusedId: string | null) => void;
929
+ activeId?: string | null;
903
930
  }
904
- declare const AppPageSidebarWithNavigation: ({ header, footer, navigationItems, contentOverwrite, initialActiveId, ...props }: AppPageSidebarWithNavigationProps) => react_jsx_runtime.JSX.Element;
931
+ declare const AppPageSidebarWithNavigation: ({ header, footer, navigationItems, contentOverwrite, initialFocusedId, focusedId, onFocusedIdChange, activeId, ...props }: AppPageSidebarWithNavigationProps) => react_jsx_runtime.JSX.Element;
905
932
  interface AppPageNavigationItem {
906
933
  id: string;
907
934
  label: ReactNode;
@@ -911,8 +938,11 @@ interface AppPageNavigationItem {
911
938
  items?: AppPageNavigationItem[];
912
939
  }
913
940
  interface AppPageSidebarProps {
941
+ initialFocusedId?: string;
942
+ focusedId?: string | null;
943
+ onFocusedIdChange?: (focusedId: string | null) => void;
944
+ activeId?: string | null;
914
945
  activeUrl?: string;
915
- initialActiveId?: string;
916
946
  header?: ReactNode;
917
947
  items?: AppPageNavigationItem[];
918
948
  contentOverwrite?: ReactNode;
@@ -3769,4 +3799,4 @@ declare const SimpleSearch: (search: string, objects: string[]) => string[];
3769
3799
 
3770
3800
  declare const writeToClipboard: (text: string) => Promise<void>;
3771
3801
 
3772
- 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, type SwipeDirection, type SwipeEventData, type SwipeInputMode, type SwipeStartRegion, 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, useSwipeGesture, useTabContext, useTableColumnDefinitionContext, useTableContainerContext, useTableStateContext, useTableStateWithoutSizingContext, useTheme, useTimeZone, useTooltip, useTransitionState, useTranslatedValidators, useTreeNavigation, useTypeAheadSearch, useUpdatingDateString, useNavigationContext as useVerticalNavigationContext, useNavigationItem as useVerticalNavigationItem, useWindowResizeObserver, validateEmail, writeToClipboard };
3802
+ 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, type AvatarStatus, 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, type SwipeDirection, type SwipeEventData, type SwipeInputMode, type SwipeStartRegion, 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, resolveTreeNodePath, 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, useSwipeGesture, useTabContext, useTableColumnDefinitionContext, useTableContainerContext, useTableStateContext, useTableStateWithoutSizingContext, useTheme, useTimeZone, useTooltip, useTransitionState, useTranslatedValidators, useTreeNavigation, useTypeAheadSearch, useUpdatingDateString, useNavigationContext as useVerticalNavigationContext, useNavigationItem as useVerticalNavigationItem, useWindowResizeObserver, validateEmail, writeToClipboard };