@helpwave/hightide 0.6.1 → 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 +349 -204
- package/dist/index.d.ts +349 -204
- package/dist/index.js +884 -745
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +771 -647
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
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,14 +246,16 @@ 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;
|
|
258
|
+
getErrors(): Partial<Record<keyof T, ReactNode>>;
|
|
244
259
|
getError(key: keyof T): ReactNode;
|
|
245
260
|
private setError;
|
|
246
261
|
changeValidationBehavoir(validationBehaviour: FormValidationBehaviour): void;
|
|
@@ -253,30 +268,38 @@ declare class FormStore<T extends FormValue> {
|
|
|
253
268
|
reset(): void;
|
|
254
269
|
}
|
|
255
270
|
|
|
256
|
-
type FormFieldFocusableElementProps = FormFieldAriaAttributes & {
|
|
257
|
-
id: string;
|
|
258
|
-
ref: (element: HTMLElement | null) => void;
|
|
259
|
-
};
|
|
260
|
-
type FormFieldBag<T extends FormValue, K extends keyof T> = {
|
|
261
|
-
dataProps: FormFieldDataHandling<T[K]>;
|
|
262
|
-
focusableElementProps: FormFieldFocusableElementProps;
|
|
263
|
-
interactionStates: FormFieldInteractionStates;
|
|
264
|
-
};
|
|
265
|
-
interface FormFieldProps<T extends FormValue, K extends keyof T> extends Omit<FormFieldLayoutProps, 'invalidDescription' | 'children'> {
|
|
266
|
-
children: (bag: FormFieldBag<T, K>) => ReactNode;
|
|
267
|
-
name: K;
|
|
268
|
-
}
|
|
269
|
-
type FormFieldDataHandling<T> = {
|
|
270
|
-
value: T;
|
|
271
|
-
onValueChange: (value: T) => void;
|
|
272
|
-
onEditComplete: (value: T) => void;
|
|
273
|
-
};
|
|
274
|
-
declare const FormField: <T extends FormValue, K extends keyof T>({ children, name, ...props }: FormFieldProps<T, K>) => react_jsx_runtime.JSX.Element;
|
|
275
|
-
|
|
276
271
|
type UseCreateFormProps<T extends FormValue> = FormStoreProps<T> & {
|
|
277
272
|
onFormSubmit: (values: T) => void;
|
|
278
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
|
+
*/
|
|
279
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;
|
|
280
303
|
scrollToElements?: boolean;
|
|
281
304
|
scrollOptions?: ScrollIntoViewOptions;
|
|
282
305
|
};
|
|
@@ -286,34 +309,63 @@ type UseCreateFormResult<T extends FormValue> = {
|
|
|
286
309
|
submit: () => void;
|
|
287
310
|
update: (updater: Partial<T> | ((current: T) => Partial<T>)) => void;
|
|
288
311
|
validateAll: () => void;
|
|
289
|
-
getDataProps: <K extends keyof T>(key: K) => FormFieldDataHandling<T[K]>;
|
|
290
312
|
getError: (key: keyof T) => ReactNode;
|
|
313
|
+
getErrors: () => Partial<Record<keyof T, ReactNode>>;
|
|
314
|
+
getIsValid: () => boolean;
|
|
291
315
|
getValues: () => T;
|
|
292
316
|
getValue: <K extends keyof T>(key: K) => T[K];
|
|
293
317
|
registerRef: (key: keyof T) => (el: HTMLElement | null) => void;
|
|
294
318
|
};
|
|
295
|
-
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;
|
|
296
344
|
|
|
297
345
|
type FormContextType<T extends FormValue> = UseCreateFormResult<T>;
|
|
298
|
-
declare const FormContext:
|
|
346
|
+
declare const FormContext: react.Context<FormContextType<any>>;
|
|
299
347
|
type FormProviderProps<T extends FormValue> = PropsWithChildren & {
|
|
300
348
|
state: FormContextType<T>;
|
|
301
349
|
};
|
|
302
350
|
declare const FormProvider: <T extends FormValue>({ children, state }: FormProviderProps<T>) => react_jsx_runtime.JSX.Element;
|
|
303
351
|
declare function useForm<T extends FormValue>(): FormContextType<T>;
|
|
352
|
+
type UseFormFieldOptions = {
|
|
353
|
+
triggerUpdate?: boolean;
|
|
354
|
+
};
|
|
304
355
|
type FormFieldResult<T> = {
|
|
356
|
+
store: FormStore<T>;
|
|
305
357
|
value: T;
|
|
306
358
|
error: ReactNode;
|
|
307
359
|
dataProps: FormFieldDataHandling<T>;
|
|
308
360
|
registerRef: (el: HTMLElement | null) => void;
|
|
309
361
|
};
|
|
310
|
-
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;
|
|
311
363
|
|
|
312
364
|
interface CarouselSlideProps extends HTMLAttributes<HTMLDivElement> {
|
|
313
365
|
isSelected: boolean;
|
|
314
366
|
index: number;
|
|
315
367
|
}
|
|
316
|
-
declare const CarouselSlide:
|
|
368
|
+
declare const CarouselSlide: react__default.ForwardRefExoticComponent<CarouselSlideProps & react__default.RefAttributes<HTMLDivElement>>;
|
|
317
369
|
type CarouselProps = Omit<HTMLAttributes<HTMLDivElement>, 'children'> & {
|
|
318
370
|
children: ReactNode[];
|
|
319
371
|
animationTime?: number;
|
|
@@ -358,7 +410,7 @@ type DrawerProps = HTMLAttributes<HTMLDivElement> & {
|
|
|
358
410
|
backgroundClassName?: string;
|
|
359
411
|
onClose: () => void;
|
|
360
412
|
};
|
|
361
|
-
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;
|
|
362
414
|
|
|
363
415
|
type ExpandableRootProps = HTMLAttributes<HTMLDivElement> & {
|
|
364
416
|
isExpanded?: boolean;
|
|
@@ -366,29 +418,27 @@ type ExpandableRootProps = HTMLAttributes<HTMLDivElement> & {
|
|
|
366
418
|
disabled?: boolean;
|
|
367
419
|
allowContainerToggle?: boolean;
|
|
368
420
|
};
|
|
369
|
-
declare const ExpandableRoot:
|
|
421
|
+
declare const ExpandableRoot: react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
|
|
370
422
|
isExpanded?: boolean;
|
|
371
423
|
onExpandedChange?: (isExpanded: boolean) => void;
|
|
372
424
|
disabled?: boolean;
|
|
373
425
|
allowContainerToggle?: boolean;
|
|
374
|
-
} &
|
|
426
|
+
} & react.RefAttributes<HTMLDivElement>>;
|
|
375
427
|
type ExpandableHeaderProps = HTMLAttributes<HTMLDivElement> & {
|
|
376
428
|
isUsingDefaultIcon?: boolean;
|
|
377
429
|
};
|
|
378
|
-
declare const ExpandableHeader:
|
|
430
|
+
declare const ExpandableHeader: react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
|
|
379
431
|
isUsingDefaultIcon?: boolean;
|
|
380
|
-
} &
|
|
432
|
+
} & react.RefAttributes<HTMLDivElement>>;
|
|
381
433
|
type ExpandableContentProps = HTMLAttributes<HTMLDivElement> & {
|
|
382
434
|
forceMount?: boolean;
|
|
383
435
|
};
|
|
384
|
-
declare const ExpandableContent:
|
|
436
|
+
declare const ExpandableContent: react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
|
|
385
437
|
forceMount?: boolean;
|
|
386
|
-
} &
|
|
387
|
-
type IconBuilder = (expanded: boolean) => ReactNode;
|
|
438
|
+
} & react.RefAttributes<HTMLDivElement>>;
|
|
388
439
|
type ExpandableProps = PropsWithChildren<{
|
|
389
440
|
id?: string;
|
|
390
441
|
label: ReactNode;
|
|
391
|
-
icon?: IconBuilder;
|
|
392
442
|
isExpanded?: boolean;
|
|
393
443
|
onChange?: (isExpanded: boolean) => void;
|
|
394
444
|
clickOnlyOnHeader?: boolean;
|
|
@@ -398,10 +448,9 @@ type ExpandableProps = PropsWithChildren<{
|
|
|
398
448
|
contentClassName?: string;
|
|
399
449
|
contentExpandedClassName?: string;
|
|
400
450
|
}>;
|
|
401
|
-
declare const Expandable:
|
|
451
|
+
declare const Expandable: react.ForwardRefExoticComponent<{
|
|
402
452
|
id?: string;
|
|
403
453
|
label: ReactNode;
|
|
404
|
-
icon?: IconBuilder;
|
|
405
454
|
isExpanded?: boolean;
|
|
406
455
|
onChange?: (isExpanded: boolean) => void;
|
|
407
456
|
clickOnlyOnHeader?: boolean;
|
|
@@ -412,11 +461,10 @@ declare const Expandable: React$1.ForwardRefExoticComponent<{
|
|
|
412
461
|
contentExpandedClassName?: string;
|
|
413
462
|
} & {
|
|
414
463
|
children?: ReactNode | undefined;
|
|
415
|
-
} &
|
|
416
|
-
declare const ExpandableUncontrolled:
|
|
464
|
+
} & react.RefAttributes<HTMLDivElement>>;
|
|
465
|
+
declare const ExpandableUncontrolled: react.ForwardRefExoticComponent<{
|
|
417
466
|
id?: string;
|
|
418
467
|
label: ReactNode;
|
|
419
|
-
icon?: IconBuilder;
|
|
420
468
|
isExpanded?: boolean;
|
|
421
469
|
onChange?: (isExpanded: boolean) => void;
|
|
422
470
|
clickOnlyOnHeader?: boolean;
|
|
@@ -427,7 +475,7 @@ declare const ExpandableUncontrolled: React$1.ForwardRefExoticComponent<{
|
|
|
427
475
|
contentExpandedClassName?: string;
|
|
428
476
|
} & {
|
|
429
477
|
children?: ReactNode | undefined;
|
|
430
|
-
} &
|
|
478
|
+
} & react.RefAttributes<HTMLDivElement>>;
|
|
431
479
|
|
|
432
480
|
type FAQItem = Pick<ExpandableProps, 'isExpanded' | 'className'> & {
|
|
433
481
|
title: string;
|
|
@@ -472,7 +520,7 @@ type FloatingContainerProps = HTMLAttributes<HTMLDivElement> & UseFloatingElemen
|
|
|
472
520
|
* Notes:
|
|
473
521
|
* - to hide it use the hidden attribute as other means break the functionality
|
|
474
522
|
*/
|
|
475
|
-
declare const FloatingContainer:
|
|
523
|
+
declare const FloatingContainer: react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
|
|
476
524
|
verticalAlignment?: FloatingElementAlignment;
|
|
477
525
|
horizontalAlignment?: FloatingElementAlignment;
|
|
478
526
|
screenPadding?: number;
|
|
@@ -488,7 +536,7 @@ declare const FloatingContainer: React$1.ForwardRefExoticComponent<HTMLAttribute
|
|
|
488
536
|
* Use sparingly
|
|
489
537
|
*/
|
|
490
538
|
backgroundOverlay?: ReactNode;
|
|
491
|
-
} &
|
|
539
|
+
} & react.RefAttributes<HTMLDivElement>>;
|
|
492
540
|
|
|
493
541
|
interface InfiniteScrollProps {
|
|
494
542
|
itemCount: number;
|
|
@@ -513,10 +561,10 @@ type ListBoxItemProps = HTMLAttributes<HTMLLIElement> & {
|
|
|
513
561
|
value: string;
|
|
514
562
|
disabled?: boolean;
|
|
515
563
|
};
|
|
516
|
-
declare const ListBoxItem:
|
|
564
|
+
declare const ListBoxItem: react__default.ForwardRefExoticComponent<HTMLAttributes<HTMLLIElement> & {
|
|
517
565
|
value: string;
|
|
518
566
|
disabled?: boolean;
|
|
519
|
-
} &
|
|
567
|
+
} & react__default.RefAttributes<HTMLLIElement>>;
|
|
520
568
|
type ListBoxOrientation = 'vertical' | 'horizontal';
|
|
521
569
|
type ListBoxPrimitiveProps = HTMLAttributes<HTMLUListElement> & {
|
|
522
570
|
value?: string[];
|
|
@@ -526,14 +574,14 @@ type ListBoxPrimitiveProps = HTMLAttributes<HTMLUListElement> & {
|
|
|
526
574
|
isMultiple?: boolean;
|
|
527
575
|
orientation?: ListBoxOrientation;
|
|
528
576
|
};
|
|
529
|
-
declare const ListBoxPrimitive:
|
|
577
|
+
declare const ListBoxPrimitive: react__default.ForwardRefExoticComponent<HTMLAttributes<HTMLUListElement> & {
|
|
530
578
|
value?: string[];
|
|
531
579
|
onItemClicked?: (value: string) => void;
|
|
532
580
|
onSelectionChanged?: (value: string[]) => void;
|
|
533
581
|
isSelection?: boolean;
|
|
534
582
|
isMultiple?: boolean;
|
|
535
583
|
orientation?: ListBoxOrientation;
|
|
536
|
-
} &
|
|
584
|
+
} & react__default.RefAttributes<HTMLUListElement>>;
|
|
537
585
|
type ListBoxMultipleProps = Omit<ListBoxPrimitiveProps, 'isMultiple'>;
|
|
538
586
|
declare const ListBoxMultiple: ({ ...props }: ListBoxMultipleProps) => react_jsx_runtime.JSX.Element;
|
|
539
587
|
type ListBoxMultipleUncontrolledProps = ListBoxMultipleProps;
|
|
@@ -542,10 +590,10 @@ type ListBoxProps = Omit<ListBoxPrimitiveProps, 'isMultiple' | 'value' | 'onSele
|
|
|
542
590
|
value?: string;
|
|
543
591
|
onSelectionChanged?: (value: string) => void;
|
|
544
592
|
};
|
|
545
|
-
declare const ListBox:
|
|
593
|
+
declare const ListBox: react__default.ForwardRefExoticComponent<Omit<ListBoxPrimitiveProps, "value" | "onSelectionChanged" | "isMultiple"> & {
|
|
546
594
|
value?: string;
|
|
547
595
|
onSelectionChanged?: (value: string) => void;
|
|
548
|
-
} &
|
|
596
|
+
} & react__default.RefAttributes<HTMLUListElement>>;
|
|
549
597
|
type ListBoxUncontrolledProps = ListBoxProps;
|
|
550
598
|
declare const ListBoxUncontrolled: ({ value: initialValue, onSelectionChanged, ...props }: ListBoxUncontrolledProps) => react_jsx_runtime.JSX.Element;
|
|
551
599
|
|
|
@@ -675,7 +723,7 @@ type ButtonProps = ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
|
675
723
|
/**
|
|
676
724
|
* A button with a solid background and different sizes
|
|
677
725
|
*/
|
|
678
|
-
declare const Button:
|
|
726
|
+
declare const Button: react.ForwardRefExoticComponent<ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
679
727
|
/**
|
|
680
728
|
* @default 'medium'
|
|
681
729
|
*/
|
|
@@ -687,7 +735,7 @@ declare const Button: React$1.ForwardRefExoticComponent<ButtonHTMLAttributes<HTM
|
|
|
687
735
|
*/
|
|
688
736
|
coloringStyle?: ButtonColoringStyle;
|
|
689
737
|
allowClickEventPropagation?: boolean;
|
|
690
|
-
} &
|
|
738
|
+
} & react.RefAttributes<HTMLButtonElement>>;
|
|
691
739
|
|
|
692
740
|
type DialogPosition = 'top' | 'center' | 'none';
|
|
693
741
|
type DialogProps = HTMLAttributes<HTMLDivElement> & {
|
|
@@ -710,7 +758,7 @@ type DialogProps = HTMLAttributes<HTMLDivElement> & {
|
|
|
710
758
|
/**
|
|
711
759
|
* A generic dialog window which is managed by its parent
|
|
712
760
|
*/
|
|
713
|
-
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;
|
|
714
762
|
|
|
715
763
|
type ConfirmDialogType = 'positive' | 'negative' | 'neutral' | 'primary';
|
|
716
764
|
type ButtonOverwriteType = {
|
|
@@ -771,17 +819,17 @@ type InputProps = Omit<InputHTMLAttributes<HTMLInputElement>, 'value'> & Partial
|
|
|
771
819
|
*
|
|
772
820
|
* Its state is managed must be managed by the parent
|
|
773
821
|
*/
|
|
774
|
-
declare const Input:
|
|
822
|
+
declare const Input: react__default.ForwardRefExoticComponent<Omit<InputHTMLAttributes<HTMLInputElement>, "value"> & Partial<FormFieldDataHandling<string>> & Partial<FormFieldInteractionStates> & {
|
|
775
823
|
editCompleteOptions?: EditCompleteOptions;
|
|
776
|
-
} &
|
|
824
|
+
} & react__default.RefAttributes<HTMLInputElement>>;
|
|
777
825
|
/**
|
|
778
826
|
* A Component for inputting text or other information
|
|
779
827
|
*
|
|
780
828
|
* Its state is managed by the component itself
|
|
781
829
|
*/
|
|
782
|
-
declare const InputUncontrolled:
|
|
830
|
+
declare const InputUncontrolled: react__default.ForwardRefExoticComponent<Omit<InputHTMLAttributes<HTMLInputElement>, "value"> & Partial<FormFieldDataHandling<string>> & Partial<FormFieldInteractionStates> & {
|
|
783
831
|
editCompleteOptions?: EditCompleteOptions;
|
|
784
|
-
} &
|
|
832
|
+
} & react__default.RefAttributes<HTMLInputElement>>;
|
|
785
833
|
|
|
786
834
|
type InputModalProps = ConfirmDialogProps & {
|
|
787
835
|
inputs: InputProps[];
|
|
@@ -1104,116 +1152,6 @@ type ScrollPickerProps<T> = {
|
|
|
1104
1152
|
*/
|
|
1105
1153
|
declare const ScrollPicker: <T>({ options, mapping, selected, onChange, disabled, }: ScrollPickerProps<T>) => react_jsx_runtime.JSX.Element;
|
|
1106
1154
|
|
|
1107
|
-
type SelectIconAppearance = 'left' | 'right' | 'none';
|
|
1108
|
-
type SelectRootProps = PropsWithChildren & {
|
|
1109
|
-
id?: string;
|
|
1110
|
-
value?: string;
|
|
1111
|
-
onValueChange?: (value: string) => void;
|
|
1112
|
-
values?: string[];
|
|
1113
|
-
onValuesChange?: (value: string[]) => void;
|
|
1114
|
-
isOpen?: boolean;
|
|
1115
|
-
disabled?: boolean;
|
|
1116
|
-
invalid?: boolean;
|
|
1117
|
-
isMultiSelect?: boolean;
|
|
1118
|
-
iconAppearance?: SelectIconAppearance;
|
|
1119
|
-
};
|
|
1120
|
-
declare const SelectRoot: ({ children, id, value, onValueChange, values, onValuesChange, isOpen, disabled, invalid, isMultiSelect, iconAppearance, }: SelectRootProps) => react_jsx_runtime.JSX.Element;
|
|
1121
|
-
type SelectOptionProps = Omit<HTMLAttributes<HTMLLIElement>, 'children'> & {
|
|
1122
|
-
value: string;
|
|
1123
|
-
disabled?: boolean;
|
|
1124
|
-
iconAppearance?: SelectIconAppearance;
|
|
1125
|
-
children?: ReactNode;
|
|
1126
|
-
};
|
|
1127
|
-
declare const SelectOption: React__default.ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLLIElement>, "children"> & {
|
|
1128
|
-
value: string;
|
|
1129
|
-
disabled?: boolean;
|
|
1130
|
-
iconAppearance?: SelectIconAppearance;
|
|
1131
|
-
children?: ReactNode;
|
|
1132
|
-
} & React__default.RefAttributes<HTMLLIElement>>;
|
|
1133
|
-
type SelectButtonProps = ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
1134
|
-
placeholder?: ReactNode;
|
|
1135
|
-
selectedDisplay?: (value: string[]) => ReactNode;
|
|
1136
|
-
};
|
|
1137
|
-
declare const SelectButton: React__default.ForwardRefExoticComponent<ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
1138
|
-
placeholder?: ReactNode;
|
|
1139
|
-
selectedDisplay?: (value: string[]) => ReactNode;
|
|
1140
|
-
} & React__default.RefAttributes<HTMLButtonElement>>;
|
|
1141
|
-
type SelectChipDisplayProps = HTMLAttributes<HTMLDivElement> & {
|
|
1142
|
-
disabled?: boolean;
|
|
1143
|
-
placeholder?: ReactNode;
|
|
1144
|
-
};
|
|
1145
|
-
declare const SelectChipDisplay: React__default.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
|
|
1146
|
-
disabled?: boolean;
|
|
1147
|
-
placeholder?: ReactNode;
|
|
1148
|
-
} & React__default.RefAttributes<HTMLDivElement>>;
|
|
1149
|
-
type Orientation = 'vertical' | 'horizontal';
|
|
1150
|
-
type SelectContentProps = HTMLAttributes<HTMLUListElement> & {
|
|
1151
|
-
alignment?: Pick<UseFloatingElementOptions, 'gap' | 'horizontalAlignment' | 'verticalAlignment'>;
|
|
1152
|
-
orientation?: Orientation;
|
|
1153
|
-
containerClassName?: string;
|
|
1154
|
-
};
|
|
1155
|
-
declare const SelectContent: React__default.ForwardRefExoticComponent<HTMLAttributes<HTMLUListElement> & {
|
|
1156
|
-
alignment?: Pick<UseFloatingElementOptions, "gap" | "horizontalAlignment" | "verticalAlignment">;
|
|
1157
|
-
orientation?: Orientation;
|
|
1158
|
-
containerClassName?: string;
|
|
1159
|
-
} & React__default.RefAttributes<HTMLUListElement>>;
|
|
1160
|
-
type SelectProps = Omit<SelectRootProps, 'isMultiSelect' | 'values' | 'onValuesChange'> & {
|
|
1161
|
-
contentPanelProps?: SelectContentProps;
|
|
1162
|
-
buttonProps?: Omit<SelectButtonProps, 'selectedDisplay'> & {
|
|
1163
|
-
selectedDisplay?: (value: string) => ReactNode;
|
|
1164
|
-
};
|
|
1165
|
-
};
|
|
1166
|
-
declare const Select: React__default.ForwardRefExoticComponent<Omit<SelectRootProps, "values" | "onValuesChange" | "isMultiSelect"> & {
|
|
1167
|
-
contentPanelProps?: SelectContentProps;
|
|
1168
|
-
buttonProps?: Omit<SelectButtonProps, "selectedDisplay"> & {
|
|
1169
|
-
selectedDisplay?: (value: string) => ReactNode;
|
|
1170
|
-
};
|
|
1171
|
-
} & React__default.RefAttributes<HTMLButtonElement>>;
|
|
1172
|
-
type SelectUncontrolledProps = SelectProps;
|
|
1173
|
-
declare const SelectUncontrolled: React__default.ForwardRefExoticComponent<Omit<SelectRootProps, "values" | "onValuesChange" | "isMultiSelect"> & {
|
|
1174
|
-
contentPanelProps?: SelectContentProps;
|
|
1175
|
-
buttonProps?: Omit<SelectButtonProps, "selectedDisplay"> & {
|
|
1176
|
-
selectedDisplay?: (value: string) => ReactNode;
|
|
1177
|
-
};
|
|
1178
|
-
} & React__default.RefAttributes<HTMLButtonElement>>;
|
|
1179
|
-
type MultiSelectProps = Omit<SelectRootProps, 'isMultiSelect' | 'value' | 'values' | 'onValueChange' | 'onValuesChange'> & {
|
|
1180
|
-
value?: string[];
|
|
1181
|
-
onValueChange?: (value: string[]) => void;
|
|
1182
|
-
contentPanelProps?: SelectContentProps;
|
|
1183
|
-
buttonProps?: SelectButtonProps;
|
|
1184
|
-
};
|
|
1185
|
-
declare const MultiSelect: React__default.ForwardRefExoticComponent<Omit<SelectRootProps, "values" | "value" | "onValueChange" | "onValuesChange" | "isMultiSelect"> & {
|
|
1186
|
-
value?: string[];
|
|
1187
|
-
onValueChange?: (value: string[]) => void;
|
|
1188
|
-
contentPanelProps?: SelectContentProps;
|
|
1189
|
-
buttonProps?: SelectButtonProps;
|
|
1190
|
-
} & React__default.RefAttributes<HTMLButtonElement>>;
|
|
1191
|
-
declare const MultiSelectUncontrolled: React__default.ForwardRefExoticComponent<Omit<SelectRootProps, "values" | "value" | "onValueChange" | "onValuesChange" | "isMultiSelect"> & {
|
|
1192
|
-
value?: string[];
|
|
1193
|
-
onValueChange?: (value: string[]) => void;
|
|
1194
|
-
contentPanelProps?: SelectContentProps;
|
|
1195
|
-
buttonProps?: SelectButtonProps;
|
|
1196
|
-
} & React__default.RefAttributes<HTMLButtonElement>>;
|
|
1197
|
-
type MultiSelectChipDisplayProps = Omit<SelectRootProps, 'isMultiSelect' | 'value' | 'values' | 'onValueChange' | 'onValuesChange'> & {
|
|
1198
|
-
value?: string[];
|
|
1199
|
-
onValueChange?: (value: string[]) => void;
|
|
1200
|
-
contentPanelProps?: SelectContentProps;
|
|
1201
|
-
chipDisplayProps?: SelectChipDisplayProps;
|
|
1202
|
-
};
|
|
1203
|
-
declare const MultiSelectChipDisplay: React__default.ForwardRefExoticComponent<Omit<SelectRootProps, "values" | "value" | "onValueChange" | "onValuesChange" | "isMultiSelect"> & {
|
|
1204
|
-
value?: string[];
|
|
1205
|
-
onValueChange?: (value: string[]) => void;
|
|
1206
|
-
contentPanelProps?: SelectContentProps;
|
|
1207
|
-
chipDisplayProps?: SelectChipDisplayProps;
|
|
1208
|
-
} & React__default.RefAttributes<HTMLDivElement>>;
|
|
1209
|
-
type MultiSelectChipDisplayUncontrolledProps = MultiSelectChipDisplayProps;
|
|
1210
|
-
declare const MultiSelectChipDisplayUncontrolled: React__default.ForwardRefExoticComponent<Omit<SelectRootProps, "values" | "value" | "onValueChange" | "onValuesChange" | "isMultiSelect"> & {
|
|
1211
|
-
value?: string[];
|
|
1212
|
-
onValueChange?: (value: string[]) => void;
|
|
1213
|
-
contentPanelProps?: SelectContentProps;
|
|
1214
|
-
chipDisplayProps?: SelectChipDisplayProps;
|
|
1215
|
-
} & React__default.RefAttributes<HTMLDivElement>>;
|
|
1216
|
-
|
|
1217
1155
|
type TextareaProps = Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, 'value'> & Partial<FormFieldDataHandling<string>> & Partial<FormFieldInteractionStates> & {
|
|
1218
1156
|
saveDelayOptions?: UseDelayOptions;
|
|
1219
1157
|
};
|
|
@@ -1222,9 +1160,9 @@ type TextareaProps = Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, 'value'>
|
|
|
1222
1160
|
*
|
|
1223
1161
|
* The State is managed by the parent
|
|
1224
1162
|
*/
|
|
1225
|
-
declare const Textarea:
|
|
1163
|
+
declare const Textarea: react.ForwardRefExoticComponent<Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, "value"> & Partial<FormFieldDataHandling<string>> & Partial<FormFieldInteractionStates> & {
|
|
1226
1164
|
saveDelayOptions?: UseDelayOptions;
|
|
1227
|
-
} &
|
|
1165
|
+
} & react.RefAttributes<HTMLTextAreaElement>>;
|
|
1228
1166
|
/**
|
|
1229
1167
|
* A Textarea component that is not controlled by its parent
|
|
1230
1168
|
*/
|
|
@@ -1247,7 +1185,7 @@ type ThemeContextType = {
|
|
|
1247
1185
|
resolvedTheme: ResolvedTheme;
|
|
1248
1186
|
setTheme: Dispatch<SetStateAction<ThemeType>>;
|
|
1249
1187
|
};
|
|
1250
|
-
declare const ThemeContext:
|
|
1188
|
+
declare const ThemeContext: react.Context<ThemeContextType>;
|
|
1251
1189
|
type ThemeProviderProps = PropsWithChildren & Partial<ThemeConfig> & {
|
|
1252
1190
|
/**
|
|
1253
1191
|
* Only set this if you want to control the theme yourself
|
|
@@ -1490,7 +1428,7 @@ type ConfigType = {
|
|
|
1490
1428
|
config: HightideConfig;
|
|
1491
1429
|
setConfig: (configOverwrite: DeepPartial<HightideConfig>) => void;
|
|
1492
1430
|
};
|
|
1493
|
-
declare const HightideConfigContext:
|
|
1431
|
+
declare const HightideConfigContext: react.Context<ConfigType>;
|
|
1494
1432
|
type HightideConfigProviderProps = PropsWithChildren & DeepPartial<HightideConfig>;
|
|
1495
1433
|
declare const HightideConfigProvider: ({ children, ...initialOverwrite }: HightideConfigProviderProps) => react_jsx_runtime.JSX.Element;
|
|
1496
1434
|
declare const useHightideConfig: () => ConfigType;
|
|
@@ -1672,9 +1610,9 @@ type InsideLabelInputProps = Omit<InputProps, 'aria-label' | 'aria-labelledby' |
|
|
|
1672
1610
|
*
|
|
1673
1611
|
* The State is managed by the parent
|
|
1674
1612
|
*/
|
|
1675
|
-
declare const InsideLabelInput:
|
|
1613
|
+
declare const InsideLabelInput: react.ForwardRefExoticComponent<Omit<InputProps, "aria-label" | "aria-labelledby" | "placeholder"> & {
|
|
1676
1614
|
label: ReactNode;
|
|
1677
|
-
} &
|
|
1615
|
+
} & react.RefAttributes<HTMLInputElement>>;
|
|
1678
1616
|
declare const InsideLabelInputUncontrolled: ({ value: initialValue, ...props }: InsideLabelInputProps) => react_jsx_runtime.JSX.Element;
|
|
1679
1617
|
|
|
1680
1618
|
type SearchBarProps = Omit<InputProps, 'onValueChange' | 'onEditComplete'> & {
|
|
@@ -1695,12 +1633,12 @@ type ToggleableInputProps = InputProps & {
|
|
|
1695
1633
|
*
|
|
1696
1634
|
* The State is managed by the parent
|
|
1697
1635
|
*/
|
|
1698
|
-
declare const ToggleableInput:
|
|
1636
|
+
declare const ToggleableInput: react.ForwardRefExoticComponent<Omit<react.InputHTMLAttributes<HTMLInputElement>, "value"> & Partial<FormFieldDataHandling<string>> & Partial<FormFieldInteractionStates> & {
|
|
1699
1637
|
editCompleteOptions?: EditCompleteOptions;
|
|
1700
1638
|
} & {
|
|
1701
1639
|
initialState?: "editing" | "display";
|
|
1702
1640
|
editCompleteOptions?: Omit<EditCompleteOptions, "allowEnterComplete">;
|
|
1703
|
-
} &
|
|
1641
|
+
} & react.RefAttributes<HTMLInputElement>>;
|
|
1704
1642
|
declare const ToggleableInputUncontrolled: ({ value: initialValue, onValueChange, ...restProps }: ToggleableInputProps) => react_jsx_runtime.JSX.Element;
|
|
1705
1643
|
|
|
1706
1644
|
type PropertyField<T> = {
|
|
@@ -1776,6 +1714,213 @@ type TextPropertyProps = PropertyField<string>;
|
|
|
1776
1714
|
*/
|
|
1777
1715
|
declare const TextProperty: ({ value, readOnly, onRemove, onValueChange, onEditComplete, ...baseProps }: TextPropertyProps) => react_jsx_runtime.JSX.Element;
|
|
1778
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
|
+
|
|
1779
1924
|
type FocusTrapProps = HTMLAttributes<HTMLDivElement> & {
|
|
1780
1925
|
active?: boolean;
|
|
1781
1926
|
initialFocus?: RefObject<HTMLElement | null>;
|
|
@@ -1789,7 +1934,7 @@ type FocusTrapProps = HTMLAttributes<HTMLDivElement> & {
|
|
|
1789
1934
|
/**
|
|
1790
1935
|
* A wrapper for the useFocusTrap hook that directly renders it to a div
|
|
1791
1936
|
*/
|
|
1792
|
-
declare const FocusTrap:
|
|
1937
|
+
declare const FocusTrap: react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
|
|
1793
1938
|
active?: boolean;
|
|
1794
1939
|
initialFocus?: RefObject<HTMLElement | null>;
|
|
1795
1940
|
/**
|
|
@@ -1798,7 +1943,7 @@ declare const FocusTrap: React$1.ForwardRefExoticComponent<HTMLAttributes<HTMLDi
|
|
|
1798
1943
|
* Focuses the container instead
|
|
1799
1944
|
*/
|
|
1800
1945
|
focusFirst?: boolean;
|
|
1801
|
-
} &
|
|
1946
|
+
} & react.RefAttributes<HTMLDivElement>>;
|
|
1802
1947
|
|
|
1803
1948
|
type TransitionBag = {
|
|
1804
1949
|
isOpen: boolean;
|
|
@@ -1820,13 +1965,13 @@ type TransitionWrapperProps = PropsWithBagFunctionOrChildren<TransitionBag> & {
|
|
|
1820
1965
|
/**
|
|
1821
1966
|
* Only use when you have a transition happening
|
|
1822
1967
|
*/
|
|
1823
|
-
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>>;
|
|
1824
1969
|
|
|
1825
1970
|
type LocaleContextValue = {
|
|
1826
1971
|
locale: HightideTranslationLocales;
|
|
1827
1972
|
setLocale: Dispatch<SetStateAction<HightideTranslationLocales>>;
|
|
1828
1973
|
};
|
|
1829
|
-
declare const LocaleContext:
|
|
1974
|
+
declare const LocaleContext: react.Context<LocaleContextValue>;
|
|
1830
1975
|
type LocaleWithSystem = HightideTranslationLocales | 'system';
|
|
1831
1976
|
type LocaleProviderProps = PropsWithChildren & Partial<LocalizationConfig> & {
|
|
1832
1977
|
locale?: LocaleWithSystem;
|
|
@@ -1952,9 +2097,9 @@ type UseOverlayRegistryResult = {
|
|
|
1952
2097
|
};
|
|
1953
2098
|
declare const useOverlayRegistry: (props?: UseOverlayRegistryProps) => UseOverlayRegistryResult;
|
|
1954
2099
|
|
|
1955
|
-
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>>];
|
|
1956
2101
|
|
|
1957
|
-
declare const useRerender: () =>
|
|
2102
|
+
declare const useRerender: () => react.ActionDispatch<[]>;
|
|
1958
2103
|
|
|
1959
2104
|
/**
|
|
1960
2105
|
* A hook that wraps the event listener attachment
|
|
@@ -1982,7 +2127,7 @@ declare const useSearch: <T>({ list, initialSearch, searchMapping, additionalSea
|
|
|
1982
2127
|
allItems: T[];
|
|
1983
2128
|
updateSearch: (newSearch?: string) => void;
|
|
1984
2129
|
search: string;
|
|
1985
|
-
setSearch:
|
|
2130
|
+
setSearch: react.Dispatch<react.SetStateAction<string>>;
|
|
1986
2131
|
};
|
|
1987
2132
|
|
|
1988
2133
|
type TransitionState = 'opened' | 'closed' | 'opening' | 'closing';
|
|
@@ -2142,27 +2287,27 @@ type InteractionStateDataAttributes = {
|
|
|
2142
2287
|
};
|
|
2143
2288
|
declare function interactionStatesData(interactionStates: Partial<FormFieldInteractionStates>): Partial<InteractionStateDataAttributes>;
|
|
2144
2289
|
type MouseEventExtenderProps<T> = {
|
|
2145
|
-
fromProps?:
|
|
2146
|
-
extensions: SingleOrArray<
|
|
2290
|
+
fromProps?: react__default.MouseEventHandler<T>;
|
|
2291
|
+
extensions: SingleOrArray<react__default.MouseEventHandler<T>>;
|
|
2147
2292
|
};
|
|
2148
|
-
declare function mouseEventExtender<T>({ fromProps, extensions }: MouseEventExtenderProps<T>):
|
|
2293
|
+
declare function mouseEventExtender<T>({ fromProps, extensions }: MouseEventExtenderProps<T>): react__default.MouseEventHandler<T>;
|
|
2149
2294
|
type KeyoardEventExtenderProps<T> = {
|
|
2150
|
-
fromProps:
|
|
2151
|
-
extensions: SingleOrArray<
|
|
2295
|
+
fromProps: react__default.KeyboardEventHandler<T>;
|
|
2296
|
+
extensions: SingleOrArray<react__default.KeyboardEventHandler<T>>;
|
|
2152
2297
|
};
|
|
2153
|
-
declare function keyboardEventExtender<T>({ fromProps, extensions, }: KeyoardEventExtenderProps<T>):
|
|
2298
|
+
declare function keyboardEventExtender<T>({ fromProps, extensions, }: KeyoardEventExtenderProps<T>): react__default.KeyboardEventHandler<T>;
|
|
2154
2299
|
declare function click<T>(onClick: () => void): {
|
|
2155
2300
|
onClick: () => void;
|
|
2156
|
-
onKeyDown:
|
|
2301
|
+
onKeyDown: react__default.KeyboardEventHandler<T>;
|
|
2157
2302
|
};
|
|
2158
|
-
declare function close<T>(onClose: () => void):
|
|
2303
|
+
declare function close<T>(onClose: () => void): react__default.KeyboardEventHandler<T>;
|
|
2159
2304
|
type NavigateType<T> = {
|
|
2160
|
-
left?: (event:
|
|
2161
|
-
right?: (event:
|
|
2162
|
-
up?: (event:
|
|
2163
|
-
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;
|
|
2164
2309
|
};
|
|
2165
|
-
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>;
|
|
2166
2311
|
type InteractionStateARIAAttributes = Pick<HTMLAttributes<HTMLDivElement>, 'aria-disabled' | 'aria-invalid' | 'aria-readonly' | 'aria-required'>;
|
|
2167
2312
|
declare function interactionStatesAria(interactionStates: Partial<FormFieldInteractionStates>, props?: Partial<InteractionStateARIAAttributes>): Partial<InteractionStateARIAAttributes>;
|
|
2168
2313
|
declare const PropsUtil: {
|
|
@@ -2251,4 +2396,4 @@ declare class SessionStorageService extends StorageService {
|
|
|
2251
2396
|
|
|
2252
2397
|
declare const writeToClipboard: (text: string) => Promise<void>;
|
|
2253
2398
|
|
|
2254
|
-
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 };
|