@helpwave/hightide 0.6.11 → 0.6.13
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 +81 -14
- package/dist/index.d.ts +81 -14
- package/dist/index.js +783 -359
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +760 -346
- package/dist/index.mjs.map +1 -1
- package/dist/style/globals.css +10 -7
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -313,7 +313,7 @@ type UseCreateFormResult<T extends FormValue> = {
|
|
|
313
313
|
store: FormStore<T>;
|
|
314
314
|
reset: () => void;
|
|
315
315
|
submit: () => void;
|
|
316
|
-
update: (updater: Partial<T> | ((current: T) => Partial<T>)) => void;
|
|
316
|
+
update: (updater: Partial<T> | ((current: T) => Partial<T>), triggerUpdate?: boolean) => void;
|
|
317
317
|
validateAll: () => void;
|
|
318
318
|
registerRef: (key: keyof T) => (el: HTMLElement | null) => void;
|
|
319
319
|
};
|
|
@@ -385,7 +385,7 @@ interface FormObserverResult<T extends FormValue> {
|
|
|
385
385
|
declare function useFormObserver<T extends FormValue>({ formStore }?: UseFormObserverProps<T>): FormObserverResult<T> | null;
|
|
386
386
|
interface UseFormObserverKeyProps<T extends FormValue, K extends keyof T> {
|
|
387
387
|
formStore?: FormStore<T>;
|
|
388
|
-
|
|
388
|
+
formKey: K;
|
|
389
389
|
}
|
|
390
390
|
interface FormObserverKeyResult<T extends FormValue, K extends keyof T> {
|
|
391
391
|
store: FormStore<T>;
|
|
@@ -394,7 +394,7 @@ interface FormObserverKeyResult<T extends FormValue, K extends keyof T> {
|
|
|
394
394
|
hasError: boolean;
|
|
395
395
|
touched: boolean;
|
|
396
396
|
}
|
|
397
|
-
declare function useFormObserverKey<T extends FormValue, K extends keyof T>({ formStore,
|
|
397
|
+
declare function useFormObserverKey<T extends FormValue, K extends keyof T>({ formStore, formKey }: UseFormObserverKeyProps<T, K>): FormObserverKeyResult<T, K> | null;
|
|
398
398
|
|
|
399
399
|
interface FormObserverProps<T extends FormValue> extends UseFormObserverProps<T> {
|
|
400
400
|
children: (bag: FormObserverResult<T>) => ReactNode;
|
|
@@ -403,7 +403,7 @@ declare const FormObserver: <T extends FormValue>({ children, formStore }: FormO
|
|
|
403
403
|
interface FormObserverKeyProps<T extends FormValue, K extends keyof T> extends UseFormObserverKeyProps<T, K> {
|
|
404
404
|
children: (bag: FormObserverKeyResult<T, K>) => ReactNode;
|
|
405
405
|
}
|
|
406
|
-
declare const FormObserverKey: <T extends FormValue, K extends keyof T>({ children, formStore,
|
|
406
|
+
declare const FormObserverKey: <T extends FormValue, K extends keyof T>({ children, formStore, formKey }: FormObserverKeyProps<T, K>) => ReactNode;
|
|
407
407
|
|
|
408
408
|
type FloatingElementAlignment = 'beforeStart' | 'afterStart' | 'center' | 'beforeEnd' | 'afterEnd';
|
|
409
409
|
type CalculatePositionOptions = {
|
|
@@ -1017,17 +1017,15 @@ declare const NavigationItemList: ({ items, ...restProps }: NavigationItemListPr
|
|
|
1017
1017
|
type NavigationProps = NavigationItemListProps;
|
|
1018
1018
|
declare const Navigation: ({ ...props }: NavigationProps) => react_jsx_runtime.JSX.Element;
|
|
1019
1019
|
|
|
1020
|
-
interface PaginationProps {
|
|
1020
|
+
interface PaginationProps extends Omit<HTMLAttributes<HTMLDivElement>, 'children'> {
|
|
1021
1021
|
pageIndex: number;
|
|
1022
1022
|
pageCount: number;
|
|
1023
1023
|
onPageIndexChanged?: (pageIndex: number) => void;
|
|
1024
|
-
className?: string;
|
|
1025
|
-
style?: CSSProperties;
|
|
1026
1024
|
}
|
|
1027
1025
|
/**
|
|
1028
1026
|
* A Component showing the pagination allowing first, before, next and last page navigation
|
|
1029
1027
|
*/
|
|
1030
|
-
declare const Pagination: ({ pageIndex, pageCount, onPageIndexChanged,
|
|
1028
|
+
declare const Pagination: ({ pageIndex, pageCount, onPageIndexChanged, ...props }: PaginationProps) => react_jsx_runtime.JSX.Element;
|
|
1031
1029
|
|
|
1032
1030
|
type StepperState = {
|
|
1033
1031
|
currentStep: number;
|
|
@@ -1147,6 +1145,7 @@ declare module '@tanstack/react-table' {
|
|
|
1147
1145
|
label: ReactNode;
|
|
1148
1146
|
}[];
|
|
1149
1147
|
};
|
|
1148
|
+
columnLabel?: string;
|
|
1150
1149
|
}
|
|
1151
1150
|
interface TableMeta<TData> {
|
|
1152
1151
|
headerRowClassName?: string;
|
|
@@ -1308,7 +1307,8 @@ declare const SelectUncontrolled: react.ForwardRefExoticComponent<Partial<FormFi
|
|
|
1308
1307
|
};
|
|
1309
1308
|
} & react.RefAttributes<HTMLButtonElement>>;
|
|
1310
1309
|
|
|
1311
|
-
|
|
1310
|
+
type TablePaginationMenuProps = Omit<PaginationProps, 'pageIndex' | 'pageCount'>;
|
|
1311
|
+
declare const TablePaginationMenu: ({ ...props }: TablePaginationMenuProps) => react_jsx_runtime.JSX.Element;
|
|
1312
1312
|
interface TablePageSizeSelectProps extends SelectProps {
|
|
1313
1313
|
pageSizeOptions?: number[];
|
|
1314
1314
|
}
|
|
@@ -1358,21 +1358,26 @@ declare const TableFilterOperator: {
|
|
|
1358
1358
|
readonly text: readonly ["textEquals", "textNotEquals", "textNotWhitespace", "textContains", "textNotContains", "textStartsWith", "textEndsWith"];
|
|
1359
1359
|
readonly number: readonly ["numberEquals", "numberNotEquals", "numberGreaterThan", "numberGreaterThanOrEqual", "numberLessThan", "numberLessThanOrEqual", "numberBetween", "numberNotBetween"];
|
|
1360
1360
|
readonly date: readonly ["dateEquals", "dateNotEquals", "dateGreaterThan", "dateGreaterThanOrEqual", "dateLessThan", "dateLessThanOrEqual", "dateBetween", "dateNotBetween"];
|
|
1361
|
+
readonly datetime: readonly ["datetimeEquals", "datetimeNotEquals", "datetimeGreaterThan", "datetimeGreaterThanOrEqual", "datetimeLessThan", "datetimeLessThanOrEqual", "datetimeBetween", "datetimeNotBetween"];
|
|
1361
1362
|
readonly boolean: readonly ["booleanIsTrue", "booleanIsFalse"];
|
|
1362
1363
|
readonly tags: readonly ["tagsEquals", "tagsNotEquals", "tagsContains", "tagsNotContains"];
|
|
1364
|
+
readonly tagsSingle: readonly ["tagsSingleEquals", "tagsSingleNotEquals", "tagsSingleContains", "tagsSingleNotContains"];
|
|
1363
1365
|
readonly generic: readonly ["undefined", "notUndefined"];
|
|
1364
1366
|
};
|
|
1365
1367
|
type TableGenericFilter = (typeof TableFilterOperator.generic)[number];
|
|
1366
1368
|
type TableTextFilter = (typeof TableFilterOperator.text)[number] | TableGenericFilter;
|
|
1367
1369
|
type TableNumberFilter = (typeof TableFilterOperator.number)[number] | TableGenericFilter;
|
|
1368
1370
|
type TableDateFilter = (typeof TableFilterOperator.date)[number] | TableGenericFilter;
|
|
1371
|
+
type TableDatetimeFilter = (typeof TableFilterOperator.datetime)[number] | TableGenericFilter;
|
|
1369
1372
|
type TableBooleanFilter = (typeof TableFilterOperator.boolean)[number] | TableGenericFilter;
|
|
1370
1373
|
type TableTagsFilter = (typeof TableFilterOperator.tags)[number] | TableGenericFilter;
|
|
1371
|
-
type
|
|
1374
|
+
type TableTagsSingleFilter = (typeof TableFilterOperator.tagsSingle)[number] | TableGenericFilter;
|
|
1375
|
+
type TableFilterType = TableTextFilter | TableNumberFilter | TableDateFilter | TableDatetimeFilter | TableBooleanFilter | TableTagsFilter | TableTagsSingleFilter | TableGenericFilter;
|
|
1372
1376
|
type TableFilterCategory = keyof typeof TableFilterOperator;
|
|
1373
1377
|
declare function isTableFilterCategory(value: unknown): value is TableFilterCategory;
|
|
1374
1378
|
type TextFilterParameter = {
|
|
1375
1379
|
searchText?: string;
|
|
1380
|
+
isCaseSensitive?: boolean;
|
|
1376
1381
|
};
|
|
1377
1382
|
type NumberFilterParameter = {
|
|
1378
1383
|
compareValue?: number;
|
|
@@ -1384,10 +1389,19 @@ type DateFilterParameter = {
|
|
|
1384
1389
|
min?: Date;
|
|
1385
1390
|
max?: Date;
|
|
1386
1391
|
};
|
|
1392
|
+
type DatetimeFilterParameter = {
|
|
1393
|
+
compareDatetime?: Date;
|
|
1394
|
+
min?: Date;
|
|
1395
|
+
max?: Date;
|
|
1396
|
+
};
|
|
1387
1397
|
type BooleanFilterParameter = Record<string, never>;
|
|
1388
1398
|
type TagsFilterParameter = {
|
|
1389
1399
|
searchTags?: unknown[];
|
|
1390
1400
|
};
|
|
1401
|
+
type TagsSingleFilterParameter = {
|
|
1402
|
+
searchTag?: unknown;
|
|
1403
|
+
searchTagsContains?: unknown[];
|
|
1404
|
+
};
|
|
1391
1405
|
type GenericFilterParameter = Record<string, never>;
|
|
1392
1406
|
type TextFilterValue = {
|
|
1393
1407
|
operator: TableTextFilter;
|
|
@@ -1401,6 +1415,10 @@ type DateFilterValue = {
|
|
|
1401
1415
|
operator: TableDateFilter;
|
|
1402
1416
|
parameter: DateFilterParameter;
|
|
1403
1417
|
};
|
|
1418
|
+
type DatetimeFilterValue = {
|
|
1419
|
+
operator: TableDatetimeFilter;
|
|
1420
|
+
parameter: DatetimeFilterParameter;
|
|
1421
|
+
};
|
|
1404
1422
|
type BooleanFilterValue = {
|
|
1405
1423
|
operator: TableBooleanFilter;
|
|
1406
1424
|
parameter: BooleanFilterParameter;
|
|
@@ -1409,17 +1427,23 @@ type TagsFilterValue = {
|
|
|
1409
1427
|
operator: TableTagsFilter;
|
|
1410
1428
|
parameter: TagsFilterParameter;
|
|
1411
1429
|
};
|
|
1430
|
+
type TagsSingleFilterValue = {
|
|
1431
|
+
operator: TableTagsSingleFilter;
|
|
1432
|
+
parameter: TagsSingleFilterParameter;
|
|
1433
|
+
};
|
|
1412
1434
|
type GenericFilterValue = {
|
|
1413
1435
|
operator: TableGenericFilter;
|
|
1414
1436
|
parameter: GenericFilterParameter;
|
|
1415
1437
|
};
|
|
1416
|
-
type TableFilterValue = TextFilterValue | NumberFilterValue | DateFilterValue | BooleanFilterValue | TagsFilterValue | GenericFilterValue;
|
|
1438
|
+
type TableFilterValue = TextFilterValue | NumberFilterValue | DateFilterValue | DatetimeFilterValue | BooleanFilterValue | TagsFilterValue | TagsSingleFilterValue | GenericFilterValue;
|
|
1417
1439
|
declare const TableFilter: {
|
|
1418
1440
|
text: FilterFn<unknown>;
|
|
1419
1441
|
number: FilterFn<unknown>;
|
|
1420
1442
|
date: FilterFn<unknown>;
|
|
1443
|
+
datetime: FilterFn<unknown>;
|
|
1421
1444
|
boolean: FilterFn<unknown>;
|
|
1422
1445
|
tags: FilterFn<unknown>;
|
|
1446
|
+
tagsSingle: FilterFn<unknown>;
|
|
1423
1447
|
generic: FilterFn<unknown>;
|
|
1424
1448
|
};
|
|
1425
1449
|
|
|
@@ -1489,10 +1513,14 @@ type NumberFilterProps = TableFilterBaseProps<NumberFilterValue>;
|
|
|
1489
1513
|
declare const NumberFilter: ({ filterValue, onFilterValueChange }: NumberFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1490
1514
|
type DateFilterProps = TableFilterBaseProps<DateFilterValue>;
|
|
1491
1515
|
declare const DateFilter: ({ filterValue, onFilterValueChange }: DateFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1516
|
+
type DatetimeFilterProps = TableFilterBaseProps<DatetimeFilterValue>;
|
|
1517
|
+
declare const DatetimeFilter: ({ filterValue, onFilterValueChange }: DatetimeFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1492
1518
|
type BooleanFilterProps = TableFilterBaseProps<BooleanFilterValue>;
|
|
1493
1519
|
declare const BooleanFilter: ({ filterValue, onFilterValueChange }: BooleanFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1494
1520
|
type TagsFilterProps = TableFilterBaseProps<TagsFilterValue>;
|
|
1495
1521
|
declare const TagsFilter: ({ columnId, filterValue, onFilterValueChange }: TagsFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1522
|
+
type TagsSingleFilterProps = TableFilterBaseProps<TagsSingleFilterValue>;
|
|
1523
|
+
declare const TagsSingleFilter: ({ columnId, filterValue, onFilterValueChange }: TagsSingleFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1496
1524
|
type GenericFilterProps = TableFilterBaseProps<GenericFilterValue>;
|
|
1497
1525
|
declare const GenericFilter: ({ filterValue, onFilterValueChange }: GenericFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1498
1526
|
interface TableFilterContentProps extends TableFilterBaseProps<TableFilterValue> {
|
|
@@ -1672,6 +1700,7 @@ type HightideTranslationEntries = {
|
|
|
1672
1700
|
'between': string;
|
|
1673
1701
|
'cancel': string;
|
|
1674
1702
|
'carousel': string;
|
|
1703
|
+
'caseSensitive': string;
|
|
1675
1704
|
'change': string;
|
|
1676
1705
|
'changeColumnDisplay': string;
|
|
1677
1706
|
'chooseLanguage': string;
|
|
@@ -1804,6 +1833,10 @@ type HightideTranslationEntries = {
|
|
|
1804
1833
|
index: number;
|
|
1805
1834
|
length: number;
|
|
1806
1835
|
}) => string;
|
|
1836
|
+
'sorting': string;
|
|
1837
|
+
'sSortingState': (values: {
|
|
1838
|
+
sortDirection: string;
|
|
1839
|
+
}) => string;
|
|
1807
1840
|
'startDate': string;
|
|
1808
1841
|
'startsWith': string;
|
|
1809
1842
|
'sThemeMode': (values: {
|
|
@@ -2227,7 +2260,7 @@ type NumberPropertyProps = PropertyField<number> & {
|
|
|
2227
2260
|
/**
|
|
2228
2261
|
* An Input for number properties
|
|
2229
2262
|
*/
|
|
2230
|
-
declare const NumberProperty: ({ value,
|
|
2263
|
+
declare const NumberProperty: ({ value, onValueChange, onEditComplete, onValueClear, readOnly, suffix, ...baseProps }: NumberPropertyProps) => react_jsx_runtime.JSX.Element;
|
|
2231
2264
|
|
|
2232
2265
|
type SingleSelectPropertyProps = PropertyField<string> & PropsWithChildren;
|
|
2233
2266
|
/**
|
|
@@ -2239,7 +2272,7 @@ type TextPropertyProps = PropertyField<string>;
|
|
|
2239
2272
|
/**
|
|
2240
2273
|
* An Input for Text properties
|
|
2241
2274
|
*/
|
|
2242
|
-
declare const TextProperty: ({ value, readOnly,
|
|
2275
|
+
declare const TextProperty: ({ value, readOnly, onValueChange, onEditComplete, ...baseProps }: TextPropertyProps) => react_jsx_runtime.JSX.Element;
|
|
2243
2276
|
|
|
2244
2277
|
type MultiSelectProps = MultiSelectRootProps & {
|
|
2245
2278
|
contentPanelProps?: MultiSelectContentProps;
|
|
@@ -2643,6 +2676,40 @@ declare class EaseFunctions {
|
|
|
2643
2676
|
|
|
2644
2677
|
declare const validateEmail: (email: string) => boolean;
|
|
2645
2678
|
|
|
2679
|
+
/**
|
|
2680
|
+
* Filters a text value based on the provided filter value.
|
|
2681
|
+
*/
|
|
2682
|
+
declare function filterText(value: unknown, filterValue: TextFilterValue): boolean;
|
|
2683
|
+
/**
|
|
2684
|
+
* Filters a number value based on the provided filter value.
|
|
2685
|
+
*/
|
|
2686
|
+
declare function filterNumber(value: unknown, filterValue: NumberFilterValue): boolean;
|
|
2687
|
+
/**
|
|
2688
|
+
* Filters a date value based on the provided filter value.
|
|
2689
|
+
* Only compares dates, ignoring time components.
|
|
2690
|
+
*/
|
|
2691
|
+
declare function filterDate(value: unknown, filterValue: DateFilterValue): boolean;
|
|
2692
|
+
/**
|
|
2693
|
+
* Filters a datetime value based on the provided filter value.
|
|
2694
|
+
*/
|
|
2695
|
+
declare function filterDatetime(value: unknown, filterValue: DatetimeFilterValue): boolean;
|
|
2696
|
+
/**
|
|
2697
|
+
* Filters a boolean value based on the provided filter value.
|
|
2698
|
+
*/
|
|
2699
|
+
declare function filterBoolean(value: unknown, filterValue: BooleanFilterValue): boolean;
|
|
2700
|
+
/**
|
|
2701
|
+
* Filters a tags array value based on the provided filter value.
|
|
2702
|
+
*/
|
|
2703
|
+
declare function filterTags(value: unknown, filterValue: TagsFilterValue): boolean;
|
|
2704
|
+
/**
|
|
2705
|
+
* Filters a single tag value based on the provided filter value.
|
|
2706
|
+
*/
|
|
2707
|
+
declare function filterTagsSingle(value: unknown, filterValue: TagsSingleFilterValue): boolean;
|
|
2708
|
+
/**
|
|
2709
|
+
* Filters a generic value based on the provided filter value.
|
|
2710
|
+
*/
|
|
2711
|
+
declare function filterGeneric(value: unknown, filterValue: GenericFilterValue): boolean;
|
|
2712
|
+
|
|
2646
2713
|
/**
|
|
2647
2714
|
* 1 is forwards
|
|
2648
2715
|
*
|
|
@@ -2807,4 +2874,4 @@ declare class SessionStorageService extends StorageService {
|
|
|
2807
2874
|
|
|
2808
2875
|
declare const writeToClipboard: (text: string) => Promise<void>;
|
|
2809
2876
|
|
|
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 };
|
|
2877
|
+
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, DatetimeFilter, type DatetimeFilterParameter, type DatetimeFilterProps, type DatetimeFilterValue, 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, type TableDatetimeFilter, 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 TablePaginationMenuProps, type TablePaginationProps, type TableProps, TableProvider, type TableProviderProps, TableSortButton, type TableSortButtonProps, type TableTagsFilter, type TableTagsSingleFilter, type TableTextFilter, TableWithSelection, type TableWithSelectionProps, TableWithSelectionProvider, type TableWithSelectionProviderProps, TagIcon, type TagProps, TagsFilter, type TagsFilterParameter, type TagsFilterProps, type TagsFilterValue, TagsSingleFilter, type TagsSingleFilterParameter, type TagsSingleFilterProps, type TagsSingleFilterValue, 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, filterBoolean, filterDate, filterDatetime, filterGeneric, filterNumber, filterTags, filterTagsSingle, filterText, 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
|
@@ -313,7 +313,7 @@ type UseCreateFormResult<T extends FormValue> = {
|
|
|
313
313
|
store: FormStore<T>;
|
|
314
314
|
reset: () => void;
|
|
315
315
|
submit: () => void;
|
|
316
|
-
update: (updater: Partial<T> | ((current: T) => Partial<T>)) => void;
|
|
316
|
+
update: (updater: Partial<T> | ((current: T) => Partial<T>), triggerUpdate?: boolean) => void;
|
|
317
317
|
validateAll: () => void;
|
|
318
318
|
registerRef: (key: keyof T) => (el: HTMLElement | null) => void;
|
|
319
319
|
};
|
|
@@ -385,7 +385,7 @@ interface FormObserverResult<T extends FormValue> {
|
|
|
385
385
|
declare function useFormObserver<T extends FormValue>({ formStore }?: UseFormObserverProps<T>): FormObserverResult<T> | null;
|
|
386
386
|
interface UseFormObserverKeyProps<T extends FormValue, K extends keyof T> {
|
|
387
387
|
formStore?: FormStore<T>;
|
|
388
|
-
|
|
388
|
+
formKey: K;
|
|
389
389
|
}
|
|
390
390
|
interface FormObserverKeyResult<T extends FormValue, K extends keyof T> {
|
|
391
391
|
store: FormStore<T>;
|
|
@@ -394,7 +394,7 @@ interface FormObserverKeyResult<T extends FormValue, K extends keyof T> {
|
|
|
394
394
|
hasError: boolean;
|
|
395
395
|
touched: boolean;
|
|
396
396
|
}
|
|
397
|
-
declare function useFormObserverKey<T extends FormValue, K extends keyof T>({ formStore,
|
|
397
|
+
declare function useFormObserverKey<T extends FormValue, K extends keyof T>({ formStore, formKey }: UseFormObserverKeyProps<T, K>): FormObserverKeyResult<T, K> | null;
|
|
398
398
|
|
|
399
399
|
interface FormObserverProps<T extends FormValue> extends UseFormObserverProps<T> {
|
|
400
400
|
children: (bag: FormObserverResult<T>) => ReactNode;
|
|
@@ -403,7 +403,7 @@ declare const FormObserver: <T extends FormValue>({ children, formStore }: FormO
|
|
|
403
403
|
interface FormObserverKeyProps<T extends FormValue, K extends keyof T> extends UseFormObserverKeyProps<T, K> {
|
|
404
404
|
children: (bag: FormObserverKeyResult<T, K>) => ReactNode;
|
|
405
405
|
}
|
|
406
|
-
declare const FormObserverKey: <T extends FormValue, K extends keyof T>({ children, formStore,
|
|
406
|
+
declare const FormObserverKey: <T extends FormValue, K extends keyof T>({ children, formStore, formKey }: FormObserverKeyProps<T, K>) => ReactNode;
|
|
407
407
|
|
|
408
408
|
type FloatingElementAlignment = 'beforeStart' | 'afterStart' | 'center' | 'beforeEnd' | 'afterEnd';
|
|
409
409
|
type CalculatePositionOptions = {
|
|
@@ -1017,17 +1017,15 @@ declare const NavigationItemList: ({ items, ...restProps }: NavigationItemListPr
|
|
|
1017
1017
|
type NavigationProps = NavigationItemListProps;
|
|
1018
1018
|
declare const Navigation: ({ ...props }: NavigationProps) => react_jsx_runtime.JSX.Element;
|
|
1019
1019
|
|
|
1020
|
-
interface PaginationProps {
|
|
1020
|
+
interface PaginationProps extends Omit<HTMLAttributes<HTMLDivElement>, 'children'> {
|
|
1021
1021
|
pageIndex: number;
|
|
1022
1022
|
pageCount: number;
|
|
1023
1023
|
onPageIndexChanged?: (pageIndex: number) => void;
|
|
1024
|
-
className?: string;
|
|
1025
|
-
style?: CSSProperties;
|
|
1026
1024
|
}
|
|
1027
1025
|
/**
|
|
1028
1026
|
* A Component showing the pagination allowing first, before, next and last page navigation
|
|
1029
1027
|
*/
|
|
1030
|
-
declare const Pagination: ({ pageIndex, pageCount, onPageIndexChanged,
|
|
1028
|
+
declare const Pagination: ({ pageIndex, pageCount, onPageIndexChanged, ...props }: PaginationProps) => react_jsx_runtime.JSX.Element;
|
|
1031
1029
|
|
|
1032
1030
|
type StepperState = {
|
|
1033
1031
|
currentStep: number;
|
|
@@ -1147,6 +1145,7 @@ declare module '@tanstack/react-table' {
|
|
|
1147
1145
|
label: ReactNode;
|
|
1148
1146
|
}[];
|
|
1149
1147
|
};
|
|
1148
|
+
columnLabel?: string;
|
|
1150
1149
|
}
|
|
1151
1150
|
interface TableMeta<TData> {
|
|
1152
1151
|
headerRowClassName?: string;
|
|
@@ -1308,7 +1307,8 @@ declare const SelectUncontrolled: react.ForwardRefExoticComponent<Partial<FormFi
|
|
|
1308
1307
|
};
|
|
1309
1308
|
} & react.RefAttributes<HTMLButtonElement>>;
|
|
1310
1309
|
|
|
1311
|
-
|
|
1310
|
+
type TablePaginationMenuProps = Omit<PaginationProps, 'pageIndex' | 'pageCount'>;
|
|
1311
|
+
declare const TablePaginationMenu: ({ ...props }: TablePaginationMenuProps) => react_jsx_runtime.JSX.Element;
|
|
1312
1312
|
interface TablePageSizeSelectProps extends SelectProps {
|
|
1313
1313
|
pageSizeOptions?: number[];
|
|
1314
1314
|
}
|
|
@@ -1358,21 +1358,26 @@ declare const TableFilterOperator: {
|
|
|
1358
1358
|
readonly text: readonly ["textEquals", "textNotEquals", "textNotWhitespace", "textContains", "textNotContains", "textStartsWith", "textEndsWith"];
|
|
1359
1359
|
readonly number: readonly ["numberEquals", "numberNotEquals", "numberGreaterThan", "numberGreaterThanOrEqual", "numberLessThan", "numberLessThanOrEqual", "numberBetween", "numberNotBetween"];
|
|
1360
1360
|
readonly date: readonly ["dateEquals", "dateNotEquals", "dateGreaterThan", "dateGreaterThanOrEqual", "dateLessThan", "dateLessThanOrEqual", "dateBetween", "dateNotBetween"];
|
|
1361
|
+
readonly datetime: readonly ["datetimeEquals", "datetimeNotEquals", "datetimeGreaterThan", "datetimeGreaterThanOrEqual", "datetimeLessThan", "datetimeLessThanOrEqual", "datetimeBetween", "datetimeNotBetween"];
|
|
1361
1362
|
readonly boolean: readonly ["booleanIsTrue", "booleanIsFalse"];
|
|
1362
1363
|
readonly tags: readonly ["tagsEquals", "tagsNotEquals", "tagsContains", "tagsNotContains"];
|
|
1364
|
+
readonly tagsSingle: readonly ["tagsSingleEquals", "tagsSingleNotEquals", "tagsSingleContains", "tagsSingleNotContains"];
|
|
1363
1365
|
readonly generic: readonly ["undefined", "notUndefined"];
|
|
1364
1366
|
};
|
|
1365
1367
|
type TableGenericFilter = (typeof TableFilterOperator.generic)[number];
|
|
1366
1368
|
type TableTextFilter = (typeof TableFilterOperator.text)[number] | TableGenericFilter;
|
|
1367
1369
|
type TableNumberFilter = (typeof TableFilterOperator.number)[number] | TableGenericFilter;
|
|
1368
1370
|
type TableDateFilter = (typeof TableFilterOperator.date)[number] | TableGenericFilter;
|
|
1371
|
+
type TableDatetimeFilter = (typeof TableFilterOperator.datetime)[number] | TableGenericFilter;
|
|
1369
1372
|
type TableBooleanFilter = (typeof TableFilterOperator.boolean)[number] | TableGenericFilter;
|
|
1370
1373
|
type TableTagsFilter = (typeof TableFilterOperator.tags)[number] | TableGenericFilter;
|
|
1371
|
-
type
|
|
1374
|
+
type TableTagsSingleFilter = (typeof TableFilterOperator.tagsSingle)[number] | TableGenericFilter;
|
|
1375
|
+
type TableFilterType = TableTextFilter | TableNumberFilter | TableDateFilter | TableDatetimeFilter | TableBooleanFilter | TableTagsFilter | TableTagsSingleFilter | TableGenericFilter;
|
|
1372
1376
|
type TableFilterCategory = keyof typeof TableFilterOperator;
|
|
1373
1377
|
declare function isTableFilterCategory(value: unknown): value is TableFilterCategory;
|
|
1374
1378
|
type TextFilterParameter = {
|
|
1375
1379
|
searchText?: string;
|
|
1380
|
+
isCaseSensitive?: boolean;
|
|
1376
1381
|
};
|
|
1377
1382
|
type NumberFilterParameter = {
|
|
1378
1383
|
compareValue?: number;
|
|
@@ -1384,10 +1389,19 @@ type DateFilterParameter = {
|
|
|
1384
1389
|
min?: Date;
|
|
1385
1390
|
max?: Date;
|
|
1386
1391
|
};
|
|
1392
|
+
type DatetimeFilterParameter = {
|
|
1393
|
+
compareDatetime?: Date;
|
|
1394
|
+
min?: Date;
|
|
1395
|
+
max?: Date;
|
|
1396
|
+
};
|
|
1387
1397
|
type BooleanFilterParameter = Record<string, never>;
|
|
1388
1398
|
type TagsFilterParameter = {
|
|
1389
1399
|
searchTags?: unknown[];
|
|
1390
1400
|
};
|
|
1401
|
+
type TagsSingleFilterParameter = {
|
|
1402
|
+
searchTag?: unknown;
|
|
1403
|
+
searchTagsContains?: unknown[];
|
|
1404
|
+
};
|
|
1391
1405
|
type GenericFilterParameter = Record<string, never>;
|
|
1392
1406
|
type TextFilterValue = {
|
|
1393
1407
|
operator: TableTextFilter;
|
|
@@ -1401,6 +1415,10 @@ type DateFilterValue = {
|
|
|
1401
1415
|
operator: TableDateFilter;
|
|
1402
1416
|
parameter: DateFilterParameter;
|
|
1403
1417
|
};
|
|
1418
|
+
type DatetimeFilterValue = {
|
|
1419
|
+
operator: TableDatetimeFilter;
|
|
1420
|
+
parameter: DatetimeFilterParameter;
|
|
1421
|
+
};
|
|
1404
1422
|
type BooleanFilterValue = {
|
|
1405
1423
|
operator: TableBooleanFilter;
|
|
1406
1424
|
parameter: BooleanFilterParameter;
|
|
@@ -1409,17 +1427,23 @@ type TagsFilterValue = {
|
|
|
1409
1427
|
operator: TableTagsFilter;
|
|
1410
1428
|
parameter: TagsFilterParameter;
|
|
1411
1429
|
};
|
|
1430
|
+
type TagsSingleFilterValue = {
|
|
1431
|
+
operator: TableTagsSingleFilter;
|
|
1432
|
+
parameter: TagsSingleFilterParameter;
|
|
1433
|
+
};
|
|
1412
1434
|
type GenericFilterValue = {
|
|
1413
1435
|
operator: TableGenericFilter;
|
|
1414
1436
|
parameter: GenericFilterParameter;
|
|
1415
1437
|
};
|
|
1416
|
-
type TableFilterValue = TextFilterValue | NumberFilterValue | DateFilterValue | BooleanFilterValue | TagsFilterValue | GenericFilterValue;
|
|
1438
|
+
type TableFilterValue = TextFilterValue | NumberFilterValue | DateFilterValue | DatetimeFilterValue | BooleanFilterValue | TagsFilterValue | TagsSingleFilterValue | GenericFilterValue;
|
|
1417
1439
|
declare const TableFilter: {
|
|
1418
1440
|
text: FilterFn<unknown>;
|
|
1419
1441
|
number: FilterFn<unknown>;
|
|
1420
1442
|
date: FilterFn<unknown>;
|
|
1443
|
+
datetime: FilterFn<unknown>;
|
|
1421
1444
|
boolean: FilterFn<unknown>;
|
|
1422
1445
|
tags: FilterFn<unknown>;
|
|
1446
|
+
tagsSingle: FilterFn<unknown>;
|
|
1423
1447
|
generic: FilterFn<unknown>;
|
|
1424
1448
|
};
|
|
1425
1449
|
|
|
@@ -1489,10 +1513,14 @@ type NumberFilterProps = TableFilterBaseProps<NumberFilterValue>;
|
|
|
1489
1513
|
declare const NumberFilter: ({ filterValue, onFilterValueChange }: NumberFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1490
1514
|
type DateFilterProps = TableFilterBaseProps<DateFilterValue>;
|
|
1491
1515
|
declare const DateFilter: ({ filterValue, onFilterValueChange }: DateFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1516
|
+
type DatetimeFilterProps = TableFilterBaseProps<DatetimeFilterValue>;
|
|
1517
|
+
declare const DatetimeFilter: ({ filterValue, onFilterValueChange }: DatetimeFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1492
1518
|
type BooleanFilterProps = TableFilterBaseProps<BooleanFilterValue>;
|
|
1493
1519
|
declare const BooleanFilter: ({ filterValue, onFilterValueChange }: BooleanFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1494
1520
|
type TagsFilterProps = TableFilterBaseProps<TagsFilterValue>;
|
|
1495
1521
|
declare const TagsFilter: ({ columnId, filterValue, onFilterValueChange }: TagsFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1522
|
+
type TagsSingleFilterProps = TableFilterBaseProps<TagsSingleFilterValue>;
|
|
1523
|
+
declare const TagsSingleFilter: ({ columnId, filterValue, onFilterValueChange }: TagsSingleFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1496
1524
|
type GenericFilterProps = TableFilterBaseProps<GenericFilterValue>;
|
|
1497
1525
|
declare const GenericFilter: ({ filterValue, onFilterValueChange }: GenericFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1498
1526
|
interface TableFilterContentProps extends TableFilterBaseProps<TableFilterValue> {
|
|
@@ -1672,6 +1700,7 @@ type HightideTranslationEntries = {
|
|
|
1672
1700
|
'between': string;
|
|
1673
1701
|
'cancel': string;
|
|
1674
1702
|
'carousel': string;
|
|
1703
|
+
'caseSensitive': string;
|
|
1675
1704
|
'change': string;
|
|
1676
1705
|
'changeColumnDisplay': string;
|
|
1677
1706
|
'chooseLanguage': string;
|
|
@@ -1804,6 +1833,10 @@ type HightideTranslationEntries = {
|
|
|
1804
1833
|
index: number;
|
|
1805
1834
|
length: number;
|
|
1806
1835
|
}) => string;
|
|
1836
|
+
'sorting': string;
|
|
1837
|
+
'sSortingState': (values: {
|
|
1838
|
+
sortDirection: string;
|
|
1839
|
+
}) => string;
|
|
1807
1840
|
'startDate': string;
|
|
1808
1841
|
'startsWith': string;
|
|
1809
1842
|
'sThemeMode': (values: {
|
|
@@ -2227,7 +2260,7 @@ type NumberPropertyProps = PropertyField<number> & {
|
|
|
2227
2260
|
/**
|
|
2228
2261
|
* An Input for number properties
|
|
2229
2262
|
*/
|
|
2230
|
-
declare const NumberProperty: ({ value,
|
|
2263
|
+
declare const NumberProperty: ({ value, onValueChange, onEditComplete, onValueClear, readOnly, suffix, ...baseProps }: NumberPropertyProps) => react_jsx_runtime.JSX.Element;
|
|
2231
2264
|
|
|
2232
2265
|
type SingleSelectPropertyProps = PropertyField<string> & PropsWithChildren;
|
|
2233
2266
|
/**
|
|
@@ -2239,7 +2272,7 @@ type TextPropertyProps = PropertyField<string>;
|
|
|
2239
2272
|
/**
|
|
2240
2273
|
* An Input for Text properties
|
|
2241
2274
|
*/
|
|
2242
|
-
declare const TextProperty: ({ value, readOnly,
|
|
2275
|
+
declare const TextProperty: ({ value, readOnly, onValueChange, onEditComplete, ...baseProps }: TextPropertyProps) => react_jsx_runtime.JSX.Element;
|
|
2243
2276
|
|
|
2244
2277
|
type MultiSelectProps = MultiSelectRootProps & {
|
|
2245
2278
|
contentPanelProps?: MultiSelectContentProps;
|
|
@@ -2643,6 +2676,40 @@ declare class EaseFunctions {
|
|
|
2643
2676
|
|
|
2644
2677
|
declare const validateEmail: (email: string) => boolean;
|
|
2645
2678
|
|
|
2679
|
+
/**
|
|
2680
|
+
* Filters a text value based on the provided filter value.
|
|
2681
|
+
*/
|
|
2682
|
+
declare function filterText(value: unknown, filterValue: TextFilterValue): boolean;
|
|
2683
|
+
/**
|
|
2684
|
+
* Filters a number value based on the provided filter value.
|
|
2685
|
+
*/
|
|
2686
|
+
declare function filterNumber(value: unknown, filterValue: NumberFilterValue): boolean;
|
|
2687
|
+
/**
|
|
2688
|
+
* Filters a date value based on the provided filter value.
|
|
2689
|
+
* Only compares dates, ignoring time components.
|
|
2690
|
+
*/
|
|
2691
|
+
declare function filterDate(value: unknown, filterValue: DateFilterValue): boolean;
|
|
2692
|
+
/**
|
|
2693
|
+
* Filters a datetime value based on the provided filter value.
|
|
2694
|
+
*/
|
|
2695
|
+
declare function filterDatetime(value: unknown, filterValue: DatetimeFilterValue): boolean;
|
|
2696
|
+
/**
|
|
2697
|
+
* Filters a boolean value based on the provided filter value.
|
|
2698
|
+
*/
|
|
2699
|
+
declare function filterBoolean(value: unknown, filterValue: BooleanFilterValue): boolean;
|
|
2700
|
+
/**
|
|
2701
|
+
* Filters a tags array value based on the provided filter value.
|
|
2702
|
+
*/
|
|
2703
|
+
declare function filterTags(value: unknown, filterValue: TagsFilterValue): boolean;
|
|
2704
|
+
/**
|
|
2705
|
+
* Filters a single tag value based on the provided filter value.
|
|
2706
|
+
*/
|
|
2707
|
+
declare function filterTagsSingle(value: unknown, filterValue: TagsSingleFilterValue): boolean;
|
|
2708
|
+
/**
|
|
2709
|
+
* Filters a generic value based on the provided filter value.
|
|
2710
|
+
*/
|
|
2711
|
+
declare function filterGeneric(value: unknown, filterValue: GenericFilterValue): boolean;
|
|
2712
|
+
|
|
2646
2713
|
/**
|
|
2647
2714
|
* 1 is forwards
|
|
2648
2715
|
*
|
|
@@ -2807,4 +2874,4 @@ declare class SessionStorageService extends StorageService {
|
|
|
2807
2874
|
|
|
2808
2875
|
declare const writeToClipboard: (text: string) => Promise<void>;
|
|
2809
2876
|
|
|
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 };
|
|
2877
|
+
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, DatetimeFilter, type DatetimeFilterParameter, type DatetimeFilterProps, type DatetimeFilterValue, 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, type TableDatetimeFilter, 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 TablePaginationMenuProps, type TablePaginationProps, type TableProps, TableProvider, type TableProviderProps, TableSortButton, type TableSortButtonProps, type TableTagsFilter, type TableTagsSingleFilter, type TableTextFilter, TableWithSelection, type TableWithSelectionProps, TableWithSelectionProvider, type TableWithSelectionProviderProps, TagIcon, type TagProps, TagsFilter, type TagsFilterParameter, type TagsFilterProps, type TagsFilterValue, TagsSingleFilter, type TagsSingleFilterParameter, type TagsSingleFilterProps, type TagsSingleFilterValue, 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, filterBoolean, filterDate, filterDatetime, filterGeneric, filterNumber, filterTags, filterTagsSingle, filterText, 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 };
|