@helpwave/hightide 0.6.12 → 0.6.14
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 +76 -6
- package/dist/index.d.ts +76 -6
- package/dist/index.js +787 -330
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +764 -317
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -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 = {
|
|
@@ -1145,6 +1145,7 @@ declare module '@tanstack/react-table' {
|
|
|
1145
1145
|
label: ReactNode;
|
|
1146
1146
|
}[];
|
|
1147
1147
|
};
|
|
1148
|
+
columnLabel?: string;
|
|
1148
1149
|
}
|
|
1149
1150
|
interface TableMeta<TData> {
|
|
1150
1151
|
headerRowClassName?: string;
|
|
@@ -1154,8 +1155,10 @@ declare module '@tanstack/react-table' {
|
|
|
1154
1155
|
text: FilterFn<unknown>;
|
|
1155
1156
|
number: FilterFn<unknown>;
|
|
1156
1157
|
date: FilterFn<unknown>;
|
|
1158
|
+
dateTime: FilterFn<unknown>;
|
|
1157
1159
|
boolean: FilterFn<unknown>;
|
|
1158
1160
|
tags: FilterFn<unknown>;
|
|
1161
|
+
tagsSingle: FilterFn<unknown>;
|
|
1159
1162
|
generic: FilterFn<unknown>;
|
|
1160
1163
|
}
|
|
1161
1164
|
}
|
|
@@ -1357,21 +1360,26 @@ declare const TableFilterOperator: {
|
|
|
1357
1360
|
readonly text: readonly ["textEquals", "textNotEquals", "textNotWhitespace", "textContains", "textNotContains", "textStartsWith", "textEndsWith"];
|
|
1358
1361
|
readonly number: readonly ["numberEquals", "numberNotEquals", "numberGreaterThan", "numberGreaterThanOrEqual", "numberLessThan", "numberLessThanOrEqual", "numberBetween", "numberNotBetween"];
|
|
1359
1362
|
readonly date: readonly ["dateEquals", "dateNotEquals", "dateGreaterThan", "dateGreaterThanOrEqual", "dateLessThan", "dateLessThanOrEqual", "dateBetween", "dateNotBetween"];
|
|
1363
|
+
readonly dateTime: readonly ["dateTimeEquals", "dateTimeNotEquals", "dateTimeGreaterThan", "dateTimeGreaterThanOrEqual", "dateTimeLessThan", "dateTimeLessThanOrEqual", "dateTimeBetween", "dateTimeNotBetween"];
|
|
1360
1364
|
readonly boolean: readonly ["booleanIsTrue", "booleanIsFalse"];
|
|
1361
1365
|
readonly tags: readonly ["tagsEquals", "tagsNotEquals", "tagsContains", "tagsNotContains"];
|
|
1366
|
+
readonly tagsSingle: readonly ["tagsSingleEquals", "tagsSingleNotEquals", "tagsSingleContains", "tagsSingleNotContains"];
|
|
1362
1367
|
readonly generic: readonly ["undefined", "notUndefined"];
|
|
1363
1368
|
};
|
|
1364
1369
|
type TableGenericFilter = (typeof TableFilterOperator.generic)[number];
|
|
1365
1370
|
type TableTextFilter = (typeof TableFilterOperator.text)[number] | TableGenericFilter;
|
|
1366
1371
|
type TableNumberFilter = (typeof TableFilterOperator.number)[number] | TableGenericFilter;
|
|
1367
1372
|
type TableDateFilter = (typeof TableFilterOperator.date)[number] | TableGenericFilter;
|
|
1373
|
+
type TableDatetimeFilter = (typeof TableFilterOperator.dateTime)[number] | TableGenericFilter;
|
|
1368
1374
|
type TableBooleanFilter = (typeof TableFilterOperator.boolean)[number] | TableGenericFilter;
|
|
1369
1375
|
type TableTagsFilter = (typeof TableFilterOperator.tags)[number] | TableGenericFilter;
|
|
1370
|
-
type
|
|
1376
|
+
type TableTagsSingleFilter = (typeof TableFilterOperator.tagsSingle)[number] | TableGenericFilter;
|
|
1377
|
+
type TableFilterType = TableTextFilter | TableNumberFilter | TableDateFilter | TableDatetimeFilter | TableBooleanFilter | TableTagsFilter | TableTagsSingleFilter | TableGenericFilter;
|
|
1371
1378
|
type TableFilterCategory = keyof typeof TableFilterOperator;
|
|
1372
1379
|
declare function isTableFilterCategory(value: unknown): value is TableFilterCategory;
|
|
1373
1380
|
type TextFilterParameter = {
|
|
1374
1381
|
searchText?: string;
|
|
1382
|
+
isCaseSensitive?: boolean;
|
|
1375
1383
|
};
|
|
1376
1384
|
type NumberFilterParameter = {
|
|
1377
1385
|
compareValue?: number;
|
|
@@ -1383,10 +1391,19 @@ type DateFilterParameter = {
|
|
|
1383
1391
|
min?: Date;
|
|
1384
1392
|
max?: Date;
|
|
1385
1393
|
};
|
|
1394
|
+
type DatetimeFilterParameter = {
|
|
1395
|
+
compareDatetime?: Date;
|
|
1396
|
+
min?: Date;
|
|
1397
|
+
max?: Date;
|
|
1398
|
+
};
|
|
1386
1399
|
type BooleanFilterParameter = Record<string, never>;
|
|
1387
1400
|
type TagsFilterParameter = {
|
|
1388
1401
|
searchTags?: unknown[];
|
|
1389
1402
|
};
|
|
1403
|
+
type TagsSingleFilterParameter = {
|
|
1404
|
+
searchTag?: unknown;
|
|
1405
|
+
searchTagsContains?: unknown[];
|
|
1406
|
+
};
|
|
1390
1407
|
type GenericFilterParameter = Record<string, never>;
|
|
1391
1408
|
type TextFilterValue = {
|
|
1392
1409
|
operator: TableTextFilter;
|
|
@@ -1400,6 +1417,10 @@ type DateFilterValue = {
|
|
|
1400
1417
|
operator: TableDateFilter;
|
|
1401
1418
|
parameter: DateFilterParameter;
|
|
1402
1419
|
};
|
|
1420
|
+
type DatetimeFilterValue = {
|
|
1421
|
+
operator: TableDatetimeFilter;
|
|
1422
|
+
parameter: DatetimeFilterParameter;
|
|
1423
|
+
};
|
|
1403
1424
|
type BooleanFilterValue = {
|
|
1404
1425
|
operator: TableBooleanFilter;
|
|
1405
1426
|
parameter: BooleanFilterParameter;
|
|
@@ -1408,17 +1429,23 @@ type TagsFilterValue = {
|
|
|
1408
1429
|
operator: TableTagsFilter;
|
|
1409
1430
|
parameter: TagsFilterParameter;
|
|
1410
1431
|
};
|
|
1432
|
+
type TagsSingleFilterValue = {
|
|
1433
|
+
operator: TableTagsSingleFilter;
|
|
1434
|
+
parameter: TagsSingleFilterParameter;
|
|
1435
|
+
};
|
|
1411
1436
|
type GenericFilterValue = {
|
|
1412
1437
|
operator: TableGenericFilter;
|
|
1413
1438
|
parameter: GenericFilterParameter;
|
|
1414
1439
|
};
|
|
1415
|
-
type TableFilterValue = TextFilterValue | NumberFilterValue | DateFilterValue | BooleanFilterValue | TagsFilterValue | GenericFilterValue;
|
|
1440
|
+
type TableFilterValue = TextFilterValue | NumberFilterValue | DateFilterValue | DatetimeFilterValue | BooleanFilterValue | TagsFilterValue | TagsSingleFilterValue | GenericFilterValue;
|
|
1416
1441
|
declare const TableFilter: {
|
|
1417
1442
|
text: FilterFn<unknown>;
|
|
1418
1443
|
number: FilterFn<unknown>;
|
|
1419
1444
|
date: FilterFn<unknown>;
|
|
1445
|
+
dateTime: FilterFn<unknown>;
|
|
1420
1446
|
boolean: FilterFn<unknown>;
|
|
1421
1447
|
tags: FilterFn<unknown>;
|
|
1448
|
+
tagsSingle: FilterFn<unknown>;
|
|
1422
1449
|
generic: FilterFn<unknown>;
|
|
1423
1450
|
};
|
|
1424
1451
|
|
|
@@ -1488,10 +1515,14 @@ type NumberFilterProps = TableFilterBaseProps<NumberFilterValue>;
|
|
|
1488
1515
|
declare const NumberFilter: ({ filterValue, onFilterValueChange }: NumberFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1489
1516
|
type DateFilterProps = TableFilterBaseProps<DateFilterValue>;
|
|
1490
1517
|
declare const DateFilter: ({ filterValue, onFilterValueChange }: DateFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1518
|
+
type DatetimeFilterProps = TableFilterBaseProps<DatetimeFilterValue>;
|
|
1519
|
+
declare const DatetimeFilter: ({ filterValue, onFilterValueChange }: DatetimeFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1491
1520
|
type BooleanFilterProps = TableFilterBaseProps<BooleanFilterValue>;
|
|
1492
1521
|
declare const BooleanFilter: ({ filterValue, onFilterValueChange }: BooleanFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1493
1522
|
type TagsFilterProps = TableFilterBaseProps<TagsFilterValue>;
|
|
1494
1523
|
declare const TagsFilter: ({ columnId, filterValue, onFilterValueChange }: TagsFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1524
|
+
type TagsSingleFilterProps = TableFilterBaseProps<TagsSingleFilterValue>;
|
|
1525
|
+
declare const TagsSingleFilter: ({ columnId, filterValue, onFilterValueChange }: TagsSingleFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1495
1526
|
type GenericFilterProps = TableFilterBaseProps<GenericFilterValue>;
|
|
1496
1527
|
declare const GenericFilter: ({ filterValue, onFilterValueChange }: GenericFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1497
1528
|
interface TableFilterContentProps extends TableFilterBaseProps<TableFilterValue> {
|
|
@@ -1671,6 +1702,7 @@ type HightideTranslationEntries = {
|
|
|
1671
1702
|
'between': string;
|
|
1672
1703
|
'cancel': string;
|
|
1673
1704
|
'carousel': string;
|
|
1705
|
+
'caseSensitive': string;
|
|
1674
1706
|
'change': string;
|
|
1675
1707
|
'changeColumnDisplay': string;
|
|
1676
1708
|
'chooseLanguage': string;
|
|
@@ -1803,6 +1835,10 @@ type HightideTranslationEntries = {
|
|
|
1803
1835
|
index: number;
|
|
1804
1836
|
length: number;
|
|
1805
1837
|
}) => string;
|
|
1838
|
+
'sorting': string;
|
|
1839
|
+
'sSortingState': (values: {
|
|
1840
|
+
sortDirection: string;
|
|
1841
|
+
}) => string;
|
|
1806
1842
|
'startDate': string;
|
|
1807
1843
|
'startsWith': string;
|
|
1808
1844
|
'sThemeMode': (values: {
|
|
@@ -2642,6 +2678,40 @@ declare class EaseFunctions {
|
|
|
2642
2678
|
|
|
2643
2679
|
declare const validateEmail: (email: string) => boolean;
|
|
2644
2680
|
|
|
2681
|
+
/**
|
|
2682
|
+
* Filters a text value based on the provided filter value.
|
|
2683
|
+
*/
|
|
2684
|
+
declare function filterText(value: unknown, filterValue: TextFilterValue): boolean;
|
|
2685
|
+
/**
|
|
2686
|
+
* Filters a number value based on the provided filter value.
|
|
2687
|
+
*/
|
|
2688
|
+
declare function filterNumber(value: unknown, filterValue: NumberFilterValue): boolean;
|
|
2689
|
+
/**
|
|
2690
|
+
* Filters a date value based on the provided filter value.
|
|
2691
|
+
* Only compares dates, ignoring time components.
|
|
2692
|
+
*/
|
|
2693
|
+
declare function filterDate(value: unknown, filterValue: DateFilterValue): boolean;
|
|
2694
|
+
/**
|
|
2695
|
+
* Filters a dateTime value based on the provided filter value.
|
|
2696
|
+
*/
|
|
2697
|
+
declare function filterDatetime(value: unknown, filterValue: DatetimeFilterValue): boolean;
|
|
2698
|
+
/**
|
|
2699
|
+
* Filters a boolean value based on the provided filter value.
|
|
2700
|
+
*/
|
|
2701
|
+
declare function filterBoolean(value: unknown, filterValue: BooleanFilterValue): boolean;
|
|
2702
|
+
/**
|
|
2703
|
+
* Filters a tags array value based on the provided filter value.
|
|
2704
|
+
*/
|
|
2705
|
+
declare function filterTags(value: unknown, filterValue: TagsFilterValue): boolean;
|
|
2706
|
+
/**
|
|
2707
|
+
* Filters a single tag value based on the provided filter value.
|
|
2708
|
+
*/
|
|
2709
|
+
declare function filterTagsSingle(value: unknown, filterValue: TagsSingleFilterValue): boolean;
|
|
2710
|
+
/**
|
|
2711
|
+
* Filters a generic value based on the provided filter value.
|
|
2712
|
+
*/
|
|
2713
|
+
declare function filterGeneric(value: unknown, filterValue: GenericFilterValue): boolean;
|
|
2714
|
+
|
|
2645
2715
|
/**
|
|
2646
2716
|
* 1 is forwards
|
|
2647
2717
|
*
|
|
@@ -2806,4 +2876,4 @@ declare class SessionStorageService extends StorageService {
|
|
|
2806
2876
|
|
|
2807
2877
|
declare const writeToClipboard: (text: string) => Promise<void>;
|
|
2808
2878
|
|
|
2809
|
-
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 TablePaginationMenuProps, 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 };
|
|
2879
|
+
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
|
@@ -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 = {
|
|
@@ -1145,6 +1145,7 @@ declare module '@tanstack/react-table' {
|
|
|
1145
1145
|
label: ReactNode;
|
|
1146
1146
|
}[];
|
|
1147
1147
|
};
|
|
1148
|
+
columnLabel?: string;
|
|
1148
1149
|
}
|
|
1149
1150
|
interface TableMeta<TData> {
|
|
1150
1151
|
headerRowClassName?: string;
|
|
@@ -1154,8 +1155,10 @@ declare module '@tanstack/react-table' {
|
|
|
1154
1155
|
text: FilterFn<unknown>;
|
|
1155
1156
|
number: FilterFn<unknown>;
|
|
1156
1157
|
date: FilterFn<unknown>;
|
|
1158
|
+
dateTime: FilterFn<unknown>;
|
|
1157
1159
|
boolean: FilterFn<unknown>;
|
|
1158
1160
|
tags: FilterFn<unknown>;
|
|
1161
|
+
tagsSingle: FilterFn<unknown>;
|
|
1159
1162
|
generic: FilterFn<unknown>;
|
|
1160
1163
|
}
|
|
1161
1164
|
}
|
|
@@ -1357,21 +1360,26 @@ declare const TableFilterOperator: {
|
|
|
1357
1360
|
readonly text: readonly ["textEquals", "textNotEquals", "textNotWhitespace", "textContains", "textNotContains", "textStartsWith", "textEndsWith"];
|
|
1358
1361
|
readonly number: readonly ["numberEquals", "numberNotEquals", "numberGreaterThan", "numberGreaterThanOrEqual", "numberLessThan", "numberLessThanOrEqual", "numberBetween", "numberNotBetween"];
|
|
1359
1362
|
readonly date: readonly ["dateEquals", "dateNotEquals", "dateGreaterThan", "dateGreaterThanOrEqual", "dateLessThan", "dateLessThanOrEqual", "dateBetween", "dateNotBetween"];
|
|
1363
|
+
readonly dateTime: readonly ["dateTimeEquals", "dateTimeNotEquals", "dateTimeGreaterThan", "dateTimeGreaterThanOrEqual", "dateTimeLessThan", "dateTimeLessThanOrEqual", "dateTimeBetween", "dateTimeNotBetween"];
|
|
1360
1364
|
readonly boolean: readonly ["booleanIsTrue", "booleanIsFalse"];
|
|
1361
1365
|
readonly tags: readonly ["tagsEquals", "tagsNotEquals", "tagsContains", "tagsNotContains"];
|
|
1366
|
+
readonly tagsSingle: readonly ["tagsSingleEquals", "tagsSingleNotEquals", "tagsSingleContains", "tagsSingleNotContains"];
|
|
1362
1367
|
readonly generic: readonly ["undefined", "notUndefined"];
|
|
1363
1368
|
};
|
|
1364
1369
|
type TableGenericFilter = (typeof TableFilterOperator.generic)[number];
|
|
1365
1370
|
type TableTextFilter = (typeof TableFilterOperator.text)[number] | TableGenericFilter;
|
|
1366
1371
|
type TableNumberFilter = (typeof TableFilterOperator.number)[number] | TableGenericFilter;
|
|
1367
1372
|
type TableDateFilter = (typeof TableFilterOperator.date)[number] | TableGenericFilter;
|
|
1373
|
+
type TableDatetimeFilter = (typeof TableFilterOperator.dateTime)[number] | TableGenericFilter;
|
|
1368
1374
|
type TableBooleanFilter = (typeof TableFilterOperator.boolean)[number] | TableGenericFilter;
|
|
1369
1375
|
type TableTagsFilter = (typeof TableFilterOperator.tags)[number] | TableGenericFilter;
|
|
1370
|
-
type
|
|
1376
|
+
type TableTagsSingleFilter = (typeof TableFilterOperator.tagsSingle)[number] | TableGenericFilter;
|
|
1377
|
+
type TableFilterType = TableTextFilter | TableNumberFilter | TableDateFilter | TableDatetimeFilter | TableBooleanFilter | TableTagsFilter | TableTagsSingleFilter | TableGenericFilter;
|
|
1371
1378
|
type TableFilterCategory = keyof typeof TableFilterOperator;
|
|
1372
1379
|
declare function isTableFilterCategory(value: unknown): value is TableFilterCategory;
|
|
1373
1380
|
type TextFilterParameter = {
|
|
1374
1381
|
searchText?: string;
|
|
1382
|
+
isCaseSensitive?: boolean;
|
|
1375
1383
|
};
|
|
1376
1384
|
type NumberFilterParameter = {
|
|
1377
1385
|
compareValue?: number;
|
|
@@ -1383,10 +1391,19 @@ type DateFilterParameter = {
|
|
|
1383
1391
|
min?: Date;
|
|
1384
1392
|
max?: Date;
|
|
1385
1393
|
};
|
|
1394
|
+
type DatetimeFilterParameter = {
|
|
1395
|
+
compareDatetime?: Date;
|
|
1396
|
+
min?: Date;
|
|
1397
|
+
max?: Date;
|
|
1398
|
+
};
|
|
1386
1399
|
type BooleanFilterParameter = Record<string, never>;
|
|
1387
1400
|
type TagsFilterParameter = {
|
|
1388
1401
|
searchTags?: unknown[];
|
|
1389
1402
|
};
|
|
1403
|
+
type TagsSingleFilterParameter = {
|
|
1404
|
+
searchTag?: unknown;
|
|
1405
|
+
searchTagsContains?: unknown[];
|
|
1406
|
+
};
|
|
1390
1407
|
type GenericFilterParameter = Record<string, never>;
|
|
1391
1408
|
type TextFilterValue = {
|
|
1392
1409
|
operator: TableTextFilter;
|
|
@@ -1400,6 +1417,10 @@ type DateFilterValue = {
|
|
|
1400
1417
|
operator: TableDateFilter;
|
|
1401
1418
|
parameter: DateFilterParameter;
|
|
1402
1419
|
};
|
|
1420
|
+
type DatetimeFilterValue = {
|
|
1421
|
+
operator: TableDatetimeFilter;
|
|
1422
|
+
parameter: DatetimeFilterParameter;
|
|
1423
|
+
};
|
|
1403
1424
|
type BooleanFilterValue = {
|
|
1404
1425
|
operator: TableBooleanFilter;
|
|
1405
1426
|
parameter: BooleanFilterParameter;
|
|
@@ -1408,17 +1429,23 @@ type TagsFilterValue = {
|
|
|
1408
1429
|
operator: TableTagsFilter;
|
|
1409
1430
|
parameter: TagsFilterParameter;
|
|
1410
1431
|
};
|
|
1432
|
+
type TagsSingleFilterValue = {
|
|
1433
|
+
operator: TableTagsSingleFilter;
|
|
1434
|
+
parameter: TagsSingleFilterParameter;
|
|
1435
|
+
};
|
|
1411
1436
|
type GenericFilterValue = {
|
|
1412
1437
|
operator: TableGenericFilter;
|
|
1413
1438
|
parameter: GenericFilterParameter;
|
|
1414
1439
|
};
|
|
1415
|
-
type TableFilterValue = TextFilterValue | NumberFilterValue | DateFilterValue | BooleanFilterValue | TagsFilterValue | GenericFilterValue;
|
|
1440
|
+
type TableFilterValue = TextFilterValue | NumberFilterValue | DateFilterValue | DatetimeFilterValue | BooleanFilterValue | TagsFilterValue | TagsSingleFilterValue | GenericFilterValue;
|
|
1416
1441
|
declare const TableFilter: {
|
|
1417
1442
|
text: FilterFn<unknown>;
|
|
1418
1443
|
number: FilterFn<unknown>;
|
|
1419
1444
|
date: FilterFn<unknown>;
|
|
1445
|
+
dateTime: FilterFn<unknown>;
|
|
1420
1446
|
boolean: FilterFn<unknown>;
|
|
1421
1447
|
tags: FilterFn<unknown>;
|
|
1448
|
+
tagsSingle: FilterFn<unknown>;
|
|
1422
1449
|
generic: FilterFn<unknown>;
|
|
1423
1450
|
};
|
|
1424
1451
|
|
|
@@ -1488,10 +1515,14 @@ type NumberFilterProps = TableFilterBaseProps<NumberFilterValue>;
|
|
|
1488
1515
|
declare const NumberFilter: ({ filterValue, onFilterValueChange }: NumberFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1489
1516
|
type DateFilterProps = TableFilterBaseProps<DateFilterValue>;
|
|
1490
1517
|
declare const DateFilter: ({ filterValue, onFilterValueChange }: DateFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1518
|
+
type DatetimeFilterProps = TableFilterBaseProps<DatetimeFilterValue>;
|
|
1519
|
+
declare const DatetimeFilter: ({ filterValue, onFilterValueChange }: DatetimeFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1491
1520
|
type BooleanFilterProps = TableFilterBaseProps<BooleanFilterValue>;
|
|
1492
1521
|
declare const BooleanFilter: ({ filterValue, onFilterValueChange }: BooleanFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1493
1522
|
type TagsFilterProps = TableFilterBaseProps<TagsFilterValue>;
|
|
1494
1523
|
declare const TagsFilter: ({ columnId, filterValue, onFilterValueChange }: TagsFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1524
|
+
type TagsSingleFilterProps = TableFilterBaseProps<TagsSingleFilterValue>;
|
|
1525
|
+
declare const TagsSingleFilter: ({ columnId, filterValue, onFilterValueChange }: TagsSingleFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1495
1526
|
type GenericFilterProps = TableFilterBaseProps<GenericFilterValue>;
|
|
1496
1527
|
declare const GenericFilter: ({ filterValue, onFilterValueChange }: GenericFilterProps) => react_jsx_runtime.JSX.Element;
|
|
1497
1528
|
interface TableFilterContentProps extends TableFilterBaseProps<TableFilterValue> {
|
|
@@ -1671,6 +1702,7 @@ type HightideTranslationEntries = {
|
|
|
1671
1702
|
'between': string;
|
|
1672
1703
|
'cancel': string;
|
|
1673
1704
|
'carousel': string;
|
|
1705
|
+
'caseSensitive': string;
|
|
1674
1706
|
'change': string;
|
|
1675
1707
|
'changeColumnDisplay': string;
|
|
1676
1708
|
'chooseLanguage': string;
|
|
@@ -1803,6 +1835,10 @@ type HightideTranslationEntries = {
|
|
|
1803
1835
|
index: number;
|
|
1804
1836
|
length: number;
|
|
1805
1837
|
}) => string;
|
|
1838
|
+
'sorting': string;
|
|
1839
|
+
'sSortingState': (values: {
|
|
1840
|
+
sortDirection: string;
|
|
1841
|
+
}) => string;
|
|
1806
1842
|
'startDate': string;
|
|
1807
1843
|
'startsWith': string;
|
|
1808
1844
|
'sThemeMode': (values: {
|
|
@@ -2642,6 +2678,40 @@ declare class EaseFunctions {
|
|
|
2642
2678
|
|
|
2643
2679
|
declare const validateEmail: (email: string) => boolean;
|
|
2644
2680
|
|
|
2681
|
+
/**
|
|
2682
|
+
* Filters a text value based on the provided filter value.
|
|
2683
|
+
*/
|
|
2684
|
+
declare function filterText(value: unknown, filterValue: TextFilterValue): boolean;
|
|
2685
|
+
/**
|
|
2686
|
+
* Filters a number value based on the provided filter value.
|
|
2687
|
+
*/
|
|
2688
|
+
declare function filterNumber(value: unknown, filterValue: NumberFilterValue): boolean;
|
|
2689
|
+
/**
|
|
2690
|
+
* Filters a date value based on the provided filter value.
|
|
2691
|
+
* Only compares dates, ignoring time components.
|
|
2692
|
+
*/
|
|
2693
|
+
declare function filterDate(value: unknown, filterValue: DateFilterValue): boolean;
|
|
2694
|
+
/**
|
|
2695
|
+
* Filters a dateTime value based on the provided filter value.
|
|
2696
|
+
*/
|
|
2697
|
+
declare function filterDatetime(value: unknown, filterValue: DatetimeFilterValue): boolean;
|
|
2698
|
+
/**
|
|
2699
|
+
* Filters a boolean value based on the provided filter value.
|
|
2700
|
+
*/
|
|
2701
|
+
declare function filterBoolean(value: unknown, filterValue: BooleanFilterValue): boolean;
|
|
2702
|
+
/**
|
|
2703
|
+
* Filters a tags array value based on the provided filter value.
|
|
2704
|
+
*/
|
|
2705
|
+
declare function filterTags(value: unknown, filterValue: TagsFilterValue): boolean;
|
|
2706
|
+
/**
|
|
2707
|
+
* Filters a single tag value based on the provided filter value.
|
|
2708
|
+
*/
|
|
2709
|
+
declare function filterTagsSingle(value: unknown, filterValue: TagsSingleFilterValue): boolean;
|
|
2710
|
+
/**
|
|
2711
|
+
* Filters a generic value based on the provided filter value.
|
|
2712
|
+
*/
|
|
2713
|
+
declare function filterGeneric(value: unknown, filterValue: GenericFilterValue): boolean;
|
|
2714
|
+
|
|
2645
2715
|
/**
|
|
2646
2716
|
* 1 is forwards
|
|
2647
2717
|
*
|
|
@@ -2806,4 +2876,4 @@ declare class SessionStorageService extends StorageService {
|
|
|
2806
2876
|
|
|
2807
2877
|
declare const writeToClipboard: (text: string) => Promise<void>;
|
|
2808
2878
|
|
|
2809
|
-
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 TablePaginationMenuProps, 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 };
|
|
2879
|
+
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 };
|