@helpwave/hightide 0.6.2 → 0.6.3
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 +346 -204
- package/dist/index.d.ts +346 -204
- package/dist/index.js +877 -743
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +764 -645
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import * as
|
|
3
|
-
import
|
|
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:
|
|
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
|
-
} &
|
|
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: '
|
|
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: '
|
|
200
|
+
type: 'reset';
|
|
199
201
|
key: 'ALL';
|
|
200
202
|
values: T;
|
|
201
203
|
errors: Partial<Record<keyof T, ReactNode>>;
|
|
202
204
|
} | {
|
|
203
|
-
type: '
|
|
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
|
-
|
|
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
|
|
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:
|
|
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:
|
|
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) =>
|
|
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:
|
|
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
|
-
} &
|
|
426
|
+
} & react.RefAttributes<HTMLDivElement>>;
|
|
378
427
|
type ExpandableHeaderProps = HTMLAttributes<HTMLDivElement> & {
|
|
379
428
|
isUsingDefaultIcon?: boolean;
|
|
380
429
|
};
|
|
381
|
-
declare const ExpandableHeader:
|
|
430
|
+
declare const ExpandableHeader: react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
|
|
382
431
|
isUsingDefaultIcon?: boolean;
|
|
383
|
-
} &
|
|
432
|
+
} & react.RefAttributes<HTMLDivElement>>;
|
|
384
433
|
type ExpandableContentProps = HTMLAttributes<HTMLDivElement> & {
|
|
385
434
|
forceMount?: boolean;
|
|
386
435
|
};
|
|
387
|
-
declare const ExpandableContent:
|
|
436
|
+
declare const ExpandableContent: react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
|
|
388
437
|
forceMount?: boolean;
|
|
389
|
-
} &
|
|
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:
|
|
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
|
-
} &
|
|
419
|
-
declare const ExpandableUncontrolled:
|
|
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
|
-
} &
|
|
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:
|
|
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
|
-
} &
|
|
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:
|
|
564
|
+
declare const ListBoxItem: react__default.ForwardRefExoticComponent<HTMLAttributes<HTMLLIElement> & {
|
|
520
565
|
value: string;
|
|
521
566
|
disabled?: boolean;
|
|
522
|
-
} &
|
|
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:
|
|
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
|
-
} &
|
|
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:
|
|
593
|
+
declare const ListBox: react__default.ForwardRefExoticComponent<Omit<ListBoxPrimitiveProps, "value" | "onSelectionChanged" | "isMultiple"> & {
|
|
549
594
|
value?: string;
|
|
550
595
|
onSelectionChanged?: (value: string) => void;
|
|
551
|
-
} &
|
|
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:
|
|
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
|
-
} &
|
|
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>) =>
|
|
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:
|
|
822
|
+
declare const Input: react__default.ForwardRefExoticComponent<Omit<InputHTMLAttributes<HTMLInputElement>, "value"> & Partial<FormFieldDataHandling<string>> & Partial<FormFieldInteractionStates> & {
|
|
778
823
|
editCompleteOptions?: EditCompleteOptions;
|
|
779
|
-
} &
|
|
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:
|
|
830
|
+
declare const InputUncontrolled: react__default.ForwardRefExoticComponent<Omit<InputHTMLAttributes<HTMLInputElement>, "value"> & Partial<FormFieldDataHandling<string>> & Partial<FormFieldInteractionStates> & {
|
|
786
831
|
editCompleteOptions?: EditCompleteOptions;
|
|
787
|
-
} &
|
|
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:
|
|
1163
|
+
declare const Textarea: react.ForwardRefExoticComponent<Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, "value"> & Partial<FormFieldDataHandling<string>> & Partial<FormFieldInteractionStates> & {
|
|
1229
1164
|
saveDelayOptions?: UseDelayOptions;
|
|
1230
|
-
} &
|
|
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:
|
|
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
|
|
@@ -1493,7 +1428,7 @@ type ConfigType = {
|
|
|
1493
1428
|
config: HightideConfig;
|
|
1494
1429
|
setConfig: (configOverwrite: DeepPartial<HightideConfig>) => void;
|
|
1495
1430
|
};
|
|
1496
|
-
declare const HightideConfigContext:
|
|
1431
|
+
declare const HightideConfigContext: react.Context<ConfigType>;
|
|
1497
1432
|
type HightideConfigProviderProps = PropsWithChildren & DeepPartial<HightideConfig>;
|
|
1498
1433
|
declare const HightideConfigProvider: ({ children, ...initialOverwrite }: HightideConfigProviderProps) => react_jsx_runtime.JSX.Element;
|
|
1499
1434
|
declare const useHightideConfig: () => ConfigType;
|
|
@@ -1675,9 +1610,9 @@ type InsideLabelInputProps = Omit<InputProps, 'aria-label' | 'aria-labelledby' |
|
|
|
1675
1610
|
*
|
|
1676
1611
|
* The State is managed by the parent
|
|
1677
1612
|
*/
|
|
1678
|
-
declare const InsideLabelInput:
|
|
1613
|
+
declare const InsideLabelInput: react.ForwardRefExoticComponent<Omit<InputProps, "aria-label" | "aria-labelledby" | "placeholder"> & {
|
|
1679
1614
|
label: ReactNode;
|
|
1680
|
-
} &
|
|
1615
|
+
} & react.RefAttributes<HTMLInputElement>>;
|
|
1681
1616
|
declare const InsideLabelInputUncontrolled: ({ value: initialValue, ...props }: InsideLabelInputProps) => react_jsx_runtime.JSX.Element;
|
|
1682
1617
|
|
|
1683
1618
|
type SearchBarProps = Omit<InputProps, 'onValueChange' | 'onEditComplete'> & {
|
|
@@ -1698,12 +1633,12 @@ type ToggleableInputProps = InputProps & {
|
|
|
1698
1633
|
*
|
|
1699
1634
|
* The State is managed by the parent
|
|
1700
1635
|
*/
|
|
1701
|
-
declare const ToggleableInput:
|
|
1636
|
+
declare const ToggleableInput: react.ForwardRefExoticComponent<Omit<react.InputHTMLAttributes<HTMLInputElement>, "value"> & Partial<FormFieldDataHandling<string>> & Partial<FormFieldInteractionStates> & {
|
|
1702
1637
|
editCompleteOptions?: EditCompleteOptions;
|
|
1703
1638
|
} & {
|
|
1704
1639
|
initialState?: "editing" | "display";
|
|
1705
1640
|
editCompleteOptions?: Omit<EditCompleteOptions, "allowEnterComplete">;
|
|
1706
|
-
} &
|
|
1641
|
+
} & react.RefAttributes<HTMLInputElement>>;
|
|
1707
1642
|
declare const ToggleableInputUncontrolled: ({ value: initialValue, onValueChange, ...restProps }: ToggleableInputProps) => react_jsx_runtime.JSX.Element;
|
|
1708
1643
|
|
|
1709
1644
|
type PropertyField<T> = {
|
|
@@ -1779,6 +1714,213 @@ type TextPropertyProps = PropertyField<string>;
|
|
|
1779
1714
|
*/
|
|
1780
1715
|
declare const TextProperty: ({ value, readOnly, onRemove, onValueChange, onEditComplete, ...baseProps }: TextPropertyProps) => react_jsx_runtime.JSX.Element;
|
|
1781
1716
|
|
|
1717
|
+
type RegisteredOption = {
|
|
1718
|
+
value: string;
|
|
1719
|
+
label: ReactNode;
|
|
1720
|
+
disabled: boolean;
|
|
1721
|
+
ref: React.RefObject<HTMLLIElement>;
|
|
1722
|
+
};
|
|
1723
|
+
type HighlightStartPositionBehavior = 'first' | 'last';
|
|
1724
|
+
type SelectIconAppearance = 'left' | 'right' | 'none';
|
|
1725
|
+
type InternalSelectContextState = {
|
|
1726
|
+
isOpen: boolean;
|
|
1727
|
+
options: RegisteredOption[];
|
|
1728
|
+
highlightedValue?: string;
|
|
1729
|
+
};
|
|
1730
|
+
type SelectContextIds = {
|
|
1731
|
+
trigger: string;
|
|
1732
|
+
content: string;
|
|
1733
|
+
};
|
|
1734
|
+
type SelectContextState = InternalSelectContextState & FormFieldInteractionStates & {
|
|
1735
|
+
value: string[];
|
|
1736
|
+
selectedOptions: RegisteredOption[];
|
|
1737
|
+
};
|
|
1738
|
+
type SelectConfiguration = {
|
|
1739
|
+
isMultiSelect: boolean;
|
|
1740
|
+
iconAppearance: SelectIconAppearance;
|
|
1741
|
+
};
|
|
1742
|
+
type ToggleOpenOptions = {
|
|
1743
|
+
highlightStartPositionBehavior?: HighlightStartPositionBehavior;
|
|
1744
|
+
};
|
|
1745
|
+
type SelectContextType = {
|
|
1746
|
+
ids: SelectContextIds;
|
|
1747
|
+
setIds: Dispatch<SetStateAction<SelectContextIds>>;
|
|
1748
|
+
state: SelectContextState;
|
|
1749
|
+
config: SelectConfiguration;
|
|
1750
|
+
item: {
|
|
1751
|
+
register: (item: RegisteredOption) => void;
|
|
1752
|
+
unregister: (value: string) => void;
|
|
1753
|
+
toggleSelection: (value: string, isSelected?: boolean) => void;
|
|
1754
|
+
highlightItem: (value: string) => void;
|
|
1755
|
+
moveHighlightedIndex: (delta: number) => void;
|
|
1756
|
+
};
|
|
1757
|
+
trigger: {
|
|
1758
|
+
ref: React.RefObject<HTMLElement>;
|
|
1759
|
+
register: (element: React.RefObject<HTMLElement>) => void;
|
|
1760
|
+
unregister: () => void;
|
|
1761
|
+
toggleOpen: (isOpen?: boolean, options?: ToggleOpenOptions) => void;
|
|
1762
|
+
};
|
|
1763
|
+
};
|
|
1764
|
+
declare const SelectContext: react.Context<SelectContextType>;
|
|
1765
|
+
declare function useSelectContext(): SelectContextType;
|
|
1766
|
+
type SharedSelectRootProps = Partial<FormFieldInteractionStates> & PropsWithChildren & {
|
|
1767
|
+
id?: string;
|
|
1768
|
+
initialIsOpen?: boolean;
|
|
1769
|
+
iconAppearance?: SelectIconAppearance;
|
|
1770
|
+
onClose?: () => void;
|
|
1771
|
+
};
|
|
1772
|
+
type SelectRootProps = SharedSelectRootProps & Partial<FormFieldDataHandling<string>>;
|
|
1773
|
+
declare const SelectRoot: ({ value, onValueChange, onEditComplete, ...props }: SelectRootProps) => react_jsx_runtime.JSX.Element;
|
|
1774
|
+
type MultiSelectRootProps = SharedSelectRootProps & Partial<FormFieldDataHandling<string[]>>;
|
|
1775
|
+
declare const MultiSelectRoot: ({ value, onValueChange, onEditComplete, ...props }: MultiSelectRootProps) => react_jsx_runtime.JSX.Element;
|
|
1776
|
+
|
|
1777
|
+
type SelectOptionProps = Omit<HTMLAttributes<HTMLLIElement>, 'children'> & {
|
|
1778
|
+
value: string;
|
|
1779
|
+
disabled?: boolean;
|
|
1780
|
+
iconAppearance?: SelectIconAppearance;
|
|
1781
|
+
children?: ReactNode;
|
|
1782
|
+
};
|
|
1783
|
+
declare const SelectOption: react.ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLLIElement>, "children"> & {
|
|
1784
|
+
value: string;
|
|
1785
|
+
disabled?: boolean;
|
|
1786
|
+
iconAppearance?: SelectIconAppearance;
|
|
1787
|
+
children?: ReactNode;
|
|
1788
|
+
} & react.RefAttributes<HTMLLIElement>>;
|
|
1789
|
+
type SelectButtonProps = ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
1790
|
+
placeholder?: ReactNode;
|
|
1791
|
+
selectedDisplay?: (value: string[]) => ReactNode;
|
|
1792
|
+
};
|
|
1793
|
+
declare const SelectButton: react.ForwardRefExoticComponent<ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
1794
|
+
placeholder?: ReactNode;
|
|
1795
|
+
selectedDisplay?: (value: string[]) => ReactNode;
|
|
1796
|
+
} & react.RefAttributes<HTMLButtonElement>>;
|
|
1797
|
+
type Orientation = 'vertical' | 'horizontal';
|
|
1798
|
+
type SelectContentProps = HTMLAttributes<HTMLUListElement> & {
|
|
1799
|
+
alignment?: Pick<UseFloatingElementOptions, 'gap' | 'horizontalAlignment' | 'verticalAlignment'>;
|
|
1800
|
+
orientation?: Orientation;
|
|
1801
|
+
containerClassName?: string;
|
|
1802
|
+
};
|
|
1803
|
+
declare const SelectContent: react.ForwardRefExoticComponent<HTMLAttributes<HTMLUListElement> & {
|
|
1804
|
+
alignment?: Pick<UseFloatingElementOptions, "gap" | "horizontalAlignment" | "verticalAlignment">;
|
|
1805
|
+
orientation?: Orientation;
|
|
1806
|
+
containerClassName?: string;
|
|
1807
|
+
} & react.RefAttributes<HTMLUListElement>>;
|
|
1808
|
+
type MultiSelectOptionProps = SelectOptionProps;
|
|
1809
|
+
declare const MultiSelectOption: react.ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLLIElement>, "children"> & {
|
|
1810
|
+
value: string;
|
|
1811
|
+
disabled?: boolean;
|
|
1812
|
+
iconAppearance?: SelectIconAppearance;
|
|
1813
|
+
children?: ReactNode;
|
|
1814
|
+
} & react.RefAttributes<HTMLLIElement>>;
|
|
1815
|
+
type MultiSelectContentProps = SelectContentProps;
|
|
1816
|
+
declare const MultiSelectContent: react.ForwardRefExoticComponent<HTMLAttributes<HTMLUListElement> & {
|
|
1817
|
+
alignment?: Pick<UseFloatingElementOptions, "gap" | "horizontalAlignment" | "verticalAlignment">;
|
|
1818
|
+
orientation?: Orientation;
|
|
1819
|
+
containerClassName?: string;
|
|
1820
|
+
} & react.RefAttributes<HTMLUListElement>>;
|
|
1821
|
+
type MultiSelectButtonProps = SelectButtonProps;
|
|
1822
|
+
declare const MultiSelectButton: react.ForwardRefExoticComponent<ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
1823
|
+
placeholder?: ReactNode;
|
|
1824
|
+
selectedDisplay?: (value: string[]) => ReactNode;
|
|
1825
|
+
} & react.RefAttributes<HTMLButtonElement>>;
|
|
1826
|
+
|
|
1827
|
+
type MultiSelectProps = MultiSelectRootProps & {
|
|
1828
|
+
contentPanelProps?: MultiSelectContentProps;
|
|
1829
|
+
buttonProps?: MultiSelectButtonProps;
|
|
1830
|
+
};
|
|
1831
|
+
declare const MultiSelect: react.ForwardRefExoticComponent<Partial<FormFieldInteractionStates> & {
|
|
1832
|
+
children?: react.ReactNode | undefined;
|
|
1833
|
+
} & {
|
|
1834
|
+
id?: string;
|
|
1835
|
+
initialIsOpen?: boolean;
|
|
1836
|
+
iconAppearance?: SelectIconAppearance;
|
|
1837
|
+
onClose?: () => void;
|
|
1838
|
+
} & Partial<FormFieldDataHandling<string[]>> & {
|
|
1839
|
+
contentPanelProps?: MultiSelectContentProps;
|
|
1840
|
+
buttonProps?: MultiSelectButtonProps;
|
|
1841
|
+
} & react.RefAttributes<HTMLButtonElement>>;
|
|
1842
|
+
declare const MultiSelectUncontrolled: react.ForwardRefExoticComponent<Partial<FormFieldInteractionStates> & {
|
|
1843
|
+
children?: react.ReactNode | undefined;
|
|
1844
|
+
} & {
|
|
1845
|
+
id?: string;
|
|
1846
|
+
initialIsOpen?: boolean;
|
|
1847
|
+
iconAppearance?: SelectIconAppearance;
|
|
1848
|
+
onClose?: () => void;
|
|
1849
|
+
} & Partial<FormFieldDataHandling<string[]>> & {
|
|
1850
|
+
contentPanelProps?: MultiSelectContentProps;
|
|
1851
|
+
buttonProps?: MultiSelectButtonProps;
|
|
1852
|
+
} & react.RefAttributes<HTMLButtonElement>>;
|
|
1853
|
+
|
|
1854
|
+
type MultiSelectChipDisplayButtonProps = HTMLAttributes<HTMLDivElement> & {
|
|
1855
|
+
disabled?: boolean;
|
|
1856
|
+
placeholder?: ReactNode;
|
|
1857
|
+
};
|
|
1858
|
+
declare const MultiSelectChipDisplayButton: react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
|
|
1859
|
+
disabled?: boolean;
|
|
1860
|
+
placeholder?: ReactNode;
|
|
1861
|
+
} & react.RefAttributes<HTMLDivElement>>;
|
|
1862
|
+
type MultiSelectChipDisplayProps = MultiSelectRootProps & {
|
|
1863
|
+
contentPanelProps?: MultiSelectContentProps;
|
|
1864
|
+
chipDisplayProps?: MultiSelectChipDisplayButtonProps;
|
|
1865
|
+
};
|
|
1866
|
+
declare const MultiSelectChipDisplay: react.ForwardRefExoticComponent<Partial<FormFieldInteractionStates> & {
|
|
1867
|
+
children?: ReactNode | undefined;
|
|
1868
|
+
} & {
|
|
1869
|
+
id?: string;
|
|
1870
|
+
initialIsOpen?: boolean;
|
|
1871
|
+
iconAppearance?: SelectIconAppearance;
|
|
1872
|
+
onClose?: () => void;
|
|
1873
|
+
} & Partial<FormFieldDataHandling<string[]>> & {
|
|
1874
|
+
contentPanelProps?: MultiSelectContentProps;
|
|
1875
|
+
chipDisplayProps?: MultiSelectChipDisplayButtonProps;
|
|
1876
|
+
} & react.RefAttributes<HTMLDivElement>>;
|
|
1877
|
+
type MultiSelectChipDisplayUncontrolledProps = MultiSelectChipDisplayProps;
|
|
1878
|
+
declare const MultiSelectChipDisplayUncontrolled: react.ForwardRefExoticComponent<Partial<FormFieldInteractionStates> & {
|
|
1879
|
+
children?: ReactNode | undefined;
|
|
1880
|
+
} & {
|
|
1881
|
+
id?: string;
|
|
1882
|
+
initialIsOpen?: boolean;
|
|
1883
|
+
iconAppearance?: SelectIconAppearance;
|
|
1884
|
+
onClose?: () => void;
|
|
1885
|
+
} & Partial<FormFieldDataHandling<string[]>> & {
|
|
1886
|
+
contentPanelProps?: MultiSelectContentProps;
|
|
1887
|
+
chipDisplayProps?: MultiSelectChipDisplayButtonProps;
|
|
1888
|
+
} & react.RefAttributes<HTMLDivElement>>;
|
|
1889
|
+
|
|
1890
|
+
type SelectProps = SelectRootProps & {
|
|
1891
|
+
contentPanelProps?: SelectContentProps;
|
|
1892
|
+
buttonProps?: Omit<SelectButtonProps, 'selectedDisplay'> & {
|
|
1893
|
+
selectedDisplay?: (value: string) => ReactNode;
|
|
1894
|
+
};
|
|
1895
|
+
};
|
|
1896
|
+
declare const Select: react.ForwardRefExoticComponent<Partial<FormFieldInteractionStates> & {
|
|
1897
|
+
children?: ReactNode | undefined;
|
|
1898
|
+
} & {
|
|
1899
|
+
id?: string;
|
|
1900
|
+
initialIsOpen?: boolean;
|
|
1901
|
+
iconAppearance?: SelectIconAppearance;
|
|
1902
|
+
onClose?: () => void;
|
|
1903
|
+
} & Partial<FormFieldDataHandling<string>> & {
|
|
1904
|
+
contentPanelProps?: SelectContentProps;
|
|
1905
|
+
buttonProps?: Omit<SelectButtonProps, "selectedDisplay"> & {
|
|
1906
|
+
selectedDisplay?: (value: string) => ReactNode;
|
|
1907
|
+
};
|
|
1908
|
+
} & react.RefAttributes<HTMLButtonElement>>;
|
|
1909
|
+
type SelectUncontrolledProps = SelectProps;
|
|
1910
|
+
declare const SelectUncontrolled: react.ForwardRefExoticComponent<Partial<FormFieldInteractionStates> & {
|
|
1911
|
+
children?: ReactNode | undefined;
|
|
1912
|
+
} & {
|
|
1913
|
+
id?: string;
|
|
1914
|
+
initialIsOpen?: boolean;
|
|
1915
|
+
iconAppearance?: SelectIconAppearance;
|
|
1916
|
+
onClose?: () => void;
|
|
1917
|
+
} & Partial<FormFieldDataHandling<string>> & {
|
|
1918
|
+
contentPanelProps?: SelectContentProps;
|
|
1919
|
+
buttonProps?: Omit<SelectButtonProps, "selectedDisplay"> & {
|
|
1920
|
+
selectedDisplay?: (value: string) => ReactNode;
|
|
1921
|
+
};
|
|
1922
|
+
} & react.RefAttributes<HTMLButtonElement>>;
|
|
1923
|
+
|
|
1782
1924
|
type FocusTrapProps = HTMLAttributes<HTMLDivElement> & {
|
|
1783
1925
|
active?: boolean;
|
|
1784
1926
|
initialFocus?: RefObject<HTMLElement | null>;
|
|
@@ -1792,7 +1934,7 @@ type FocusTrapProps = HTMLAttributes<HTMLDivElement> & {
|
|
|
1792
1934
|
/**
|
|
1793
1935
|
* A wrapper for the useFocusTrap hook that directly renders it to a div
|
|
1794
1936
|
*/
|
|
1795
|
-
declare const FocusTrap:
|
|
1937
|
+
declare const FocusTrap: react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
|
|
1796
1938
|
active?: boolean;
|
|
1797
1939
|
initialFocus?: RefObject<HTMLElement | null>;
|
|
1798
1940
|
/**
|
|
@@ -1801,7 +1943,7 @@ declare const FocusTrap: React$1.ForwardRefExoticComponent<HTMLAttributes<HTMLDi
|
|
|
1801
1943
|
* Focuses the container instead
|
|
1802
1944
|
*/
|
|
1803
1945
|
focusFirst?: boolean;
|
|
1804
|
-
} &
|
|
1946
|
+
} & react.RefAttributes<HTMLDivElement>>;
|
|
1805
1947
|
|
|
1806
1948
|
type TransitionBag = {
|
|
1807
1949
|
isOpen: boolean;
|
|
@@ -1823,13 +1965,13 @@ type TransitionWrapperProps = PropsWithBagFunctionOrChildren<TransitionBag> & {
|
|
|
1823
1965
|
/**
|
|
1824
1966
|
* Only use when you have a transition happening
|
|
1825
1967
|
*/
|
|
1826
|
-
declare function Transition({ children, show, includeAnimation, }: TransitionWrapperProps): string | number | bigint | boolean |
|
|
1968
|
+
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
1969
|
|
|
1828
1970
|
type LocaleContextValue = {
|
|
1829
1971
|
locale: HightideTranslationLocales;
|
|
1830
1972
|
setLocale: Dispatch<SetStateAction<HightideTranslationLocales>>;
|
|
1831
1973
|
};
|
|
1832
|
-
declare const LocaleContext:
|
|
1974
|
+
declare const LocaleContext: react.Context<LocaleContextValue>;
|
|
1833
1975
|
type LocaleWithSystem = HightideTranslationLocales | 'system';
|
|
1834
1976
|
type LocaleProviderProps = PropsWithChildren & Partial<LocalizationConfig> & {
|
|
1835
1977
|
locale?: LocaleWithSystem;
|
|
@@ -1955,9 +2097,9 @@ type UseOverlayRegistryResult = {
|
|
|
1955
2097
|
};
|
|
1956
2098
|
declare const useOverlayRegistry: (props?: UseOverlayRegistryProps) => UseOverlayRegistryResult;
|
|
1957
2099
|
|
|
1958
|
-
declare const useOverwritableState: <T>(overwriteValue?: T, onChange?: (value: T) => void) => [T,
|
|
2100
|
+
declare const useOverwritableState: <T>(overwriteValue?: T, onChange?: (value: T) => void) => [T, react__default.Dispatch<react__default.SetStateAction<T>>];
|
|
1959
2101
|
|
|
1960
|
-
declare const useRerender: () =>
|
|
2102
|
+
declare const useRerender: () => react.ActionDispatch<[]>;
|
|
1961
2103
|
|
|
1962
2104
|
/**
|
|
1963
2105
|
* A hook that wraps the event listener attachment
|
|
@@ -1985,7 +2127,7 @@ declare const useSearch: <T>({ list, initialSearch, searchMapping, additionalSea
|
|
|
1985
2127
|
allItems: T[];
|
|
1986
2128
|
updateSearch: (newSearch?: string) => void;
|
|
1987
2129
|
search: string;
|
|
1988
|
-
setSearch:
|
|
2130
|
+
setSearch: react.Dispatch<react.SetStateAction<string>>;
|
|
1989
2131
|
};
|
|
1990
2132
|
|
|
1991
2133
|
type TransitionState = 'opened' | 'closed' | 'opening' | 'closing';
|
|
@@ -2145,27 +2287,27 @@ type InteractionStateDataAttributes = {
|
|
|
2145
2287
|
};
|
|
2146
2288
|
declare function interactionStatesData(interactionStates: Partial<FormFieldInteractionStates>): Partial<InteractionStateDataAttributes>;
|
|
2147
2289
|
type MouseEventExtenderProps<T> = {
|
|
2148
|
-
fromProps?:
|
|
2149
|
-
extensions: SingleOrArray<
|
|
2290
|
+
fromProps?: react__default.MouseEventHandler<T>;
|
|
2291
|
+
extensions: SingleOrArray<react__default.MouseEventHandler<T>>;
|
|
2150
2292
|
};
|
|
2151
|
-
declare function mouseEventExtender<T>({ fromProps, extensions }: MouseEventExtenderProps<T>):
|
|
2293
|
+
declare function mouseEventExtender<T>({ fromProps, extensions }: MouseEventExtenderProps<T>): react__default.MouseEventHandler<T>;
|
|
2152
2294
|
type KeyoardEventExtenderProps<T> = {
|
|
2153
|
-
fromProps:
|
|
2154
|
-
extensions: SingleOrArray<
|
|
2295
|
+
fromProps: react__default.KeyboardEventHandler<T>;
|
|
2296
|
+
extensions: SingleOrArray<react__default.KeyboardEventHandler<T>>;
|
|
2155
2297
|
};
|
|
2156
|
-
declare function keyboardEventExtender<T>({ fromProps, extensions, }: KeyoardEventExtenderProps<T>):
|
|
2298
|
+
declare function keyboardEventExtender<T>({ fromProps, extensions, }: KeyoardEventExtenderProps<T>): react__default.KeyboardEventHandler<T>;
|
|
2157
2299
|
declare function click<T>(onClick: () => void): {
|
|
2158
2300
|
onClick: () => void;
|
|
2159
|
-
onKeyDown:
|
|
2301
|
+
onKeyDown: react__default.KeyboardEventHandler<T>;
|
|
2160
2302
|
};
|
|
2161
|
-
declare function close<T>(onClose: () => void):
|
|
2303
|
+
declare function close<T>(onClose: () => void): react__default.KeyboardEventHandler<T>;
|
|
2162
2304
|
type NavigateType<T> = {
|
|
2163
|
-
left?: (event:
|
|
2164
|
-
right?: (event:
|
|
2165
|
-
up?: (event:
|
|
2166
|
-
down?: (event:
|
|
2305
|
+
left?: (event: react__default.KeyboardEvent<T>) => void;
|
|
2306
|
+
right?: (event: react__default.KeyboardEvent<T>) => void;
|
|
2307
|
+
up?: (event: react__default.KeyboardEvent<T>) => void;
|
|
2308
|
+
down?: (event: react__default.KeyboardEvent<T>) => void;
|
|
2167
2309
|
};
|
|
2168
|
-
declare function navigate<T>({ left, right, up, down, }: NavigateType<T>):
|
|
2310
|
+
declare function navigate<T>({ left, right, up, down, }: NavigateType<T>): react__default.KeyboardEventHandler<T>;
|
|
2169
2311
|
type InteractionStateARIAAttributes = Pick<HTMLAttributes<HTMLDivElement>, 'aria-disabled' | 'aria-invalid' | 'aria-readonly' | 'aria-required'>;
|
|
2170
2312
|
declare function interactionStatesAria(interactionStates: Partial<FormFieldInteractionStates>, props?: Partial<InteractionStateARIAAttributes>): Partial<InteractionStateARIAAttributes>;
|
|
2171
2313
|
declare const PropsUtil: {
|
|
@@ -2254,4 +2396,4 @@ declare class SessionStorageService extends StorageService {
|
|
|
2254
2396
|
|
|
2255
2397
|
declare const writeToClipboard: (text: string) => Promise<void>;
|
|
2256
2398
|
|
|
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,
|
|
2399
|
+
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 };
|