@helpwave/hightide 0.9.5 → 0.10.1
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 +272 -35
- package/dist/index.d.ts +272 -35
- package/dist/index.js +7556 -5524
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7454 -5441
- package/dist/index.mjs.map +1 -1
- package/dist/style/globals.css +375 -9
- package/dist/style/uncompiled/theme/colors/component.css +20 -0
- package/dist/style/uncompiled/theme/components/date-time-input.css +23 -9
- package/dist/style/uncompiled/theme/components/index.css +2 -1
- package/dist/style/uncompiled/theme/components/process-model.css +167 -0
- package/package.json +12 -11
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as react from 'react';
|
|
3
|
-
import react__default, { HTMLAttributes, SVGProps, ReactNode, PropsWithChildren, RefObject, CSSProperties, Dispatch, SetStateAction, ButtonHTMLAttributes, InputHTMLAttributes, ComponentPropsWithoutRef, ComponentProps, JSX, TableHTMLAttributes, TextareaHTMLAttributes, LabelHTMLAttributes, ElementType } from 'react';
|
|
3
|
+
import react__default, { HTMLAttributes, SVGProps, ReactNode, MouseEventHandler, PointerEventHandler, PropsWithChildren, RefObject, CSSProperties, Dispatch, SetStateAction, ButtonHTMLAttributes, InputHTMLAttributes, ComponentPropsWithoutRef, ComponentProps, JSX, TableHTMLAttributes, TextareaHTMLAttributes, LabelHTMLAttributes, ElementType } from 'react';
|
|
4
4
|
import { Translation, TranslationEntries, PartialTranslationExtension } from '@helpwave/internationalization';
|
|
5
5
|
import Link from 'next/link';
|
|
6
6
|
import { TableFeature, ColumnDef, Table as Table$1, InitialTableState, Row, TableState, TableOptions, RowData, FilterFn, RowSelectionState, RowModel, Header, SortDirection, ColumnSizingState, ColumnFilter, ColumnSort } from '@tanstack/react-table';
|
|
@@ -114,6 +114,151 @@ type TagProps = {
|
|
|
114
114
|
*/
|
|
115
115
|
declare const TagIcon: ({ className, size, }: TagProps) => react_jsx_runtime.JSX.Element;
|
|
116
116
|
|
|
117
|
+
type ProcessModelActivityNodeKind = 'activity' | 'terminal';
|
|
118
|
+
type ProcessModelActivityNodeProps = {
|
|
119
|
+
nodeId: string;
|
|
120
|
+
label: string;
|
|
121
|
+
count: string;
|
|
122
|
+
customIcon: ReactNode;
|
|
123
|
+
kind?: ProcessModelActivityNodeKind;
|
|
124
|
+
bordered?: boolean;
|
|
125
|
+
active?: boolean;
|
|
126
|
+
visited?: boolean;
|
|
127
|
+
className?: string;
|
|
128
|
+
onClick?: MouseEventHandler<HTMLDivElement>;
|
|
129
|
+
onPointerEnter?: PointerEventHandler<HTMLDivElement>;
|
|
130
|
+
onPointerLeave?: PointerEventHandler<HTMLDivElement>;
|
|
131
|
+
};
|
|
132
|
+
declare const ProcessModelActivityNode: ({ nodeId, label, count, customIcon, kind, bordered, active, visited, className, onClick, onPointerEnter, onPointerLeave, }: ProcessModelActivityNodeProps) => react_jsx_runtime.JSX.Element;
|
|
133
|
+
|
|
134
|
+
type ProcessModelTerminalKind = 'start' | 'end';
|
|
135
|
+
type ProcessModelActivityIconKind = 'plus' | 'check';
|
|
136
|
+
type ProcessModelNodeBase = {
|
|
137
|
+
id: string;
|
|
138
|
+
label: string;
|
|
139
|
+
count: string;
|
|
140
|
+
layer: number;
|
|
141
|
+
col: number;
|
|
142
|
+
};
|
|
143
|
+
type ProcessModelGraphTerminalNode = ProcessModelNodeBase & {
|
|
144
|
+
type: ProcessModelTerminalKind;
|
|
145
|
+
};
|
|
146
|
+
type ProcessModelGraphActivityNode = ProcessModelNodeBase & {
|
|
147
|
+
type: 'activity';
|
|
148
|
+
activityIcon?: ProcessModelActivityIconKind;
|
|
149
|
+
};
|
|
150
|
+
type ProcessModelGraphNode = ProcessModelGraphTerminalNode | ProcessModelGraphActivityNode;
|
|
151
|
+
type ProcessModelEdge = {
|
|
152
|
+
from: string;
|
|
153
|
+
to: string;
|
|
154
|
+
label: string;
|
|
155
|
+
weight: number;
|
|
156
|
+
};
|
|
157
|
+
type ProcessModelTrace = {
|
|
158
|
+
name: string;
|
|
159
|
+
nodes: string[];
|
|
160
|
+
};
|
|
161
|
+
type ProcessModelGraph = {
|
|
162
|
+
nodes: ProcessModelGraphNode[];
|
|
163
|
+
edges: ProcessModelEdge[];
|
|
164
|
+
traces?: ProcessModelTrace[];
|
|
165
|
+
};
|
|
166
|
+
type ProcessModelGraphWithTraces = ProcessModelGraph & {
|
|
167
|
+
traces: ProcessModelTrace[];
|
|
168
|
+
};
|
|
169
|
+
type ProcessModelLibraryEntry = {
|
|
170
|
+
id: string;
|
|
171
|
+
name: string;
|
|
172
|
+
description: string;
|
|
173
|
+
graph: ProcessModelGraph;
|
|
174
|
+
};
|
|
175
|
+
type ProcessModelNodePosition = {
|
|
176
|
+
x: number;
|
|
177
|
+
y: number;
|
|
178
|
+
w: number;
|
|
179
|
+
h: number;
|
|
180
|
+
layer: number;
|
|
181
|
+
};
|
|
182
|
+
type ProcessModelLayoutResult = {
|
|
183
|
+
positions: Record<string, ProcessModelNodePosition>;
|
|
184
|
+
canvasW: number;
|
|
185
|
+
canvasH: number;
|
|
186
|
+
};
|
|
187
|
+
type ProcessModelEdgePointResult = {
|
|
188
|
+
pathD: string;
|
|
189
|
+
labelPt: {
|
|
190
|
+
x: number;
|
|
191
|
+
y: number;
|
|
192
|
+
};
|
|
193
|
+
};
|
|
194
|
+
type ProcessModelEdgeStrokeStyle = {
|
|
195
|
+
opacity: number;
|
|
196
|
+
sw: number;
|
|
197
|
+
markerTier: 'strong' | 'medium' | 'faint';
|
|
198
|
+
};
|
|
199
|
+
|
|
200
|
+
type ProcessModelCanvasProps = {
|
|
201
|
+
graph: ProcessModelGraph;
|
|
202
|
+
className?: string;
|
|
203
|
+
showNodeBorder?: boolean;
|
|
204
|
+
activeNodeId?: string;
|
|
205
|
+
visitedNodeIds?: ReadonlySet<string>;
|
|
206
|
+
renderActivityIcon?: (node: ProcessModelGraphActivityNode) => ReactNode;
|
|
207
|
+
edgePathIdPrefix?: string;
|
|
208
|
+
edgeReplayHighlight?: {
|
|
209
|
+
from: string;
|
|
210
|
+
to: string;
|
|
211
|
+
} | null;
|
|
212
|
+
replayParticle?: {
|
|
213
|
+
cx: number;
|
|
214
|
+
cy: number;
|
|
215
|
+
opacity: number;
|
|
216
|
+
} | null;
|
|
217
|
+
};
|
|
218
|
+
declare const ProcessModelCanvas: ({ graph, className, showNodeBorder, activeNodeId, visitedNodeIds, renderActivityIcon, edgePathIdPrefix, edgeReplayHighlight, replayParticle, }: ProcessModelCanvasProps) => react_jsx_runtime.JSX.Element;
|
|
219
|
+
|
|
220
|
+
type ProcessModelTerminalNodeProps = {
|
|
221
|
+
nodeId: string;
|
|
222
|
+
variant: ProcessModelTerminalKind;
|
|
223
|
+
label: string;
|
|
224
|
+
count: string;
|
|
225
|
+
bordered?: boolean;
|
|
226
|
+
active?: boolean;
|
|
227
|
+
visited?: boolean;
|
|
228
|
+
className?: string;
|
|
229
|
+
};
|
|
230
|
+
declare const ProcessModelTerminalNode: ({ nodeId, variant, label, count, bordered, active, visited, className, }: ProcessModelTerminalNodeProps) => react_jsx_runtime.JSX.Element;
|
|
231
|
+
|
|
232
|
+
type ProcessModelTraceReplayProps = {
|
|
233
|
+
graph: ProcessModelGraphWithTraces;
|
|
234
|
+
className?: string;
|
|
235
|
+
};
|
|
236
|
+
declare const ProcessModelTraceReplay: ({ graph, className }: ProcessModelTraceReplayProps) => react_jsx_runtime.JSX.Element;
|
|
237
|
+
|
|
238
|
+
declare function terminalCountDisplayLine(rawCount: string): string;
|
|
239
|
+
declare function estimateProcessModelActivityChromeWidth(kind: ProcessModelActivityNodeKind, label: string, countLine: string): number;
|
|
240
|
+
declare function estimateProcessModelActivityNodeWidth(label: string, count: string): number;
|
|
241
|
+
declare function computeLayout(graph: ProcessModelGraph): ProcessModelLayoutResult;
|
|
242
|
+
declare function getEdgePoints(pos: Record<string, ProcessModelNodePosition>, fromId: string, toId: string, allEdges: ProcessModelEdge[]): ProcessModelEdgePointResult | null;
|
|
243
|
+
declare function weightToStyle(weight: number, maxWeight: number): ProcessModelEdgeStrokeStyle;
|
|
244
|
+
declare function maxEdgeWeight(edges: ProcessModelEdge[]): number;
|
|
245
|
+
declare function getProcessModelEdgePathDomId(pathIdPrefix: string | undefined, from: string, to: string): string;
|
|
246
|
+
declare const ProcessModelLayoutUtilities: {
|
|
247
|
+
ACTIVITY_NODE_MIN_WIDTH: number;
|
|
248
|
+
NODE_H: number;
|
|
249
|
+
terminalCountDisplayLine: typeof terminalCountDisplayLine;
|
|
250
|
+
estimateProcessModelActivityChromeWidth: typeof estimateProcessModelActivityChromeWidth;
|
|
251
|
+
estimateProcessModelActivityNodeWidth: typeof estimateProcessModelActivityNodeWidth;
|
|
252
|
+
computeLayout: typeof computeLayout;
|
|
253
|
+
getEdgePoints: typeof getEdgePoints;
|
|
254
|
+
weightToStyle: typeof weightToStyle;
|
|
255
|
+
maxEdgeWeight: typeof maxEdgeWeight;
|
|
256
|
+
getProcessModelEdgePathDomId: typeof getProcessModelEdgePathDomId;
|
|
257
|
+
};
|
|
258
|
+
|
|
259
|
+
declare const processModelLibrary: ProcessModelLibraryEntry[];
|
|
260
|
+
declare function getProcessModelLibraryEntry(id: string): ProcessModelLibraryEntry | undefined;
|
|
261
|
+
|
|
117
262
|
type FormFieldAriaAttributes = Pick<HTMLAttributes<HTMLElement>, 'aria-labelledby' | 'aria-describedby' | 'aria-disabled' | 'aria-readonly' | 'aria-invalid' | 'aria-errormessage' | 'aria-required'>;
|
|
118
263
|
type FormFieldInteractionStates = {
|
|
119
264
|
invalid: boolean;
|
|
@@ -1025,6 +1170,7 @@ type HightideTranslationEntries = {
|
|
|
1025
1170
|
'copy': string;
|
|
1026
1171
|
'create': string;
|
|
1027
1172
|
'date': string;
|
|
1173
|
+
'dayPeriod': string;
|
|
1028
1174
|
'decline': string;
|
|
1029
1175
|
'decreaseSortingPriority': string;
|
|
1030
1176
|
'delete': string;
|
|
@@ -1105,11 +1251,13 @@ type HightideTranslationEntries = {
|
|
|
1105
1251
|
max: number;
|
|
1106
1252
|
}) => string;
|
|
1107
1253
|
'parameter': string;
|
|
1254
|
+
'pauseTrace': string;
|
|
1108
1255
|
'pinLeft': string;
|
|
1109
1256
|
'pinned': string;
|
|
1110
1257
|
'pinRight': string;
|
|
1111
1258
|
'pinToLeft': string;
|
|
1112
1259
|
'pinToRight': string;
|
|
1260
|
+
'playTrace': string;
|
|
1113
1261
|
'pleaseWait': string;
|
|
1114
1262
|
'previous': string;
|
|
1115
1263
|
'pThemes': (values: {
|
|
@@ -1190,6 +1338,7 @@ type HightideTranslationEntries = {
|
|
|
1190
1338
|
'sortAsc': string;
|
|
1191
1339
|
'sortDesc': string;
|
|
1192
1340
|
'sorting': string;
|
|
1341
|
+
'speed': string;
|
|
1193
1342
|
'sSortingState': (values: {
|
|
1194
1343
|
sortDirection: string;
|
|
1195
1344
|
}) => string;
|
|
@@ -1297,27 +1446,16 @@ type SingleOrArray<T> = T | T[];
|
|
|
1297
1446
|
type Exact<T, U extends T> = U;
|
|
1298
1447
|
|
|
1299
1448
|
type TooltipConfig = {
|
|
1300
|
-
/**
|
|
1301
|
-
* Number of milliseconds until the tooltip appears
|
|
1302
|
-
*/
|
|
1303
1449
|
appearDelay: number;
|
|
1304
1450
|
isAnimated: boolean;
|
|
1305
1451
|
};
|
|
1306
1452
|
type ThemeConfig = {
|
|
1307
|
-
/**
|
|
1308
|
-
* The initial theme to show when:
|
|
1309
|
-
* 1. The system preference is not or cannot be loaded
|
|
1310
|
-
* 2. The user has not set an app preference
|
|
1311
|
-
*/
|
|
1312
1453
|
initialTheme: ResolvedTheme;
|
|
1313
1454
|
};
|
|
1314
1455
|
type LocalizationConfig = {
|
|
1315
|
-
/**
|
|
1316
|
-
* The initial locale to use when:
|
|
1317
|
-
* 1. The system preference is not or cannot be loaded
|
|
1318
|
-
* 2. The user has not set an app preference
|
|
1319
|
-
*/
|
|
1320
1456
|
defaultLocale: HightideTranslationLocales;
|
|
1457
|
+
defaultTimeZone?: string;
|
|
1458
|
+
defaultIs24HourFormat?: boolean;
|
|
1321
1459
|
};
|
|
1322
1460
|
type HightideConfig = {
|
|
1323
1461
|
tooltip: TooltipConfig;
|
|
@@ -2500,6 +2638,25 @@ declare const monthsList: readonly ["january", "february", "march", "april", "ma
|
|
|
2500
2638
|
type Month = typeof monthsList[number];
|
|
2501
2639
|
declare const weekDayList: readonly ["sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday"];
|
|
2502
2640
|
type WeekDay = typeof weekDayList[number];
|
|
2641
|
+
type ZonedParts = {
|
|
2642
|
+
year: number;
|
|
2643
|
+
month: number;
|
|
2644
|
+
day: number;
|
|
2645
|
+
hour: number;
|
|
2646
|
+
minute: number;
|
|
2647
|
+
second: number;
|
|
2648
|
+
millisecond: number;
|
|
2649
|
+
};
|
|
2650
|
+
declare function toZonedDate(date: Date, timeZone?: string): Date;
|
|
2651
|
+
declare function toZonedDate(date: null, timeZone?: string): null;
|
|
2652
|
+
declare function toZonedDate(date: Date | null, timeZone?: string): Date | null;
|
|
2653
|
+
declare function fromZonedDate(date: Date, timeZone?: string): Date;
|
|
2654
|
+
declare function fromZonedDate(date: null, timeZone?: string): null;
|
|
2655
|
+
declare function fromZonedDate(date: Date | null, timeZone?: string): Date | null;
|
|
2656
|
+
type FormatAbsoluteOptions = {
|
|
2657
|
+
timeZone?: string;
|
|
2658
|
+
is24HourFormat?: boolean;
|
|
2659
|
+
};
|
|
2503
2660
|
declare function tryParseDate(dateValue: Date | string | number | undefined | null): Date | null;
|
|
2504
2661
|
declare function normalizeToDateOnly(date: Date): Date;
|
|
2505
2662
|
declare function normalizeDatetime(dateTime: Date): Date;
|
|
@@ -2508,9 +2665,13 @@ declare const DateUtils: {
|
|
|
2508
2665
|
weekDayList: readonly ["sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday"];
|
|
2509
2666
|
equalDate: (date1: Date, date2: Date) => boolean;
|
|
2510
2667
|
isLastMillisecondOfDay: (date: Date) => boolean;
|
|
2668
|
+
daysInMonth: (year: number, monthIndex: number) => number;
|
|
2511
2669
|
sameTime: (a: Date, b: Date, compareSeconds?: boolean, compareMilliseconds?: boolean) => boolean;
|
|
2512
2670
|
withTime: (datePart: Date, timePart: Date) => Date;
|
|
2513
|
-
|
|
2671
|
+
zonedParts: (date: Date, timeZone: string) => ZonedParts;
|
|
2672
|
+
toZonedDate: typeof toZonedDate;
|
|
2673
|
+
fromZonedDate: typeof fromZonedDate;
|
|
2674
|
+
formatAbsolute: (date: Date, locale: string, format: DateTimeFormat, { timeZone, is24HourFormat }?: FormatAbsoluteOptions) => string;
|
|
2514
2675
|
formatRelative: (date: Date, locale: string) => string;
|
|
2515
2676
|
addDuration: (date: Date, duration: Partial<DurationJSON>) => Date;
|
|
2516
2677
|
subtractDuration: (date: Date, duration: Partial<DurationJSON>) => Date;
|
|
@@ -2528,9 +2689,6 @@ declare const DateUtils: {
|
|
|
2528
2689
|
toInputString: (date: Date, format: DateTimeFormat, precision?: DateTimePrecision, isLocalTime?: boolean) => string;
|
|
2529
2690
|
tryParseDate: typeof tryParseDate;
|
|
2530
2691
|
toOnlyDate: typeof normalizeToDateOnly;
|
|
2531
|
-
/**
|
|
2532
|
-
* Normalizes a datetime by removing seconds and milliseconds.
|
|
2533
|
-
*/
|
|
2534
2692
|
toDateTimeOnly: typeof normalizeDatetime;
|
|
2535
2693
|
};
|
|
2536
2694
|
|
|
@@ -2583,7 +2741,7 @@ interface TimePickerProps extends Partial<FormFieldDataHandling<Date>> {
|
|
|
2583
2741
|
millisecondIncrement?: TimePickerMillisecondIncrement;
|
|
2584
2742
|
className?: string;
|
|
2585
2743
|
}
|
|
2586
|
-
declare const TimePicker: ({ value: controlledValue, initialValue, onValueChange, onEditComplete, is24HourFormat, minuteIncrement, secondIncrement, millisecondIncrement, precision, className, }: TimePickerProps) => react_jsx_runtime.JSX.Element;
|
|
2744
|
+
declare const TimePicker: ({ value: controlledValue, initialValue, onValueChange, onEditComplete, is24HourFormat: is24HourFormatOverride, minuteIncrement, secondIncrement, millisecondIncrement, precision, className, }: TimePickerProps) => react_jsx_runtime.JSX.Element;
|
|
2587
2745
|
|
|
2588
2746
|
interface DateTimePickerProps extends Partial<FormFieldDataHandling<Date>>, Pick<DatePickerProps, 'start' | 'end' | 'weekStart' | 'markToday'>, Pick<TimePickerProps, 'is24HourFormat' | 'minuteIncrement' | 'secondIncrement' | 'millisecondIncrement' | 'precision'> {
|
|
2589
2747
|
initialValue?: Date;
|
|
@@ -2610,30 +2768,39 @@ type TimeDisplayMode = 'daysFromToday' | 'date';
|
|
|
2610
2768
|
type TimeDisplayProps = {
|
|
2611
2769
|
date: Date;
|
|
2612
2770
|
mode?: TimeDisplayMode;
|
|
2771
|
+
is24HourFormat?: boolean;
|
|
2772
|
+
timeZone?: string;
|
|
2613
2773
|
};
|
|
2614
|
-
|
|
2615
|
-
* A Component for displaying time and dates in a unified fashion
|
|
2616
|
-
*/
|
|
2617
|
-
declare const TimeDisplay: ({ date, mode }: TimeDisplayProps) => react_jsx_runtime.JSX.Element;
|
|
2774
|
+
declare const TimeDisplay: ({ date, mode, is24HourFormat: is24HourFormatOverride, timeZone: timeZoneOverride, }: TimeDisplayProps) => react_jsx_runtime.JSX.Element;
|
|
2618
2775
|
|
|
2619
|
-
interface
|
|
2776
|
+
interface DateTimeFieldProps extends Partial<FormFieldInteractionStates>, Partial<FormFieldDataHandling<Date | null>>, Omit<HTMLAttributes<HTMLDivElement>, 'defaultValue' | 'onChange'> {
|
|
2777
|
+
initialValue?: Date | null;
|
|
2778
|
+
mode?: DateTimeFormat;
|
|
2779
|
+
precision?: DateTimePrecision;
|
|
2780
|
+
is24HourFormat?: boolean;
|
|
2781
|
+
locale?: string;
|
|
2782
|
+
}
|
|
2783
|
+
declare const DateTimeField: react.ForwardRefExoticComponent<DateTimeFieldProps & react.RefAttributes<HTMLDivElement>>;
|
|
2784
|
+
|
|
2785
|
+
interface DateTimeInputProps extends Partial<FormFieldInteractionStates>, Omit<HTMLAttributes<HTMLDivElement>, 'defaultValue' | 'onChange'>, Partial<FormFieldDataHandling<Date | null>>, Pick<DateTimePickerProps, 'start' | 'end' | 'weekStart' | 'markToday' | 'is24HourFormat' | 'minuteIncrement' | 'secondIncrement' | 'millisecondIncrement' | 'precision'> {
|
|
2620
2786
|
initialValue?: Date | null;
|
|
2621
2787
|
allowRemove?: boolean;
|
|
2788
|
+
allowClear?: boolean;
|
|
2622
2789
|
mode?: DateTimeFormat;
|
|
2790
|
+
timeZone?: string;
|
|
2623
2791
|
containerProps?: HTMLAttributes<HTMLDivElement>;
|
|
2624
2792
|
pickerProps?: Omit<DateTimePickerProps, keyof FormFieldDataHandling<Date> | 'mode' | 'initialValue' | 'start' | 'end' | 'weekStart' | 'markToday' | 'is24HourFormat' | 'minuteIncrement' | 'secondIncrement' | 'millisecondIncrement' | 'precision'>;
|
|
2625
2793
|
outsideClickCloses?: boolean;
|
|
2626
2794
|
onDialogOpeningChange?: (isOpen: boolean) => void;
|
|
2627
2795
|
actions?: ReactNode[];
|
|
2628
2796
|
}
|
|
2629
|
-
declare const DateTimeInput: react.ForwardRefExoticComponent<DateTimeInputProps & react.RefAttributes<
|
|
2797
|
+
declare const DateTimeInput: react.ForwardRefExoticComponent<DateTimeInputProps & react.RefAttributes<HTMLDivElement>>;
|
|
2630
2798
|
|
|
2631
2799
|
interface FlexibleDateTimeInputProps extends Omit<DateTimeInputProps, 'mode'> {
|
|
2632
2800
|
defaultMode: Exclude<DateTimeFormat, 'time'>;
|
|
2633
|
-
/** Defaults to 23:59:59.999 */
|
|
2634
2801
|
fixedTime?: Date | null;
|
|
2635
2802
|
}
|
|
2636
|
-
declare const FlexibleDateTimeInput: react.ForwardRefExoticComponent<FlexibleDateTimeInputProps & react.RefAttributes<
|
|
2803
|
+
declare const FlexibleDateTimeInput: react.ForwardRefExoticComponent<FlexibleDateTimeInputProps & react.RefAttributes<HTMLDivElement>>;
|
|
2637
2804
|
|
|
2638
2805
|
/**
|
|
2639
2806
|
* Text input component with a label inside the input that moves up when editing
|
|
@@ -2666,6 +2833,60 @@ declare const ToggleableInput: react.ForwardRefExoticComponent<Omit<react.InputH
|
|
|
2666
2833
|
editCompleteOptions?: Omit<EditCompleteOptions, "allowEnterComplete">;
|
|
2667
2834
|
} & react.RefAttributes<HTMLInputElement>>;
|
|
2668
2835
|
|
|
2836
|
+
declare const editableSegmentTypes: readonly ["day", "month", "year", "hour", "minute", "second", "millisecond", "dayPeriod"];
|
|
2837
|
+
type EditableSegmentType = typeof editableSegmentTypes[number];
|
|
2838
|
+
type DateTimeSegment = {
|
|
2839
|
+
kind: 'literal';
|
|
2840
|
+
text: string;
|
|
2841
|
+
} | {
|
|
2842
|
+
kind: 'editable';
|
|
2843
|
+
type: EditableSegmentType;
|
|
2844
|
+
};
|
|
2845
|
+
type SegmentValues = Partial<Record<EditableSegmentType, number>>;
|
|
2846
|
+
type SegmentBuffer = {
|
|
2847
|
+
type: EditableSegmentType;
|
|
2848
|
+
text: string;
|
|
2849
|
+
};
|
|
2850
|
+
type SegmentEditState = {
|
|
2851
|
+
values: SegmentValues;
|
|
2852
|
+
buffer: SegmentBuffer | null;
|
|
2853
|
+
};
|
|
2854
|
+
type SegmentBounds = {
|
|
2855
|
+
min: number;
|
|
2856
|
+
max: number;
|
|
2857
|
+
};
|
|
2858
|
+
type SegmentLayoutOptions = {
|
|
2859
|
+
locale: string;
|
|
2860
|
+
mode: DateTimeFormat;
|
|
2861
|
+
precision: DateTimePrecision;
|
|
2862
|
+
is24HourFormat: boolean;
|
|
2863
|
+
};
|
|
2864
|
+
declare const timeUnitTranslationKey: {
|
|
2865
|
+
readonly day: "time.day";
|
|
2866
|
+
readonly month: "time.month";
|
|
2867
|
+
readonly year: "time.year";
|
|
2868
|
+
readonly hour: "time.hour";
|
|
2869
|
+
readonly minute: "time.minute";
|
|
2870
|
+
readonly second: "time.second";
|
|
2871
|
+
readonly millisecond: "time.millisecond";
|
|
2872
|
+
};
|
|
2873
|
+
declare const segmentBounds: (type: EditableSegmentType, values: SegmentValues, is24HourFormat: boolean) => SegmentBounds;
|
|
2874
|
+
declare const buildSegmentLayout: ({ locale, mode, precision, is24HourFormat }: SegmentLayoutOptions) => DateTimeSegment[];
|
|
2875
|
+
declare const editableTypesOf: (layout: DateTimeSegment[]) => EditableSegmentType[];
|
|
2876
|
+
declare const isComplete: (values: SegmentValues, layout: DateTimeSegment[]) => boolean;
|
|
2877
|
+
declare const isEmpty: (values: SegmentValues, layout: DateTimeSegment[]) => boolean;
|
|
2878
|
+
declare const decomposeDate: (date: Date, layout: DateTimeSegment[], is24HourFormat: boolean) => SegmentValues;
|
|
2879
|
+
declare const composeDate: (values: SegmentValues, layout: DateTimeSegment[], mode: DateTimeFormat, is24HourFormat: boolean, reference?: Date) => Date | null;
|
|
2880
|
+
declare const typeDigit: (state: SegmentEditState, type: EditableSegmentType, digit: number, is24HourFormat: boolean) => {
|
|
2881
|
+
state: SegmentEditState;
|
|
2882
|
+
advance: boolean;
|
|
2883
|
+
};
|
|
2884
|
+
declare const stepSegment: (state: SegmentEditState, type: EditableSegmentType, delta: number, is24HourFormat: boolean) => SegmentEditState;
|
|
2885
|
+
declare const clearSegment: (state: SegmentEditState, type: EditableSegmentType) => SegmentEditState;
|
|
2886
|
+
declare const setDayPeriod: (state: SegmentEditState, period: number) => SegmentEditState;
|
|
2887
|
+
declare const segmentPlaceholder: (type: EditableSegmentType, locale: string) => string;
|
|
2888
|
+
declare const formatSegment: (type: EditableSegmentType, values: SegmentValues, buffer: SegmentBuffer | null, locale: string) => string;
|
|
2889
|
+
|
|
2669
2890
|
type PropertyField<T> = {
|
|
2670
2891
|
name: string;
|
|
2671
2892
|
required?: boolean;
|
|
@@ -2705,13 +2926,11 @@ type CheckboxPropertyProps = PropertyField<boolean>;
|
|
|
2705
2926
|
*/
|
|
2706
2927
|
declare const CheckboxProperty: ({ value, onValueChange, onEditComplete, readOnly, ...baseProps }: CheckboxPropertyProps) => react_jsx_runtime.JSX.Element;
|
|
2707
2928
|
|
|
2708
|
-
type DatePropertyProps = PropertyField<Date> & {
|
|
2929
|
+
type DatePropertyProps = Pick<PropertyField<Date | null>, 'name' | 'onRemove' | 'onValueClear'> & Omit<DateTimeInputProps, 'mode' | 'allowRemove'> & {
|
|
2709
2930
|
type?: 'dateTime' | 'date';
|
|
2931
|
+
allowRemove?: boolean;
|
|
2710
2932
|
};
|
|
2711
|
-
|
|
2712
|
-
* An Input for date properties
|
|
2713
|
-
*/
|
|
2714
|
-
declare const DateProperty: ({ value, onValueChange, onEditComplete, readOnly, type, ...baseProps }: DatePropertyProps) => react_jsx_runtime.JSX.Element;
|
|
2933
|
+
declare const DateProperty: ({ name, value, onValueChange, onEditComplete, onRemove, onValueClear, required, readOnly, allowClear, allowRemove, type, className, ...inputProps }: DatePropertyProps) => react_jsx_runtime.JSX.Element;
|
|
2715
2934
|
|
|
2716
2935
|
interface MultiSelectPropertyProps extends PropertyField<string[]>, PropsWithChildren {
|
|
2717
2936
|
}
|
|
@@ -2800,15 +3019,31 @@ declare function Transition({ children, show, includeAnimation, }: TransitionWra
|
|
|
2800
3019
|
type LocaleContextValue = {
|
|
2801
3020
|
locale: HightideTranslationLocales;
|
|
2802
3021
|
setLocale: Dispatch<SetStateAction<HightideTranslationLocales>>;
|
|
3022
|
+
timeZone?: string;
|
|
3023
|
+
setTimeZone?: (timeZone: string | undefined) => void;
|
|
3024
|
+
is24HourFormat?: boolean;
|
|
3025
|
+
setIs24HourFormat?: (is24HourFormat: boolean | undefined) => void;
|
|
2803
3026
|
};
|
|
2804
3027
|
declare const LocaleContext: react.Context<LocaleContextValue>;
|
|
2805
3028
|
type LocaleWithSystem = HightideTranslationLocales | 'system';
|
|
2806
3029
|
type LocaleProviderProps = PropsWithChildren & Partial<LocalizationConfig> & {
|
|
2807
3030
|
locale?: LocaleWithSystem;
|
|
2808
3031
|
onChangedLocale?: (locale: HightideTranslationLocales) => void;
|
|
3032
|
+
timeZone?: string;
|
|
3033
|
+
onChangedTimeZone?: (timeZone: string | undefined) => void;
|
|
3034
|
+
is24HourFormat?: boolean;
|
|
3035
|
+
onChangedIs24HourFormat?: (is24HourFormat: boolean) => void;
|
|
2809
3036
|
};
|
|
2810
|
-
declare const LocaleProvider: ({ children, locale, defaultLocale, onChangedLocale }: LocaleProviderProps) => react_jsx_runtime.JSX.Element;
|
|
3037
|
+
declare const LocaleProvider: ({ children, locale, defaultLocale, defaultTimeZone, defaultIs24HourFormat, timeZone, is24HourFormat, onChangedLocale, onChangedTimeZone, onChangedIs24HourFormat, }: LocaleProviderProps) => react_jsx_runtime.JSX.Element;
|
|
2811
3038
|
declare const useLocale: () => LocaleContextValue;
|
|
3039
|
+
declare const useTimeZone: () => {
|
|
3040
|
+
timeZone: string;
|
|
3041
|
+
setTimeZone: (timeZone: string | undefined) => void;
|
|
3042
|
+
};
|
|
3043
|
+
declare const useDateTimeFormat: () => {
|
|
3044
|
+
is24HourFormat: boolean;
|
|
3045
|
+
timeZone: string;
|
|
3046
|
+
};
|
|
2812
3047
|
declare const useLanguage: () => {
|
|
2813
3048
|
language: string;
|
|
2814
3049
|
};
|
|
@@ -3057,8 +3292,10 @@ interface UseUpdatingDateStringProps {
|
|
|
3057
3292
|
date: Date;
|
|
3058
3293
|
absoluteFormat?: DateTimeFormat;
|
|
3059
3294
|
localeOverride?: HightideTranslationLocales;
|
|
3295
|
+
is24HourFormat?: boolean;
|
|
3296
|
+
timeZone?: string;
|
|
3060
3297
|
}
|
|
3061
|
-
declare const useUpdatingDateString: ({ absoluteFormat, localeOverride, date }: UseUpdatingDateStringProps) => {
|
|
3298
|
+
declare const useUpdatingDateString: ({ absoluteFormat, localeOverride, is24HourFormat: is24HourFormatOverride, timeZone: timeZoneOverride, date }: UseUpdatingDateStringProps) => {
|
|
3062
3299
|
absolute: string;
|
|
3063
3300
|
relative: string;
|
|
3064
3301
|
};
|
|
@@ -3322,4 +3559,4 @@ declare const SimpleSearch: (search: string, objects: string[]) => string[];
|
|
|
3322
3559
|
|
|
3323
3560
|
declare const writeToClipboard: (text: string) => Promise<void>;
|
|
3324
3561
|
|
|
3325
|
-
export { ASTNodeInterpreter, type ASTNodeInterpreterProps, AnchoredFloatingContainer, type AnchoredFloatingContainerProps, ArrayUtil, AutoColumnOrderFeature, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, type BackgroundOverlayProps, type BagFunction, type BagFunctionOrNode, type BagFunctionOrValue, BagFunctionUtil, BooleanFilterPopUp, 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, Chip, type ChipColor, ChipList, type ChipListProps, type ChipProps, ChipUtil, type ColumnSizeCalculatoProps, ColumnSizeUtil, ColumnSizingWithTargetFeature, Combobox, ComboboxContext, type ComboboxContextActions, type ComboboxContextComputedState, type ComboboxContextConfig, type ComboboxContextIds, type ComboboxContextInternalState, type ComboboxContextLayout, type ComboboxContextSearch, type ComboboxContextType, ComboboxInput, type ComboboxInputProps, ComboboxList, type ComboboxListProps, ComboboxOption, type ComboboxOptionProps, type ComboboxOptionType, type ComboboxProps, ComboboxRoot, type ComboboxRootProps, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogType, type ControlledStateProps, CopyToClipboardWrapper, type CopyToClipboardWrapperProps, type Crumb, DOMUtils, type DataType, type DataTypeFilterPopUpProps, DataTypeUtils, type DataValue, DateFilterPopUp, DatePicker, type DatePickerProps, DateProperty, type DatePropertyProps, DateTimeFormat, DateTimeInput, type DateTimeInputProps, DateTimePicker, DateTimePickerDialog, type DateTimePickerDialogProps, type DateTimePickerProps, type DateTimePrecision, DateUtils, DatetimeFilterPopUp, DayPicker, type DayPickerProps, 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, DrawerCloseButton, type DrawerCloseButtonProps, DrawerContent, type DrawerContentProps, DrawerContext, type DrawerContextType, type DrawerProps, DrawerRoot, type DrawerRootProps, 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, ExpansionIcon, type ExpansionIconProps, type FAQItem, FAQSection, type FAQSectionProps, FillerCell, type FillerCellProps, FilterBasePopUp, FilterFunctions, FilterList, type FilterListItem, type FilterListPopUpBuilderProps, type FilterListProps, type FilterOperator, type FilterOperatorBoolean, type FilterOperatorDate, type FilterOperatorDatetime, FilterOperatorLabel, type FilterOperatorLabelProps, type FilterOperatorNumber, type FilterOperatorTags, type FilterOperatorTagsSingle, type FilterOperatorText, type FilterOperatorUnknownType, FilterOperatorUtils, type FilterParameter, FilterPopUp, type FilterPopUpBaseProps, type FilterPopUpProps, type FilterValue, type FilterValueTranslationOptions, FilterValueUtils, FlexibleDateTimeInput, type FlexibleDateTimeInputProps, 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, GenericFilterPopUp, HelpwaveBadge, type HelpwaveBadgeProps, HelpwaveLogo, type HelpwaveProps, type HightideConfig, HightideConfigContext, HightideConfigProvider, type HightideConfigProviderProps, HightideProvider, type HightideTranslationEntries, type HightideTranslationLocales, IconButton, IconButtonBase, type IconButtonBaseProps, type IconButtonProps, type IdentifierFilterValue, InfiniteScroll, type InfiniteScrollProps, Input, InputDialog, type InputModalProps, type InputProps, InsideLabelInput, LanguageDialog, LanguageSelect, type ListNavigationOptions, type ListNavigationReturn, LoadingAndErrorComponent, type LoadingAndErrorComponentProps, LoadingAnimation, type LoadingAnimationProps, type LoadingComponentProps, LoadingContainer, 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 MultiSelectChipDisplayButtonProps, type MultiSelectChipDisplayProps, MultiSelectContent, type MultiSelectContentProps, MultiSelectContext, type MultiSelectContextActions, type MultiSelectContextComputedState, type MultiSelectContextConfig, type MultiSelectContextIds, type MultiSelectContextLayout, type MultiSelectContextSearch, type MultiSelectContextState, type MultiSelectContextType, type MultiSelectIconAppearance, type MultiSelectIds, MultiSelectOption, MultiSelectOptionDisplayContext, type MultiSelectOptionDisplayLocation, type MultiSelectOptionProps, type MultiSelectOptionType, MultiSelectProperty, type MultiSelectPropertyProps, type MultiSelectProps, MultiSelectRoot, type MultiSelectRootProps, MultiSubjectSearchWithMapping, Navigation, NavigationItemList, type NavigationItemListProps, type NavigationItemType, type NavigationProps, NumberFilterPopUp, NumberProperty, type NumberPropertyProps, type OverlayItem, OverlayRegistry, Pagination, type PaginationProps, PolymorphicSlot, type PolymorphicSlotProps, 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, type Range, type RangeOptions, type ResolvedTheme, ScrollPicker, type ScrollPickerProps, SearchBar, type SearchBarProps, Select, SelectButton, type SelectButtonProps, SelectContent, type SelectContentProps, SelectContext, type SelectContextActions, type SelectContextComputedState, type SelectContextConfig, type SelectContextIds, type SelectContextLayout, type SelectContextSearch, type SelectContextState, type SelectContextType, type SelectIconAppearance, type SelectIds, SelectOption, SelectOptionDisplayContext, type SelectOptionDisplayLocation, type SelectOptionProps, type SelectOptionType, type SelectProps, SelectRoot, type SelectRootProps, type SelectionOption, SimpleSearch, SimpleSearchWithMapping, type SingleOrArray, SingleSelectProperty, type SingleSelectPropertyProps, type SingleSelectionReturn, SortingList, type SortingListItem, type SortingListProps, StepperBar, type StepperBarProps, type StepperState, StorageListener, type StorageSubscriber, type SuperSet, Switch, type SwitchProps, type TabContextType, type TabInfo, TabList, TabPanel, TabSwitcher, type TabSwitcherProps, TabView, Table, TableBody, TableCell, type TableCellProps, TableColumn, TableColumnDefinitionContext, type TableColumnDefinitionContextType, type TableColumnProps, TableColumnSwitcher, TableColumnSwitcherPopUp, type TableColumnSwitcherPopUpProps, type TableColumnSwitcherProps, TableContainerContext, type TableContainerContextType, TableDisplay, type TableDisplayProps, TableFilter, TableFilterButton, type TableFilterButtonProps, TableHeader, type TableHeaderProps, TablePageSizeSelect, type TablePageSizeSelectProps, TablePagination, TablePaginationMenu, type TablePaginationMenuProps, type TablePaginationProps, type TableProps, TableProvider, type TableProviderProps, TableSortButton, type TableSortButtonProps, TableStateContext, type TableStateContextType, TableStateWithoutSizingContext, type TableStateWithoutSizingContextType, TableWithSelection, type TableWithSelectionProps, TableWithSelectionProvider, type TableWithSelectionProviderProps, TagIcon, type TagProps, TagsFilterPopUp, type TagsFilterPopUpProps, TagsSingleFilterPopUp, type TagsSingleFilterPopUpProps, TextFilterPopUp, TextImage, type TextImageProps, TextProperty, type TextPropertyProps, Textarea, type TextareaProps, TextareaWithHeadline, type TextareaWithHeadlineProps, type ThemeConfig, ThemeContext, ThemeDialog, type ThemeDialogProps, ThemeIcon, type ThemeIconProps, ThemeProvider, type ThemeProviderProps, ThemeSelect, type ThemeSelectProps, type ThemeType, ThemeUtil, TimeDisplay, TimePicker, type TimePickerMillisecondIncrement, type TimePickerMinuteIncrement, type TimePickerProps, type TimePickerSecondIncrement, ToggleableInput, Tooltip, type TooltipConfig, TooltipContext, type TooltipContextType, TooltipDisplay, type TooltipDisplayProps, type TooltipProps, TooltipRoot, type TooltipRootProps, TooltipTrigger, type TooltipTriggerBag, type TooltipTriggerContextValue, type TooltipTriggerProps, Transition, type TransitionState, type TransitionWrapperProps, type UnBoundedRange, type UseAnchoredPositionOptions, type UseAnchoredPostitionProps, type UseComboboxActions, type UseComboboxComputedState, type UseComboboxOption, type UseComboboxOptions, type UseComboboxReturn, type UseComboboxState, type UseCreateFormProps, type UseCreateFormResult, type UseDelayOptions, type UseDelayOptionsResolved, type UseFocusTrapProps, type UseFormFieldOptions, type UseFormFieldParameter, type UseFormObserverKeyProps, type UseFormObserverProps, type UseMultiSelectActions, type UseMultiSelectComputedState, type UseMultiSelectFirstHighlightBehavior, type UseMultiSelectOption, type UseMultiSelectOptions, type UseMultiSelectReturn, type UseMultiSelectState, type UseMultiSelectionOption, type UseMultiSelectionOptions, type UseMultiSelectionReturn, type UseOutsideClickHandlers, type UseOutsideClickOptions, type UseOutsideClickProps, type UseOverlayRegistryProps, type UseOverlayRegistryResult, type UsePresenceRefProps, type UseResizeObserverProps, type UseSearchOptions, type UseSearchReturn, type UseSelectActions, type UseSelectComputedState, type UseSelectFirstHighlightBehavior, type UseSelectOption, type UseSelectOptions, type UseSelectReturn, type UseSelectState, type UseSingleSelectionOptions, type UseTypeAheadSearchOptions, type UseTypeAheadSearchReturn, type UseUpdatingDateStringProps, UseValidators, type UserFormFieldProps, type ValidatorError, type ValidatorResult, VerticalDivider, type VerticalDividerProps, Visibility, type VisibilityProps, type WeekDay, YearMonthPicker, type YearMonthPickerProps, builder, closestMatch, createLoopingList, createLoopingListWithIndex, equalSizeGroups, getNeighbours, hightideTranslation, hightideTranslationLocales, match, mergeProps, noop, range, resolveSetState, toSizeVars, useAnchoredPosition, useCombobox, useComboboxContext, useControlledState, useCreateForm, useDelay, useDialogContext, useDrawerContext, useEventCallbackStabilizer, useFilterValueTranslation, useFocusGuards, useFocusManagement, useFocusOnceVisible, useFocusTrap, useForm, useFormField, useFormObserver, useFormObserverKey, useHandleRefs, useHightideConfig, useHightideTranslation, useICUTranslation, useIsMounted, useLanguage, useListNavigation, useLocale, useLogOnce, useLogUnstableDependencies, useMultiSelect, useMultiSelectContext, useMultiSelectOptionDisplayLocation, useMultiSelection, useOutsideClick, useOverlayRegistry, useOverwritableState, usePopUpContext, usePresenceRef, useRerender, useResizeObserver, useScrollObserver, useSearch, useSelect, useSelectContext, useSelectOptionDisplayLocation, useSingleSelection, useStorage, useTabContext, useTableColumnDefinitionContext, useTableContainerContext, useTableStateContext, useTableStateWithoutSizingContext, useTheme, useTooltip, useTransitionState, useTranslatedValidators, useTypeAheadSearch, useUpdatingDateString, useWindowResizeObserver, validateEmail, writeToClipboard };
|
|
3562
|
+
export { ASTNodeInterpreter, type ASTNodeInterpreterProps, AnchoredFloatingContainer, type AnchoredFloatingContainerProps, ArrayUtil, AutoColumnOrderFeature, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, type BackgroundOverlayProps, type BagFunction, type BagFunctionOrNode, type BagFunctionOrValue, BagFunctionUtil, BooleanFilterPopUp, 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, Chip, type ChipColor, ChipList, type ChipListProps, type ChipProps, ChipUtil, type ColumnSizeCalculatoProps, ColumnSizeUtil, ColumnSizingWithTargetFeature, Combobox, ComboboxContext, type ComboboxContextActions, type ComboboxContextComputedState, type ComboboxContextConfig, type ComboboxContextIds, type ComboboxContextInternalState, type ComboboxContextLayout, type ComboboxContextSearch, type ComboboxContextType, ComboboxInput, type ComboboxInputProps, ComboboxList, type ComboboxListProps, ComboboxOption, type ComboboxOptionProps, type ComboboxOptionType, type ComboboxProps, ComboboxRoot, type ComboboxRootProps, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogType, type ControlledStateProps, CopyToClipboardWrapper, type CopyToClipboardWrapperProps, type Crumb, DOMUtils, type DataType, type DataTypeFilterPopUpProps, DataTypeUtils, type DataValue, DateFilterPopUp, DatePicker, type DatePickerProps, DateProperty, type DatePropertyProps, DateTimeField, type DateTimeFieldProps, DateTimeFormat, DateTimeInput, type DateTimeInputProps, DateTimePicker, DateTimePickerDialog, type DateTimePickerDialogProps, type DateTimePickerProps, type DateTimePrecision, type DateTimeSegment, DateUtils, DatetimeFilterPopUp, DayPicker, type DayPickerProps, 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, DrawerCloseButton, type DrawerCloseButtonProps, DrawerContent, type DrawerContentProps, DrawerContext, type DrawerContextType, type DrawerProps, DrawerRoot, type DrawerRootProps, Duration, type DurationJSON, type EaseFunction, EaseFunctions, type EditCompleteOptions, type EditCompleteOptionsResolved, type EditableSegmentType, type ElementHandle, ErrorComponent, type ErrorComponentProps, type Exact, Expandable, ExpandableContent, type ExpandableContentProps, ExpandableHeader, type ExpandableHeaderProps, type ExpandableProps, ExpandableRoot, type ExpandableRootProps, ExpansionIcon, type ExpansionIconProps, type FAQItem, FAQSection, type FAQSectionProps, FillerCell, type FillerCellProps, FilterBasePopUp, FilterFunctions, FilterList, type FilterListItem, type FilterListPopUpBuilderProps, type FilterListProps, type FilterOperator, type FilterOperatorBoolean, type FilterOperatorDate, type FilterOperatorDatetime, FilterOperatorLabel, type FilterOperatorLabelProps, type FilterOperatorNumber, type FilterOperatorTags, type FilterOperatorTagsSingle, type FilterOperatorText, type FilterOperatorUnknownType, FilterOperatorUtils, type FilterParameter, FilterPopUp, type FilterPopUpBaseProps, type FilterPopUpProps, type FilterValue, type FilterValueTranslationOptions, FilterValueUtils, FlexibleDateTimeInput, type FlexibleDateTimeInputProps, 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, GenericFilterPopUp, HelpwaveBadge, type HelpwaveBadgeProps, HelpwaveLogo, type HelpwaveProps, type HightideConfig, HightideConfigContext, HightideConfigProvider, type HightideConfigProviderProps, HightideProvider, type HightideTranslationEntries, type HightideTranslationLocales, IconButton, IconButtonBase, type IconButtonBaseProps, type IconButtonProps, type IdentifierFilterValue, InfiniteScroll, type InfiniteScrollProps, Input, InputDialog, type InputModalProps, type InputProps, InsideLabelInput, LanguageDialog, LanguageSelect, type ListNavigationOptions, type ListNavigationReturn, LoadingAndErrorComponent, type LoadingAndErrorComponentProps, LoadingAnimation, type LoadingAnimationProps, type LoadingComponentProps, LoadingContainer, 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 MultiSelectChipDisplayButtonProps, type MultiSelectChipDisplayProps, MultiSelectContent, type MultiSelectContentProps, MultiSelectContext, type MultiSelectContextActions, type MultiSelectContextComputedState, type MultiSelectContextConfig, type MultiSelectContextIds, type MultiSelectContextLayout, type MultiSelectContextSearch, type MultiSelectContextState, type MultiSelectContextType, type MultiSelectIconAppearance, type MultiSelectIds, MultiSelectOption, MultiSelectOptionDisplayContext, type MultiSelectOptionDisplayLocation, type MultiSelectOptionProps, type MultiSelectOptionType, MultiSelectProperty, type MultiSelectPropertyProps, type MultiSelectProps, MultiSelectRoot, type MultiSelectRootProps, MultiSubjectSearchWithMapping, Navigation, NavigationItemList, type NavigationItemListProps, type NavigationItemType, type NavigationProps, NumberFilterPopUp, NumberProperty, type NumberPropertyProps, type OverlayItem, OverlayRegistry, Pagination, type PaginationProps, PolymorphicSlot, type PolymorphicSlotProps, PopUp, PopUpContext, type PopUpContextType, PopUpOpener, type PopUpOpenerBag, type PopUpOpenerProps, type PopUpProps, PopUpRoot, type PopUpRootProps, Portal, type PortalProps, type ProcessModelActivityIconKind, ProcessModelActivityNode, type ProcessModelActivityNodeKind, type ProcessModelActivityNodeProps, ProcessModelCanvas, type ProcessModelCanvasProps, type ProcessModelEdge, type ProcessModelEdgePointResult, type ProcessModelEdgeStrokeStyle, type ProcessModelGraph, type ProcessModelGraphActivityNode, type ProcessModelGraphNode, type ProcessModelGraphTerminalNode, type ProcessModelGraphWithTraces, type ProcessModelLayoutResult, ProcessModelLayoutUtilities, type ProcessModelLibraryEntry, type ProcessModelNodeBase, type ProcessModelNodePosition, type ProcessModelTerminalKind, ProcessModelTerminalNode, type ProcessModelTerminalNodeProps, type ProcessModelTrace, ProcessModelTraceReplay, type ProcessModelTraceReplayProps, ProgressIndicator, type ProgressIndicatorProps, PromiseUtils, PropertyBase, type PropertyBaseProps, type PropertyField, PropsUtil, type PropsWithBagFunction, type PropsWithBagFunctionOrChildren, type Range, type RangeOptions, type ResolvedTheme, ScrollPicker, type ScrollPickerProps, SearchBar, type SearchBarProps, type SegmentBounds, type SegmentBuffer, type SegmentEditState, type SegmentLayoutOptions, type SegmentValues, Select, SelectButton, type SelectButtonProps, SelectContent, type SelectContentProps, SelectContext, type SelectContextActions, type SelectContextComputedState, type SelectContextConfig, type SelectContextIds, type SelectContextLayout, type SelectContextSearch, type SelectContextState, type SelectContextType, type SelectIconAppearance, type SelectIds, SelectOption, SelectOptionDisplayContext, type SelectOptionDisplayLocation, type SelectOptionProps, type SelectOptionType, type SelectProps, SelectRoot, type SelectRootProps, type SelectionOption, SimpleSearch, SimpleSearchWithMapping, type SingleOrArray, SingleSelectProperty, type SingleSelectPropertyProps, type SingleSelectionReturn, SortingList, type SortingListItem, type SortingListProps, StepperBar, type StepperBarProps, type StepperState, StorageListener, type StorageSubscriber, type SuperSet, Switch, type SwitchProps, type TabContextType, type TabInfo, TabList, TabPanel, TabSwitcher, type TabSwitcherProps, TabView, Table, TableBody, TableCell, type TableCellProps, TableColumn, TableColumnDefinitionContext, type TableColumnDefinitionContextType, type TableColumnProps, TableColumnSwitcher, TableColumnSwitcherPopUp, type TableColumnSwitcherPopUpProps, type TableColumnSwitcherProps, TableContainerContext, type TableContainerContextType, TableDisplay, type TableDisplayProps, TableFilter, TableFilterButton, type TableFilterButtonProps, TableHeader, type TableHeaderProps, TablePageSizeSelect, type TablePageSizeSelectProps, TablePagination, TablePaginationMenu, type TablePaginationMenuProps, type TablePaginationProps, type TableProps, TableProvider, type TableProviderProps, TableSortButton, type TableSortButtonProps, TableStateContext, type TableStateContextType, TableStateWithoutSizingContext, type TableStateWithoutSizingContextType, TableWithSelection, type TableWithSelectionProps, TableWithSelectionProvider, type TableWithSelectionProviderProps, TagIcon, type TagProps, TagsFilterPopUp, type TagsFilterPopUpProps, TagsSingleFilterPopUp, type TagsSingleFilterPopUpProps, TextFilterPopUp, TextImage, type TextImageProps, TextProperty, type TextPropertyProps, Textarea, type TextareaProps, TextareaWithHeadline, type TextareaWithHeadlineProps, type ThemeConfig, ThemeContext, ThemeDialog, type ThemeDialogProps, ThemeIcon, type ThemeIconProps, ThemeProvider, type ThemeProviderProps, ThemeSelect, type ThemeSelectProps, type ThemeType, ThemeUtil, TimeDisplay, TimePicker, type TimePickerMillisecondIncrement, type TimePickerMinuteIncrement, type TimePickerProps, type TimePickerSecondIncrement, ToggleableInput, Tooltip, type TooltipConfig, TooltipContext, type TooltipContextType, TooltipDisplay, type TooltipDisplayProps, type TooltipProps, TooltipRoot, type TooltipRootProps, TooltipTrigger, type TooltipTriggerBag, type TooltipTriggerContextValue, type TooltipTriggerProps, Transition, type TransitionState, type TransitionWrapperProps, type UnBoundedRange, type UseAnchoredPositionOptions, type UseAnchoredPostitionProps, type UseComboboxActions, type UseComboboxComputedState, type UseComboboxOption, type UseComboboxOptions, type UseComboboxReturn, type UseComboboxState, type UseCreateFormProps, type UseCreateFormResult, type UseDelayOptions, type UseDelayOptionsResolved, type UseFocusTrapProps, type UseFormFieldOptions, type UseFormFieldParameter, type UseFormObserverKeyProps, type UseFormObserverProps, type UseMultiSelectActions, type UseMultiSelectComputedState, type UseMultiSelectFirstHighlightBehavior, type UseMultiSelectOption, type UseMultiSelectOptions, type UseMultiSelectReturn, type UseMultiSelectState, type UseMultiSelectionOption, type UseMultiSelectionOptions, type UseMultiSelectionReturn, type UseOutsideClickHandlers, type UseOutsideClickOptions, type UseOutsideClickProps, type UseOverlayRegistryProps, type UseOverlayRegistryResult, type UsePresenceRefProps, type UseResizeObserverProps, type UseSearchOptions, type UseSearchReturn, type UseSelectActions, type UseSelectComputedState, type UseSelectFirstHighlightBehavior, type UseSelectOption, type UseSelectOptions, type UseSelectReturn, type UseSelectState, type UseSingleSelectionOptions, type UseTypeAheadSearchOptions, type UseTypeAheadSearchReturn, type UseUpdatingDateStringProps, UseValidators, type UserFormFieldProps, type ValidatorError, type ValidatorResult, VerticalDivider, type VerticalDividerProps, Visibility, type VisibilityProps, type WeekDay, YearMonthPicker, type YearMonthPickerProps, buildSegmentLayout, builder, clearSegment, closestMatch, composeDate, createLoopingList, createLoopingListWithIndex, decomposeDate, editableSegmentTypes, editableTypesOf, equalSizeGroups, formatSegment, getNeighbours, getProcessModelLibraryEntry, hightideTranslation, hightideTranslationLocales, isComplete, isEmpty, match, mergeProps, noop, processModelLibrary, range, resolveSetState, segmentBounds, segmentPlaceholder, setDayPeriod, stepSegment, timeUnitTranslationKey, toSizeVars, typeDigit, useAnchoredPosition, useCombobox, useComboboxContext, useControlledState, useCreateForm, useDateTimeFormat, useDelay, useDialogContext, useDrawerContext, useEventCallbackStabilizer, useFilterValueTranslation, useFocusGuards, useFocusManagement, useFocusOnceVisible, useFocusTrap, useForm, useFormField, useFormObserver, useFormObserverKey, useHandleRefs, useHightideConfig, useHightideTranslation, useICUTranslation, useIsMounted, useLanguage, useListNavigation, useLocale, useLogOnce, useLogUnstableDependencies, useMultiSelect, useMultiSelectContext, useMultiSelectOptionDisplayLocation, useMultiSelection, useOutsideClick, useOverlayRegistry, useOverwritableState, usePopUpContext, usePresenceRef, useRerender, useResizeObserver, useScrollObserver, useSearch, useSelect, useSelectContext, useSelectOptionDisplayLocation, useSingleSelection, useStorage, useTabContext, useTableColumnDefinitionContext, useTableContainerContext, useTableStateContext, useTableStateWithoutSizingContext, useTheme, useTimeZone, useTooltip, useTransitionState, useTranslatedValidators, useTypeAheadSearch, useUpdatingDateString, useWindowResizeObserver, validateEmail, writeToClipboard };
|