@helpwave/hightide 0.6.2 → 0.6.4

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.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import * as React$1 from 'react';
3
- import React__default, { HTMLAttributes, SVGProps, CSSProperties, ReactNode, PropsWithChildren, RefObject, Dispatch, SetStateAction, ButtonHTMLAttributes, InputHTMLAttributes, ComponentProps, TextareaHTMLAttributes, LabelHTMLAttributes } from 'react';
2
+ import * as react from 'react';
3
+ import react__default, { HTMLAttributes, SVGProps, CSSProperties, ReactNode, PropsWithChildren, RefObject, Dispatch, SetStateAction, ButtonHTMLAttributes, InputHTMLAttributes, ComponentProps, TextareaHTMLAttributes, LabelHTMLAttributes } from 'react';
4
4
  import Link from 'next/link';
5
5
  import { Column, RowData, FilterFn, ColumnDef, Table as Table$1, InitialTableState, Row, TableState, TableOptions, RowSelectionState, SortDirection } from '@tanstack/react-table';
6
6
  import { Translation, TranslationEntries, PartialTranslationExtension } from '@helpwave/internationalization';
@@ -177,7 +177,7 @@ type FormFieldLayoutProps = Omit<HTMLAttributes<HTMLDivElement>, 'children'> & O
177
177
  description?: ReactNode;
178
178
  descriptionProps?: Omit<HTMLAttributes<HTMLParagraphElement>, 'children' | 'id'>;
179
179
  };
180
- declare const FormFieldLayout: React$1.ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLDivElement>, "children"> & Omit<Partial<FormFieldInteractionStates>, "invalid"> & {
180
+ declare const FormFieldLayout: react.ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLDivElement>, "children"> & Omit<Partial<FormFieldInteractionStates>, "invalid"> & {
181
181
  children: (bag: FormFieldLayoutBag) => ReactNode;
182
182
  ids?: Partial<FormFieldLayoutIds>;
183
183
  label?: ReactNode;
@@ -186,32 +186,44 @@ declare const FormFieldLayout: React$1.ForwardRefExoticComponent<Omit<HTMLAttrib
186
186
  invalidDescriptionProps?: Omit<HTMLAttributes<HTMLDivElement>, "children" | "id">;
187
187
  description?: ReactNode;
188
188
  descriptionProps?: Omit<HTMLAttributes<HTMLParagraphElement>, "children" | "id">;
189
- } & React$1.RefAttributes<HTMLDivElement>>;
189
+ } & react.RefAttributes<HTMLDivElement>>;
190
190
 
191
191
  type FormValidationBehaviour = 'always' | 'touched' | 'submit';
192
192
  type FormValue = Record<string, any>;
193
193
  type FormEvent<T extends FormValue> = {
194
- type: 'submit';
194
+ type: 'onSubmit';
195
195
  key: 'ALL';
196
+ hasErrors: boolean;
196
197
  values: T;
198
+ errors: Partial<Record<keyof T, ReactNode>>;
197
199
  } | {
198
- type: 'submitError';
200
+ type: 'reset';
199
201
  key: 'ALL';
200
202
  values: T;
201
203
  errors: Partial<Record<keyof T, ReactNode>>;
202
204
  } | {
203
- type: 'reset';
205
+ type: 'onTouched';
206
+ key: keyof T;
207
+ value: T[keyof T];
208
+ values: T;
209
+ } | {
210
+ type: 'onUpdate';
204
211
  key: 'ALL';
212
+ updatedKeys: (keyof T)[];
213
+ update: Partial<T>;
205
214
  values: T;
215
+ hasErrors: boolean;
206
216
  errors: Partial<Record<keyof T, ReactNode>>;
207
217
  } | {
208
218
  type: 'onChange';
209
219
  key: keyof T;
210
220
  value: T[keyof T];
221
+ values: T;
211
222
  } | {
212
223
  type: 'onError';
213
224
  key: keyof T;
214
225
  value: T[keyof T];
226
+ values: T;
215
227
  error: ReactNode;
216
228
  };
217
229
  type FormEventListener<T extends FormValue> = (event: FormEvent<T>) => void;
@@ -219,6 +231,7 @@ type FormValidator<T extends FormValue> = (value: T[keyof T]) => ReactNode;
219
231
  type FormStoreProps<T extends FormValue> = {
220
232
  initialValues: T;
221
233
  hasTriedSubmitting?: boolean;
234
+ submittingTouchesAll?: boolean;
222
235
  validators?: Partial<{
223
236
  [K in keyof T]: (v: T[K]) => ReactNode;
224
237
  }>;
@@ -233,11 +246,12 @@ declare class FormStore<T extends FormValue> {
233
246
  private errors;
234
247
  private touched;
235
248
  private listeners;
236
- constructor({ initialValues, hasTriedSubmitting, validators, validationBehaviour, }: FormStoreProps<T>);
249
+ private submittingTouchesAll;
250
+ constructor({ initialValues, hasTriedSubmitting, submittingTouchesAll, validators, validationBehaviour, }: FormStoreProps<T>);
237
251
  getValue<K extends keyof T>(key: K): T[K];
238
252
  getAllValues(): T;
239
- setValue<K extends keyof T>(key: K, value: T[K]): void;
240
- setValues(values: Partial<T>): void;
253
+ setValue<K extends keyof T>(key: K, value: T[K], triggerUpdate?: boolean): void;
254
+ setValues(values: Partial<T>, triggerUpdate?: boolean): void;
241
255
  getTouched(key: keyof T): boolean;
242
256
  setTouched(key: keyof T, isTouched?: boolean): void;
243
257
  getHasError(): boolean;
@@ -254,30 +268,38 @@ declare class FormStore<T extends FormValue> {
254
268
  reset(): void;
255
269
  }
256
270
 
257
- type FormFieldFocusableElementProps = FormFieldAriaAttributes & {
258
- id: string;
259
- ref: (element: HTMLElement | null) => void;
260
- };
261
- type FormFieldBag<T extends FormValue, K extends keyof T> = {
262
- dataProps: FormFieldDataHandling<T[K]>;
263
- focusableElementProps: FormFieldFocusableElementProps;
264
- interactionStates: FormFieldInteractionStates;
265
- };
266
- interface FormFieldProps<T extends FormValue, K extends keyof T> extends Omit<FormFieldLayoutProps, 'invalidDescription' | 'children'> {
267
- children: (bag: FormFieldBag<T, K>) => ReactNode;
268
- name: K;
269
- }
270
- type FormFieldDataHandling<T> = {
271
- value: T;
272
- onValueChange: (value: T) => void;
273
- onEditComplete: (value: T) => void;
274
- };
275
- declare const FormField: <T extends FormValue, K extends keyof T>({ children, name, ...props }: FormFieldProps<T, K>) => react_jsx_runtime.JSX.Element;
276
-
277
271
  type UseCreateFormProps<T extends FormValue> = FormStoreProps<T> & {
278
272
  onFormSubmit: (values: T) => void;
279
273
  onFormError?: (values: T, errors: Partial<Record<keyof T, ReactNode>>) => void;
274
+ /**
275
+ * Called when the form values change.
276
+ *
277
+ * E.g. a key press for an input field.
278
+ *
279
+ * For most purposes use {@link onUpdate} instead.
280
+ * @param values The new values of the form.
281
+ */
280
282
  onValueChange?: (values: T) => void;
283
+ /**
284
+ * Called when the form values change and the corresponding inputs determined that the user
285
+ * finished editing these fields and the client should make an update against the server.
286
+ *
287
+ * E.g. a user finished editing an input field by pressing enter or blurring the field.
288
+ *
289
+ * @param updatedKeys The keys that were updated.
290
+ * @param update The update that was made.
291
+ */
292
+ onValidUpdate?: (updatedKeys: (keyof T)[], update: Partial<T>) => void;
293
+ /**
294
+ * Called when the form values change and the corresponding inputs determined that the user
295
+ * finished editing these fields and the client should make an update against the server.
296
+ *
297
+ * E.g. a user finished editing an input field by pressing enter or blurring the field.
298
+ *
299
+ * @param updatedKeys The keys that were updated.
300
+ * @param update The update that was made.
301
+ */
302
+ onUpdate?: (updatedKeys: (keyof T)[], update: Partial<T>) => void;
281
303
  scrollToElements?: boolean;
282
304
  scrollOptions?: ScrollIntoViewOptions;
283
305
  };
@@ -287,7 +309,6 @@ type UseCreateFormResult<T extends FormValue> = {
287
309
  submit: () => void;
288
310
  update: (updater: Partial<T> | ((current: T) => Partial<T>)) => void;
289
311
  validateAll: () => void;
290
- getDataProps: <K extends keyof T>(key: K) => FormFieldDataHandling<T[K]>;
291
312
  getError: (key: keyof T) => ReactNode;
292
313
  getErrors: () => Partial<Record<keyof T, ReactNode>>;
293
314
  getIsValid: () => boolean;
@@ -295,28 +316,56 @@ type UseCreateFormResult<T extends FormValue> = {
295
316
  getValue: <K extends keyof T>(key: K) => T[K];
296
317
  registerRef: (key: keyof T) => (el: HTMLElement | null) => void;
297
318
  };
298
- declare function useCreateForm<T extends FormValue>({ onFormSubmit, onFormError, onValueChange, initialValues, hasTriedSubmitting, validators, validationBehaviour, scrollToElements, scrollOptions, }: UseCreateFormProps<T>): UseCreateFormResult<T>;
319
+ declare function useCreateForm<T extends FormValue>({ onFormSubmit, onFormError, onValueChange, onUpdate, onValidUpdate, initialValues, hasTriedSubmitting, validators, validationBehaviour, scrollToElements, scrollOptions, }: UseCreateFormProps<T>): UseCreateFormResult<T>;
320
+
321
+ type FormFieldFocusableElementProps = FormFieldAriaAttributes & {
322
+ id: string;
323
+ ref: (element: HTMLElement | null) => void;
324
+ };
325
+ type FormFieldBag<T extends FormValue, K extends keyof T> = {
326
+ dataProps: FormFieldDataHandling<T[K]>;
327
+ focusableElementProps: FormFieldFocusableElementProps;
328
+ interactionStates: FormFieldInteractionStates;
329
+ other: {
330
+ updateValue: (value: T[K]) => void;
331
+ };
332
+ };
333
+ interface FormFieldProps<T extends FormValue, K extends keyof T> extends Omit<FormFieldLayoutProps, 'invalidDescription' | 'children'> {
334
+ children: (bag: FormFieldBag<T, K>) => ReactNode;
335
+ name: K;
336
+ triggerUpdateOnEditComplete?: boolean;
337
+ }
338
+ type FormFieldDataHandling<T> = {
339
+ value: T;
340
+ onValueChange: (value: T) => void;
341
+ onEditComplete: (value: T) => void;
342
+ };
343
+ declare const FormField: <T extends FormValue, K extends keyof T>({ children, name, triggerUpdateOnEditComplete, ...props }: FormFieldProps<T, K>) => react_jsx_runtime.JSX.Element;
299
344
 
300
345
  type FormContextType<T extends FormValue> = UseCreateFormResult<T>;
301
- declare const FormContext: React$1.Context<FormContextType<any>>;
346
+ declare const FormContext: react.Context<FormContextType<any>>;
302
347
  type FormProviderProps<T extends FormValue> = PropsWithChildren & {
303
348
  state: FormContextType<T>;
304
349
  };
305
350
  declare const FormProvider: <T extends FormValue>({ children, state }: FormProviderProps<T>) => react_jsx_runtime.JSX.Element;
306
351
  declare function useForm<T extends FormValue>(): FormContextType<T>;
352
+ type UseFormFieldOptions = {
353
+ triggerUpdate?: boolean;
354
+ };
307
355
  type FormFieldResult<T> = {
356
+ store: FormStore<T>;
308
357
  value: T;
309
358
  error: ReactNode;
310
359
  dataProps: FormFieldDataHandling<T>;
311
360
  registerRef: (el: HTMLElement | null) => void;
312
361
  };
313
- declare function useFormField<T extends FormValue, K extends keyof T>(key: K): FormFieldResult<T[K]> | null;
362
+ declare function useFormField<T extends FormValue, K extends keyof T>(key: K, { triggerUpdate }: UseFormFieldOptions): FormFieldResult<T[K]> | null;
314
363
 
315
364
  interface CarouselSlideProps extends HTMLAttributes<HTMLDivElement> {
316
365
  isSelected: boolean;
317
366
  index: number;
318
367
  }
319
- declare const CarouselSlide: React__default.ForwardRefExoticComponent<CarouselSlideProps & React__default.RefAttributes<HTMLDivElement>>;
368
+ declare const CarouselSlide: react__default.ForwardRefExoticComponent<CarouselSlideProps & react__default.RefAttributes<HTMLDivElement>>;
320
369
  type CarouselProps = Omit<HTMLAttributes<HTMLDivElement>, 'children'> & {
321
370
  children: ReactNode[];
322
371
  animationTime?: number;
@@ -361,7 +410,7 @@ type DrawerProps = HTMLAttributes<HTMLDivElement> & {
361
410
  backgroundClassName?: string;
362
411
  onClose: () => void;
363
412
  };
364
- declare const Drawer: ({ children, isOpen, alignment, titleElement, description, containerClassName, backgroundClassName, onClose, ...props }: DrawerProps) => React$1.ReactPortal;
413
+ declare const Drawer: ({ children, isOpen, alignment, titleElement, description, containerClassName, backgroundClassName, onClose, ...props }: DrawerProps) => react.ReactPortal;
365
414
 
366
415
  type ExpandableRootProps = HTMLAttributes<HTMLDivElement> & {
367
416
  isExpanded?: boolean;
@@ -369,29 +418,27 @@ type ExpandableRootProps = HTMLAttributes<HTMLDivElement> & {
369
418
  disabled?: boolean;
370
419
  allowContainerToggle?: boolean;
371
420
  };
372
- declare const ExpandableRoot: React$1.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
421
+ declare const ExpandableRoot: react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
373
422
  isExpanded?: boolean;
374
423
  onExpandedChange?: (isExpanded: boolean) => void;
375
424
  disabled?: boolean;
376
425
  allowContainerToggle?: boolean;
377
- } & React$1.RefAttributes<HTMLDivElement>>;
426
+ } & react.RefAttributes<HTMLDivElement>>;
378
427
  type ExpandableHeaderProps = HTMLAttributes<HTMLDivElement> & {
379
428
  isUsingDefaultIcon?: boolean;
380
429
  };
381
- declare const ExpandableHeader: React$1.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
430
+ declare const ExpandableHeader: react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
382
431
  isUsingDefaultIcon?: boolean;
383
- } & React$1.RefAttributes<HTMLDivElement>>;
432
+ } & react.RefAttributes<HTMLDivElement>>;
384
433
  type ExpandableContentProps = HTMLAttributes<HTMLDivElement> & {
385
434
  forceMount?: boolean;
386
435
  };
387
- declare const ExpandableContent: React$1.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
436
+ declare const ExpandableContent: react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
388
437
  forceMount?: boolean;
389
- } & React$1.RefAttributes<HTMLDivElement>>;
390
- type IconBuilder = (expanded: boolean) => ReactNode;
438
+ } & react.RefAttributes<HTMLDivElement>>;
391
439
  type ExpandableProps = PropsWithChildren<{
392
440
  id?: string;
393
441
  label: ReactNode;
394
- icon?: IconBuilder;
395
442
  isExpanded?: boolean;
396
443
  onChange?: (isExpanded: boolean) => void;
397
444
  clickOnlyOnHeader?: boolean;
@@ -401,10 +448,9 @@ type ExpandableProps = PropsWithChildren<{
401
448
  contentClassName?: string;
402
449
  contentExpandedClassName?: string;
403
450
  }>;
404
- declare const Expandable: React$1.ForwardRefExoticComponent<{
451
+ declare const Expandable: react.ForwardRefExoticComponent<{
405
452
  id?: string;
406
453
  label: ReactNode;
407
- icon?: IconBuilder;
408
454
  isExpanded?: boolean;
409
455
  onChange?: (isExpanded: boolean) => void;
410
456
  clickOnlyOnHeader?: boolean;
@@ -415,11 +461,10 @@ declare const Expandable: React$1.ForwardRefExoticComponent<{
415
461
  contentExpandedClassName?: string;
416
462
  } & {
417
463
  children?: ReactNode | undefined;
418
- } & React$1.RefAttributes<HTMLDivElement>>;
419
- declare const ExpandableUncontrolled: React$1.ForwardRefExoticComponent<{
464
+ } & react.RefAttributes<HTMLDivElement>>;
465
+ declare const ExpandableUncontrolled: react.ForwardRefExoticComponent<{
420
466
  id?: string;
421
467
  label: ReactNode;
422
- icon?: IconBuilder;
423
468
  isExpanded?: boolean;
424
469
  onChange?: (isExpanded: boolean) => void;
425
470
  clickOnlyOnHeader?: boolean;
@@ -430,7 +475,7 @@ declare const ExpandableUncontrolled: React$1.ForwardRefExoticComponent<{
430
475
  contentExpandedClassName?: string;
431
476
  } & {
432
477
  children?: ReactNode | undefined;
433
- } & React$1.RefAttributes<HTMLDivElement>>;
478
+ } & react.RefAttributes<HTMLDivElement>>;
434
479
 
435
480
  type FAQItem = Pick<ExpandableProps, 'isExpanded' | 'className'> & {
436
481
  title: string;
@@ -475,7 +520,7 @@ type FloatingContainerProps = HTMLAttributes<HTMLDivElement> & UseFloatingElemen
475
520
  * Notes:
476
521
  * - to hide it use the hidden attribute as other means break the functionality
477
522
  */
478
- declare const FloatingContainer: React$1.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
523
+ declare const FloatingContainer: react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
479
524
  verticalAlignment?: FloatingElementAlignment;
480
525
  horizontalAlignment?: FloatingElementAlignment;
481
526
  screenPadding?: number;
@@ -491,7 +536,7 @@ declare const FloatingContainer: React$1.ForwardRefExoticComponent<HTMLAttribute
491
536
  * Use sparingly
492
537
  */
493
538
  backgroundOverlay?: ReactNode;
494
- } & React$1.RefAttributes<HTMLDivElement>>;
539
+ } & react.RefAttributes<HTMLDivElement>>;
495
540
 
496
541
  interface InfiniteScrollProps {
497
542
  itemCount: number;
@@ -516,10 +561,10 @@ type ListBoxItemProps = HTMLAttributes<HTMLLIElement> & {
516
561
  value: string;
517
562
  disabled?: boolean;
518
563
  };
519
- declare const ListBoxItem: React__default.ForwardRefExoticComponent<HTMLAttributes<HTMLLIElement> & {
564
+ declare const ListBoxItem: react__default.ForwardRefExoticComponent<HTMLAttributes<HTMLLIElement> & {
520
565
  value: string;
521
566
  disabled?: boolean;
522
- } & React__default.RefAttributes<HTMLLIElement>>;
567
+ } & react__default.RefAttributes<HTMLLIElement>>;
523
568
  type ListBoxOrientation = 'vertical' | 'horizontal';
524
569
  type ListBoxPrimitiveProps = HTMLAttributes<HTMLUListElement> & {
525
570
  value?: string[];
@@ -529,14 +574,14 @@ type ListBoxPrimitiveProps = HTMLAttributes<HTMLUListElement> & {
529
574
  isMultiple?: boolean;
530
575
  orientation?: ListBoxOrientation;
531
576
  };
532
- declare const ListBoxPrimitive: React__default.ForwardRefExoticComponent<HTMLAttributes<HTMLUListElement> & {
577
+ declare const ListBoxPrimitive: react__default.ForwardRefExoticComponent<HTMLAttributes<HTMLUListElement> & {
533
578
  value?: string[];
534
579
  onItemClicked?: (value: string) => void;
535
580
  onSelectionChanged?: (value: string[]) => void;
536
581
  isSelection?: boolean;
537
582
  isMultiple?: boolean;
538
583
  orientation?: ListBoxOrientation;
539
- } & React__default.RefAttributes<HTMLUListElement>>;
584
+ } & react__default.RefAttributes<HTMLUListElement>>;
540
585
  type ListBoxMultipleProps = Omit<ListBoxPrimitiveProps, 'isMultiple'>;
541
586
  declare const ListBoxMultiple: ({ ...props }: ListBoxMultipleProps) => react_jsx_runtime.JSX.Element;
542
587
  type ListBoxMultipleUncontrolledProps = ListBoxMultipleProps;
@@ -545,10 +590,10 @@ type ListBoxProps = Omit<ListBoxPrimitiveProps, 'isMultiple' | 'value' | 'onSele
545
590
  value?: string;
546
591
  onSelectionChanged?: (value: string) => void;
547
592
  };
548
- declare const ListBox: React__default.ForwardRefExoticComponent<Omit<ListBoxPrimitiveProps, "value" | "onSelectionChanged" | "isMultiple"> & {
593
+ declare const ListBox: react__default.ForwardRefExoticComponent<Omit<ListBoxPrimitiveProps, "value" | "onSelectionChanged" | "isMultiple"> & {
549
594
  value?: string;
550
595
  onSelectionChanged?: (value: string) => void;
551
- } & React__default.RefAttributes<HTMLUListElement>>;
596
+ } & react__default.RefAttributes<HTMLUListElement>>;
552
597
  type ListBoxUncontrolledProps = ListBoxProps;
553
598
  declare const ListBoxUncontrolled: ({ value: initialValue, onSelectionChanged, ...props }: ListBoxUncontrolledProps) => react_jsx_runtime.JSX.Element;
554
599
 
@@ -678,7 +723,7 @@ type ButtonProps = ButtonHTMLAttributes<HTMLButtonElement> & {
678
723
  /**
679
724
  * A button with a solid background and different sizes
680
725
  */
681
- declare const Button: React$1.ForwardRefExoticComponent<ButtonHTMLAttributes<HTMLButtonElement> & {
726
+ declare const Button: react.ForwardRefExoticComponent<ButtonHTMLAttributes<HTMLButtonElement> & {
682
727
  /**
683
728
  * @default 'medium'
684
729
  */
@@ -690,7 +735,7 @@ declare const Button: React$1.ForwardRefExoticComponent<ButtonHTMLAttributes<HTM
690
735
  */
691
736
  coloringStyle?: ButtonColoringStyle;
692
737
  allowClickEventPropagation?: boolean;
693
- } & React$1.RefAttributes<HTMLButtonElement>>;
738
+ } & react.RefAttributes<HTMLButtonElement>>;
694
739
 
695
740
  type DialogPosition = 'top' | 'center' | 'none';
696
741
  type DialogProps = HTMLAttributes<HTMLDivElement> & {
@@ -713,7 +758,7 @@ type DialogProps = HTMLAttributes<HTMLDivElement> & {
713
758
  /**
714
759
  * A generic dialog window which is managed by its parent
715
760
  */
716
- declare const Dialog: ({ children, isOpen, titleElement, description, isModal, onClose, backgroundClassName, position, containerClassName, ...props }: PropsWithChildren<DialogProps>) => React$1.ReactPortal;
761
+ declare const Dialog: ({ children, isOpen, titleElement, description, isModal, onClose, backgroundClassName, position, containerClassName, ...props }: PropsWithChildren<DialogProps>) => react.ReactPortal;
717
762
 
718
763
  type ConfirmDialogType = 'positive' | 'negative' | 'neutral' | 'primary';
719
764
  type ButtonOverwriteType = {
@@ -774,17 +819,17 @@ type InputProps = Omit<InputHTMLAttributes<HTMLInputElement>, 'value'> & Partial
774
819
  *
775
820
  * Its state is managed must be managed by the parent
776
821
  */
777
- declare const Input: React__default.ForwardRefExoticComponent<Omit<InputHTMLAttributes<HTMLInputElement>, "value"> & Partial<FormFieldDataHandling<string>> & Partial<FormFieldInteractionStates> & {
822
+ declare const Input: react__default.ForwardRefExoticComponent<Omit<InputHTMLAttributes<HTMLInputElement>, "value"> & Partial<FormFieldDataHandling<string>> & Partial<FormFieldInteractionStates> & {
778
823
  editCompleteOptions?: EditCompleteOptions;
779
- } & React__default.RefAttributes<HTMLInputElement>>;
824
+ } & react__default.RefAttributes<HTMLInputElement>>;
780
825
  /**
781
826
  * A Component for inputting text or other information
782
827
  *
783
828
  * Its state is managed by the component itself
784
829
  */
785
- declare const InputUncontrolled: React__default.ForwardRefExoticComponent<Omit<InputHTMLAttributes<HTMLInputElement>, "value"> & Partial<FormFieldDataHandling<string>> & Partial<FormFieldInteractionStates> & {
830
+ declare const InputUncontrolled: react__default.ForwardRefExoticComponent<Omit<InputHTMLAttributes<HTMLInputElement>, "value"> & Partial<FormFieldDataHandling<string>> & Partial<FormFieldInteractionStates> & {
786
831
  editCompleteOptions?: EditCompleteOptions;
787
- } & React__default.RefAttributes<HTMLInputElement>>;
832
+ } & react__default.RefAttributes<HTMLInputElement>>;
788
833
 
789
834
  type InputModalProps = ConfirmDialogProps & {
790
835
  inputs: InputProps[];
@@ -1107,116 +1152,6 @@ type ScrollPickerProps<T> = {
1107
1152
  */
1108
1153
  declare const ScrollPicker: <T>({ options, mapping, selected, onChange, disabled, }: ScrollPickerProps<T>) => react_jsx_runtime.JSX.Element;
1109
1154
 
1110
- type SelectIconAppearance = 'left' | 'right' | 'none';
1111
- type SelectRootProps = PropsWithChildren & {
1112
- id?: string;
1113
- value?: string;
1114
- onValueChange?: (value: string) => void;
1115
- values?: string[];
1116
- onValuesChange?: (value: string[]) => void;
1117
- isOpen?: boolean;
1118
- disabled?: boolean;
1119
- invalid?: boolean;
1120
- isMultiSelect?: boolean;
1121
- iconAppearance?: SelectIconAppearance;
1122
- };
1123
- declare const SelectRoot: ({ children, id, value, onValueChange, values, onValuesChange, isOpen, disabled, invalid, isMultiSelect, iconAppearance, }: SelectRootProps) => react_jsx_runtime.JSX.Element;
1124
- type SelectOptionProps = Omit<HTMLAttributes<HTMLLIElement>, 'children'> & {
1125
- value: string;
1126
- disabled?: boolean;
1127
- iconAppearance?: SelectIconAppearance;
1128
- children?: ReactNode;
1129
- };
1130
- declare const SelectOption: React__default.ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLLIElement>, "children"> & {
1131
- value: string;
1132
- disabled?: boolean;
1133
- iconAppearance?: SelectIconAppearance;
1134
- children?: ReactNode;
1135
- } & React__default.RefAttributes<HTMLLIElement>>;
1136
- type SelectButtonProps = ButtonHTMLAttributes<HTMLButtonElement> & {
1137
- placeholder?: ReactNode;
1138
- selectedDisplay?: (value: string[]) => ReactNode;
1139
- };
1140
- declare const SelectButton: React__default.ForwardRefExoticComponent<ButtonHTMLAttributes<HTMLButtonElement> & {
1141
- placeholder?: ReactNode;
1142
- selectedDisplay?: (value: string[]) => ReactNode;
1143
- } & React__default.RefAttributes<HTMLButtonElement>>;
1144
- type SelectChipDisplayProps = HTMLAttributes<HTMLDivElement> & {
1145
- disabled?: boolean;
1146
- placeholder?: ReactNode;
1147
- };
1148
- declare const SelectChipDisplay: React__default.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
1149
- disabled?: boolean;
1150
- placeholder?: ReactNode;
1151
- } & React__default.RefAttributes<HTMLDivElement>>;
1152
- type Orientation = 'vertical' | 'horizontal';
1153
- type SelectContentProps = HTMLAttributes<HTMLUListElement> & {
1154
- alignment?: Pick<UseFloatingElementOptions, 'gap' | 'horizontalAlignment' | 'verticalAlignment'>;
1155
- orientation?: Orientation;
1156
- containerClassName?: string;
1157
- };
1158
- declare const SelectContent: React__default.ForwardRefExoticComponent<HTMLAttributes<HTMLUListElement> & {
1159
- alignment?: Pick<UseFloatingElementOptions, "gap" | "horizontalAlignment" | "verticalAlignment">;
1160
- orientation?: Orientation;
1161
- containerClassName?: string;
1162
- } & React__default.RefAttributes<HTMLUListElement>>;
1163
- type SelectProps = Omit<SelectRootProps, 'isMultiSelect' | 'values' | 'onValuesChange'> & {
1164
- contentPanelProps?: SelectContentProps;
1165
- buttonProps?: Omit<SelectButtonProps, 'selectedDisplay'> & {
1166
- selectedDisplay?: (value: string) => ReactNode;
1167
- };
1168
- };
1169
- declare const Select: React__default.ForwardRefExoticComponent<Omit<SelectRootProps, "values" | "onValuesChange" | "isMultiSelect"> & {
1170
- contentPanelProps?: SelectContentProps;
1171
- buttonProps?: Omit<SelectButtonProps, "selectedDisplay"> & {
1172
- selectedDisplay?: (value: string) => ReactNode;
1173
- };
1174
- } & React__default.RefAttributes<HTMLButtonElement>>;
1175
- type SelectUncontrolledProps = SelectProps;
1176
- declare const SelectUncontrolled: React__default.ForwardRefExoticComponent<Omit<SelectRootProps, "values" | "onValuesChange" | "isMultiSelect"> & {
1177
- contentPanelProps?: SelectContentProps;
1178
- buttonProps?: Omit<SelectButtonProps, "selectedDisplay"> & {
1179
- selectedDisplay?: (value: string) => ReactNode;
1180
- };
1181
- } & React__default.RefAttributes<HTMLButtonElement>>;
1182
- type MultiSelectProps = Omit<SelectRootProps, 'isMultiSelect' | 'value' | 'values' | 'onValueChange' | 'onValuesChange'> & {
1183
- value?: string[];
1184
- onValueChange?: (value: string[]) => void;
1185
- contentPanelProps?: SelectContentProps;
1186
- buttonProps?: SelectButtonProps;
1187
- };
1188
- declare const MultiSelect: React__default.ForwardRefExoticComponent<Omit<SelectRootProps, "values" | "value" | "onValueChange" | "onValuesChange" | "isMultiSelect"> & {
1189
- value?: string[];
1190
- onValueChange?: (value: string[]) => void;
1191
- contentPanelProps?: SelectContentProps;
1192
- buttonProps?: SelectButtonProps;
1193
- } & React__default.RefAttributes<HTMLButtonElement>>;
1194
- declare const MultiSelectUncontrolled: React__default.ForwardRefExoticComponent<Omit<SelectRootProps, "values" | "value" | "onValueChange" | "onValuesChange" | "isMultiSelect"> & {
1195
- value?: string[];
1196
- onValueChange?: (value: string[]) => void;
1197
- contentPanelProps?: SelectContentProps;
1198
- buttonProps?: SelectButtonProps;
1199
- } & React__default.RefAttributes<HTMLButtonElement>>;
1200
- type MultiSelectChipDisplayProps = Omit<SelectRootProps, 'isMultiSelect' | 'value' | 'values' | 'onValueChange' | 'onValuesChange'> & {
1201
- value?: string[];
1202
- onValueChange?: (value: string[]) => void;
1203
- contentPanelProps?: SelectContentProps;
1204
- chipDisplayProps?: SelectChipDisplayProps;
1205
- };
1206
- declare const MultiSelectChipDisplay: React__default.ForwardRefExoticComponent<Omit<SelectRootProps, "values" | "value" | "onValueChange" | "onValuesChange" | "isMultiSelect"> & {
1207
- value?: string[];
1208
- onValueChange?: (value: string[]) => void;
1209
- contentPanelProps?: SelectContentProps;
1210
- chipDisplayProps?: SelectChipDisplayProps;
1211
- } & React__default.RefAttributes<HTMLDivElement>>;
1212
- type MultiSelectChipDisplayUncontrolledProps = MultiSelectChipDisplayProps;
1213
- declare const MultiSelectChipDisplayUncontrolled: React__default.ForwardRefExoticComponent<Omit<SelectRootProps, "values" | "value" | "onValueChange" | "onValuesChange" | "isMultiSelect"> & {
1214
- value?: string[];
1215
- onValueChange?: (value: string[]) => void;
1216
- contentPanelProps?: SelectContentProps;
1217
- chipDisplayProps?: SelectChipDisplayProps;
1218
- } & React__default.RefAttributes<HTMLDivElement>>;
1219
-
1220
1155
  type TextareaProps = Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, 'value'> & Partial<FormFieldDataHandling<string>> & Partial<FormFieldInteractionStates> & {
1221
1156
  saveDelayOptions?: UseDelayOptions;
1222
1157
  };
@@ -1225,9 +1160,9 @@ type TextareaProps = Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, 'value'>
1225
1160
  *
1226
1161
  * The State is managed by the parent
1227
1162
  */
1228
- declare const Textarea: React$1.ForwardRefExoticComponent<Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, "value"> & Partial<FormFieldDataHandling<string>> & Partial<FormFieldInteractionStates> & {
1163
+ declare const Textarea: react.ForwardRefExoticComponent<Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, "value"> & Partial<FormFieldDataHandling<string>> & Partial<FormFieldInteractionStates> & {
1229
1164
  saveDelayOptions?: UseDelayOptions;
1230
- } & React$1.RefAttributes<HTMLTextAreaElement>>;
1165
+ } & react.RefAttributes<HTMLTextAreaElement>>;
1231
1166
  /**
1232
1167
  * A Textarea component that is not controlled by its parent
1233
1168
  */
@@ -1250,7 +1185,7 @@ type ThemeContextType = {
1250
1185
  resolvedTheme: ResolvedTheme;
1251
1186
  setTheme: Dispatch<SetStateAction<ThemeType>>;
1252
1187
  };
1253
- declare const ThemeContext: React$1.Context<ThemeContextType>;
1188
+ declare const ThemeContext: react.Context<ThemeContextType>;
1254
1189
  type ThemeProviderProps = PropsWithChildren & Partial<ThemeConfig> & {
1255
1190
  /**
1256
1191
  * Only set this if you want to control the theme yourself
@@ -1463,10 +1398,6 @@ type TooltipConfig = {
1463
1398
  * Number of milliseconds until the tooltip appears
1464
1399
  */
1465
1400
  appearDelay: number;
1466
- /**
1467
- * Number of milliseconds until the tooltip disappears
1468
- */
1469
- disappearDelay: number;
1470
1401
  };
1471
1402
  type ThemeConfig = {
1472
1403
  /**
@@ -1493,7 +1424,7 @@ type ConfigType = {
1493
1424
  config: HightideConfig;
1494
1425
  setConfig: (configOverwrite: DeepPartial<HightideConfig>) => void;
1495
1426
  };
1496
- declare const HightideConfigContext: React$1.Context<ConfigType>;
1427
+ declare const HightideConfigContext: react.Context<ConfigType>;
1497
1428
  type HightideConfigProviderProps = PropsWithChildren & DeepPartial<HightideConfig>;
1498
1429
  declare const HightideConfigProvider: ({ children, ...initialOverwrite }: HightideConfigProviderProps) => react_jsx_runtime.JSX.Element;
1499
1430
  declare const useHightideConfig: () => ConfigType;
@@ -1521,7 +1452,7 @@ type TooltipProps = PropsWithChildren & Partial<TooltipConfig> & {
1521
1452
  * @param position The direction of the tooltip relative to the Container
1522
1453
  * @constructor
1523
1454
  */
1524
- declare const Tooltip: ({ tooltip, children, appearDelay: appearDelayOverwrite, disappearDelay: disappearDelayOverwrite, tooltipClassName, containerClassName, position, disabled, }: TooltipProps) => react_jsx_runtime.JSX.Element;
1455
+ declare const Tooltip: ({ tooltip, children, appearDelay: appearOverwrite, tooltipClassName, containerClassName, position, disabled, }: TooltipProps) => react_jsx_runtime.JSX.Element;
1525
1456
 
1526
1457
  type DurationJSON = {
1527
1458
  years: number;
@@ -1675,9 +1606,9 @@ type InsideLabelInputProps = Omit<InputProps, 'aria-label' | 'aria-labelledby' |
1675
1606
  *
1676
1607
  * The State is managed by the parent
1677
1608
  */
1678
- declare const InsideLabelInput: React$1.ForwardRefExoticComponent<Omit<InputProps, "aria-label" | "aria-labelledby" | "placeholder"> & {
1609
+ declare const InsideLabelInput: react.ForwardRefExoticComponent<Omit<InputProps, "aria-label" | "aria-labelledby" | "placeholder"> & {
1679
1610
  label: ReactNode;
1680
- } & React$1.RefAttributes<HTMLInputElement>>;
1611
+ } & react.RefAttributes<HTMLInputElement>>;
1681
1612
  declare const InsideLabelInputUncontrolled: ({ value: initialValue, ...props }: InsideLabelInputProps) => react_jsx_runtime.JSX.Element;
1682
1613
 
1683
1614
  type SearchBarProps = Omit<InputProps, 'onValueChange' | 'onEditComplete'> & {
@@ -1698,12 +1629,12 @@ type ToggleableInputProps = InputProps & {
1698
1629
  *
1699
1630
  * The State is managed by the parent
1700
1631
  */
1701
- declare const ToggleableInput: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "value"> & Partial<FormFieldDataHandling<string>> & Partial<FormFieldInteractionStates> & {
1632
+ declare const ToggleableInput: react.ForwardRefExoticComponent<Omit<react.InputHTMLAttributes<HTMLInputElement>, "value"> & Partial<FormFieldDataHandling<string>> & Partial<FormFieldInteractionStates> & {
1702
1633
  editCompleteOptions?: EditCompleteOptions;
1703
1634
  } & {
1704
1635
  initialState?: "editing" | "display";
1705
1636
  editCompleteOptions?: Omit<EditCompleteOptions, "allowEnterComplete">;
1706
- } & React$1.RefAttributes<HTMLInputElement>>;
1637
+ } & react.RefAttributes<HTMLInputElement>>;
1707
1638
  declare const ToggleableInputUncontrolled: ({ value: initialValue, onValueChange, ...restProps }: ToggleableInputProps) => react_jsx_runtime.JSX.Element;
1708
1639
 
1709
1640
  type PropertyField<T> = {
@@ -1779,6 +1710,213 @@ type TextPropertyProps = PropertyField<string>;
1779
1710
  */
1780
1711
  declare const TextProperty: ({ value, readOnly, onRemove, onValueChange, onEditComplete, ...baseProps }: TextPropertyProps) => react_jsx_runtime.JSX.Element;
1781
1712
 
1713
+ type RegisteredOption = {
1714
+ value: string;
1715
+ label: ReactNode;
1716
+ disabled: boolean;
1717
+ ref: React.RefObject<HTMLLIElement>;
1718
+ };
1719
+ type HighlightStartPositionBehavior = 'first' | 'last';
1720
+ type SelectIconAppearance = 'left' | 'right' | 'none';
1721
+ type InternalSelectContextState = {
1722
+ isOpen: boolean;
1723
+ options: RegisteredOption[];
1724
+ highlightedValue?: string;
1725
+ };
1726
+ type SelectContextIds = {
1727
+ trigger: string;
1728
+ content: string;
1729
+ };
1730
+ type SelectContextState = InternalSelectContextState & FormFieldInteractionStates & {
1731
+ value: string[];
1732
+ selectedOptions: RegisteredOption[];
1733
+ };
1734
+ type SelectConfiguration = {
1735
+ isMultiSelect: boolean;
1736
+ iconAppearance: SelectIconAppearance;
1737
+ };
1738
+ type ToggleOpenOptions = {
1739
+ highlightStartPositionBehavior?: HighlightStartPositionBehavior;
1740
+ };
1741
+ type SelectContextType = {
1742
+ ids: SelectContextIds;
1743
+ setIds: Dispatch<SetStateAction<SelectContextIds>>;
1744
+ state: SelectContextState;
1745
+ config: SelectConfiguration;
1746
+ item: {
1747
+ register: (item: RegisteredOption) => void;
1748
+ unregister: (value: string) => void;
1749
+ toggleSelection: (value: string, isSelected?: boolean) => void;
1750
+ highlightItem: (value: string) => void;
1751
+ moveHighlightedIndex: (delta: number) => void;
1752
+ };
1753
+ trigger: {
1754
+ ref: React.RefObject<HTMLElement>;
1755
+ register: (element: React.RefObject<HTMLElement>) => void;
1756
+ unregister: () => void;
1757
+ toggleOpen: (isOpen?: boolean, options?: ToggleOpenOptions) => void;
1758
+ };
1759
+ };
1760
+ declare const SelectContext: react.Context<SelectContextType>;
1761
+ declare function useSelectContext(): SelectContextType;
1762
+ type SharedSelectRootProps = Partial<FormFieldInteractionStates> & PropsWithChildren & {
1763
+ id?: string;
1764
+ initialIsOpen?: boolean;
1765
+ iconAppearance?: SelectIconAppearance;
1766
+ onClose?: () => void;
1767
+ };
1768
+ type SelectRootProps = SharedSelectRootProps & Partial<FormFieldDataHandling<string>>;
1769
+ declare const SelectRoot: ({ value, onValueChange, onEditComplete, ...props }: SelectRootProps) => react_jsx_runtime.JSX.Element;
1770
+ type MultiSelectRootProps = SharedSelectRootProps & Partial<FormFieldDataHandling<string[]>>;
1771
+ declare const MultiSelectRoot: ({ value, onValueChange, onEditComplete, ...props }: MultiSelectRootProps) => react_jsx_runtime.JSX.Element;
1772
+
1773
+ type SelectOptionProps = Omit<HTMLAttributes<HTMLLIElement>, 'children'> & {
1774
+ value: string;
1775
+ disabled?: boolean;
1776
+ iconAppearance?: SelectIconAppearance;
1777
+ children?: ReactNode;
1778
+ };
1779
+ declare const SelectOption: react.ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLLIElement>, "children"> & {
1780
+ value: string;
1781
+ disabled?: boolean;
1782
+ iconAppearance?: SelectIconAppearance;
1783
+ children?: ReactNode;
1784
+ } & react.RefAttributes<HTMLLIElement>>;
1785
+ type SelectButtonProps = ButtonHTMLAttributes<HTMLButtonElement> & {
1786
+ placeholder?: ReactNode;
1787
+ selectedDisplay?: (value: string[]) => ReactNode;
1788
+ };
1789
+ declare const SelectButton: react.ForwardRefExoticComponent<ButtonHTMLAttributes<HTMLButtonElement> & {
1790
+ placeholder?: ReactNode;
1791
+ selectedDisplay?: (value: string[]) => ReactNode;
1792
+ } & react.RefAttributes<HTMLButtonElement>>;
1793
+ type Orientation = 'vertical' | 'horizontal';
1794
+ type SelectContentProps = HTMLAttributes<HTMLUListElement> & {
1795
+ alignment?: Pick<UseFloatingElementOptions, 'gap' | 'horizontalAlignment' | 'verticalAlignment'>;
1796
+ orientation?: Orientation;
1797
+ containerClassName?: string;
1798
+ };
1799
+ declare const SelectContent: react.ForwardRefExoticComponent<HTMLAttributes<HTMLUListElement> & {
1800
+ alignment?: Pick<UseFloatingElementOptions, "gap" | "horizontalAlignment" | "verticalAlignment">;
1801
+ orientation?: Orientation;
1802
+ containerClassName?: string;
1803
+ } & react.RefAttributes<HTMLUListElement>>;
1804
+ type MultiSelectOptionProps = SelectOptionProps;
1805
+ declare const MultiSelectOption: react.ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLLIElement>, "children"> & {
1806
+ value: string;
1807
+ disabled?: boolean;
1808
+ iconAppearance?: SelectIconAppearance;
1809
+ children?: ReactNode;
1810
+ } & react.RefAttributes<HTMLLIElement>>;
1811
+ type MultiSelectContentProps = SelectContentProps;
1812
+ declare const MultiSelectContent: react.ForwardRefExoticComponent<HTMLAttributes<HTMLUListElement> & {
1813
+ alignment?: Pick<UseFloatingElementOptions, "gap" | "horizontalAlignment" | "verticalAlignment">;
1814
+ orientation?: Orientation;
1815
+ containerClassName?: string;
1816
+ } & react.RefAttributes<HTMLUListElement>>;
1817
+ type MultiSelectButtonProps = SelectButtonProps;
1818
+ declare const MultiSelectButton: react.ForwardRefExoticComponent<ButtonHTMLAttributes<HTMLButtonElement> & {
1819
+ placeholder?: ReactNode;
1820
+ selectedDisplay?: (value: string[]) => ReactNode;
1821
+ } & react.RefAttributes<HTMLButtonElement>>;
1822
+
1823
+ type MultiSelectProps = MultiSelectRootProps & {
1824
+ contentPanelProps?: MultiSelectContentProps;
1825
+ buttonProps?: MultiSelectButtonProps;
1826
+ };
1827
+ declare const MultiSelect: react.ForwardRefExoticComponent<Partial<FormFieldInteractionStates> & {
1828
+ children?: react.ReactNode | undefined;
1829
+ } & {
1830
+ id?: string;
1831
+ initialIsOpen?: boolean;
1832
+ iconAppearance?: SelectIconAppearance;
1833
+ onClose?: () => void;
1834
+ } & Partial<FormFieldDataHandling<string[]>> & {
1835
+ contentPanelProps?: MultiSelectContentProps;
1836
+ buttonProps?: MultiSelectButtonProps;
1837
+ } & react.RefAttributes<HTMLButtonElement>>;
1838
+ declare const MultiSelectUncontrolled: react.ForwardRefExoticComponent<Partial<FormFieldInteractionStates> & {
1839
+ children?: react.ReactNode | undefined;
1840
+ } & {
1841
+ id?: string;
1842
+ initialIsOpen?: boolean;
1843
+ iconAppearance?: SelectIconAppearance;
1844
+ onClose?: () => void;
1845
+ } & Partial<FormFieldDataHandling<string[]>> & {
1846
+ contentPanelProps?: MultiSelectContentProps;
1847
+ buttonProps?: MultiSelectButtonProps;
1848
+ } & react.RefAttributes<HTMLButtonElement>>;
1849
+
1850
+ type MultiSelectChipDisplayButtonProps = HTMLAttributes<HTMLDivElement> & {
1851
+ disabled?: boolean;
1852
+ placeholder?: ReactNode;
1853
+ };
1854
+ declare const MultiSelectChipDisplayButton: react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
1855
+ disabled?: boolean;
1856
+ placeholder?: ReactNode;
1857
+ } & react.RefAttributes<HTMLDivElement>>;
1858
+ type MultiSelectChipDisplayProps = MultiSelectRootProps & {
1859
+ contentPanelProps?: MultiSelectContentProps;
1860
+ chipDisplayProps?: MultiSelectChipDisplayButtonProps;
1861
+ };
1862
+ declare const MultiSelectChipDisplay: react.ForwardRefExoticComponent<Partial<FormFieldInteractionStates> & {
1863
+ children?: ReactNode | undefined;
1864
+ } & {
1865
+ id?: string;
1866
+ initialIsOpen?: boolean;
1867
+ iconAppearance?: SelectIconAppearance;
1868
+ onClose?: () => void;
1869
+ } & Partial<FormFieldDataHandling<string[]>> & {
1870
+ contentPanelProps?: MultiSelectContentProps;
1871
+ chipDisplayProps?: MultiSelectChipDisplayButtonProps;
1872
+ } & react.RefAttributes<HTMLDivElement>>;
1873
+ type MultiSelectChipDisplayUncontrolledProps = MultiSelectChipDisplayProps;
1874
+ declare const MultiSelectChipDisplayUncontrolled: react.ForwardRefExoticComponent<Partial<FormFieldInteractionStates> & {
1875
+ children?: ReactNode | undefined;
1876
+ } & {
1877
+ id?: string;
1878
+ initialIsOpen?: boolean;
1879
+ iconAppearance?: SelectIconAppearance;
1880
+ onClose?: () => void;
1881
+ } & Partial<FormFieldDataHandling<string[]>> & {
1882
+ contentPanelProps?: MultiSelectContentProps;
1883
+ chipDisplayProps?: MultiSelectChipDisplayButtonProps;
1884
+ } & react.RefAttributes<HTMLDivElement>>;
1885
+
1886
+ type SelectProps = SelectRootProps & {
1887
+ contentPanelProps?: SelectContentProps;
1888
+ buttonProps?: Omit<SelectButtonProps, 'selectedDisplay'> & {
1889
+ selectedDisplay?: (value: string) => ReactNode;
1890
+ };
1891
+ };
1892
+ declare const Select: react.ForwardRefExoticComponent<Partial<FormFieldInteractionStates> & {
1893
+ children?: ReactNode | undefined;
1894
+ } & {
1895
+ id?: string;
1896
+ initialIsOpen?: boolean;
1897
+ iconAppearance?: SelectIconAppearance;
1898
+ onClose?: () => void;
1899
+ } & Partial<FormFieldDataHandling<string>> & {
1900
+ contentPanelProps?: SelectContentProps;
1901
+ buttonProps?: Omit<SelectButtonProps, "selectedDisplay"> & {
1902
+ selectedDisplay?: (value: string) => ReactNode;
1903
+ };
1904
+ } & react.RefAttributes<HTMLButtonElement>>;
1905
+ type SelectUncontrolledProps = SelectProps;
1906
+ declare const SelectUncontrolled: react.ForwardRefExoticComponent<Partial<FormFieldInteractionStates> & {
1907
+ children?: ReactNode | undefined;
1908
+ } & {
1909
+ id?: string;
1910
+ initialIsOpen?: boolean;
1911
+ iconAppearance?: SelectIconAppearance;
1912
+ onClose?: () => void;
1913
+ } & Partial<FormFieldDataHandling<string>> & {
1914
+ contentPanelProps?: SelectContentProps;
1915
+ buttonProps?: Omit<SelectButtonProps, "selectedDisplay"> & {
1916
+ selectedDisplay?: (value: string) => ReactNode;
1917
+ };
1918
+ } & react.RefAttributes<HTMLButtonElement>>;
1919
+
1782
1920
  type FocusTrapProps = HTMLAttributes<HTMLDivElement> & {
1783
1921
  active?: boolean;
1784
1922
  initialFocus?: RefObject<HTMLElement | null>;
@@ -1792,7 +1930,7 @@ type FocusTrapProps = HTMLAttributes<HTMLDivElement> & {
1792
1930
  /**
1793
1931
  * A wrapper for the useFocusTrap hook that directly renders it to a div
1794
1932
  */
1795
- declare const FocusTrap: React$1.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
1933
+ declare const FocusTrap: react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
1796
1934
  active?: boolean;
1797
1935
  initialFocus?: RefObject<HTMLElement | null>;
1798
1936
  /**
@@ -1801,7 +1939,7 @@ declare const FocusTrap: React$1.ForwardRefExoticComponent<HTMLAttributes<HTMLDi
1801
1939
  * Focuses the container instead
1802
1940
  */
1803
1941
  focusFirst?: boolean;
1804
- } & React$1.RefAttributes<HTMLDivElement>>;
1942
+ } & react.RefAttributes<HTMLDivElement>>;
1805
1943
 
1806
1944
  type TransitionBag = {
1807
1945
  isOpen: boolean;
@@ -1823,13 +1961,13 @@ type TransitionWrapperProps = PropsWithBagFunctionOrChildren<TransitionBag> & {
1823
1961
  /**
1824
1962
  * Only use when you have a transition happening
1825
1963
  */
1826
- declare function Transition({ children, show, includeAnimation, }: TransitionWrapperProps): string | number | bigint | boolean | React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>> | Iterable<React$1.ReactNode> | React$1.ReactPortal | Promise<string | number | bigint | boolean | React$1.ReactPortal | React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>> | Iterable<React$1.ReactNode>>;
1964
+ declare function Transition({ children, show, includeAnimation, }: TransitionWrapperProps): string | number | bigint | boolean | react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | Iterable<react.ReactNode> | react.ReactPortal | Promise<string | number | bigint | boolean | react.ReactPortal | react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | Iterable<react.ReactNode>>;
1827
1965
 
1828
1966
  type LocaleContextValue = {
1829
1967
  locale: HightideTranslationLocales;
1830
1968
  setLocale: Dispatch<SetStateAction<HightideTranslationLocales>>;
1831
1969
  };
1832
- declare const LocaleContext: React$1.Context<LocaleContextValue>;
1970
+ declare const LocaleContext: react.Context<LocaleContextValue>;
1833
1971
  type LocaleWithSystem = HightideTranslationLocales | 'system';
1834
1972
  type LocaleProviderProps = PropsWithChildren & Partial<LocalizationConfig> & {
1835
1973
  locale?: LocaleWithSystem;
@@ -1955,9 +2093,9 @@ type UseOverlayRegistryResult = {
1955
2093
  };
1956
2094
  declare const useOverlayRegistry: (props?: UseOverlayRegistryProps) => UseOverlayRegistryResult;
1957
2095
 
1958
- declare const useOverwritableState: <T>(overwriteValue?: T, onChange?: (value: T) => void) => [T, React__default.Dispatch<React__default.SetStateAction<T>>];
2096
+ declare const useOverwritableState: <T>(overwriteValue?: T, onChange?: (value: T) => void) => [T, react__default.Dispatch<react__default.SetStateAction<T>>];
1959
2097
 
1960
- declare const useRerender: () => React$1.ActionDispatch<[]>;
2098
+ declare const useRerender: () => react.ActionDispatch<[]>;
1961
2099
 
1962
2100
  /**
1963
2101
  * A hook that wraps the event listener attachment
@@ -1985,7 +2123,7 @@ declare const useSearch: <T>({ list, initialSearch, searchMapping, additionalSea
1985
2123
  allItems: T[];
1986
2124
  updateSearch: (newSearch?: string) => void;
1987
2125
  search: string;
1988
- setSearch: React$1.Dispatch<React$1.SetStateAction<string>>;
2126
+ setSearch: react.Dispatch<react.SetStateAction<string>>;
1989
2127
  };
1990
2128
 
1991
2129
  type TransitionState = 'opened' | 'closed' | 'opening' | 'closing';
@@ -2145,27 +2283,27 @@ type InteractionStateDataAttributes = {
2145
2283
  };
2146
2284
  declare function interactionStatesData(interactionStates: Partial<FormFieldInteractionStates>): Partial<InteractionStateDataAttributes>;
2147
2285
  type MouseEventExtenderProps<T> = {
2148
- fromProps?: React__default.MouseEventHandler<T>;
2149
- extensions: SingleOrArray<React__default.MouseEventHandler<T>>;
2286
+ fromProps?: react__default.MouseEventHandler<T>;
2287
+ extensions: SingleOrArray<react__default.MouseEventHandler<T>>;
2150
2288
  };
2151
- declare function mouseEventExtender<T>({ fromProps, extensions }: MouseEventExtenderProps<T>): React__default.MouseEventHandler<T>;
2289
+ declare function mouseEventExtender<T>({ fromProps, extensions }: MouseEventExtenderProps<T>): react__default.MouseEventHandler<T>;
2152
2290
  type KeyoardEventExtenderProps<T> = {
2153
- fromProps: React__default.KeyboardEventHandler<T>;
2154
- extensions: SingleOrArray<React__default.KeyboardEventHandler<T>>;
2291
+ fromProps: react__default.KeyboardEventHandler<T>;
2292
+ extensions: SingleOrArray<react__default.KeyboardEventHandler<T>>;
2155
2293
  };
2156
- declare function keyboardEventExtender<T>({ fromProps, extensions, }: KeyoardEventExtenderProps<T>): React__default.KeyboardEventHandler<T>;
2294
+ declare function keyboardEventExtender<T>({ fromProps, extensions, }: KeyoardEventExtenderProps<T>): react__default.KeyboardEventHandler<T>;
2157
2295
  declare function click<T>(onClick: () => void): {
2158
2296
  onClick: () => void;
2159
- onKeyDown: React__default.KeyboardEventHandler<T>;
2297
+ onKeyDown: react__default.KeyboardEventHandler<T>;
2160
2298
  };
2161
- declare function close<T>(onClose: () => void): React__default.KeyboardEventHandler<T>;
2299
+ declare function close<T>(onClose: () => void): react__default.KeyboardEventHandler<T>;
2162
2300
  type NavigateType<T> = {
2163
- left?: (event: React__default.KeyboardEvent<T>) => void;
2164
- right?: (event: React__default.KeyboardEvent<T>) => void;
2165
- up?: (event: React__default.KeyboardEvent<T>) => void;
2166
- down?: (event: React__default.KeyboardEvent<T>) => void;
2301
+ left?: (event: react__default.KeyboardEvent<T>) => void;
2302
+ right?: (event: react__default.KeyboardEvent<T>) => void;
2303
+ up?: (event: react__default.KeyboardEvent<T>) => void;
2304
+ down?: (event: react__default.KeyboardEvent<T>) => void;
2167
2305
  };
2168
- declare function navigate<T>({ left, right, up, down, }: NavigateType<T>): React__default.KeyboardEventHandler<T>;
2306
+ declare function navigate<T>({ left, right, up, down, }: NavigateType<T>): react__default.KeyboardEventHandler<T>;
2169
2307
  type InteractionStateARIAAttributes = Pick<HTMLAttributes<HTMLDivElement>, 'aria-disabled' | 'aria-invalid' | 'aria-readonly' | 'aria-required'>;
2170
2308
  declare function interactionStatesAria(interactionStates: Partial<FormFieldInteractionStates>, props?: Partial<InteractionStateARIAAttributes>): Partial<InteractionStateARIAAttributes>;
2171
2309
  declare const PropsUtil: {
@@ -2254,4 +2392,4 @@ declare class SessionStorageService extends StorageService {
2254
2392
 
2255
2393
  declare const writeToClipboard: (text: string) => Promise<void>;
2256
2394
 
2257
- export { ASTNodeInterpreter, type ASTNodeInterpreterProps, AnimatedRing, type AnimatedRingProps, ArrayUtil, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, type BagFunction, type BagFunctionOrNode, type BagFunctionOrValue, BagFunctionUtil, 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, CheckboxUncontrolled, type CheckboxUncontrolledProps, Chip, type ChipColor, ChipList, type ChipListProps, type ChipProps, ChipUtil, Circle, type CircleProps, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogType, CopyToClipboardWrapper, type CopyToClipboardWrapperProps, type Crumb, DatePicker, type DatePickerProps, DatePickerUncontrolled, DateProperty, type DatePropertyProps, DateTimeInput, type DateTimeInputProps, DateTimeInputUncontrolled, DateTimePicker, type DateTimePickerMode, type DateTimePickerProps, DateTimePickerUncontrolled, DateUtils, DayPicker, type DayPickerProps, DayPickerUncontrolled, type DeepPartial, Dialog, type DialogPosition, type DialogProps, type Direction, DiscardChangesDialog, DividerInserter, type DividerInserterProps, Drawer, type DrawerAligment, type DrawerProps, Duration, type DurationJSON, type EaseFunction, EaseFunctions, type EditCompleteOptions, type EditCompleteOptionsResolved, ErrorComponent, type ErrorComponentProps, type Exact, Expandable, ExpandableContent, type ExpandableContentProps, ExpandableHeader, type ExpandableHeaderProps, type ExpandableProps, ExpandableRoot, type ExpandableRootProps, ExpandableUncontrolled, ExpansionIcon, type ExpansionIconProps, type FAQItem, FAQSection, type FAQSectionProps, FillerCell, type FillerCellProps, FloatingContainer, type FloatingContainerProps, type FloatingElementAlignment, FocusTrap, type FocusTrapProps, 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, FormProvider, type FormProviderProps, FormStore, type FormStoreProps, type FormValidationBehaviour, type FormValidator, type FormValue, HelpwaveBadge, type HelpwaveBadgeProps, HelpwaveLogo, type HelpwaveProps, type HightideConfig, HightideConfigContext, HightideConfigProvider, type HightideConfigProviderProps, HightideProvider, type HightideTranslationEntries, type HightideTranslationLocales, InfiniteScroll, type InfiniteScrollProps, Input, InputDialog, type InputModalProps, type InputProps, InputUncontrolled, InsideLabelInput, InsideLabelInputUncontrolled, LanguageDialog, ListBox, ListBoxItem, type ListBoxItemProps, ListBoxMultiple, type ListBoxMultipleProps, ListBoxMultipleUncontrolled, type ListBoxMultipleUncontrolledProps, ListBoxPrimitive, type ListBoxPrimitiveProps, type ListBoxProps, ListBoxUncontrolled, type ListBoxUncontrolledProps, LoadingAndErrorComponent, type LoadingAndErrorComponentProps, LoadingAnimation, type LoadingAnimationProps, type LoadingComponentProps, LoadingContainer, LocalStorageService, LocaleContext, type LocaleContextValue, LocaleProvider, type LocaleProviderProps, type LocalizationConfig, LocalizationUtil, LoopingArrayCalculator, MarkdownInterpreter, type MarkdownInterpreterProps, Menu, type MenuBag, MenuItem, type MenuItemProps, type MenuProps, type Month, MultiSearchWithMapping, MultiSelect, MultiSelectChipDisplay, type MultiSelectChipDisplayProps, MultiSelectChipDisplayUncontrolled, type MultiSelectChipDisplayUncontrolledProps, MultiSelectProperty, type MultiSelectPropertyProps, type MultiSelectProps, MultiSelectUncontrolled, MultiSubjectSearchWithMapping, Navigation, NavigationItemList, type NavigationItemListProps, type NavigationItemType, type NavigationProps, NumberProperty, type NumberPropertyProps, type OverlayItem, Pagination, type PaginationProps, type PopoverHorizontalAlignment, type PopoverVerticalAlignment, ProgressIndicator, type ProgressIndicatorProps, PromiseUtils, PropertyBase, type PropertyBaseProps, type PropertyField, PropsUtil, type PropsWithBagFunction, type PropsWithBagFunctionOrChildren, RadialRings, type RadialRingsProps, type RangeOptions, type ResolvedTheme, Ring, type RingProps, RingWave, type RingWaveProps, ScrollPicker, type ScrollPickerProps, SearchBar, type SearchBarProps, Select, SelectButton, SelectChipDisplay, SelectContent, type SelectContentProps, SelectOption, type SelectOptionProps, type SelectProps, SelectRoot, type SelectRootProps, SelectUncontrolled, type SelectUncontrolledProps, SessionStorageService, SimpleSearch, SimpleSearchWithMapping, type SingleOrArray, SingleSelectProperty, type SingleSelectPropertyProps, StepperBar, type StepperBarProps, StepperBarUncontrolled, type StepperState, type SuperSet, type TabContextType, type TabInfo, TabList, TabPanel, TabSwitcher, type TabSwitcherProps, TabView, Table, TableCell, type TableCellProps, TableFilterButton, type TableFilterButtonProps, type TableFilterType, TableFilters, type TableProps, TableSortButton, type TableSortButtonProps, TableUncontrolled, type TableUncontrolledProps, TableWithSelection, type TableWithSelectionProps, TagIcon, type TagProps, TextImage, type TextImageProps, TextProperty, type TextPropertyProps, Textarea, type TextareaProps, TextareaUncontrolled, TextareaWithHeadline, type TextareaWithHeadlineProps, type ThemeConfig, ThemeContext, ThemeDialog, ThemeProvider, type ThemeProviderProps, type ThemeType, ThemeUtil, TimeDisplay, TimePicker, type TimePickerMinuteIncrement, type TimePickerProps, TimePickerUncontrolled, ToggleableInput, ToggleableInputUncontrolled, Tooltip, type TooltipConfig, type TooltipProps, Transition, type TransitionState, type TransitionWrapperProps, type UseCreateFormProps, type UseCreateFormResult, type UseDelayOptions, type UseDelayOptionsResolved, type UseFloatingElementOptions, type UseFloatingElementProps, type UseFocusTrapProps, type UseOverlayRegistryProps, type UseOverlayRegistryResult, type UseSearchProps, UseValidators, type ValidatorError, type ValidatorResult, VerticalDivider, type VerticalDividerProps, Visibility, type VisibilityProps, type WeekDay, YearMonthPicker, type YearMonthPickerProps, YearMonthPickerUncontrolled, addDuration, builder, changeDuration, clamp, closestMatch, createLoopingList, createLoopingListWithIndex, equalSizeGroups, formatDate, formatDateTime, getBetweenDuration, getNeighbours, getWeeksForCalenderMonth, hightideTranslation, hightideTranslationLocales, isInTimeSpan, match, noop, range, resolveSetState, subtractDuration, useCreateForm, useDelay, useFloatingElement, useFocusGuards, useFocusManagement, useFocusOnceVisible, useFocusTrap, useForm, useFormField, useHightideConfig, useHightideTranslation, useHoverState, useICUTranslation, useIsMounted, useLanguage, useLocalStorage, useLocale, useLogOnce, useOutsideClick, useOverlayRegistry, useOverwritableState, usePopoverPosition, useRerender, useResizeCallbackWrapper, useSearch, useTabContext, useTheme, useTransitionState, useTranslatedValidators, validateEmail, writeToClipboard };
2395
+ export { ASTNodeInterpreter, type ASTNodeInterpreterProps, AnimatedRing, type AnimatedRingProps, ArrayUtil, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, type BagFunction, type BagFunctionOrNode, type BagFunctionOrValue, BagFunctionUtil, 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, CheckboxUncontrolled, type CheckboxUncontrolledProps, Chip, type ChipColor, ChipList, type ChipListProps, type ChipProps, ChipUtil, Circle, type CircleProps, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogType, CopyToClipboardWrapper, type CopyToClipboardWrapperProps, type Crumb, DatePicker, type DatePickerProps, DatePickerUncontrolled, DateProperty, type DatePropertyProps, DateTimeInput, type DateTimeInputProps, DateTimeInputUncontrolled, DateTimePicker, type DateTimePickerMode, type DateTimePickerProps, DateTimePickerUncontrolled, DateUtils, DayPicker, type DayPickerProps, DayPickerUncontrolled, type DeepPartial, Dialog, type DialogPosition, type DialogProps, type Direction, DiscardChangesDialog, DividerInserter, type DividerInserterProps, Drawer, type DrawerAligment, type DrawerProps, Duration, type DurationJSON, type EaseFunction, EaseFunctions, type EditCompleteOptions, type EditCompleteOptionsResolved, ErrorComponent, type ErrorComponentProps, type Exact, Expandable, ExpandableContent, type ExpandableContentProps, ExpandableHeader, type ExpandableHeaderProps, type ExpandableProps, ExpandableRoot, type ExpandableRootProps, ExpandableUncontrolled, ExpansionIcon, type ExpansionIconProps, type FAQItem, FAQSection, type FAQSectionProps, FillerCell, type FillerCellProps, FloatingContainer, type FloatingContainerProps, type FloatingElementAlignment, FocusTrap, type FocusTrapProps, 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, FormProvider, type FormProviderProps, FormStore, type FormStoreProps, type FormValidationBehaviour, type FormValidator, type FormValue, HelpwaveBadge, type HelpwaveBadgeProps, HelpwaveLogo, type HelpwaveProps, type HighlightStartPositionBehavior, type HightideConfig, HightideConfigContext, HightideConfigProvider, type HightideConfigProviderProps, HightideProvider, type HightideTranslationEntries, type HightideTranslationLocales, InfiniteScroll, type InfiniteScrollProps, Input, InputDialog, type InputModalProps, type InputProps, InputUncontrolled, InsideLabelInput, InsideLabelInputUncontrolled, LanguageDialog, ListBox, ListBoxItem, type ListBoxItemProps, ListBoxMultiple, type ListBoxMultipleProps, ListBoxMultipleUncontrolled, type ListBoxMultipleUncontrolledProps, ListBoxPrimitive, type ListBoxPrimitiveProps, type ListBoxProps, ListBoxUncontrolled, type ListBoxUncontrolledProps, LoadingAndErrorComponent, type LoadingAndErrorComponentProps, LoadingAnimation, type LoadingAnimationProps, type LoadingComponentProps, LoadingContainer, LocalStorageService, LocaleContext, type LocaleContextValue, LocaleProvider, type LocaleProviderProps, type LocalizationConfig, LocalizationUtil, LoopingArrayCalculator, MarkdownInterpreter, type MarkdownInterpreterProps, Menu, type MenuBag, MenuItem, type MenuItemProps, type MenuProps, type Month, MultiSearchWithMapping, MultiSelect, MultiSelectButton, type MultiSelectButtonProps, MultiSelectChipDisplay, MultiSelectChipDisplayButton, type MultiSelectChipDisplayProps, MultiSelectChipDisplayUncontrolled, type MultiSelectChipDisplayUncontrolledProps, MultiSelectContent, type MultiSelectContentProps, MultiSelectOption, type MultiSelectOptionProps, MultiSelectProperty, type MultiSelectPropertyProps, type MultiSelectProps, MultiSelectRoot, type MultiSelectRootProps, MultiSelectUncontrolled, MultiSubjectSearchWithMapping, Navigation, NavigationItemList, type NavigationItemListProps, type NavigationItemType, type NavigationProps, NumberProperty, type NumberPropertyProps, type OverlayItem, Pagination, type PaginationProps, type PopoverHorizontalAlignment, type PopoverVerticalAlignment, ProgressIndicator, type ProgressIndicatorProps, PromiseUtils, PropertyBase, type PropertyBaseProps, type PropertyField, PropsUtil, type PropsWithBagFunction, type PropsWithBagFunctionOrChildren, RadialRings, type RadialRingsProps, type RangeOptions, type ResolvedTheme, Ring, type RingProps, RingWave, type RingWaveProps, ScrollPicker, type ScrollPickerProps, SearchBar, type SearchBarProps, Select, SelectButton, type SelectButtonProps, SelectContent, type SelectContentProps, SelectContext, type SelectIconAppearance, SelectOption, type SelectOptionProps, type SelectProps, SelectRoot, type SelectRootProps, SelectUncontrolled, type SelectUncontrolledProps, SessionStorageService, type SharedSelectRootProps, SimpleSearch, SimpleSearchWithMapping, type SingleOrArray, SingleSelectProperty, type SingleSelectPropertyProps, StepperBar, type StepperBarProps, StepperBarUncontrolled, type StepperState, type SuperSet, type TabContextType, type TabInfo, TabList, TabPanel, TabSwitcher, type TabSwitcherProps, TabView, Table, TableCell, type TableCellProps, TableFilterButton, type TableFilterButtonProps, type TableFilterType, TableFilters, type TableProps, TableSortButton, type TableSortButtonProps, TableUncontrolled, type TableUncontrolledProps, TableWithSelection, type TableWithSelectionProps, TagIcon, type TagProps, TextImage, type TextImageProps, TextProperty, type TextPropertyProps, Textarea, type TextareaProps, TextareaUncontrolled, TextareaWithHeadline, type TextareaWithHeadlineProps, type ThemeConfig, ThemeContext, ThemeDialog, ThemeProvider, type ThemeProviderProps, type ThemeType, ThemeUtil, TimeDisplay, TimePicker, type TimePickerMinuteIncrement, type TimePickerProps, TimePickerUncontrolled, ToggleableInput, ToggleableInputUncontrolled, Tooltip, type TooltipConfig, type TooltipProps, Transition, type TransitionState, type TransitionWrapperProps, type UseCreateFormProps, type UseCreateFormResult, type UseDelayOptions, type UseDelayOptionsResolved, type UseFloatingElementOptions, type UseFloatingElementProps, type UseFocusTrapProps, type UseFormFieldOptions, type UseOverlayRegistryProps, type UseOverlayRegistryResult, type UseSearchProps, UseValidators, type ValidatorError, type ValidatorResult, VerticalDivider, type VerticalDividerProps, Visibility, type VisibilityProps, type WeekDay, YearMonthPicker, type YearMonthPickerProps, YearMonthPickerUncontrolled, addDuration, builder, changeDuration, clamp, closestMatch, createLoopingList, createLoopingListWithIndex, equalSizeGroups, formatDate, formatDateTime, getBetweenDuration, getNeighbours, getWeeksForCalenderMonth, hightideTranslation, hightideTranslationLocales, isInTimeSpan, match, noop, range, resolveSetState, subtractDuration, useCreateForm, useDelay, useFloatingElement, useFocusGuards, useFocusManagement, useFocusOnceVisible, useFocusTrap, useForm, useFormField, useHightideConfig, useHightideTranslation, useHoverState, useICUTranslation, useIsMounted, useLanguage, useLocalStorage, useLocale, useLogOnce, useOutsideClick, useOverlayRegistry, useOverwritableState, usePopoverPosition, useRerender, useResizeCallbackWrapper, useSearch, useSelectContext, useTabContext, useTheme, useTransitionState, useTranslatedValidators, validateEmail, writeToClipboard };