@helpwave/hightide 0.6.6 → 0.6.7

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.ts CHANGED
@@ -2,7 +2,7 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import * as react from 'react';
3
3
  import react__default, { HTMLAttributes, SVGProps, CSSProperties, ReactNode, PropsWithChildren, RefObject, Dispatch, SetStateAction, ButtonHTMLAttributes, InputHTMLAttributes, ComponentProps, TableHTMLAttributes, TextareaHTMLAttributes, LabelHTMLAttributes } from 'react';
4
4
  import Link from 'next/link';
5
- import { FilterFn, ColumnDef, Table, PaginationState, Row, RowData, Column, InitialTableState, TableState, TableOptions, SortDirection, RowSelectionState, ColumnSizingState } from '@tanstack/react-table';
5
+ import { ColumnDef, Table as Table$1, InitialTableState, Row, TableState, TableOptions, RowData, FilterFn, RowSelectionState, PaginationState, Column, SortDirection, ColumnSizingState } from '@tanstack/react-table';
6
6
  import { Translation, TranslationEntries, PartialTranslationExtension } from '@helpwave/internationalization';
7
7
 
8
8
  type Size = 'sm' | 'md' | 'lg';
@@ -367,6 +367,7 @@ type CalculatePositionOptions = {
367
367
  horizontalAlignment?: FloatingElementAlignment;
368
368
  screenPadding?: number;
369
369
  gap?: number;
370
+ avoidOverlap?: boolean;
370
371
  };
371
372
  type UseAnchoredPositionOptions = CalculatePositionOptions & {
372
373
  isPolling?: boolean;
@@ -378,7 +379,7 @@ type UseAnchoredPostitionProps = UseAnchoredPositionOptions & {
378
379
  window?: RefObject<HTMLElement>;
379
380
  active?: boolean;
380
381
  };
381
- declare function useAnchoredPosition({ active, window: windowRef, anchor: anchorRef, container: containerRef, isPolling, pollingInterval, verticalAlignment, horizontalAlignment, screenPadding, gap, }: UseAnchoredPostitionProps): CSSProperties;
382
+ declare function useAnchoredPosition({ active, window: windowRef, anchor: anchorRef, container: containerRef, isPolling, pollingInterval, verticalAlignment, horizontalAlignment, avoidOverlap, screenPadding, gap, }: UseAnchoredPostitionProps): CSSProperties;
382
383
 
383
384
  type BackgroundOverlayProps = HTMLAttributes<HTMLDivElement>;
384
385
  interface AnchoredFloatingContainerProps extends HTMLAttributes<HTMLDivElement> {
@@ -1080,120 +1081,17 @@ declare function PopUpRoot({ children, isOpen: controlledIsOpen, onIsOpenChange,
1080
1081
  type FillerCellProps = HTMLAttributes<HTMLDivElement>;
1081
1082
  declare const FillerCell: ({ ...props }: FillerCellProps) => react_jsx_runtime.JSX.Element;
1082
1083
 
1083
- declare const TableBody: react__default.NamedExoticComponent<object>;
1084
-
1085
- type TableCellProps = PropsWithChildren<{
1086
- className?: string;
1087
- }>;
1088
- declare const TableCell: ({ children, className, }: TableCellProps) => react_jsx_runtime.JSX.Element;
1089
-
1090
- declare const TableFilterOperator: {
1091
- readonly text: readonly ["textEquals", "textNotEquals", "textNotWhitespace", "textContains", "textNotContains", "textStartsWith", "textEndsWith"];
1092
- readonly number: readonly ["numberEquals", "numberNotEquals", "numberGreaterThan", "numberGreaterThanOrEqual", "numberLessThan", "numberLessThanOrEqual", "numberBetween", "numberNotBetween"];
1093
- readonly date: readonly ["dateEquals", "dateNotEquals", "dateGreaterThan", "dateGreaterThanOrEqual", "dateLessThan", "dateLessThanOrEqual", "dateBetween", "dateNotBetween"];
1094
- readonly boolean: readonly ["booleanIsTrue", "booleanIsFalse"];
1095
- readonly tags: readonly ["tagsEquals", "tagsNotEquals", "tagsContains", "tagsNotContains"];
1096
- readonly generic: readonly ["undefined", "notUndefined"];
1097
- };
1098
- type TableGenericFilter = (typeof TableFilterOperator.generic)[number];
1099
- type TableTextFilter = (typeof TableFilterOperator.text)[number] | TableGenericFilter;
1100
- type TableNumberFilter = (typeof TableFilterOperator.number)[number] | TableGenericFilter;
1101
- type TableDateFilter = (typeof TableFilterOperator.date)[number] | TableGenericFilter;
1102
- type TableBooleanFilter = (typeof TableFilterOperator.boolean)[number] | TableGenericFilter;
1103
- type TableTagsFilter = (typeof TableFilterOperator.tags)[number] | TableGenericFilter;
1104
- type TableFilterType = TableTextFilter | TableNumberFilter | TableDateFilter | TableBooleanFilter | TableTagsFilter | TableGenericFilter;
1105
- type TableFilterCategory = keyof typeof TableFilterOperator;
1106
- declare function isTableFilterCategory(value: unknown): value is TableFilterCategory;
1107
- type TextFilterParameter = {
1108
- searchText?: string;
1109
- };
1110
- type NumberFilterParameter = {
1111
- compareValue?: number;
1112
- min?: number;
1113
- max?: number;
1114
- };
1115
- type DateFilterParameter = {
1116
- compareDate?: Date;
1117
- min?: Date;
1118
- max?: Date;
1119
- };
1120
- type BooleanFilterParameter = Record<string, never>;
1121
- type TagsFilterParameter = {
1122
- searchTags?: unknown[];
1123
- };
1124
- type GenericFilterParameter = Record<string, never>;
1125
- type TextFilterValue = {
1126
- operator: TableTextFilter;
1127
- parameter: TextFilterParameter;
1128
- };
1129
- type NumberFilterValue = {
1130
- operator: TableNumberFilter;
1131
- parameter: NumberFilterParameter;
1132
- };
1133
- type DateFilterValue = {
1134
- operator: TableDateFilter;
1135
- parameter: DateFilterParameter;
1136
- };
1137
- type BooleanFilterValue = {
1138
- operator: TableBooleanFilter;
1139
- parameter: BooleanFilterParameter;
1140
- };
1141
- type TagsFilterValue = {
1142
- operator: TableTagsFilter;
1143
- parameter: TagsFilterParameter;
1144
- };
1145
- type GenericFilterValue = {
1146
- operator: TableGenericFilter;
1147
- parameter: GenericFilterParameter;
1148
- };
1149
- type TableFilterValue = TextFilterValue | NumberFilterValue | DateFilterValue | BooleanFilterValue | TagsFilterValue | GenericFilterValue;
1150
- declare const TableFilter: {
1151
- text: FilterFn<unknown>;
1152
- number: FilterFn<unknown>;
1153
- date: FilterFn<unknown>;
1154
- boolean: FilterFn<unknown>;
1155
- tags: FilterFn<unknown>;
1156
- generic: FilterFn<unknown>;
1157
- };
1158
-
1159
- type TableColumnProps<T> = ColumnDef<T> & {
1160
- filterType?: TableFilterCategory;
1161
- };
1162
- declare const TableColumn: <T>(props: TableColumnProps<T>) => react_jsx_runtime.JSX.Element;
1163
-
1164
- interface TableColumnPickerProps extends PopUpProps {
1165
- }
1166
- declare const TableColumnPicker: ({ ...props }: TableColumnPickerProps) => react_jsx_runtime.JSX.Element;
1167
-
1168
- type TableBodyContextType<T> = {
1169
- table: Table<T>;
1170
- columns: ColumnDef<T>[];
1084
+ type TableProviderProps<T> = {
1171
1085
  data: T[];
1172
- pagination: PaginationState;
1173
- isUsingFillerRows: boolean;
1174
- fillerRow: (columnId: string, table: Table<T>) => ReactNode;
1175
- onRowClick: (row: Row<T>, table: Table<T>) => void;
1176
- };
1177
- declare const TableBodyContext: react.Context<TableBodyContextType<any>>;
1178
- declare const useTableBodyContext: <T>() => TableBodyContextType<T>;
1179
- type TableColumnDefinitionContextType<T> = {
1180
- table: Table<T>;
1181
- registerColumn: (column: ColumnDef<T>) => () => void;
1182
- };
1183
- declare const TableColumnDefinitionContext: react.Context<TableColumnDefinitionContextType<any>>;
1184
- declare const useTableColumnDefinitionContext: <T>() => TableColumnDefinitionContextType<T>;
1185
- type TableHeaderContextType<T> = {
1186
- table: Table<T>;
1187
- sizeVars: Record<string, number>;
1188
- };
1189
- declare const TableHeaderContext: react.Context<TableHeaderContextType<any>>;
1190
- declare const useTableHeaderContext: <T>() => TableHeaderContextType<T>;
1191
- type TableContainerContextType<T> = {
1192
- table: Table<T>;
1193
- containerRef: RefObject<HTMLDivElement>;
1194
- };
1195
- declare const TableContainerContext: react.Context<TableContainerContextType<any>>;
1196
- declare const useTableContainerContext: <T>() => TableContainerContextType<T>;
1086
+ columns?: ColumnDef<T>[];
1087
+ children?: ReactNode;
1088
+ isUsingFillerRows?: boolean;
1089
+ fillerRow?: (columnId: string, table: Table$1<T>) => ReactNode;
1090
+ initialState?: Omit<InitialTableState, 'columnSizing'>;
1091
+ onRowClick?: (row: Row<T>, table: Table$1<T>) => void;
1092
+ state?: Omit<TableState, 'columnSizing'>;
1093
+ } & Partial<TableOptions<T>>;
1094
+ declare const TableProvider: <T>({ data, isUsingFillerRows, fillerRow, initialState, onRowClick, defaultColumn: defaultColumnOverwrite, state, columns: columnsProp, children, ...tableOptions }: TableProviderProps<T>) => react_jsx_runtime.JSX.Element;
1197
1095
 
1198
1096
  declare module '@tanstack/react-table' {
1199
1097
  interface ColumnMeta<TData extends RowData, TValue> {
@@ -1219,51 +1117,20 @@ declare module '@tanstack/react-table' {
1219
1117
  }
1220
1118
  }
1221
1119
 
1222
- interface TableDisplayProps<T> extends TableHTMLAttributes<HTMLTableElement> {
1223
- table?: Table<T>;
1120
+ type TableHeaderProps = {
1121
+ table?: Table$1<unknown>;
1122
+ isSticky?: boolean;
1123
+ };
1124
+ declare const TableHeader: ({ table: tableOverride, isSticky }: TableHeaderProps) => react_jsx_runtime.JSX.Element;
1125
+
1126
+ interface TableDisplayProps extends TableHTMLAttributes<HTMLTableElement> {
1224
1127
  containerProps?: Omit<React.HTMLAttributes<HTMLDivElement>, 'children'>;
1128
+ tableHeaderProps?: Omit<TableHeaderProps, 'children' | 'table'>;
1225
1129
  }
1226
1130
  /**
1227
- * The standard table
1131
+ * A display component for a table that requires a TableProvider for the table context
1228
1132
  */
1229
- declare const TableDisplay: <T>({ children, containerProps, ...props }: TableDisplayProps<T>) => react_jsx_runtime.JSX.Element;
1230
-
1231
- type TableFilterButtonProps<T = unknown> = {
1232
- filterType: TableFilterCategory;
1233
- column: Column<T>;
1234
- };
1235
- declare const TableFilterButton: <T>({ filterType, column, }: TableFilterButtonProps<T>) => react_jsx_runtime.JSX.Element;
1236
-
1237
- interface TableFilterBaseProps<T extends TableFilterValue> {
1238
- columnId: string;
1239
- filterValue?: T | undefined;
1240
- onFilterValueChange: (value: T | undefined) => void;
1241
- }
1242
- type OperatorLabelProps = {
1243
- operator: TableFilterType;
1244
- };
1245
- declare const OperatorLabel: ({ operator }: OperatorLabelProps) => react_jsx_runtime.JSX.Element;
1246
- type TextFilterProps = TableFilterBaseProps<TextFilterValue>;
1247
- declare const TextFilter: ({ filterValue, onFilterValueChange }: TextFilterProps) => react_jsx_runtime.JSX.Element;
1248
- type NumberFilterProps = TableFilterBaseProps<NumberFilterValue>;
1249
- declare const NumberFilter: ({ filterValue, onFilterValueChange }: NumberFilterProps) => react_jsx_runtime.JSX.Element;
1250
- type DateFilterProps = TableFilterBaseProps<DateFilterValue>;
1251
- declare const DateFilter: ({ filterValue, onFilterValueChange }: DateFilterProps) => react_jsx_runtime.JSX.Element;
1252
- type BooleanFilterProps = TableFilterBaseProps<BooleanFilterValue>;
1253
- declare const BooleanFilter: ({ filterValue, onFilterValueChange }: BooleanFilterProps) => react_jsx_runtime.JSX.Element;
1254
- type TagsFilterProps = TableFilterBaseProps<TagsFilterValue>;
1255
- declare const TagsFilter: ({ columnId, filterValue, onFilterValueChange }: TagsFilterProps) => react_jsx_runtime.JSX.Element;
1256
- type GenericFilterProps = TableFilterBaseProps<GenericFilterValue>;
1257
- declare const GenericFilter: ({ filterValue, onFilterValueChange }: GenericFilterProps) => react_jsx_runtime.JSX.Element;
1258
- interface TableFilterContentProps extends TableFilterBaseProps<TableFilterValue> {
1259
- filterType: TableFilterCategory;
1260
- }
1261
- declare const TableFilterContent: ({ filterType, ...props }: TableFilterContentProps) => react_jsx_runtime.JSX.Element;
1262
-
1263
- type TableHeaderProps<T> = {
1264
- table?: Table<T>;
1265
- };
1266
- declare const TableHeader: <T>({ table: tableOverride }: TableHeaderProps<T>) => react_jsx_runtime.JSX.Element;
1133
+ declare const TableDisplay: <T>({ children, containerProps, tableHeaderProps, ...props }: TableDisplayProps) => react_jsx_runtime.JSX.Element;
1267
1134
 
1268
1135
  type RegisteredOption = {
1269
1136
  value: string;
@@ -1396,23 +1263,196 @@ declare const SelectUncontrolled: react.ForwardRefExoticComponent<Partial<FormFi
1396
1263
  };
1397
1264
  } & react.RefAttributes<HTMLButtonElement>>;
1398
1265
 
1399
- declare const TablePagination: () => react_jsx_runtime.JSX.Element;
1400
- interface TablePageSizeControllerProps extends SelectProps {
1266
+ declare const TablePaginationMenu: () => react_jsx_runtime.JSX.Element;
1267
+ interface TablePageSizeSelectProps extends SelectProps {
1401
1268
  pageSizeOptions?: number[];
1402
1269
  }
1403
- declare const TablePageSizeController: ({ pageSizeOptions, ...props }: TablePageSizeControllerProps) => react_jsx_runtime.JSX.Element;
1270
+ declare const TablePageSizeSelect: ({ pageSizeOptions, ...props }: TablePageSizeSelectProps) => react_jsx_runtime.JSX.Element;
1271
+ interface TablePaginationProps extends HTMLAttributes<HTMLDivElement> {
1272
+ allowChangingPageSize?: boolean;
1273
+ pageSizeOptions?: number[];
1274
+ }
1275
+ declare const TablePagination: ({ allowChangingPageSize, pageSizeOptions, ...props }: TablePaginationProps) => react_jsx_runtime.JSX.Element;
1404
1276
 
1405
- type TableProviderProps<T> = {
1277
+ interface TableWithSelectionProviderProps<T> extends TableProviderProps<T> {
1278
+ rowSelection: RowSelectionState;
1279
+ disableClickRowClickSelection?: boolean;
1280
+ selectionRowId?: string;
1281
+ }
1282
+ declare const TableWithSelectionProvider: <T>({ children, state, fillerRow, rowSelection, disableClickRowClickSelection, selectionRowId, onRowClick, meta, ...props }: TableWithSelectionProviderProps<T>) => react_jsx_runtime.JSX.Element;
1283
+
1284
+ interface TableProps<T> extends HTMLAttributes<HTMLDivElement> {
1285
+ table: TableProviderProps<T>;
1286
+ paginationOptions?: TablePaginationProps & {
1287
+ showPagination?: boolean;
1288
+ };
1289
+ displayProps?: Omit<TableDisplayProps, 'children'>;
1290
+ header?: React.ReactNode;
1291
+ footer?: React.ReactNode;
1292
+ }
1293
+ declare const Table: <T>({ children, table, paginationOptions, displayProps, header, footer, ...props }: TableProps<T>) => react_jsx_runtime.JSX.Element;
1294
+ interface TableWithSelectionProps<T> extends HTMLAttributes<HTMLDivElement> {
1295
+ table: TableWithSelectionProviderProps<T>;
1296
+ paginationOptions?: TablePaginationProps & {
1297
+ showPagination?: boolean;
1298
+ };
1299
+ displayProps?: Omit<TableDisplayProps, 'children'>;
1300
+ header?: React.ReactNode;
1301
+ footer?: React.ReactNode;
1302
+ }
1303
+ declare const TableWithSelection: <T>({ children, table, paginationOptions, displayProps, header, footer, ...props }: TableWithSelectionProps<T>) => react_jsx_runtime.JSX.Element;
1304
+
1305
+ declare const TableBody: react__default.NamedExoticComponent<object>;
1306
+
1307
+ type TableCellProps = PropsWithChildren<{
1308
+ className?: string;
1309
+ }>;
1310
+ declare const TableCell: ({ children, className, }: TableCellProps) => react_jsx_runtime.JSX.Element;
1311
+
1312
+ declare const TableFilterOperator: {
1313
+ readonly text: readonly ["textEquals", "textNotEquals", "textNotWhitespace", "textContains", "textNotContains", "textStartsWith", "textEndsWith"];
1314
+ readonly number: readonly ["numberEquals", "numberNotEquals", "numberGreaterThan", "numberGreaterThanOrEqual", "numberLessThan", "numberLessThanOrEqual", "numberBetween", "numberNotBetween"];
1315
+ readonly date: readonly ["dateEquals", "dateNotEquals", "dateGreaterThan", "dateGreaterThanOrEqual", "dateLessThan", "dateLessThanOrEqual", "dateBetween", "dateNotBetween"];
1316
+ readonly boolean: readonly ["booleanIsTrue", "booleanIsFalse"];
1317
+ readonly tags: readonly ["tagsEquals", "tagsNotEquals", "tagsContains", "tagsNotContains"];
1318
+ readonly generic: readonly ["undefined", "notUndefined"];
1319
+ };
1320
+ type TableGenericFilter = (typeof TableFilterOperator.generic)[number];
1321
+ type TableTextFilter = (typeof TableFilterOperator.text)[number] | TableGenericFilter;
1322
+ type TableNumberFilter = (typeof TableFilterOperator.number)[number] | TableGenericFilter;
1323
+ type TableDateFilter = (typeof TableFilterOperator.date)[number] | TableGenericFilter;
1324
+ type TableBooleanFilter = (typeof TableFilterOperator.boolean)[number] | TableGenericFilter;
1325
+ type TableTagsFilter = (typeof TableFilterOperator.tags)[number] | TableGenericFilter;
1326
+ type TableFilterType = TableTextFilter | TableNumberFilter | TableDateFilter | TableBooleanFilter | TableTagsFilter | TableGenericFilter;
1327
+ type TableFilterCategory = keyof typeof TableFilterOperator;
1328
+ declare function isTableFilterCategory(value: unknown): value is TableFilterCategory;
1329
+ type TextFilterParameter = {
1330
+ searchText?: string;
1331
+ };
1332
+ type NumberFilterParameter = {
1333
+ compareValue?: number;
1334
+ min?: number;
1335
+ max?: number;
1336
+ };
1337
+ type DateFilterParameter = {
1338
+ compareDate?: Date;
1339
+ min?: Date;
1340
+ max?: Date;
1341
+ };
1342
+ type BooleanFilterParameter = Record<string, never>;
1343
+ type TagsFilterParameter = {
1344
+ searchTags?: unknown[];
1345
+ };
1346
+ type GenericFilterParameter = Record<string, never>;
1347
+ type TextFilterValue = {
1348
+ operator: TableTextFilter;
1349
+ parameter: TextFilterParameter;
1350
+ };
1351
+ type NumberFilterValue = {
1352
+ operator: TableNumberFilter;
1353
+ parameter: NumberFilterParameter;
1354
+ };
1355
+ type DateFilterValue = {
1356
+ operator: TableDateFilter;
1357
+ parameter: DateFilterParameter;
1358
+ };
1359
+ type BooleanFilterValue = {
1360
+ operator: TableBooleanFilter;
1361
+ parameter: BooleanFilterParameter;
1362
+ };
1363
+ type TagsFilterValue = {
1364
+ operator: TableTagsFilter;
1365
+ parameter: TagsFilterParameter;
1366
+ };
1367
+ type GenericFilterValue = {
1368
+ operator: TableGenericFilter;
1369
+ parameter: GenericFilterParameter;
1370
+ };
1371
+ type TableFilterValue = TextFilterValue | NumberFilterValue | DateFilterValue | BooleanFilterValue | TagsFilterValue | GenericFilterValue;
1372
+ declare const TableFilter: {
1373
+ text: FilterFn<unknown>;
1374
+ number: FilterFn<unknown>;
1375
+ date: FilterFn<unknown>;
1376
+ boolean: FilterFn<unknown>;
1377
+ tags: FilterFn<unknown>;
1378
+ generic: FilterFn<unknown>;
1379
+ };
1380
+
1381
+ type TableColumnProps<T> = ColumnDef<T> & {
1382
+ filterType?: TableFilterCategory;
1383
+ };
1384
+ declare const TableColumn: <T>(props: TableColumnProps<T>) => react_jsx_runtime.JSX.Element;
1385
+
1386
+ type TableColumnSwitcherPopUpProps = PopUpProps;
1387
+ declare const TableColumnSwitcherPopUp: ({ ...props }: TableColumnSwitcherPopUpProps) => react_jsx_runtime.JSX.Element;
1388
+ interface TableColumnSwitcherProps extends TableColumnSwitcherPopUpProps {
1389
+ buttonProps?: ButtonProps;
1390
+ }
1391
+ declare const TableColumnSwitcher: ({ buttonProps, ...props }: TableColumnSwitcherProps) => react_jsx_runtime.JSX.Element;
1392
+
1393
+ type TableDataContextType<T> = {
1394
+ table: Table$1<T>;
1395
+ columns: ColumnDef<T>[];
1396
+ rows: Row<T>[];
1397
+ rowSelection: RowSelectionState;
1406
1398
  data: T[];
1407
- columns?: ColumnDef<T>[];
1408
- children?: ReactNode;
1409
- isUsingFillerRows?: boolean;
1410
- fillerRow?: (columnId: string, table: Table<T>) => ReactNode;
1411
- initialState?: Omit<InitialTableState, 'columnSizing'>;
1412
- onRowClick?: (row: Row<T>, table: Table<T>) => void;
1413
- state?: Omit<TableState, 'columnSizing'>;
1414
- } & Partial<TableOptions<T>>;
1415
- declare const TableProvider: <T>({ data, isUsingFillerRows, fillerRow, initialState, onRowClick, defaultColumn: defaultColumnOverwrite, state, columns: columnsProp, children, ...tableOptions }: TableProviderProps<T>) => react_jsx_runtime.JSX.Element;
1399
+ pagination: PaginationState;
1400
+ isUsingFillerRows: boolean;
1401
+ fillerRow: (columnId: string, table: Table$1<T>) => ReactNode;
1402
+ onRowClick: (row: Row<T>, table: Table$1<T>) => void;
1403
+ };
1404
+ declare const TableDataContext: react.Context<TableDataContextType<any>>;
1405
+ declare const useTableDataContext: <T>() => TableDataContextType<T>;
1406
+ type TableColumnDefinitionContextType<T> = {
1407
+ table: Table$1<T>;
1408
+ registerColumn: (column: ColumnDef<T>) => () => void;
1409
+ };
1410
+ declare const TableColumnDefinitionContext: react.Context<TableColumnDefinitionContextType<any>>;
1411
+ declare const useTableColumnDefinitionContext: <T>() => TableColumnDefinitionContextType<T>;
1412
+ type TableHeaderContextType<T> = {
1413
+ table: Table$1<T>;
1414
+ sizeVars: Record<string, number>;
1415
+ };
1416
+ declare const TableHeaderContext: react.Context<TableHeaderContextType<any>>;
1417
+ declare const useTableHeaderContext: <T>() => TableHeaderContextType<T>;
1418
+ type TableContainerContextType<T> = {
1419
+ table: Table$1<T>;
1420
+ containerRef: RefObject<HTMLDivElement>;
1421
+ };
1422
+ declare const TableContainerContext: react.Context<TableContainerContextType<any>>;
1423
+ declare const useTableContainerContext: <T>() => TableContainerContextType<T>;
1424
+
1425
+ type TableFilterButtonProps<T = unknown> = {
1426
+ filterType: TableFilterCategory;
1427
+ column: Column<T>;
1428
+ };
1429
+ declare const TableFilterButton: <T>({ filterType, column, }: TableFilterButtonProps<T>) => react_jsx_runtime.JSX.Element;
1430
+
1431
+ interface TableFilterBaseProps<T extends TableFilterValue> {
1432
+ columnId: string;
1433
+ filterValue?: T | undefined;
1434
+ onFilterValueChange: (value: T | undefined) => void;
1435
+ }
1436
+ type OperatorLabelProps = {
1437
+ operator: TableFilterType;
1438
+ };
1439
+ declare const OperatorLabel: ({ operator }: OperatorLabelProps) => react_jsx_runtime.JSX.Element;
1440
+ type TextFilterProps = TableFilterBaseProps<TextFilterValue>;
1441
+ declare const TextFilter: ({ filterValue, onFilterValueChange }: TextFilterProps) => react_jsx_runtime.JSX.Element;
1442
+ type NumberFilterProps = TableFilterBaseProps<NumberFilterValue>;
1443
+ declare const NumberFilter: ({ filterValue, onFilterValueChange }: NumberFilterProps) => react_jsx_runtime.JSX.Element;
1444
+ type DateFilterProps = TableFilterBaseProps<DateFilterValue>;
1445
+ declare const DateFilter: ({ filterValue, onFilterValueChange }: DateFilterProps) => react_jsx_runtime.JSX.Element;
1446
+ type BooleanFilterProps = TableFilterBaseProps<BooleanFilterValue>;
1447
+ declare const BooleanFilter: ({ filterValue, onFilterValueChange }: BooleanFilterProps) => react_jsx_runtime.JSX.Element;
1448
+ type TagsFilterProps = TableFilterBaseProps<TagsFilterValue>;
1449
+ declare const TagsFilter: ({ columnId, filterValue, onFilterValueChange }: TagsFilterProps) => react_jsx_runtime.JSX.Element;
1450
+ type GenericFilterProps = TableFilterBaseProps<GenericFilterValue>;
1451
+ declare const GenericFilter: ({ filterValue, onFilterValueChange }: GenericFilterProps) => react_jsx_runtime.JSX.Element;
1452
+ interface TableFilterContentProps extends TableFilterBaseProps<TableFilterValue> {
1453
+ filterType: TableFilterCategory;
1454
+ }
1455
+ declare const TableFilterContent: ({ filterType, ...props }: TableFilterContentProps) => react_jsx_runtime.JSX.Element;
1416
1456
 
1417
1457
  type SortingIndexDisplay = {
1418
1458
  index: number;
@@ -1428,13 +1468,6 @@ type TableSortButtonProps = ButtonProps & {
1428
1468
  */
1429
1469
  declare const TableSortButton: ({ sortDirection, invert, color, size, className, sortingIndexDisplay, ...props }: TableSortButtonProps) => react_jsx_runtime.JSX.Element;
1430
1470
 
1431
- interface TableWithSelectionProviderProps<T> extends TableProviderProps<T> {
1432
- rowSelection: RowSelectionState;
1433
- disableClickRowClickSelection?: boolean;
1434
- selectionRowId?: string;
1435
- }
1436
- declare const TableWithSelectionProvider: <T>({ children, state, fillerRow, rowSelection, disableClickRowClickSelection, selectionRowId, onRowClick, meta, ...props }: TableWithSelectionProviderProps<T>) => react_jsx_runtime.JSX.Element;
1437
-
1438
1471
  type ColumnSizeCalculateTargetBehavoir = 'equalOrHigher';
1439
1472
  type ColumnSizeCalculateTarget = {
1440
1473
  width: number;
@@ -1594,6 +1627,7 @@ type HightideTranslationEntries = {
1594
1627
  'cancel': string;
1595
1628
  'carousel': string;
1596
1629
  'change': string;
1630
+ 'changeColumnDisplay': string;
1597
1631
  'chooseLanguage': string;
1598
1632
  'chooseSlide': string;
1599
1633
  'chooseTheme': string;
@@ -1633,6 +1667,7 @@ type HightideTranslationEntries = {
1633
1667
  'filterNonWhitespace': string;
1634
1668
  'filterNotUndefined': string;
1635
1669
  'filterUndefined': string;
1670
+ 'first': string;
1636
1671
  'goodToSeeYou': string;
1637
1672
  'greaterThan': string;
1638
1673
  'greaterThanOrEqual': string;
@@ -1643,6 +1678,7 @@ type HightideTranslationEntries = {
1643
1678
  'isFalse': string;
1644
1679
  'isTrue': string;
1645
1680
  'language': string;
1681
+ 'last': string;
1646
1682
  'less': string;
1647
1683
  'lessThan': string;
1648
1684
  'lessThanOrEqual': string;
@@ -1826,6 +1862,7 @@ type TooltipConfig = {
1826
1862
  * Number of milliseconds until the tooltip appears
1827
1863
  */
1828
1864
  appearDelay: number;
1865
+ isAnimated: boolean;
1829
1866
  };
1830
1867
  type ThemeConfig = {
1831
1868
  /**
@@ -1880,7 +1917,7 @@ interface TooltipProps extends PropsWithChildren, Partial<TooltipConfig> {
1880
1917
  * @param position The direction of the tooltip relative to the Container
1881
1918
  * @constructor
1882
1919
  */
1883
- declare const Tooltip: ({ tooltip, children, appearDelay: appearOverwrite, tooltipClassName, containerClassName, position, disabled, }: TooltipProps) => react_jsx_runtime.JSX.Element;
1920
+ declare const Tooltip: ({ tooltip, children, appearDelay: appearOverwrite, isAnimated: isAnimatedOverwrite, tooltipClassName, containerClassName, position, disabled, }: TooltipProps) => react_jsx_runtime.JSX.Element;
1884
1921
 
1885
1922
  type DurationJSON = {
1886
1923
  years: number;
@@ -2728,4 +2765,4 @@ declare class SessionStorageService extends StorageService {
2728
2765
 
2729
2766
  declare const writeToClipboard: (text: string) => Promise<void>;
2730
2767
 
2731
- export { ASTNodeInterpreter, type ASTNodeInterpreterProps, AnchoredFloatingContainer, type AnchoredFloatingContainerProps, AnimatedRing, type AnimatedRingProps, ArrayUtil, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, type BackgroundOverlayProps, type BagFunction, type BagFunctionOrNode, type BagFunctionOrValue, BagFunctionUtil, BooleanFilter, type BooleanFilterParameter, type BooleanFilterProps, type BooleanFilterValue, BreadCrumbGroup, BreadCrumbLink, type BreadCrumbLinkProps, type BreadCrumbProps, BreadCrumbs, Button, type ButtonColor, type ButtonProps, ButtonUtil, Carousel, type CarouselProps, CarouselSlide, type CarouselSlideProps, Checkbox, CheckboxProperty, type CheckboxPropertyProps, type CheckboxProps, CheckboxUncontrolled, type CheckboxUncontrolledProps, Chip, type ChipColor, ChipList, type ChipListProps, type ChipProps, ChipUtil, Circle, type CircleProps, type ColumnSizeCalculatoProps, ColumnSizeUtil, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogType, type ControlledStateProps, CopyToClipboardWrapper, type CopyToClipboardWrapperProps, type Crumb, DateFilter, type DateFilterParameter, type DateFilterProps, type DateFilterValue, DatePicker, type DatePickerProps, DatePickerUncontrolled, DateProperty, type DatePropertyProps, DateTimeInput, type DateTimeInputHandle, type DateTimeInputProps, DateTimePicker, DateTimePickerDialog, type DateTimePickerDialogProps, type DateTimePickerMode, type DateTimePickerProps, DateTimePickerUncontrolled, DateUtils, DayPicker, type DayPickerProps, DayPickerUncontrolled, type DeepPartial, Dialog, DialogContext, type DialogContextType, type DialogOpenerPassingProps, DialogOpenerWrapper, type DialogOpenerWrapperBag, type DialogOpenerWrapperProps, type DialogPosition, type DialogProps, DialogRoot, type DialogRootProps, type Direction, DiscardChangesDialog, DividerInserter, type DividerInserterProps, Drawer, type DrawerAligment, type DrawerProps, Duration, type DurationJSON, type EaseFunction, EaseFunctions, type EditCompleteOptions, type EditCompleteOptionsResolved, type ElementHandle, ErrorComponent, type ErrorComponentProps, type Exact, Expandable, ExpandableContent, type ExpandableContentProps, ExpandableHeader, type ExpandableHeaderProps, type ExpandableProps, ExpandableRoot, type ExpandableRootProps, ExpandableUncontrolled, ExpansionIcon, type ExpansionIconProps, type FAQItem, FAQSection, type FAQSectionProps, FillerCell, type FillerCellProps, type FloatingElementAlignment, FocusTrap, type FocusTrapProps, FocusTrapWrapper, type FocusTrapWrapperProps, FormContext, type FormContextType, type FormEvent, type FormEventListener, FormField, type FormFieldAriaAttributes, type FormFieldBag, type FormFieldDataHandling, type FormFieldFocusableElementProps, type FormFieldInteractionStates, FormFieldLayout, type FormFieldLayoutBag, type FormFieldLayoutIds, type FormFieldLayoutProps, type FormFieldProps, type FormFieldResult, FormProvider, type FormProviderProps, FormStore, type FormStoreProps, type FormValidationBehaviour, type FormValidator, type FormValue, GenericFilter, type GenericFilterParameter, type GenericFilterProps, type GenericFilterValue, HelpwaveBadge, type HelpwaveBadgeProps, HelpwaveLogo, type HelpwaveProps, type HighlightStartPositionBehavior, type HightideConfig, HightideConfigContext, HightideConfigProvider, type HightideConfigProviderProps, HightideProvider, type HightideTranslationEntries, type HightideTranslationLocales, InfiniteScroll, type InfiniteScrollProps, Input, InputDialog, type InputModalProps, type InputProps, InputUncontrolled, InsideLabelInput, InsideLabelInputUncontrolled, LanguageDialog, ListBox, ListBoxItem, type ListBoxItemProps, ListBoxMultiple, type ListBoxMultipleProps, ListBoxMultipleUncontrolled, type ListBoxMultipleUncontrolledProps, ListBoxPrimitive, type ListBoxPrimitiveProps, type ListBoxProps, ListBoxUncontrolled, type ListBoxUncontrolledProps, LoadingAndErrorComponent, type LoadingAndErrorComponentProps, LoadingAnimation, type LoadingAnimationProps, type LoadingComponentProps, LoadingContainer, LocalStorageService, LocaleContext, type LocaleContextValue, LocaleProvider, type LocaleProviderProps, type LocalizationConfig, LocalizationUtil, LoopingArrayCalculator, MarkdownInterpreter, type MarkdownInterpreterProps, MathUtil, Menu, type MenuBag, MenuItem, type MenuItemProps, type MenuProps, type Month, MultiSearchWithMapping, MultiSelect, MultiSelectButton, type MultiSelectButtonProps, MultiSelectChipDisplay, MultiSelectChipDisplayButton, type MultiSelectChipDisplayProps, MultiSelectChipDisplayUncontrolled, type MultiSelectChipDisplayUncontrolledProps, MultiSelectContent, type MultiSelectContentProps, MultiSelectOption, type MultiSelectOptionProps, MultiSelectProperty, type MultiSelectPropertyProps, type MultiSelectProps, MultiSelectRoot, type MultiSelectRootProps, MultiSelectUncontrolled, MultiSubjectSearchWithMapping, Navigation, NavigationItemList, type NavigationItemListProps, type NavigationItemType, type NavigationProps, NumberFilter, type NumberFilterParameter, type NumberFilterProps, type NumberFilterValue, NumberProperty, type NumberPropertyProps, OperatorLabel, type OperatorLabelProps, type OverlayItem, OverlayRegistry, Pagination, type PaginationProps, PopUp, PopUpContext, type PopUpContextType, PopUpOpener, type PopUpOpenerBag, type PopUpOpenerProps, type PopUpProps, PopUpRoot, type PopUpRootProps, Portal, type PortalProps, ProgressIndicator, type ProgressIndicatorProps, PromiseUtils, PropertyBase, type PropertyBaseProps, type PropertyField, PropsUtil, type PropsWithBagFunction, type PropsWithBagFunctionOrChildren, RadialRings, type RadialRingsProps, type Range, type RangeOptions, type ResolvedTheme, Ring, type RingProps, RingWave, type RingWaveProps, ScrollPicker, type ScrollPickerProps, SearchBar, type SearchBarProps, Select, SelectButton, type SelectButtonProps, SelectContent, type SelectContentProps, SelectContext, type SelectIconAppearance, SelectOption, type SelectOptionProps, type SelectProps, SelectRoot, type SelectRootProps, SelectUncontrolled, type SelectUncontrolledProps, SessionStorageService, type SharedSelectRootProps, SimpleSearch, SimpleSearchWithMapping, type SingleOrArray, SingleSelectProperty, type SingleSelectPropertyProps, StepperBar, type StepperBarProps, StepperBarUncontrolled, type StepperState, type SuperSet, type TabContextType, type TabInfo, TabList, TabPanel, TabSwitcher, type TabSwitcherProps, TabView, TableBody, TableBodyContext, type TableBodyContextType, type TableBooleanFilter, TableCell, type TableCellProps, TableColumn, TableColumnDefinitionContext, type TableColumnDefinitionContextType, TableColumnPicker, type TableColumnPickerProps, type TableColumnProps, TableContainerContext, type TableContainerContextType, 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, TablePageSizeController, type TablePageSizeControllerProps, TablePagination, TableProvider, type TableProviderProps, TableSortButton, type TableSortButtonProps, type TableTagsFilter, type TableTextFilter, TableWithSelectionProvider, type TableWithSelectionProviderProps, TagIcon, type TagProps, TagsFilter, type TagsFilterParameter, type TagsFilterProps, type TagsFilterValue, TextFilter, type TextFilterParameter, type TextFilterProps, type TextFilterValue, TextImage, type TextImageProps, TextProperty, type TextPropertyProps, Textarea, type TextareaProps, TextareaUncontrolled, TextareaWithHeadline, type TextareaWithHeadlineProps, type ThemeConfig, ThemeContext, ThemeDialog, ThemeProvider, type ThemeProviderProps, type ThemeType, ThemeUtil, TimeDisplay, TimePicker, type TimePickerMinuteIncrement, type TimePickerProps, TimePickerUncontrolled, ToggleableInput, ToggleableInputUncontrolled, Tooltip, type TooltipConfig, type TooltipProps, Transition, type TransitionState, type TransitionWrapperProps, type UnBoundedRange, type UseAnchoredPositionOptions, type UseAnchoredPostitionProps, type UseCreateFormProps, type UseCreateFormResult, type UseDelayOptions, type UseDelayOptionsResolved, type UseFocusTrapProps, type UseFormFieldOptions, type UseOutsideClickHandlers, type UseOutsideClickOptions, type UseOutsideClickProps, type UseOverlayRegistryProps, type UseOverlayRegistryResult, type UsePresenceRefProps, type UseSearchProps, UseValidators, type ValidatorError, type ValidatorResult, VerticalDivider, type VerticalDividerProps, Visibility, type VisibilityProps, type WeekDay, YearMonthPicker, type YearMonthPickerProps, YearMonthPickerUncontrolled, addDuration, builder, changeDuration, closestMatch, createLoopingList, createLoopingListWithIndex, equalSizeGroups, formatDate, formatDateTime, getBetweenDuration, getNeighbours, getWeeksForCalenderMonth, hightideTranslation, hightideTranslationLocales, isInTimeSpan, isTableFilterCategory, match, mergeProps, noop, range, resolveSetState, subtractDuration, toSizeVars, useAnchoredPosition, useControlledState, useCreateForm, useDelay, useDialogContext, useFocusGuards, useFocusManagement, useFocusOnceVisible, useFocusTrap, useForm, useFormField, useHandleRefs, useHightideConfig, useHightideTranslation, useHoverState, useICUTranslation, useIsMounted, useLanguage, useLocalStorage, useLocale, useLogOnce, useLogUnstableDependencies, useOutsideClick, useOverlayRegistry, useOverwritableState, usePopUpContext, usePresenceRef, useRerender, useResizeCallbackWrapper, useSearch, useSelectContext, useTabContext, useTableBodyContext, useTableColumnDefinitionContext, useTableContainerContext, useTableHeaderContext, useTheme, useTransitionState, useTranslatedValidators, validateEmail, writeToClipboard };
2768
+ export { ASTNodeInterpreter, type ASTNodeInterpreterProps, AnchoredFloatingContainer, type AnchoredFloatingContainerProps, AnimatedRing, type AnimatedRingProps, ArrayUtil, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, type BackgroundOverlayProps, type BagFunction, type BagFunctionOrNode, type BagFunctionOrValue, BagFunctionUtil, BooleanFilter, type BooleanFilterParameter, type BooleanFilterProps, type BooleanFilterValue, BreadCrumbGroup, BreadCrumbLink, type BreadCrumbLinkProps, type BreadCrumbProps, BreadCrumbs, Button, type ButtonColor, type ButtonProps, ButtonUtil, Carousel, type CarouselProps, CarouselSlide, type CarouselSlideProps, Checkbox, CheckboxProperty, type CheckboxPropertyProps, type CheckboxProps, CheckboxUncontrolled, type CheckboxUncontrolledProps, Chip, type ChipColor, ChipList, type ChipListProps, type ChipProps, ChipUtil, Circle, type CircleProps, type ColumnSizeCalculatoProps, ColumnSizeUtil, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogType, type ControlledStateProps, CopyToClipboardWrapper, type CopyToClipboardWrapperProps, type Crumb, DateFilter, type DateFilterParameter, type DateFilterProps, type DateFilterValue, DatePicker, type DatePickerProps, DatePickerUncontrolled, DateProperty, type DatePropertyProps, DateTimeInput, type DateTimeInputHandle, type DateTimeInputProps, DateTimePicker, DateTimePickerDialog, type DateTimePickerDialogProps, type DateTimePickerMode, type DateTimePickerProps, DateTimePickerUncontrolled, DateUtils, DayPicker, type DayPickerProps, DayPickerUncontrolled, type DeepPartial, Dialog, DialogContext, type DialogContextType, type DialogOpenerPassingProps, DialogOpenerWrapper, type DialogOpenerWrapperBag, type DialogOpenerWrapperProps, type DialogPosition, type DialogProps, DialogRoot, type DialogRootProps, type Direction, DiscardChangesDialog, DividerInserter, type DividerInserterProps, Drawer, type DrawerAligment, type DrawerProps, Duration, type DurationJSON, type EaseFunction, EaseFunctions, type EditCompleteOptions, type EditCompleteOptionsResolved, type ElementHandle, ErrorComponent, type ErrorComponentProps, type Exact, Expandable, ExpandableContent, type ExpandableContentProps, ExpandableHeader, type ExpandableHeaderProps, type ExpandableProps, ExpandableRoot, type ExpandableRootProps, ExpandableUncontrolled, ExpansionIcon, type ExpansionIconProps, type FAQItem, FAQSection, type FAQSectionProps, FillerCell, type FillerCellProps, type FloatingElementAlignment, FocusTrap, type FocusTrapProps, FocusTrapWrapper, type FocusTrapWrapperProps, FormContext, type FormContextType, type FormEvent, type FormEventListener, FormField, type FormFieldAriaAttributes, type FormFieldBag, type FormFieldDataHandling, type FormFieldFocusableElementProps, type FormFieldInteractionStates, FormFieldLayout, type FormFieldLayoutBag, type FormFieldLayoutIds, type FormFieldLayoutProps, type FormFieldProps, type FormFieldResult, FormProvider, type FormProviderProps, FormStore, type FormStoreProps, type FormValidationBehaviour, type FormValidator, type FormValue, GenericFilter, type GenericFilterParameter, type GenericFilterProps, type GenericFilterValue, HelpwaveBadge, type HelpwaveBadgeProps, HelpwaveLogo, type HelpwaveProps, type HighlightStartPositionBehavior, type HightideConfig, HightideConfigContext, HightideConfigProvider, type HightideConfigProviderProps, HightideProvider, type HightideTranslationEntries, type HightideTranslationLocales, InfiniteScroll, type InfiniteScrollProps, Input, InputDialog, type InputModalProps, type InputProps, InputUncontrolled, InsideLabelInput, InsideLabelInputUncontrolled, LanguageDialog, ListBox, ListBoxItem, type ListBoxItemProps, ListBoxMultiple, type ListBoxMultipleProps, ListBoxMultipleUncontrolled, type ListBoxMultipleUncontrolledProps, ListBoxPrimitive, type ListBoxPrimitiveProps, type ListBoxProps, ListBoxUncontrolled, type ListBoxUncontrolledProps, LoadingAndErrorComponent, type LoadingAndErrorComponentProps, LoadingAnimation, type LoadingAnimationProps, type LoadingComponentProps, LoadingContainer, LocalStorageService, LocaleContext, type LocaleContextValue, LocaleProvider, type LocaleProviderProps, type LocalizationConfig, LocalizationUtil, LoopingArrayCalculator, MarkdownInterpreter, type MarkdownInterpreterProps, MathUtil, Menu, type MenuBag, MenuItem, type MenuItemProps, type MenuProps, type Month, MultiSearchWithMapping, MultiSelect, MultiSelectButton, type MultiSelectButtonProps, MultiSelectChipDisplay, MultiSelectChipDisplayButton, type MultiSelectChipDisplayProps, MultiSelectChipDisplayUncontrolled, type MultiSelectChipDisplayUncontrolledProps, MultiSelectContent, type MultiSelectContentProps, MultiSelectOption, type MultiSelectOptionProps, MultiSelectProperty, type MultiSelectPropertyProps, type MultiSelectProps, MultiSelectRoot, type MultiSelectRootProps, MultiSelectUncontrolled, MultiSubjectSearchWithMapping, Navigation, NavigationItemList, type NavigationItemListProps, type NavigationItemType, type NavigationProps, NumberFilter, type NumberFilterParameter, type NumberFilterProps, type NumberFilterValue, NumberProperty, type NumberPropertyProps, OperatorLabel, type OperatorLabelProps, type OverlayItem, OverlayRegistry, Pagination, type PaginationProps, PopUp, PopUpContext, type PopUpContextType, PopUpOpener, type PopUpOpenerBag, type PopUpOpenerProps, type PopUpProps, PopUpRoot, type PopUpRootProps, Portal, type PortalProps, ProgressIndicator, type ProgressIndicatorProps, PromiseUtils, PropertyBase, type PropertyBaseProps, type PropertyField, PropsUtil, type PropsWithBagFunction, type PropsWithBagFunctionOrChildren, RadialRings, type RadialRingsProps, type Range, type RangeOptions, type ResolvedTheme, Ring, type RingProps, RingWave, type RingWaveProps, ScrollPicker, type ScrollPickerProps, SearchBar, type SearchBarProps, Select, SelectButton, type SelectButtonProps, SelectContent, type SelectContentProps, SelectContext, type SelectIconAppearance, SelectOption, type SelectOptionProps, type SelectProps, SelectRoot, type SelectRootProps, SelectUncontrolled, type SelectUncontrolledProps, SessionStorageService, type SharedSelectRootProps, SimpleSearch, SimpleSearchWithMapping, type SingleOrArray, SingleSelectProperty, type SingleSelectPropertyProps, StepperBar, type StepperBarProps, StepperBarUncontrolled, type StepperState, type SuperSet, type TabContextType, type TabInfo, TabList, TabPanel, TabSwitcher, type TabSwitcherProps, TabView, Table, TableBody, type TableBooleanFilter, TableCell, type TableCellProps, TableColumn, TableColumnDefinitionContext, type TableColumnDefinitionContextType, type TableColumnProps, TableColumnSwitcher, TableColumnSwitcherPopUp, type TableColumnSwitcherPopUpProps, type TableColumnSwitcherProps, TableContainerContext, type TableContainerContextType, TableDataContext, type TableDataContextType, type TableDateFilter, TableDisplay, type TableDisplayProps, TableFilter, type TableFilterBaseProps, TableFilterButton, type TableFilterButtonProps, type TableFilterCategory, TableFilterContent, type TableFilterContentProps, TableFilterOperator, type TableFilterType, type TableFilterValue, type TableGenericFilter, TableHeader, TableHeaderContext, type TableHeaderContextType, type TableHeaderProps, type TableNumberFilter, TablePageSizeSelect, type TablePageSizeSelectProps, TablePagination, TablePaginationMenu, type TablePaginationProps, type TableProps, TableProvider, type TableProviderProps, TableSortButton, type TableSortButtonProps, type TableTagsFilter, type TableTextFilter, TableWithSelection, type TableWithSelectionProps, TableWithSelectionProvider, type TableWithSelectionProviderProps, TagIcon, type TagProps, TagsFilter, type TagsFilterParameter, type TagsFilterProps, type TagsFilterValue, TextFilter, type TextFilterParameter, type TextFilterProps, type TextFilterValue, TextImage, type TextImageProps, TextProperty, type TextPropertyProps, Textarea, type TextareaProps, TextareaUncontrolled, TextareaWithHeadline, type TextareaWithHeadlineProps, type ThemeConfig, ThemeContext, ThemeDialog, ThemeProvider, type ThemeProviderProps, type ThemeType, ThemeUtil, TimeDisplay, TimePicker, type TimePickerMinuteIncrement, type TimePickerProps, TimePickerUncontrolled, ToggleableInput, ToggleableInputUncontrolled, Tooltip, type TooltipConfig, type TooltipProps, Transition, type TransitionState, type TransitionWrapperProps, type UnBoundedRange, type UseAnchoredPositionOptions, type UseAnchoredPostitionProps, type UseCreateFormProps, type UseCreateFormResult, type UseDelayOptions, type UseDelayOptionsResolved, type UseFocusTrapProps, type UseFormFieldOptions, type UseOutsideClickHandlers, type UseOutsideClickOptions, type UseOutsideClickProps, type UseOverlayRegistryProps, type UseOverlayRegistryResult, type UsePresenceRefProps, type UseSearchProps, UseValidators, type ValidatorError, type ValidatorResult, VerticalDivider, type VerticalDividerProps, Visibility, type VisibilityProps, type WeekDay, YearMonthPicker, type YearMonthPickerProps, YearMonthPickerUncontrolled, addDuration, builder, changeDuration, closestMatch, createLoopingList, createLoopingListWithIndex, equalSizeGroups, formatDate, formatDateTime, getBetweenDuration, getNeighbours, getWeeksForCalenderMonth, hightideTranslation, hightideTranslationLocales, isInTimeSpan, isTableFilterCategory, match, mergeProps, noop, range, resolveSetState, subtractDuration, toSizeVars, useAnchoredPosition, useControlledState, useCreateForm, useDelay, useDialogContext, useFocusGuards, useFocusManagement, useFocusOnceVisible, useFocusTrap, useForm, useFormField, useHandleRefs, useHightideConfig, useHightideTranslation, useHoverState, useICUTranslation, useIsMounted, useLanguage, useLocalStorage, useLocale, useLogOnce, useLogUnstableDependencies, useOutsideClick, useOverlayRegistry, useOverwritableState, usePopUpContext, usePresenceRef, useRerender, useResizeCallbackWrapper, useSearch, useSelectContext, useTabContext, useTableColumnDefinitionContext, useTableContainerContext, useTableDataContext, useTableHeaderContext, useTheme, useTransitionState, useTranslatedValidators, validateEmail, writeToClipboard };