@helpwave/hightide 0.6.7 → 0.6.9
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 +68 -26
- package/dist/index.d.ts +68 -26
- package/dist/index.js +562 -478
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +558 -478
- package/dist/index.mjs.map +1 -1
- package/dist/style/globals.css +60 -31
- package/dist/style/uncompiled/theme/components/checkbox.css +6 -5
- package/dist/style/uncompiled/theme/components/expandable.css +3 -3
- package/dist/style/uncompiled/theme/components/expansion-icon.css +1 -1
- package/dist/style/uncompiled/theme/components/form-field.css +4 -4
- package/dist/style/uncompiled/theme/components/input-elements.css +3 -3
- package/dist/style/uncompiled/theme/components/property.css +10 -10
- package/dist/style/uncompiled/theme/components/table.css +8 -1
- package/dist/style/uncompiled/theme/components/textarea.css +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -176,6 +176,7 @@ type FormFieldLayoutProps = Omit<HTMLAttributes<HTMLDivElement>, 'children'> & O
|
|
|
176
176
|
invalidDescriptionProps?: Omit<HTMLAttributes<HTMLDivElement>, 'children' | 'id'>;
|
|
177
177
|
description?: ReactNode;
|
|
178
178
|
descriptionProps?: Omit<HTMLAttributes<HTMLParagraphElement>, 'children' | 'id'>;
|
|
179
|
+
showRequiredIndicator?: boolean;
|
|
179
180
|
};
|
|
180
181
|
declare const FormFieldLayout: react.ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLDivElement>, "children"> & Omit<Partial<FormFieldInteractionStates>, "invalid"> & {
|
|
181
182
|
children: (bag: FormFieldLayoutBag) => ReactNode;
|
|
@@ -186,6 +187,7 @@ declare const FormFieldLayout: react.ForwardRefExoticComponent<Omit<HTMLAttribut
|
|
|
186
187
|
invalidDescriptionProps?: Omit<HTMLAttributes<HTMLDivElement>, "children" | "id">;
|
|
187
188
|
description?: ReactNode;
|
|
188
189
|
descriptionProps?: Omit<HTMLAttributes<HTMLParagraphElement>, "children" | "id">;
|
|
190
|
+
showRequiredIndicator?: boolean;
|
|
189
191
|
} & react.RefAttributes<HTMLDivElement>>;
|
|
190
192
|
|
|
191
193
|
type FormValidationBehaviour = 'always' | 'touched' | 'submit';
|
|
@@ -235,30 +237,29 @@ type FormStoreProps<T extends FormValue> = {
|
|
|
235
237
|
validators?: Partial<{
|
|
236
238
|
[K in keyof T]: (v: T[K]) => ReactNode;
|
|
237
239
|
}>;
|
|
238
|
-
validationBehaviour?: FormValidationBehaviour;
|
|
239
240
|
};
|
|
240
241
|
declare class FormStore<T extends FormValue> {
|
|
241
242
|
private values;
|
|
242
243
|
private initialValues;
|
|
243
244
|
private validators;
|
|
244
|
-
private validationBehaviour;
|
|
245
245
|
private hasTriedSubmitting;
|
|
246
246
|
private errors;
|
|
247
247
|
private touched;
|
|
248
248
|
private listeners;
|
|
249
249
|
private submittingTouchesAll;
|
|
250
|
-
constructor({ initialValues, hasTriedSubmitting, submittingTouchesAll, validators,
|
|
250
|
+
constructor({ initialValues, hasTriedSubmitting, submittingTouchesAll, validators, }: FormStoreProps<T>);
|
|
251
251
|
getValue<K extends keyof T>(key: K): T[K];
|
|
252
252
|
getAllValues(): T;
|
|
253
253
|
setValue<K extends keyof T>(key: K, value: T[K], triggerUpdate?: boolean): void;
|
|
254
254
|
setValues(values: Partial<T>, triggerUpdate?: boolean): void;
|
|
255
255
|
getTouched(key: keyof T): boolean;
|
|
256
|
+
getAllTouched(): Partial<Record<keyof T, boolean>>;
|
|
256
257
|
setTouched(key: keyof T, isTouched?: boolean): void;
|
|
257
258
|
getHasError(): boolean;
|
|
258
259
|
getErrors(): Partial<Record<keyof T, ReactNode>>;
|
|
259
260
|
getError(key: keyof T): ReactNode;
|
|
260
261
|
private setError;
|
|
261
|
-
|
|
262
|
+
getHasTriedSubmitting(): boolean;
|
|
262
263
|
changeValidators(validators: Partial<Record<keyof T, FormValidator<T>>>): void;
|
|
263
264
|
validate(key: keyof T): void;
|
|
264
265
|
validateAll(): void;
|
|
@@ -268,7 +269,7 @@ declare class FormStore<T extends FormValue> {
|
|
|
268
269
|
reset(): void;
|
|
269
270
|
}
|
|
270
271
|
|
|
271
|
-
type UseCreateFormProps<T extends FormValue> = FormStoreProps<T> & {
|
|
272
|
+
type UseCreateFormProps<T extends FormValue> = Omit<FormStoreProps<T>, 'validationBehaviour'> & {
|
|
272
273
|
onFormSubmit: (values: T) => void;
|
|
273
274
|
onFormError?: (values: T, errors: Partial<Record<keyof T, ReactNode>>) => void;
|
|
274
275
|
/**
|
|
@@ -304,19 +305,19 @@ type UseCreateFormProps<T extends FormValue> = FormStoreProps<T> & {
|
|
|
304
305
|
scrollOptions?: ScrollIntoViewOptions;
|
|
305
306
|
};
|
|
306
307
|
type UseCreateFormResult<T extends FormValue> = {
|
|
308
|
+
/**
|
|
309
|
+
* The form store.
|
|
310
|
+
* Do not attempt to read the store directly, use useFormObserver or useFormField instead.
|
|
311
|
+
* Otherwise you will not get the latest values and errors.
|
|
312
|
+
*/
|
|
307
313
|
store: FormStore<T>;
|
|
308
314
|
reset: () => void;
|
|
309
315
|
submit: () => void;
|
|
310
316
|
update: (updater: Partial<T> | ((current: T) => Partial<T>)) => void;
|
|
311
317
|
validateAll: () => void;
|
|
312
|
-
getError: (key: keyof T) => ReactNode;
|
|
313
|
-
getErrors: () => Partial<Record<keyof T, ReactNode>>;
|
|
314
|
-
getIsValid: () => boolean;
|
|
315
|
-
getValues: () => T;
|
|
316
|
-
getValue: <K extends keyof T>(key: K) => T[K];
|
|
317
318
|
registerRef: (key: keyof T) => (el: HTMLElement | null) => void;
|
|
318
319
|
};
|
|
319
|
-
declare function useCreateForm<T extends FormValue>({ onFormSubmit, onFormError, onValueChange, onUpdate, onValidUpdate, initialValues, hasTriedSubmitting, validators,
|
|
320
|
+
declare function useCreateForm<T extends FormValue>({ onFormSubmit, onFormError, onValueChange, onUpdate, onValidUpdate, initialValues, hasTriedSubmitting, validators, scrollToElements, scrollOptions, }: UseCreateFormProps<T>): UseCreateFormResult<T>;
|
|
320
321
|
|
|
321
322
|
type FormFieldFocusableElementProps = FormFieldAriaAttributes & {
|
|
322
323
|
id: string;
|
|
@@ -326,6 +327,7 @@ type FormFieldBag<T extends FormValue, K extends keyof T> = {
|
|
|
326
327
|
dataProps: FormFieldDataHandling<T[K]>;
|
|
327
328
|
focusableElementProps: FormFieldFocusableElementProps;
|
|
328
329
|
interactionStates: FormFieldInteractionStates;
|
|
330
|
+
touched: boolean;
|
|
329
331
|
other: {
|
|
330
332
|
updateValue: (value: T[K]) => void;
|
|
331
333
|
};
|
|
@@ -334,13 +336,14 @@ interface FormFieldProps<T extends FormValue, K extends keyof T> extends Omit<Fo
|
|
|
334
336
|
children: (bag: FormFieldBag<T, K>) => ReactNode;
|
|
335
337
|
name: K;
|
|
336
338
|
triggerUpdateOnEditComplete?: boolean;
|
|
339
|
+
validationBehaviour?: FormValidationBehaviour;
|
|
337
340
|
}
|
|
338
341
|
type FormFieldDataHandling<T> = {
|
|
339
342
|
value: T;
|
|
340
343
|
onValueChange: (value: T) => void;
|
|
341
344
|
onEditComplete: (value: T) => void;
|
|
342
345
|
};
|
|
343
|
-
declare const FormField: <T extends FormValue, K extends keyof T>({ children, name, triggerUpdateOnEditComplete, ...props }: FormFieldProps<T, K>) => react_jsx_runtime.JSX.Element;
|
|
346
|
+
declare const FormField: <T extends FormValue, K extends keyof T>({ children, name, triggerUpdateOnEditComplete, validationBehaviour, ...props }: FormFieldProps<T, K>) => react_jsx_runtime.JSX.Element;
|
|
344
347
|
|
|
345
348
|
type FormContextType<T extends FormValue> = UseCreateFormResult<T>;
|
|
346
349
|
declare const FormContext: react.Context<FormContextType<any>>;
|
|
@@ -349,17 +352,58 @@ type FormProviderProps<T extends FormValue> = PropsWithChildren & {
|
|
|
349
352
|
};
|
|
350
353
|
declare const FormProvider: <T extends FormValue>({ children, state }: FormProviderProps<T>) => react_jsx_runtime.JSX.Element;
|
|
351
354
|
declare function useForm<T extends FormValue>(): FormContextType<T>;
|
|
352
|
-
|
|
355
|
+
interface UseFormFieldParameter<T extends FormValue> {
|
|
356
|
+
key: keyof T;
|
|
357
|
+
}
|
|
358
|
+
interface UseFormFieldOptions {
|
|
353
359
|
triggerUpdate?: boolean;
|
|
354
|
-
|
|
360
|
+
validationBehaviour?: FormValidationBehaviour;
|
|
361
|
+
}
|
|
362
|
+
interface UserFormFieldProps<T extends FormValue> extends UseFormFieldParameter<T>, UseFormFieldOptions {
|
|
363
|
+
}
|
|
355
364
|
type FormFieldResult<T> = {
|
|
356
365
|
store: FormStore<T>;
|
|
357
366
|
value: T;
|
|
358
367
|
error: ReactNode;
|
|
368
|
+
touched: boolean;
|
|
369
|
+
hasTriedSubmitting: boolean;
|
|
359
370
|
dataProps: FormFieldDataHandling<T>;
|
|
360
371
|
registerRef: (el: HTMLElement | null) => void;
|
|
361
372
|
};
|
|
362
|
-
declare function useFormField<T extends FormValue, K extends keyof T>(key: K, { triggerUpdate }: UseFormFieldOptions): FormFieldResult<T[K]> | null;
|
|
373
|
+
declare function useFormField<T extends FormValue, K extends keyof T>(key: K, { triggerUpdate, validationBehaviour }: UseFormFieldOptions): FormFieldResult<T[K]> | null;
|
|
374
|
+
type UseFormObserverProps<T extends FormValue> = {
|
|
375
|
+
formStore?: FormStore<T>;
|
|
376
|
+
};
|
|
377
|
+
interface FormObserverResult<T extends FormValue> {
|
|
378
|
+
store: FormStore<T>;
|
|
379
|
+
values: T;
|
|
380
|
+
touched: Partial<Record<keyof T, boolean>>;
|
|
381
|
+
errors: Partial<Record<keyof T, ReactNode>>;
|
|
382
|
+
hasErrors: boolean;
|
|
383
|
+
hasTriedSubmitting: boolean;
|
|
384
|
+
}
|
|
385
|
+
declare function useFormObserver<T extends FormValue>({ formStore }?: UseFormObserverProps<T>): FormObserverResult<T> | null;
|
|
386
|
+
interface UseFormObserverKeyProps<T extends FormValue, K extends keyof T> {
|
|
387
|
+
formStore?: FormStore<T>;
|
|
388
|
+
key: K;
|
|
389
|
+
}
|
|
390
|
+
interface FormObserverKeyResult<T extends FormValue, K extends keyof T> {
|
|
391
|
+
store: FormStore<T>;
|
|
392
|
+
value: T[K];
|
|
393
|
+
error: ReactNode;
|
|
394
|
+
hasError: boolean;
|
|
395
|
+
touched: boolean;
|
|
396
|
+
}
|
|
397
|
+
declare function useFormObserverKey<T extends FormValue, K extends keyof T>({ formStore, key }: UseFormObserverKeyProps<T, K>): FormObserverKeyResult<T, K> | null;
|
|
398
|
+
|
|
399
|
+
interface FormObserverProps<T extends FormValue> extends UseFormObserverProps<T> {
|
|
400
|
+
children: (bag: FormObserverResult<T>) => ReactNode;
|
|
401
|
+
}
|
|
402
|
+
declare const FormObserver: <T extends FormValue>({ children, formStore }: FormObserverProps<T>) => ReactNode;
|
|
403
|
+
interface FormObserverKeyProps<T extends FormValue, K extends keyof T> extends UseFormObserverKeyProps<T, K> {
|
|
404
|
+
children: (bag: FormObserverKeyResult<T, K>) => ReactNode;
|
|
405
|
+
}
|
|
406
|
+
declare const FormObserverKey: <T extends FormValue, K extends keyof T>({ children, formStore, key }: FormObserverKeyProps<T, K>) => ReactNode;
|
|
363
407
|
|
|
364
408
|
type FloatingElementAlignment = 'beforeStart' | 'afterStart' | 'center' | 'beforeEnd' | 'afterEnd';
|
|
365
409
|
type CalculatePositionOptions = {
|
|
@@ -1086,12 +1130,13 @@ type TableProviderProps<T> = {
|
|
|
1086
1130
|
columns?: ColumnDef<T>[];
|
|
1087
1131
|
children?: ReactNode;
|
|
1088
1132
|
isUsingFillerRows?: boolean;
|
|
1089
|
-
|
|
1133
|
+
fillerRowCell?: (columnId: string, table: Table$1<T>) => ReactNode;
|
|
1090
1134
|
initialState?: Omit<InitialTableState, 'columnSizing'>;
|
|
1091
1135
|
onRowClick?: (row: Row<T>, table: Table$1<T>) => void;
|
|
1136
|
+
onFillerRowClick?: (index: number, table: Table$1<T>) => void;
|
|
1092
1137
|
state?: Omit<TableState, 'columnSizing'>;
|
|
1093
1138
|
} & Partial<TableOptions<T>>;
|
|
1094
|
-
declare const TableProvider: <T>({ data, isUsingFillerRows,
|
|
1139
|
+
declare const TableProvider: <T>({ data, isUsingFillerRows, fillerRowCell, initialState, onRowClick, onFillerRowClick, defaultColumn: defaultColumnOverwrite, state, columns: columnsProp, children, ...tableOptions }: TableProviderProps<T>) => react_jsx_runtime.JSX.Element;
|
|
1095
1140
|
|
|
1096
1141
|
declare module '@tanstack/react-table' {
|
|
1097
1142
|
interface ColumnMeta<TData extends RowData, TValue> {
|
|
@@ -1279,7 +1324,7 @@ interface TableWithSelectionProviderProps<T> extends TableProviderProps<T> {
|
|
|
1279
1324
|
disableClickRowClickSelection?: boolean;
|
|
1280
1325
|
selectionRowId?: string;
|
|
1281
1326
|
}
|
|
1282
|
-
declare const TableWithSelectionProvider: <T>({ children, state,
|
|
1327
|
+
declare const TableWithSelectionProvider: <T>({ children, state, fillerRowCell, rowSelection, disableClickRowClickSelection, selectionRowId, onRowClick, ...props }: TableWithSelectionProviderProps<T>) => react_jsx_runtime.JSX.Element;
|
|
1283
1328
|
|
|
1284
1329
|
interface TableProps<T> extends HTMLAttributes<HTMLDivElement> {
|
|
1285
1330
|
table: TableProviderProps<T>;
|
|
@@ -1398,8 +1443,9 @@ type TableDataContextType<T> = {
|
|
|
1398
1443
|
data: T[];
|
|
1399
1444
|
pagination: PaginationState;
|
|
1400
1445
|
isUsingFillerRows: boolean;
|
|
1401
|
-
|
|
1402
|
-
onRowClick
|
|
1446
|
+
fillerRowCell: (columnId: string, table: Table$1<T>) => ReactNode;
|
|
1447
|
+
onRowClick?: (row: Row<T>, table: Table$1<T>) => void;
|
|
1448
|
+
onFillerRowClick?: (index: number, table: Table$1<T>) => void;
|
|
1403
1449
|
};
|
|
1404
1450
|
declare const TableDataContext: react.Context<TableDataContextType<any>>;
|
|
1405
1451
|
declare const useTableDataContext: <T>() => TableDataContextType<T>;
|
|
@@ -2072,10 +2118,6 @@ type TimeDisplayProps = {
|
|
|
2072
2118
|
*/
|
|
2073
2119
|
declare const TimeDisplay: ({ date, mode }: TimeDisplayProps) => react_jsx_runtime.JSX.Element;
|
|
2074
2120
|
|
|
2075
|
-
type DateTimeInputHandle = {
|
|
2076
|
-
input: HTMLDivElement | null;
|
|
2077
|
-
popup: HTMLDivElement | null;
|
|
2078
|
-
};
|
|
2079
2121
|
interface DateTimeInputProps extends Partial<FormFieldInteractionStates>, ControlledStateProps<Date | null>, Omit<ButtonHTMLAttributes<HTMLDivElement>, 'defaultValue' | 'value'>, Partial<FormFieldDataHandling<Date | null>> {
|
|
2080
2122
|
placeholder?: ReactNode;
|
|
2081
2123
|
allowRemove?: boolean;
|
|
@@ -2085,7 +2127,7 @@ interface DateTimeInputProps extends Partial<FormFieldInteractionStates>, Contro
|
|
|
2085
2127
|
outsideClickCloses?: boolean;
|
|
2086
2128
|
onDialogOpeningChange?: (isOpen: boolean) => void;
|
|
2087
2129
|
}
|
|
2088
|
-
declare const DateTimeInput: react.ForwardRefExoticComponent<DateTimeInputProps & react.RefAttributes<
|
|
2130
|
+
declare const DateTimeInput: react.ForwardRefExoticComponent<DateTimeInputProps & react.RefAttributes<HTMLDivElement>>;
|
|
2089
2131
|
|
|
2090
2132
|
type InsideLabelInputProps = Omit<InputProps, 'aria-label' | 'aria-labelledby' | 'placeholder'> & {
|
|
2091
2133
|
label: ReactNode;
|
|
@@ -2765,4 +2807,4 @@ declare class SessionStorageService extends StorageService {
|
|
|
2765
2807
|
|
|
2766
2808
|
declare const writeToClipboard: (text: string) => Promise<void>;
|
|
2767
2809
|
|
|
2768
|
-
export { ASTNodeInterpreter, type ASTNodeInterpreterProps, AnchoredFloatingContainer, type AnchoredFloatingContainerProps, AnimatedRing, type AnimatedRingProps, ArrayUtil, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, type BackgroundOverlayProps, type BagFunction, type BagFunctionOrNode, type BagFunctionOrValue, BagFunctionUtil, BooleanFilter, type BooleanFilterParameter, type BooleanFilterProps, type BooleanFilterValue, 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, type ColumnSizeCalculatoProps, ColumnSizeUtil, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogType, type ControlledStateProps, CopyToClipboardWrapper, type CopyToClipboardWrapperProps, type Crumb, DateFilter, type DateFilterParameter, type DateFilterProps, type DateFilterValue, DatePicker, type DatePickerProps, DatePickerUncontrolled, DateProperty, type DatePropertyProps, DateTimeInput, type DateTimeInputHandle, type DateTimeInputProps, DateTimePicker, DateTimePickerDialog, type DateTimePickerDialogProps, type DateTimePickerMode, type DateTimePickerProps, DateTimePickerUncontrolled, DateUtils, DayPicker, type DayPickerProps, DayPickerUncontrolled, type DeepPartial, Dialog, DialogContext, type DialogContextType, type DialogOpenerPassingProps, DialogOpenerWrapper, type DialogOpenerWrapperBag, type DialogOpenerWrapperProps, type DialogPosition, type DialogProps, DialogRoot, type DialogRootProps, type Direction, DiscardChangesDialog, DividerInserter, type DividerInserterProps, Drawer, type DrawerAligment, type DrawerProps, Duration, type DurationJSON, type EaseFunction, EaseFunctions, type EditCompleteOptions, type EditCompleteOptionsResolved, type ElementHandle, 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, type FloatingElementAlignment, FocusTrap, type FocusTrapProps, FocusTrapWrapper, type FocusTrapWrapperProps, FormContext, type FormContextType, type FormEvent, type FormEventListener, FormField, type FormFieldAriaAttributes, type FormFieldBag, type FormFieldDataHandling, type FormFieldFocusableElementProps, type FormFieldInteractionStates, FormFieldLayout, type FormFieldLayoutBag, type FormFieldLayoutIds, type FormFieldLayoutProps, type FormFieldProps, type FormFieldResult, FormProvider, type FormProviderProps, FormStore, type FormStoreProps, type FormValidationBehaviour, type FormValidator, type FormValue, GenericFilter, type GenericFilterParameter, type GenericFilterProps, type GenericFilterValue, 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, MathUtil, 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, NumberFilter, type NumberFilterParameter, type NumberFilterProps, type NumberFilterValue, NumberProperty, type NumberPropertyProps, OperatorLabel, type OperatorLabelProps, type OverlayItem, OverlayRegistry, Pagination, type PaginationProps, PopUp, PopUpContext, type PopUpContextType, PopUpOpener, type PopUpOpenerBag, type PopUpOpenerProps, type PopUpProps, PopUpRoot, type PopUpRootProps, Portal, type PortalProps, ProgressIndicator, type ProgressIndicatorProps, PromiseUtils, PropertyBase, type PropertyBaseProps, type PropertyField, PropsUtil, type PropsWithBagFunction, type PropsWithBagFunctionOrChildren, RadialRings, type RadialRingsProps, type Range, 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, TableBody, type TableBooleanFilter, TableCell, type TableCellProps, TableColumn, TableColumnDefinitionContext, type TableColumnDefinitionContextType, type TableColumnProps, TableColumnSwitcher, TableColumnSwitcherPopUp, type TableColumnSwitcherPopUpProps, type TableColumnSwitcherProps, TableContainerContext, type TableContainerContextType, TableDataContext, type TableDataContextType, type TableDateFilter, TableDisplay, type TableDisplayProps, TableFilter, type TableFilterBaseProps, TableFilterButton, type TableFilterButtonProps, type TableFilterCategory, TableFilterContent, type TableFilterContentProps, TableFilterOperator, type TableFilterType, type TableFilterValue, type TableGenericFilter, TableHeader, TableHeaderContext, type TableHeaderContextType, type TableHeaderProps, type TableNumberFilter, TablePageSizeSelect, type TablePageSizeSelectProps, TablePagination, TablePaginationMenu, type TablePaginationProps, type TableProps, TableProvider, type TableProviderProps, TableSortButton, type TableSortButtonProps, type TableTagsFilter, type TableTextFilter, TableWithSelection, type TableWithSelectionProps, TableWithSelectionProvider, type TableWithSelectionProviderProps, TagIcon, type TagProps, TagsFilter, type TagsFilterParameter, type TagsFilterProps, type TagsFilterValue, TextFilter, type TextFilterParameter, type TextFilterProps, type TextFilterValue, 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 UnBoundedRange, type UseAnchoredPositionOptions, type UseAnchoredPostitionProps, type UseCreateFormProps, type UseCreateFormResult, type UseDelayOptions, type UseDelayOptionsResolved, type UseFocusTrapProps, type UseFormFieldOptions, type UseOutsideClickHandlers, type UseOutsideClickOptions, type UseOutsideClickProps, type UseOverlayRegistryProps, type UseOverlayRegistryResult, type UsePresenceRefProps, type UseSearchProps, UseValidators, type ValidatorError, type ValidatorResult, VerticalDivider, type VerticalDividerProps, Visibility, type VisibilityProps, type WeekDay, YearMonthPicker, type YearMonthPickerProps, YearMonthPickerUncontrolled, addDuration, builder, changeDuration, closestMatch, createLoopingList, createLoopingListWithIndex, equalSizeGroups, formatDate, formatDateTime, getBetweenDuration, getNeighbours, getWeeksForCalenderMonth, hightideTranslation, hightideTranslationLocales, isInTimeSpan, isTableFilterCategory, match, mergeProps, noop, range, resolveSetState, subtractDuration, toSizeVars, useAnchoredPosition, useControlledState, useCreateForm, useDelay, useDialogContext, useFocusGuards, useFocusManagement, useFocusOnceVisible, useFocusTrap, useForm, useFormField, useHandleRefs, useHightideConfig, useHightideTranslation, useHoverState, useICUTranslation, useIsMounted, useLanguage, useLocalStorage, useLocale, useLogOnce, useLogUnstableDependencies, useOutsideClick, useOverlayRegistry, useOverwritableState, usePopUpContext, usePresenceRef, useRerender, useResizeCallbackWrapper, useSearch, useSelectContext, useTabContext, useTableColumnDefinitionContext, useTableContainerContext, useTableDataContext, useTableHeaderContext, useTheme, useTransitionState, useTranslatedValidators, validateEmail, writeToClipboard };
|
|
2810
|
+
export { ASTNodeInterpreter, type ASTNodeInterpreterProps, AnchoredFloatingContainer, type AnchoredFloatingContainerProps, AnimatedRing, type AnimatedRingProps, ArrayUtil, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, type BackgroundOverlayProps, type BagFunction, type BagFunctionOrNode, type BagFunctionOrValue, BagFunctionUtil, BooleanFilter, type BooleanFilterParameter, type BooleanFilterProps, type BooleanFilterValue, 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, type ColumnSizeCalculatoProps, ColumnSizeUtil, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogType, type ControlledStateProps, CopyToClipboardWrapper, type CopyToClipboardWrapperProps, type Crumb, DateFilter, type DateFilterParameter, type DateFilterProps, type DateFilterValue, DatePicker, type DatePickerProps, DatePickerUncontrolled, DateProperty, type DatePropertyProps, DateTimeInput, type DateTimeInputProps, DateTimePicker, DateTimePickerDialog, type DateTimePickerDialogProps, type DateTimePickerMode, type DateTimePickerProps, DateTimePickerUncontrolled, DateUtils, DayPicker, type DayPickerProps, DayPickerUncontrolled, type DeepPartial, Dialog, DialogContext, type DialogContextType, type DialogOpenerPassingProps, DialogOpenerWrapper, type DialogOpenerWrapperBag, type DialogOpenerWrapperProps, type DialogPosition, type DialogProps, DialogRoot, type DialogRootProps, type Direction, DiscardChangesDialog, DividerInserter, type DividerInserterProps, Drawer, type DrawerAligment, type DrawerProps, Duration, type DurationJSON, type EaseFunction, EaseFunctions, type EditCompleteOptions, type EditCompleteOptionsResolved, type ElementHandle, 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, type FloatingElementAlignment, FocusTrap, type FocusTrapProps, FocusTrapWrapper, type FocusTrapWrapperProps, FormContext, type FormContextType, type FormEvent, type FormEventListener, FormField, type FormFieldAriaAttributes, type FormFieldBag, type FormFieldDataHandling, type FormFieldFocusableElementProps, type FormFieldInteractionStates, FormFieldLayout, type FormFieldLayoutBag, type FormFieldLayoutIds, type FormFieldLayoutProps, type FormFieldProps, type FormFieldResult, FormObserver, FormObserverKey, type FormObserverKeyProps, type FormObserverKeyResult, type FormObserverProps, type FormObserverResult, FormProvider, type FormProviderProps, FormStore, type FormStoreProps, type FormValidationBehaviour, type FormValidator, type FormValue, GenericFilter, type GenericFilterParameter, type GenericFilterProps, type GenericFilterValue, 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, MathUtil, 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, NumberFilter, type NumberFilterParameter, type NumberFilterProps, type NumberFilterValue, NumberProperty, type NumberPropertyProps, OperatorLabel, type OperatorLabelProps, type OverlayItem, OverlayRegistry, Pagination, type PaginationProps, PopUp, PopUpContext, type PopUpContextType, PopUpOpener, type PopUpOpenerBag, type PopUpOpenerProps, type PopUpProps, PopUpRoot, type PopUpRootProps, Portal, type PortalProps, ProgressIndicator, type ProgressIndicatorProps, PromiseUtils, PropertyBase, type PropertyBaseProps, type PropertyField, PropsUtil, type PropsWithBagFunction, type PropsWithBagFunctionOrChildren, RadialRings, type RadialRingsProps, type Range, 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, TableBody, type TableBooleanFilter, TableCell, type TableCellProps, TableColumn, TableColumnDefinitionContext, type TableColumnDefinitionContextType, type TableColumnProps, TableColumnSwitcher, TableColumnSwitcherPopUp, type TableColumnSwitcherPopUpProps, type TableColumnSwitcherProps, TableContainerContext, type TableContainerContextType, TableDataContext, type TableDataContextType, type TableDateFilter, TableDisplay, type TableDisplayProps, TableFilter, type TableFilterBaseProps, TableFilterButton, type TableFilterButtonProps, type TableFilterCategory, TableFilterContent, type TableFilterContentProps, TableFilterOperator, type TableFilterType, type TableFilterValue, type TableGenericFilter, TableHeader, TableHeaderContext, type TableHeaderContextType, type TableHeaderProps, type TableNumberFilter, TablePageSizeSelect, type TablePageSizeSelectProps, TablePagination, TablePaginationMenu, type TablePaginationProps, type TableProps, TableProvider, type TableProviderProps, TableSortButton, type TableSortButtonProps, type TableTagsFilter, type TableTextFilter, TableWithSelection, type TableWithSelectionProps, TableWithSelectionProvider, type TableWithSelectionProviderProps, TagIcon, type TagProps, TagsFilter, type TagsFilterParameter, type TagsFilterProps, type TagsFilterValue, TextFilter, type TextFilterParameter, type TextFilterProps, type TextFilterValue, 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 UnBoundedRange, type UseAnchoredPositionOptions, type UseAnchoredPostitionProps, type UseCreateFormProps, type UseCreateFormResult, type UseDelayOptions, type UseDelayOptionsResolved, type UseFocusTrapProps, type UseFormFieldOptions, type UseFormFieldParameter, type UseFormObserverKeyProps, type UseFormObserverProps, type UseOutsideClickHandlers, type UseOutsideClickOptions, type UseOutsideClickProps, type UseOverlayRegistryProps, type UseOverlayRegistryResult, type UsePresenceRefProps, type UseSearchProps, UseValidators, type UserFormFieldProps, type ValidatorError, type ValidatorResult, VerticalDivider, type VerticalDividerProps, Visibility, type VisibilityProps, type WeekDay, YearMonthPicker, type YearMonthPickerProps, YearMonthPickerUncontrolled, addDuration, builder, changeDuration, closestMatch, createLoopingList, createLoopingListWithIndex, equalSizeGroups, formatDate, formatDateTime, getBetweenDuration, getNeighbours, getWeeksForCalenderMonth, hightideTranslation, hightideTranslationLocales, isInTimeSpan, isTableFilterCategory, match, mergeProps, noop, range, resolveSetState, subtractDuration, toSizeVars, useAnchoredPosition, useControlledState, useCreateForm, useDelay, useDialogContext, useFocusGuards, useFocusManagement, useFocusOnceVisible, useFocusTrap, useForm, useFormField, useFormObserver, useFormObserverKey, useHandleRefs, useHightideConfig, useHightideTranslation, useHoverState, useICUTranslation, useIsMounted, useLanguage, useLocalStorage, useLocale, useLogOnce, useLogUnstableDependencies, useOutsideClick, useOverlayRegistry, useOverwritableState, usePopUpContext, usePresenceRef, useRerender, useResizeCallbackWrapper, useSearch, useSelectContext, useTabContext, useTableColumnDefinitionContext, useTableContainerContext, useTableDataContext, useTableHeaderContext, useTheme, useTransitionState, useTranslatedValidators, validateEmail, writeToClipboard };
|
package/dist/index.d.ts
CHANGED
|
@@ -176,6 +176,7 @@ type FormFieldLayoutProps = Omit<HTMLAttributes<HTMLDivElement>, 'children'> & O
|
|
|
176
176
|
invalidDescriptionProps?: Omit<HTMLAttributes<HTMLDivElement>, 'children' | 'id'>;
|
|
177
177
|
description?: ReactNode;
|
|
178
178
|
descriptionProps?: Omit<HTMLAttributes<HTMLParagraphElement>, 'children' | 'id'>;
|
|
179
|
+
showRequiredIndicator?: boolean;
|
|
179
180
|
};
|
|
180
181
|
declare const FormFieldLayout: react.ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLDivElement>, "children"> & Omit<Partial<FormFieldInteractionStates>, "invalid"> & {
|
|
181
182
|
children: (bag: FormFieldLayoutBag) => ReactNode;
|
|
@@ -186,6 +187,7 @@ declare const FormFieldLayout: react.ForwardRefExoticComponent<Omit<HTMLAttribut
|
|
|
186
187
|
invalidDescriptionProps?: Omit<HTMLAttributes<HTMLDivElement>, "children" | "id">;
|
|
187
188
|
description?: ReactNode;
|
|
188
189
|
descriptionProps?: Omit<HTMLAttributes<HTMLParagraphElement>, "children" | "id">;
|
|
190
|
+
showRequiredIndicator?: boolean;
|
|
189
191
|
} & react.RefAttributes<HTMLDivElement>>;
|
|
190
192
|
|
|
191
193
|
type FormValidationBehaviour = 'always' | 'touched' | 'submit';
|
|
@@ -235,30 +237,29 @@ type FormStoreProps<T extends FormValue> = {
|
|
|
235
237
|
validators?: Partial<{
|
|
236
238
|
[K in keyof T]: (v: T[K]) => ReactNode;
|
|
237
239
|
}>;
|
|
238
|
-
validationBehaviour?: FormValidationBehaviour;
|
|
239
240
|
};
|
|
240
241
|
declare class FormStore<T extends FormValue> {
|
|
241
242
|
private values;
|
|
242
243
|
private initialValues;
|
|
243
244
|
private validators;
|
|
244
|
-
private validationBehaviour;
|
|
245
245
|
private hasTriedSubmitting;
|
|
246
246
|
private errors;
|
|
247
247
|
private touched;
|
|
248
248
|
private listeners;
|
|
249
249
|
private submittingTouchesAll;
|
|
250
|
-
constructor({ initialValues, hasTriedSubmitting, submittingTouchesAll, validators,
|
|
250
|
+
constructor({ initialValues, hasTriedSubmitting, submittingTouchesAll, validators, }: FormStoreProps<T>);
|
|
251
251
|
getValue<K extends keyof T>(key: K): T[K];
|
|
252
252
|
getAllValues(): T;
|
|
253
253
|
setValue<K extends keyof T>(key: K, value: T[K], triggerUpdate?: boolean): void;
|
|
254
254
|
setValues(values: Partial<T>, triggerUpdate?: boolean): void;
|
|
255
255
|
getTouched(key: keyof T): boolean;
|
|
256
|
+
getAllTouched(): Partial<Record<keyof T, boolean>>;
|
|
256
257
|
setTouched(key: keyof T, isTouched?: boolean): void;
|
|
257
258
|
getHasError(): boolean;
|
|
258
259
|
getErrors(): Partial<Record<keyof T, ReactNode>>;
|
|
259
260
|
getError(key: keyof T): ReactNode;
|
|
260
261
|
private setError;
|
|
261
|
-
|
|
262
|
+
getHasTriedSubmitting(): boolean;
|
|
262
263
|
changeValidators(validators: Partial<Record<keyof T, FormValidator<T>>>): void;
|
|
263
264
|
validate(key: keyof T): void;
|
|
264
265
|
validateAll(): void;
|
|
@@ -268,7 +269,7 @@ declare class FormStore<T extends FormValue> {
|
|
|
268
269
|
reset(): void;
|
|
269
270
|
}
|
|
270
271
|
|
|
271
|
-
type UseCreateFormProps<T extends FormValue> = FormStoreProps<T> & {
|
|
272
|
+
type UseCreateFormProps<T extends FormValue> = Omit<FormStoreProps<T>, 'validationBehaviour'> & {
|
|
272
273
|
onFormSubmit: (values: T) => void;
|
|
273
274
|
onFormError?: (values: T, errors: Partial<Record<keyof T, ReactNode>>) => void;
|
|
274
275
|
/**
|
|
@@ -304,19 +305,19 @@ type UseCreateFormProps<T extends FormValue> = FormStoreProps<T> & {
|
|
|
304
305
|
scrollOptions?: ScrollIntoViewOptions;
|
|
305
306
|
};
|
|
306
307
|
type UseCreateFormResult<T extends FormValue> = {
|
|
308
|
+
/**
|
|
309
|
+
* The form store.
|
|
310
|
+
* Do not attempt to read the store directly, use useFormObserver or useFormField instead.
|
|
311
|
+
* Otherwise you will not get the latest values and errors.
|
|
312
|
+
*/
|
|
307
313
|
store: FormStore<T>;
|
|
308
314
|
reset: () => void;
|
|
309
315
|
submit: () => void;
|
|
310
316
|
update: (updater: Partial<T> | ((current: T) => Partial<T>)) => void;
|
|
311
317
|
validateAll: () => void;
|
|
312
|
-
getError: (key: keyof T) => ReactNode;
|
|
313
|
-
getErrors: () => Partial<Record<keyof T, ReactNode>>;
|
|
314
|
-
getIsValid: () => boolean;
|
|
315
|
-
getValues: () => T;
|
|
316
|
-
getValue: <K extends keyof T>(key: K) => T[K];
|
|
317
318
|
registerRef: (key: keyof T) => (el: HTMLElement | null) => void;
|
|
318
319
|
};
|
|
319
|
-
declare function useCreateForm<T extends FormValue>({ onFormSubmit, onFormError, onValueChange, onUpdate, onValidUpdate, initialValues, hasTriedSubmitting, validators,
|
|
320
|
+
declare function useCreateForm<T extends FormValue>({ onFormSubmit, onFormError, onValueChange, onUpdate, onValidUpdate, initialValues, hasTriedSubmitting, validators, scrollToElements, scrollOptions, }: UseCreateFormProps<T>): UseCreateFormResult<T>;
|
|
320
321
|
|
|
321
322
|
type FormFieldFocusableElementProps = FormFieldAriaAttributes & {
|
|
322
323
|
id: string;
|
|
@@ -326,6 +327,7 @@ type FormFieldBag<T extends FormValue, K extends keyof T> = {
|
|
|
326
327
|
dataProps: FormFieldDataHandling<T[K]>;
|
|
327
328
|
focusableElementProps: FormFieldFocusableElementProps;
|
|
328
329
|
interactionStates: FormFieldInteractionStates;
|
|
330
|
+
touched: boolean;
|
|
329
331
|
other: {
|
|
330
332
|
updateValue: (value: T[K]) => void;
|
|
331
333
|
};
|
|
@@ -334,13 +336,14 @@ interface FormFieldProps<T extends FormValue, K extends keyof T> extends Omit<Fo
|
|
|
334
336
|
children: (bag: FormFieldBag<T, K>) => ReactNode;
|
|
335
337
|
name: K;
|
|
336
338
|
triggerUpdateOnEditComplete?: boolean;
|
|
339
|
+
validationBehaviour?: FormValidationBehaviour;
|
|
337
340
|
}
|
|
338
341
|
type FormFieldDataHandling<T> = {
|
|
339
342
|
value: T;
|
|
340
343
|
onValueChange: (value: T) => void;
|
|
341
344
|
onEditComplete: (value: T) => void;
|
|
342
345
|
};
|
|
343
|
-
declare const FormField: <T extends FormValue, K extends keyof T>({ children, name, triggerUpdateOnEditComplete, ...props }: FormFieldProps<T, K>) => react_jsx_runtime.JSX.Element;
|
|
346
|
+
declare const FormField: <T extends FormValue, K extends keyof T>({ children, name, triggerUpdateOnEditComplete, validationBehaviour, ...props }: FormFieldProps<T, K>) => react_jsx_runtime.JSX.Element;
|
|
344
347
|
|
|
345
348
|
type FormContextType<T extends FormValue> = UseCreateFormResult<T>;
|
|
346
349
|
declare const FormContext: react.Context<FormContextType<any>>;
|
|
@@ -349,17 +352,58 @@ type FormProviderProps<T extends FormValue> = PropsWithChildren & {
|
|
|
349
352
|
};
|
|
350
353
|
declare const FormProvider: <T extends FormValue>({ children, state }: FormProviderProps<T>) => react_jsx_runtime.JSX.Element;
|
|
351
354
|
declare function useForm<T extends FormValue>(): FormContextType<T>;
|
|
352
|
-
|
|
355
|
+
interface UseFormFieldParameter<T extends FormValue> {
|
|
356
|
+
key: keyof T;
|
|
357
|
+
}
|
|
358
|
+
interface UseFormFieldOptions {
|
|
353
359
|
triggerUpdate?: boolean;
|
|
354
|
-
|
|
360
|
+
validationBehaviour?: FormValidationBehaviour;
|
|
361
|
+
}
|
|
362
|
+
interface UserFormFieldProps<T extends FormValue> extends UseFormFieldParameter<T>, UseFormFieldOptions {
|
|
363
|
+
}
|
|
355
364
|
type FormFieldResult<T> = {
|
|
356
365
|
store: FormStore<T>;
|
|
357
366
|
value: T;
|
|
358
367
|
error: ReactNode;
|
|
368
|
+
touched: boolean;
|
|
369
|
+
hasTriedSubmitting: boolean;
|
|
359
370
|
dataProps: FormFieldDataHandling<T>;
|
|
360
371
|
registerRef: (el: HTMLElement | null) => void;
|
|
361
372
|
};
|
|
362
|
-
declare function useFormField<T extends FormValue, K extends keyof T>(key: K, { triggerUpdate }: UseFormFieldOptions): FormFieldResult<T[K]> | null;
|
|
373
|
+
declare function useFormField<T extends FormValue, K extends keyof T>(key: K, { triggerUpdate, validationBehaviour }: UseFormFieldOptions): FormFieldResult<T[K]> | null;
|
|
374
|
+
type UseFormObserverProps<T extends FormValue> = {
|
|
375
|
+
formStore?: FormStore<T>;
|
|
376
|
+
};
|
|
377
|
+
interface FormObserverResult<T extends FormValue> {
|
|
378
|
+
store: FormStore<T>;
|
|
379
|
+
values: T;
|
|
380
|
+
touched: Partial<Record<keyof T, boolean>>;
|
|
381
|
+
errors: Partial<Record<keyof T, ReactNode>>;
|
|
382
|
+
hasErrors: boolean;
|
|
383
|
+
hasTriedSubmitting: boolean;
|
|
384
|
+
}
|
|
385
|
+
declare function useFormObserver<T extends FormValue>({ formStore }?: UseFormObserverProps<T>): FormObserverResult<T> | null;
|
|
386
|
+
interface UseFormObserverKeyProps<T extends FormValue, K extends keyof T> {
|
|
387
|
+
formStore?: FormStore<T>;
|
|
388
|
+
key: K;
|
|
389
|
+
}
|
|
390
|
+
interface FormObserverKeyResult<T extends FormValue, K extends keyof T> {
|
|
391
|
+
store: FormStore<T>;
|
|
392
|
+
value: T[K];
|
|
393
|
+
error: ReactNode;
|
|
394
|
+
hasError: boolean;
|
|
395
|
+
touched: boolean;
|
|
396
|
+
}
|
|
397
|
+
declare function useFormObserverKey<T extends FormValue, K extends keyof T>({ formStore, key }: UseFormObserverKeyProps<T, K>): FormObserverKeyResult<T, K> | null;
|
|
398
|
+
|
|
399
|
+
interface FormObserverProps<T extends FormValue> extends UseFormObserverProps<T> {
|
|
400
|
+
children: (bag: FormObserverResult<T>) => ReactNode;
|
|
401
|
+
}
|
|
402
|
+
declare const FormObserver: <T extends FormValue>({ children, formStore }: FormObserverProps<T>) => ReactNode;
|
|
403
|
+
interface FormObserverKeyProps<T extends FormValue, K extends keyof T> extends UseFormObserverKeyProps<T, K> {
|
|
404
|
+
children: (bag: FormObserverKeyResult<T, K>) => ReactNode;
|
|
405
|
+
}
|
|
406
|
+
declare const FormObserverKey: <T extends FormValue, K extends keyof T>({ children, formStore, key }: FormObserverKeyProps<T, K>) => ReactNode;
|
|
363
407
|
|
|
364
408
|
type FloatingElementAlignment = 'beforeStart' | 'afterStart' | 'center' | 'beforeEnd' | 'afterEnd';
|
|
365
409
|
type CalculatePositionOptions = {
|
|
@@ -1086,12 +1130,13 @@ type TableProviderProps<T> = {
|
|
|
1086
1130
|
columns?: ColumnDef<T>[];
|
|
1087
1131
|
children?: ReactNode;
|
|
1088
1132
|
isUsingFillerRows?: boolean;
|
|
1089
|
-
|
|
1133
|
+
fillerRowCell?: (columnId: string, table: Table$1<T>) => ReactNode;
|
|
1090
1134
|
initialState?: Omit<InitialTableState, 'columnSizing'>;
|
|
1091
1135
|
onRowClick?: (row: Row<T>, table: Table$1<T>) => void;
|
|
1136
|
+
onFillerRowClick?: (index: number, table: Table$1<T>) => void;
|
|
1092
1137
|
state?: Omit<TableState, 'columnSizing'>;
|
|
1093
1138
|
} & Partial<TableOptions<T>>;
|
|
1094
|
-
declare const TableProvider: <T>({ data, isUsingFillerRows,
|
|
1139
|
+
declare const TableProvider: <T>({ data, isUsingFillerRows, fillerRowCell, initialState, onRowClick, onFillerRowClick, defaultColumn: defaultColumnOverwrite, state, columns: columnsProp, children, ...tableOptions }: TableProviderProps<T>) => react_jsx_runtime.JSX.Element;
|
|
1095
1140
|
|
|
1096
1141
|
declare module '@tanstack/react-table' {
|
|
1097
1142
|
interface ColumnMeta<TData extends RowData, TValue> {
|
|
@@ -1279,7 +1324,7 @@ interface TableWithSelectionProviderProps<T> extends TableProviderProps<T> {
|
|
|
1279
1324
|
disableClickRowClickSelection?: boolean;
|
|
1280
1325
|
selectionRowId?: string;
|
|
1281
1326
|
}
|
|
1282
|
-
declare const TableWithSelectionProvider: <T>({ children, state,
|
|
1327
|
+
declare const TableWithSelectionProvider: <T>({ children, state, fillerRowCell, rowSelection, disableClickRowClickSelection, selectionRowId, onRowClick, ...props }: TableWithSelectionProviderProps<T>) => react_jsx_runtime.JSX.Element;
|
|
1283
1328
|
|
|
1284
1329
|
interface TableProps<T> extends HTMLAttributes<HTMLDivElement> {
|
|
1285
1330
|
table: TableProviderProps<T>;
|
|
@@ -1398,8 +1443,9 @@ type TableDataContextType<T> = {
|
|
|
1398
1443
|
data: T[];
|
|
1399
1444
|
pagination: PaginationState;
|
|
1400
1445
|
isUsingFillerRows: boolean;
|
|
1401
|
-
|
|
1402
|
-
onRowClick
|
|
1446
|
+
fillerRowCell: (columnId: string, table: Table$1<T>) => ReactNode;
|
|
1447
|
+
onRowClick?: (row: Row<T>, table: Table$1<T>) => void;
|
|
1448
|
+
onFillerRowClick?: (index: number, table: Table$1<T>) => void;
|
|
1403
1449
|
};
|
|
1404
1450
|
declare const TableDataContext: react.Context<TableDataContextType<any>>;
|
|
1405
1451
|
declare const useTableDataContext: <T>() => TableDataContextType<T>;
|
|
@@ -2072,10 +2118,6 @@ type TimeDisplayProps = {
|
|
|
2072
2118
|
*/
|
|
2073
2119
|
declare const TimeDisplay: ({ date, mode }: TimeDisplayProps) => react_jsx_runtime.JSX.Element;
|
|
2074
2120
|
|
|
2075
|
-
type DateTimeInputHandle = {
|
|
2076
|
-
input: HTMLDivElement | null;
|
|
2077
|
-
popup: HTMLDivElement | null;
|
|
2078
|
-
};
|
|
2079
2121
|
interface DateTimeInputProps extends Partial<FormFieldInteractionStates>, ControlledStateProps<Date | null>, Omit<ButtonHTMLAttributes<HTMLDivElement>, 'defaultValue' | 'value'>, Partial<FormFieldDataHandling<Date | null>> {
|
|
2080
2122
|
placeholder?: ReactNode;
|
|
2081
2123
|
allowRemove?: boolean;
|
|
@@ -2085,7 +2127,7 @@ interface DateTimeInputProps extends Partial<FormFieldInteractionStates>, Contro
|
|
|
2085
2127
|
outsideClickCloses?: boolean;
|
|
2086
2128
|
onDialogOpeningChange?: (isOpen: boolean) => void;
|
|
2087
2129
|
}
|
|
2088
|
-
declare const DateTimeInput: react.ForwardRefExoticComponent<DateTimeInputProps & react.RefAttributes<
|
|
2130
|
+
declare const DateTimeInput: react.ForwardRefExoticComponent<DateTimeInputProps & react.RefAttributes<HTMLDivElement>>;
|
|
2089
2131
|
|
|
2090
2132
|
type InsideLabelInputProps = Omit<InputProps, 'aria-label' | 'aria-labelledby' | 'placeholder'> & {
|
|
2091
2133
|
label: ReactNode;
|
|
@@ -2765,4 +2807,4 @@ declare class SessionStorageService extends StorageService {
|
|
|
2765
2807
|
|
|
2766
2808
|
declare const writeToClipboard: (text: string) => Promise<void>;
|
|
2767
2809
|
|
|
2768
|
-
export { ASTNodeInterpreter, type ASTNodeInterpreterProps, AnchoredFloatingContainer, type AnchoredFloatingContainerProps, AnimatedRing, type AnimatedRingProps, ArrayUtil, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, type BackgroundOverlayProps, type BagFunction, type BagFunctionOrNode, type BagFunctionOrValue, BagFunctionUtil, BooleanFilter, type BooleanFilterParameter, type BooleanFilterProps, type BooleanFilterValue, 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, type ColumnSizeCalculatoProps, ColumnSizeUtil, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogType, type ControlledStateProps, CopyToClipboardWrapper, type CopyToClipboardWrapperProps, type Crumb, DateFilter, type DateFilterParameter, type DateFilterProps, type DateFilterValue, DatePicker, type DatePickerProps, DatePickerUncontrolled, DateProperty, type DatePropertyProps, DateTimeInput, type DateTimeInputHandle, type DateTimeInputProps, DateTimePicker, DateTimePickerDialog, type DateTimePickerDialogProps, type DateTimePickerMode, type DateTimePickerProps, DateTimePickerUncontrolled, DateUtils, DayPicker, type DayPickerProps, DayPickerUncontrolled, type DeepPartial, Dialog, DialogContext, type DialogContextType, type DialogOpenerPassingProps, DialogOpenerWrapper, type DialogOpenerWrapperBag, type DialogOpenerWrapperProps, type DialogPosition, type DialogProps, DialogRoot, type DialogRootProps, type Direction, DiscardChangesDialog, DividerInserter, type DividerInserterProps, Drawer, type DrawerAligment, type DrawerProps, Duration, type DurationJSON, type EaseFunction, EaseFunctions, type EditCompleteOptions, type EditCompleteOptionsResolved, type ElementHandle, 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, type FloatingElementAlignment, FocusTrap, type FocusTrapProps, FocusTrapWrapper, type FocusTrapWrapperProps, FormContext, type FormContextType, type FormEvent, type FormEventListener, FormField, type FormFieldAriaAttributes, type FormFieldBag, type FormFieldDataHandling, type FormFieldFocusableElementProps, type FormFieldInteractionStates, FormFieldLayout, type FormFieldLayoutBag, type FormFieldLayoutIds, type FormFieldLayoutProps, type FormFieldProps, type FormFieldResult, FormProvider, type FormProviderProps, FormStore, type FormStoreProps, type FormValidationBehaviour, type FormValidator, type FormValue, GenericFilter, type GenericFilterParameter, type GenericFilterProps, type GenericFilterValue, 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, MathUtil, 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, NumberFilter, type NumberFilterParameter, type NumberFilterProps, type NumberFilterValue, NumberProperty, type NumberPropertyProps, OperatorLabel, type OperatorLabelProps, type OverlayItem, OverlayRegistry, Pagination, type PaginationProps, PopUp, PopUpContext, type PopUpContextType, PopUpOpener, type PopUpOpenerBag, type PopUpOpenerProps, type PopUpProps, PopUpRoot, type PopUpRootProps, Portal, type PortalProps, ProgressIndicator, type ProgressIndicatorProps, PromiseUtils, PropertyBase, type PropertyBaseProps, type PropertyField, PropsUtil, type PropsWithBagFunction, type PropsWithBagFunctionOrChildren, RadialRings, type RadialRingsProps, type Range, 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, TableBody, type TableBooleanFilter, TableCell, type TableCellProps, TableColumn, TableColumnDefinitionContext, type TableColumnDefinitionContextType, type TableColumnProps, TableColumnSwitcher, TableColumnSwitcherPopUp, type TableColumnSwitcherPopUpProps, type TableColumnSwitcherProps, TableContainerContext, type TableContainerContextType, TableDataContext, type TableDataContextType, type TableDateFilter, TableDisplay, type TableDisplayProps, TableFilter, type TableFilterBaseProps, TableFilterButton, type TableFilterButtonProps, type TableFilterCategory, TableFilterContent, type TableFilterContentProps, TableFilterOperator, type TableFilterType, type TableFilterValue, type TableGenericFilter, TableHeader, TableHeaderContext, type TableHeaderContextType, type TableHeaderProps, type TableNumberFilter, TablePageSizeSelect, type TablePageSizeSelectProps, TablePagination, TablePaginationMenu, type TablePaginationProps, type TableProps, TableProvider, type TableProviderProps, TableSortButton, type TableSortButtonProps, type TableTagsFilter, type TableTextFilter, TableWithSelection, type TableWithSelectionProps, TableWithSelectionProvider, type TableWithSelectionProviderProps, TagIcon, type TagProps, TagsFilter, type TagsFilterParameter, type TagsFilterProps, type TagsFilterValue, TextFilter, type TextFilterParameter, type TextFilterProps, type TextFilterValue, 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 UnBoundedRange, type UseAnchoredPositionOptions, type UseAnchoredPostitionProps, type UseCreateFormProps, type UseCreateFormResult, type UseDelayOptions, type UseDelayOptionsResolved, type UseFocusTrapProps, type UseFormFieldOptions, type UseOutsideClickHandlers, type UseOutsideClickOptions, type UseOutsideClickProps, type UseOverlayRegistryProps, type UseOverlayRegistryResult, type UsePresenceRefProps, type UseSearchProps, UseValidators, type ValidatorError, type ValidatorResult, VerticalDivider, type VerticalDividerProps, Visibility, type VisibilityProps, type WeekDay, YearMonthPicker, type YearMonthPickerProps, YearMonthPickerUncontrolled, addDuration, builder, changeDuration, closestMatch, createLoopingList, createLoopingListWithIndex, equalSizeGroups, formatDate, formatDateTime, getBetweenDuration, getNeighbours, getWeeksForCalenderMonth, hightideTranslation, hightideTranslationLocales, isInTimeSpan, isTableFilterCategory, match, mergeProps, noop, range, resolveSetState, subtractDuration, toSizeVars, useAnchoredPosition, useControlledState, useCreateForm, useDelay, useDialogContext, useFocusGuards, useFocusManagement, useFocusOnceVisible, useFocusTrap, useForm, useFormField, useHandleRefs, useHightideConfig, useHightideTranslation, useHoverState, useICUTranslation, useIsMounted, useLanguage, useLocalStorage, useLocale, useLogOnce, useLogUnstableDependencies, useOutsideClick, useOverlayRegistry, useOverwritableState, usePopUpContext, usePresenceRef, useRerender, useResizeCallbackWrapper, useSearch, useSelectContext, useTabContext, useTableColumnDefinitionContext, useTableContainerContext, useTableDataContext, useTableHeaderContext, useTheme, useTransitionState, useTranslatedValidators, validateEmail, writeToClipboard };
|
|
2810
|
+
export { ASTNodeInterpreter, type ASTNodeInterpreterProps, AnchoredFloatingContainer, type AnchoredFloatingContainerProps, AnimatedRing, type AnimatedRingProps, ArrayUtil, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, type BackgroundOverlayProps, type BagFunction, type BagFunctionOrNode, type BagFunctionOrValue, BagFunctionUtil, BooleanFilter, type BooleanFilterParameter, type BooleanFilterProps, type BooleanFilterValue, 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, type ColumnSizeCalculatoProps, ColumnSizeUtil, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogType, type ControlledStateProps, CopyToClipboardWrapper, type CopyToClipboardWrapperProps, type Crumb, DateFilter, type DateFilterParameter, type DateFilterProps, type DateFilterValue, DatePicker, type DatePickerProps, DatePickerUncontrolled, DateProperty, type DatePropertyProps, DateTimeInput, type DateTimeInputProps, DateTimePicker, DateTimePickerDialog, type DateTimePickerDialogProps, type DateTimePickerMode, type DateTimePickerProps, DateTimePickerUncontrolled, DateUtils, DayPicker, type DayPickerProps, DayPickerUncontrolled, type DeepPartial, Dialog, DialogContext, type DialogContextType, type DialogOpenerPassingProps, DialogOpenerWrapper, type DialogOpenerWrapperBag, type DialogOpenerWrapperProps, type DialogPosition, type DialogProps, DialogRoot, type DialogRootProps, type Direction, DiscardChangesDialog, DividerInserter, type DividerInserterProps, Drawer, type DrawerAligment, type DrawerProps, Duration, type DurationJSON, type EaseFunction, EaseFunctions, type EditCompleteOptions, type EditCompleteOptionsResolved, type ElementHandle, 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, type FloatingElementAlignment, FocusTrap, type FocusTrapProps, FocusTrapWrapper, type FocusTrapWrapperProps, FormContext, type FormContextType, type FormEvent, type FormEventListener, FormField, type FormFieldAriaAttributes, type FormFieldBag, type FormFieldDataHandling, type FormFieldFocusableElementProps, type FormFieldInteractionStates, FormFieldLayout, type FormFieldLayoutBag, type FormFieldLayoutIds, type FormFieldLayoutProps, type FormFieldProps, type FormFieldResult, FormObserver, FormObserverKey, type FormObserverKeyProps, type FormObserverKeyResult, type FormObserverProps, type FormObserverResult, FormProvider, type FormProviderProps, FormStore, type FormStoreProps, type FormValidationBehaviour, type FormValidator, type FormValue, GenericFilter, type GenericFilterParameter, type GenericFilterProps, type GenericFilterValue, 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, MathUtil, 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, NumberFilter, type NumberFilterParameter, type NumberFilterProps, type NumberFilterValue, NumberProperty, type NumberPropertyProps, OperatorLabel, type OperatorLabelProps, type OverlayItem, OverlayRegistry, Pagination, type PaginationProps, PopUp, PopUpContext, type PopUpContextType, PopUpOpener, type PopUpOpenerBag, type PopUpOpenerProps, type PopUpProps, PopUpRoot, type PopUpRootProps, Portal, type PortalProps, ProgressIndicator, type ProgressIndicatorProps, PromiseUtils, PropertyBase, type PropertyBaseProps, type PropertyField, PropsUtil, type PropsWithBagFunction, type PropsWithBagFunctionOrChildren, RadialRings, type RadialRingsProps, type Range, 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, TableBody, type TableBooleanFilter, TableCell, type TableCellProps, TableColumn, TableColumnDefinitionContext, type TableColumnDefinitionContextType, type TableColumnProps, TableColumnSwitcher, TableColumnSwitcherPopUp, type TableColumnSwitcherPopUpProps, type TableColumnSwitcherProps, TableContainerContext, type TableContainerContextType, TableDataContext, type TableDataContextType, type TableDateFilter, TableDisplay, type TableDisplayProps, TableFilter, type TableFilterBaseProps, TableFilterButton, type TableFilterButtonProps, type TableFilterCategory, TableFilterContent, type TableFilterContentProps, TableFilterOperator, type TableFilterType, type TableFilterValue, type TableGenericFilter, TableHeader, TableHeaderContext, type TableHeaderContextType, type TableHeaderProps, type TableNumberFilter, TablePageSizeSelect, type TablePageSizeSelectProps, TablePagination, TablePaginationMenu, type TablePaginationProps, type TableProps, TableProvider, type TableProviderProps, TableSortButton, type TableSortButtonProps, type TableTagsFilter, type TableTextFilter, TableWithSelection, type TableWithSelectionProps, TableWithSelectionProvider, type TableWithSelectionProviderProps, TagIcon, type TagProps, TagsFilter, type TagsFilterParameter, type TagsFilterProps, type TagsFilterValue, TextFilter, type TextFilterParameter, type TextFilterProps, type TextFilterValue, 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 UnBoundedRange, type UseAnchoredPositionOptions, type UseAnchoredPostitionProps, type UseCreateFormProps, type UseCreateFormResult, type UseDelayOptions, type UseDelayOptionsResolved, type UseFocusTrapProps, type UseFormFieldOptions, type UseFormFieldParameter, type UseFormObserverKeyProps, type UseFormObserverProps, type UseOutsideClickHandlers, type UseOutsideClickOptions, type UseOutsideClickProps, type UseOverlayRegistryProps, type UseOverlayRegistryResult, type UsePresenceRefProps, type UseSearchProps, UseValidators, type UserFormFieldProps, type ValidatorError, type ValidatorResult, VerticalDivider, type VerticalDividerProps, Visibility, type VisibilityProps, type WeekDay, YearMonthPicker, type YearMonthPickerProps, YearMonthPickerUncontrolled, addDuration, builder, changeDuration, closestMatch, createLoopingList, createLoopingListWithIndex, equalSizeGroups, formatDate, formatDateTime, getBetweenDuration, getNeighbours, getWeeksForCalenderMonth, hightideTranslation, hightideTranslationLocales, isInTimeSpan, isTableFilterCategory, match, mergeProps, noop, range, resolveSetState, subtractDuration, toSizeVars, useAnchoredPosition, useControlledState, useCreateForm, useDelay, useDialogContext, useFocusGuards, useFocusManagement, useFocusOnceVisible, useFocusTrap, useForm, useFormField, useFormObserver, useFormObserverKey, useHandleRefs, useHightideConfig, useHightideTranslation, useHoverState, useICUTranslation, useIsMounted, useLanguage, useLocalStorage, useLocale, useLogOnce, useLogUnstableDependencies, useOutsideClick, useOverlayRegistry, useOverwritableState, usePopUpContext, usePresenceRef, useRerender, useResizeCallbackWrapper, useSearch, useSelectContext, useTabContext, useTableColumnDefinitionContext, useTableContainerContext, useTableDataContext, useTableHeaderContext, useTheme, useTransitionState, useTranslatedValidators, validateEmail, writeToClipboard };
|