@mmb-digital/design-system-web 0.1.347 → 0.1.348-alpha.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.
@@ -0,0 +1,2847 @@
1
+ import * as _$react from "react";
2
+ import { AriaAttributes, AriaRole, BaseSyntheticEvent, ChangeEvent, ComponentProps, ComponentType, ElementType, FC, FocusEvent, FocusEventHandler, HTMLAttributeAnchorTarget, HTMLAttributes, HTMLInputAutoCompleteAttribute, HTMLInputTypeAttribute, HTMLProps, Key, KeyboardEvent, KeyboardEventHandler, MouseEvent, MouseEventHandler, MutableRefObject, ReactElement, ReactNode, Ref, RefObject, TextareaHTMLAttributes, TouchEvent } from "react";
3
+ import { Property } from "csstype";
4
+ import { MessageDescriptor } from "react-intl";
5
+ import { FormatXMLElementFn, PrimitiveType } from "intl-messageformat";
6
+ import emotionStyled from "@emotion/styled";
7
+ import * as _$_emotion_react0 from "@emotion/react";
8
+ import { Theme as Theme$1 } from "@emotion/react";
9
+ import * as _$react_hook_form0 from "react-hook-form";
10
+ import { FieldPath, FieldValues, RegisterOptions, SubmitErrorHandler, UseFormProps as UseFormProps$1, UseFormReturn as UseFormReturn$1 } from "react-hook-form";
11
+ import * as _$afformative from "afformative";
12
+ import { Formatter } from "afformative";
13
+ import { Locale } from "date-fns";
14
+ import { DatePickerProps as DatePickerProps$1 } from "react-datepicker";
15
+ import { FactoryOpts } from "imask";
16
+ import { useMergeRefs } from "@floating-ui/react";
17
+ import { z } from "zod";
18
+
19
+ //#region src/components/formattedMessage/types.d.ts
20
+ type MessageValues = Record<string, FormatXMLElementFn<ReactNode, ReactNode> | PrimitiveType | ReactNode>;
21
+ type PrimitiveMessageValues = Record<string, PrimitiveType>;
22
+ type IsMessageDisplayableHookReturnFunction = (messageDescriptor: MessageDescriptor) => boolean;
23
+ //#endregion
24
+ //#region src/components/formattedMessage/formattedMessage/FormattedMessage.d.ts
25
+ interface FormattedMessageProps extends MessageDescriptor {
26
+ values?: MessageValues;
27
+ }
28
+ declare const FormattedMessage: (props: FormattedMessageProps) => _$react.JSX.Element;
29
+ //#endregion
30
+ //#region src/components/formattedMessage/formattedHtmlMessage/FormattedHtmlMessage.d.ts
31
+ interface FormattedHtmlMessageProps extends MessageDescriptorWithPrimitiveValues {}
32
+ declare const FormattedHtmlMessage: (props: FormattedHtmlMessageProps) => _$react.JSX.Element;
33
+ //#endregion
34
+ //#region src/components/formattedMessage/isMessageDisplayable/useIsMessageDisplayable.d.ts
35
+ declare const useIsMessageDisplayable: () => IsMessageDisplayableHookReturnFunction;
36
+ //#endregion
37
+ //#region src/components/formattedMessage/getFormattedHtmlMessageIfDisplayable/useGetFormattedHtmlMessageIfDisplayable.d.ts
38
+ declare const useGetFormattedHtmlMessageIfDisplayable: () => (messageDescriptor: MessageDescriptorWithPrimitiveValues) => _$react.JSX.Element | undefined;
39
+ //#endregion
40
+ //#region src/components/tooltip/types.d.ts
41
+ type TooltipRenderParent = (getParentProps: (userProps?: HTMLProps<Element>) => Record<string, unknown>) => ReactElement;
42
+ declare enum TooltipPlacement {
43
+ bottom = "bottom",
44
+ left = "left",
45
+ right = "right",
46
+ top = "top"
47
+ }
48
+ interface TooltipDescriptor {
49
+ body: ReactElement | string;
50
+ closeButtonAriaLabel?: string;
51
+ title?: ReactElement | string;
52
+ width?: TooltipWidth;
53
+ }
54
+ interface TooltipInfoDescriptor extends TooltipDescriptor {
55
+ triggerAriaLabel?: string;
56
+ }
57
+ declare enum TooltipInfoDisplayMethod {
58
+ onlyTooltip = "onlyTooltip",
59
+ withNbsp = "withNbsp"
60
+ }
61
+ interface TooltipDelays {
62
+ /** ms */
63
+ closeDelay?: number;
64
+ /** ms */
65
+ openDelay?: number;
66
+ }
67
+ interface BaseTooltipInfoProps {
68
+ triggerAriaLabel?: string;
69
+ }
70
+ declare enum TooltipCloseReason {
71
+ closeButtonClick = "closeButtonClick",
72
+ closeButtonKeyPress = "closeButtonKeyPress",
73
+ focusLost = "focusLost"
74
+ }
75
+ declare enum TooltipWidth {
76
+ lg = "lg",
77
+ md = "md"
78
+ }
79
+ //#endregion
80
+ //#region src/components/tooltip/infoDisplayableCheck/TooltipInfoDisplayableCheck.d.ts
81
+ interface TooltipInfoDisplayableCheckProps extends DesignSystemBaseProps {
82
+ body: MessageDescriptorWithPrimitiveValues;
83
+ closeButtonAriaLabel?: MessageDescriptorWithPrimitiveValues;
84
+ displayMethod: TooltipInfoDisplayMethod;
85
+ title?: MessageDescriptorWithPrimitiveValues;
86
+ triggerAriaLabel?: MessageDescriptorWithPrimitiveValues;
87
+ }
88
+ declare const TooltipInfoDisplayableCheck: (props: TooltipInfoDisplayableCheckProps) => _$react.JSX.Element | null;
89
+ //#endregion
90
+ //#region src/components/tooltip/infoConditional/TooltipInfoConditional.d.ts
91
+ interface TooltipInfoConditionalProps extends DesignSystemBaseProps, BaseTooltipInfoProps {
92
+ displayMethod: TooltipInfoDisplayMethod;
93
+ floatingElement?: Partial<TooltipDescriptor>;
94
+ }
95
+ declare const TooltipInfoConditional: (props: TooltipInfoConditionalProps) => _$react.JSX.Element | null;
96
+ //#endregion
97
+ //#region src/components/tooltip/useCreateTooltipInfoDescriptor/useCreateTooltipInfoDescriptor.d.ts
98
+ interface CreateTooltipInfoDescriptorParam {
99
+ body: MessageDescriptorWithPrimitiveValues;
100
+ closeButtonAriaLabel?: MessageDescriptorWithPrimitiveValues;
101
+ title?: MessageDescriptorWithPrimitiveValues;
102
+ triggerAriaLabel?: MessageDescriptorWithPrimitiveValues;
103
+ width?: TooltipWidth;
104
+ }
105
+ type CreateTooltipInfoDescriptor = (param: CreateTooltipInfoDescriptorParam) => TooltipInfoDescriptor | undefined;
106
+ declare const useCreateTooltipInfoDescriptor: () => CreateTooltipInfoDescriptor;
107
+ //#endregion
108
+ //#region src/components/tooltip/info/TooltipInfo.d.ts
109
+ interface TooltipInfoProps extends DesignSystemBaseProps, TooltipDelays, BaseTooltipInfoProps {
110
+ floatingElement: TooltipDescriptor;
111
+ }
112
+ declare const TooltipInfo: (props: TooltipInfoProps) => _$react.JSX.Element;
113
+ //#endregion
114
+ //#region src/components/tooltip/general/TooltipGeneral.d.ts
115
+ interface TooltipGeneralProps extends DesignSystemBaseProps, TooltipDelays {
116
+ floatingElement: TooltipDescriptor;
117
+ onClose?: ((closeReason: TooltipCloseReason) => void) | undefined;
118
+ onOpen?: (() => void) | undefined;
119
+ placement?: TooltipPlacement | undefined;
120
+ portalRootElement?: HTMLElement | MutableRefObject<HTMLElement | null> | null;
121
+ renderParent: TooltipRenderParent;
122
+ }
123
+ declare const TooltipGeneral: (props: TooltipGeneralProps) => _$react.JSX.Element;
124
+ //#endregion
125
+ //#region src/components/tooltip/util.d.ts
126
+ type TooltipInfoDescriptorPropsSubset = Pick<TooltipInfoProps, 'floatingElement' | 'triggerAriaLabel'>;
127
+ declare const mapTooltipInfoDescriptorToPropsSubset: <T extends TooltipInfoDescriptor | undefined>(tooltipInfoDescriptor: T) => T extends undefined ? undefined : TooltipInfoDescriptorPropsSubset;
128
+ //#endregion
129
+ //#region src/types.d.ts
130
+ interface SsrProps {
131
+ suppressHydrationWarning?: boolean;
132
+ }
133
+ interface MessageDescriptorWithPrimitiveValues extends MessageDescriptor {
134
+ /**
135
+ * Since `FormattedHtmlMessage` uses `dangerouslySetInnerHTML` under the hood and sometimes
136
+ * includes user input, we need to escape the `values` prop to prevent XSS vulnerabilities.
137
+ *
138
+ * In case we need to display HTML content (and we're sure it's safe), the `htmlValues` prop
139
+ * should be used instead.
140
+ */
141
+ htmlValues?: PrimitiveMessageValues;
142
+ values?: PrimitiveMessageValues;
143
+ }
144
+ interface MessageDescriptorWithValues extends MessageDescriptor {
145
+ values?: MessageValues;
146
+ }
147
+ interface FieldControlProps extends DesignSystemBaseProps {
148
+ describedBy?: string;
149
+ id?: string;
150
+ invalid?: boolean;
151
+ labelledBy?: string;
152
+ name?: string;
153
+ required?: boolean;
154
+ }
155
+ declare enum InputSize {
156
+ md = "md",
157
+ xl = "xl"
158
+ }
159
+ declare enum InputTextAlign {
160
+ center = "center",
161
+ left = "left",
162
+ right = "right"
163
+ }
164
+ declare enum MediaType {
165
+ desktop = "desktop",
166
+ mobile = "mobile",
167
+ tablet = "tablet"
168
+ }
169
+ declare enum ColorScheme {
170
+ dark = "dark",
171
+ light = "light"
172
+ }
173
+ interface ColorObject<Dark extends string = string, Light extends string = string> {
174
+ dark: Dark;
175
+ light: Light;
176
+ }
177
+ interface InputProps extends FieldControlProps {
178
+ ariaLabel?: string;
179
+ autoComplete?: HTMLInputAutoCompleteAttribute;
180
+ button?: ReactNode;
181
+ colorInput?: Property.Color | undefined;
182
+ disabled?: boolean;
183
+ halfWidth?: boolean;
184
+ maxLength?: number;
185
+ name: string;
186
+ onBlur?: ((event: FocusEvent<HTMLInputElement>) => void) | undefined;
187
+ onChange?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
188
+ prefix?: ReactNode;
189
+ ref?: Ref<HTMLInputElement>;
190
+ size: InputSize;
191
+ suffix?: ReactNode;
192
+ value?: string;
193
+ }
194
+ declare enum FieldOptionality {
195
+ optional = "optional",
196
+ optionalWithoutLabelSuffix = "optionalWithoutLabelSuffix",
197
+ required = "required"
198
+ }
199
+ interface InputLabelPassthroughProps {
200
+ label?: ReactNode;
201
+ labelAs?: ElementType;
202
+ /**
203
+ * Visually hidden text for screen readers providing additional info, such as the availability of a tooltip.
204
+ * Prefer using `hiddenHintText` in `FieldWrapper` where possible.
205
+ */
206
+ labelHiddenText?: string;
207
+ labelId?: string;
208
+ labelSuffix?: ReactNode;
209
+ tooltip?: TooltipInfoDescriptor;
210
+ }
211
+ declare enum LabelTooltipPosition {
212
+ inline = "inline",
213
+ rightCenter = "rightCenter"
214
+ }
215
+ //#endregion
216
+ //#region src/contexts/mediaType/MediaTypeProvider.d.ts
217
+ interface MediaTypeProviderProps {
218
+ children: ReactNode;
219
+ mediaType: MediaType;
220
+ }
221
+ declare const MediaTypeProvider: FC<MediaTypeProviderProps>;
222
+ //#endregion
223
+ //#region src/contexts/mediaType/useMediaType.d.ts
224
+ type UseMediaTypeParam = MediaType | {
225
+ mediaType?: MediaType | undefined;
226
+ };
227
+ interface UseMediaTypeOptions {
228
+ defaultMediaType?: MediaType;
229
+ }
230
+ /**
231
+ * priorities:
232
+ *
233
+ * 1. value passed to the hook
234
+ * 2. value passed from the nearest provider
235
+ * 3. defaultValue passed in the options object to the hook
236
+ * 4. fallbackMediaType
237
+ */
238
+ declare const useMediaType: (param?: UseMediaTypeParam, options?: UseMediaTypeOptions) => MediaType;
239
+ //#endregion
240
+ //#region src/contexts/colorScheme/ColorSchemeProvider.d.ts
241
+ interface ColorSchemeProviderProps {
242
+ children: ReactNode;
243
+ colorScheme: ColorScheme;
244
+ }
245
+ declare const ColorSchemeProvider: FC<ColorSchemeProviderProps>;
246
+ //#endregion
247
+ //#region src/contexts/colorScheme/useColorScheme.d.ts
248
+ type UseColorSchemeParam = ColorScheme | {
249
+ colorScheme?: ColorScheme | undefined;
250
+ };
251
+ interface UseColorSchemeOptions {
252
+ defaultColorScheme?: ColorScheme;
253
+ }
254
+ /**
255
+ * priorities:
256
+ *
257
+ * 1. value passed to the hook
258
+ * 2. value passed from the nearest provider
259
+ * 3. defaultValue passed in the options object to the hook
260
+ * 4. fallbackColorScheme
261
+ */
262
+ declare const useColorScheme: (param?: UseColorSchemeParam, options?: UseColorSchemeOptions) => ColorScheme;
263
+ //#endregion
264
+ //#region src/contexts/designSystemMessages/DesignSystemMessagesContext.d.ts
265
+ interface DesignSystemFullMessages {
266
+ button: {
267
+ busyGeneric?: ReactNode;
268
+ busySubmit?: ReactNode;
269
+ };
270
+ fieldWrapper: {
271
+ getTooltipTriggerAriaLabel?: (tooltip: TooltipInfoDescriptor, label: ReactNode) => string;
272
+ optionalLabelSuffix?: ReactNode;
273
+ tooltipHiddenHintText?: ReactNode;
274
+ };
275
+ formErrorSummary: {
276
+ title: ReactNode;
277
+ };
278
+ }
279
+ type DesignSystemPartialMessages = { [K in keyof DesignSystemFullMessages]?: Partial<{ [P in keyof NonNullable<DesignSystemFullMessages[K]>]?: NonNullable<DesignSystemFullMessages[K]>[P] }> };
280
+ //#endregion
281
+ //#region src/contexts/designSystemPropDefaults/DesignSystemPropDefaultsContext.d.ts
282
+ interface DesignSystemFullPropDefaults {
283
+ button: {
284
+ busyDelay: number;
285
+ };
286
+ }
287
+ type DesignSystemPartialPropDefaults = { [K in keyof DesignSystemFullPropDefaults]?: Partial<{ [P in keyof DesignSystemFullPropDefaults[K]]?: DesignSystemFullPropDefaults[K][P] }> };
288
+ //#endregion
289
+ //#region src/contexts/designSystem/DesignSystemProvider.d.ts
290
+ interface DesignSystemProviderProps {
291
+ children: ReactNode;
292
+ colorScheme?: ColorScheme;
293
+ mediaType?: MediaType;
294
+ messages?: DesignSystemPartialMessages;
295
+ propDefaults?: DesignSystemPartialPropDefaults;
296
+ }
297
+ /**
298
+ * It is recommended to use this provider only once in a component tree, ideally near the root.
299
+ * It is possible to override every provider for a subpart of the component tree.
300
+ */
301
+ declare const DesignSystemProvider: (props: DesignSystemProviderProps) => ReactNode;
302
+ //#endregion
303
+ //#region src/utils/getClampedFontSize.d.ts
304
+ declare const getClampedFontSize: (fontSize: string) => string;
305
+ //#endregion
306
+ //#region src/utils/getColor.d.ts
307
+ type GetColor = <Dark extends string = string, Light extends string = string>(colorScheme: ColorScheme, colorSchemeObject: ColorObject<Dark, Light>) => Dark | Light;
308
+ declare const getColor: GetColor;
309
+ //#endregion
310
+ //#region src/utils/isRenderable.d.ts
311
+ declare const isRenderable: (node: ReactNode) => node is Exclude<ReactNode, boolean | null | undefined>;
312
+ //#endregion
313
+ //#region src/utils/mergeRefs.d.ts
314
+ declare const mergeRefs: <T>(...refs: (Ref<T> | undefined)[]) => Ref<T>;
315
+ //#endregion
316
+ //#region src/utils/pxToRem.d.ts
317
+ declare const pxToRem: (px: number | string, base?: number) => string;
318
+ //#endregion
319
+ //#region src/utils/renderReactNodeArray.d.ts
320
+ declare const renderReactNodeArray: (items: ReactNode[], separator?: ReactNode) => ReactElement<unknown, string | _$react.JSXElementConstructor<any>>[] | null;
321
+ //#endregion
322
+ //#region src/utils/styled.d.ts
323
+ declare const styled: typeof emotionStyled;
324
+ //#endregion
325
+ //#region src/utils/useChooseColor.d.ts
326
+ type ChooseColor = <Dark extends string = string, Light extends string = string>(colorSchemeObject: ColorObject<Dark, Light>) => Dark | Light;
327
+ declare const useChooseColor: (colorScheme: ColorScheme) => ChooseColor;
328
+ //#endregion
329
+ //#region src/contexts/designSystem/useDesignSystem.d.ts
330
+ interface UseDesignSystemParam {
331
+ colorScheme?: ColorScheme | undefined;
332
+ mediaType?: MediaType | undefined;
333
+ }
334
+ interface UseDesignSystemOptions extends UseColorSchemeOptions, UseMediaTypeOptions {}
335
+ declare const useDesignSystem: (param?: UseDesignSystemParam, options?: UseDesignSystemOptions) => {
336
+ colorScheme: ColorScheme;
337
+ mediaType: MediaType;
338
+ chooseColor: ChooseColor;
339
+ };
340
+ //#endregion
341
+ //#region src/contexts/designSystem/types.d.ts
342
+ interface DesignSystemBaseProps {
343
+ colorScheme?: ColorScheme;
344
+ mediaType?: MediaType;
345
+ }
346
+ //#endregion
347
+ //#region src/contexts/fieldLabelStore.d.ts
348
+ interface FieldLabelStoreProviderProps {
349
+ children: ReactNode;
350
+ }
351
+ /**
352
+ * The purpose of this provider is to make labels passed to `FieldWrapper` accessible elsewhere,
353
+ * e.g. in a validation error summary.
354
+ *
355
+ * Field labels can be registered via the `useRegisterFieldLabel` hook, and consumed via the `useFieldLabels` hook.
356
+ **/
357
+ declare const FieldLabelStoreProvider: (props: FieldLabelStoreProviderProps) => _$react.JSX.Element;
358
+ declare const useFieldLabels: () => Record<string, ReactNode>;
359
+ declare const useRegisterFieldLabel: () => (name: string, label: ReactNode) => void;
360
+ //#endregion
361
+ //#region src/contexts/fieldConfig.d.ts
362
+ interface FieldConfig {
363
+ optionalLabelSuffix?: ReactNode;
364
+ }
365
+ interface FieldConfigProviderProps extends FieldConfig {
366
+ children: ReactNode;
367
+ }
368
+ /**
369
+ * Should only be used once in the root application wrapper.
370
+ *
371
+ * @deprecated Use `DesignSystemProvider` with the `messages` prop instead.
372
+ */
373
+ declare const FieldConfigProvider: (props: FieldConfigProviderProps) => _$react.JSX.Element;
374
+ declare const useFieldConfig: () => FieldConfig;
375
+ //#endregion
376
+ //#region src/contexts/designSystemMessages/DesignSystemMessagesProvider.d.ts
377
+ interface DesignSystemMessagesProviderProps {
378
+ children: ReactNode;
379
+ messages: DesignSystemPartialMessages;
380
+ }
381
+ declare const DesignSystemMessagesProvider: (props: DesignSystemMessagesProviderProps) => _$react.JSX.Element;
382
+ //#endregion
383
+ //#region src/contexts/designSystemMessages/useDesignSystemMessages.d.ts
384
+ declare const useDesignSystemMessages: () => DesignSystemFullMessages;
385
+ //#endregion
386
+ //#region src/contexts/designSystemPropDefaults/DesignSystemPropDefaultsProvider.d.ts
387
+ interface DesignSystemPropDefaultsProviderProps {
388
+ children: ReactNode;
389
+ defaults: DesignSystemPartialPropDefaults;
390
+ }
391
+ declare const DesignSystemPropDefaultsProvider: (props: DesignSystemPropDefaultsProviderProps) => _$react.JSX.Element;
392
+ //#endregion
393
+ //#region src/contexts/designSystemPropDefaults/useDesignSystemPropDefaults.d.ts
394
+ declare const useDesignSystemPropDefaults: () => DesignSystemFullPropDefaults;
395
+ //#endregion
396
+ //#region src/components/accordion/types.d.ts
397
+ interface AccordionItemType {
398
+ closeActionAriaLabel?: string;
399
+ content: ReactNode;
400
+ description?: ReactNode;
401
+ icon?: ReactNode;
402
+ id: string;
403
+ isOpen?: boolean;
404
+ label: ReactNode;
405
+ onClick?: () => void;
406
+ openActionAriaLabel?: string;
407
+ }
408
+ declare enum AccordionVariant {
409
+ default = "default",
410
+ table = "table"
411
+ }
412
+ //#endregion
413
+ //#region src/components/accordion/Accordion.d.ts
414
+ interface AccordionProps extends DesignSystemBaseProps {
415
+ data: AccordionItemType[];
416
+ variant?: AccordionVariant;
417
+ }
418
+ declare const Accordion: (props: AccordionProps) => _$react.JSX.Element;
419
+ //#endregion
420
+ //#region src/components/accordion/accordionItem/AccordionItem.d.ts
421
+ interface AccordionItemProps extends AccordionItemType, DesignSystemBaseProps {
422
+ variant: AccordionVariant;
423
+ }
424
+ declare const AccordionItem: (props: AccordionItemProps) => _$react.JSX.Element;
425
+ //#endregion
426
+ //#region src/components/accordion/accordionContent/AccordionContent.d.ts
427
+ interface AccordionContentType extends DesignSystemBaseProps {
428
+ children: ReactNode;
429
+ }
430
+ declare const AccordionContent: (props: AccordionContentType) => _$react.JSX.Element;
431
+ //#endregion
432
+ //#region src/components/accordion/accordionKeyValue/AccordionKeyValue.d.ts
433
+ interface AccordionKeyValueProps extends DesignSystemBaseProps {
434
+ colorScheme?: ColorScheme;
435
+ label: ReactNode;
436
+ value: ReactNode;
437
+ }
438
+ declare const AccordionKeyValue: (props: AccordionKeyValueProps) => _$react.JSX.Element;
439
+ //#endregion
440
+ //#region src/components/iconSystem/types.d.ts
441
+ declare enum IconSystemType {
442
+ arrowDown = "arrowDown",
443
+ arrowLeft = "arrowLeft",
444
+ arrowRight = "arrowRight",
445
+ arrowUp = "arrowUp",
446
+ arrowUpRight = "arrowUpRight",
447
+ bank = "bank",
448
+ calendar = "calendar",
449
+ checkmark = "checkmark",
450
+ chevronDown = "chevronDown",
451
+ chevronLeft = "chevronLeft",
452
+ chevronRight = "chevronRight",
453
+ chevronRightCircle = "chevronRightCircle",
454
+ chevronUp = "chevronUp",
455
+ clock = "clock",
456
+ close = "close",
457
+ closeCircle = "closeCircle",
458
+ crosshair = "crosshair",
459
+ download = "download",
460
+ event = "event",
461
+ eyeClosed = "eyeClosed",
462
+ eyeOpen = "eyeOpen",
463
+ fileText = "fileText",
464
+ logout = "logout",
465
+ mail = "mail",
466
+ map = "map",
467
+ menu = "menu",
468
+ minus = "minus",
469
+ pin = "pin",
470
+ plus = "plus",
471
+ plusCircle = "plusCircle",
472
+ refresh = "refresh",
473
+ search = "search",
474
+ share = "share",
475
+ spinner = "spinner",
476
+ trash = "trash",
477
+ unorderedList = "unorderedList",
478
+ uploadCloud = "uploadCloud"
479
+ }
480
+ declare enum IconSystemSize {
481
+ big = "big",
482
+ small = "small"
483
+ }
484
+ interface IconSystemSvgProps {
485
+ fill: string;
486
+ stroke: string;
487
+ }
488
+ //#endregion
489
+ //#region src/components/iconSystem/IconSystem.d.ts
490
+ interface IconSystemProps {
491
+ ariaHidden?: boolean;
492
+ colorScheme?: ColorScheme;
493
+ fill?: string;
494
+ size: IconSystemSize;
495
+ stroke?: string;
496
+ type: IconSystemType;
497
+ }
498
+ declare const IconSystem: (props: IconSystemProps) => _$react.JSX.Element;
499
+ //#endregion
500
+ //#region src/components/button/types.d.ts
501
+ declare enum ButtonStyle {
502
+ primary = "primary",
503
+ secondary = "secondary",
504
+ tertiary = "tertiary",
505
+ link = "link"
506
+ }
507
+ declare enum ButtonSize {
508
+ xs = "xs",
509
+ sm = "sm",
510
+ md = "md",
511
+ xl = "xl",
512
+ xxl = "xxl"
513
+ }
514
+ declare enum ButtonType {
515
+ anchor = "anchor",
516
+ button = "button",
517
+ reset = "reset",
518
+ submit = "submit"
519
+ }
520
+ declare enum ButtonContentAlign {
521
+ center = "center",
522
+ left = "left",
523
+ right = "right"
524
+ }
525
+ //#endregion
526
+ //#region src/components/button/Button.d.ts
527
+ interface ButtonProps extends SsrProps, DesignSystemBaseProps, AriaAttributes {
528
+ ariaDisabled?: boolean;
529
+ ariaLabel?: string;
530
+ as?: ElementType;
531
+ /**
532
+ * Whether the button is in a busy/loading state. Displays a spinner and `busyMessage` after `busyDelay` ms,
533
+ * and disables interaction immediately.
534
+ *
535
+ * Accessibility handled as per https://adrianroselli.com/2021/01/multi-function-button.html
536
+ */
537
+ busy?: boolean;
538
+ busyDelay?: number;
539
+ busyMessage?: ReactNode;
540
+ buttonStyle: ButtonStyle;
541
+ children?: ReactNode;
542
+ className?: string;
543
+ /**
544
+ * Alignment of button content (children, icons, busy loader, ...).
545
+ * Only relevant when `fullWidth` is true.
546
+ * @default ButtonContentAlign.center
547
+ */
548
+ contentAlign?: ButtonContentAlign;
549
+ disabled?: boolean;
550
+ download?: boolean | string;
551
+ fullWidth?: boolean;
552
+ href?: string;
553
+ htmlRef?: RefObject<HTMLAnchorElement | HTMLButtonElement | null>;
554
+ iconLeft?: ReactNode;
555
+ iconRight?: ReactNode;
556
+ iconSystemLeft?: IconSystemType;
557
+ iconSystemRight?: IconSystemType;
558
+ /** @deprecated Use `busy` instead. */
559
+ isLoading?: boolean;
560
+ onClick?: (event: MouseEvent<HTMLAnchorElement | HTMLButtonElement>) => void;
561
+ rel?: string;
562
+ role?: AriaRole;
563
+ size?: ButtonSize;
564
+ target?: HTMLAttributeAnchorTarget;
565
+ type: ButtonType;
566
+ }
567
+ declare const Button: (props: ButtonProps) => _$react.JSX.Element;
568
+ //#endregion
569
+ //#region src/theme/spacing.d.ts
570
+ declare enum Spacing {
571
+ none = "none",
572
+ xxs = "xxs",
573
+ xs = "xs",
574
+ sm = "sm",
575
+ md = "md",
576
+ lg = "lg",
577
+ xl = "xl",
578
+ xxl = "xxl",
579
+ xxxl = "xxxl",
580
+ xxxxl = "xxxxl",
581
+ xxxxxl = "xxxxxl"
582
+ }
583
+ declare const resolveSpacingValue: (theme: Theme$1, spacing: Spacing) => "4px" | "8px" | "12px" | "16px" | "24px" | "32px" | "40px" | "48px" | "56px" | "64px" | "0";
584
+ //#endregion
585
+ //#region src/theme/whiteSpace.d.ts
586
+ declare enum WhiteSpace {
587
+ inherit = "inherit",
588
+ normal = "normal",
589
+ nowrap = "nowrap"
590
+ }
591
+ declare const resolveWhiteSpaceValue: (whiteSpace: WhiteSpace) => string;
592
+ //#endregion
593
+ //#region src/theme/fontWeight.d.ts
594
+ declare enum FontWeight {
595
+ thin100 = "thin",
596
+ extraLight200 = "extraLight",
597
+ light300 = "light",
598
+ regular400 = "regular",
599
+ medium500 = "medium",
600
+ semiBold600 = "semiBold",
601
+ bold700 = "bold",
602
+ extraBold800 = "extraBold",
603
+ heavy900 = "heavy",
604
+ ultra950 = "ultra"
605
+ }
606
+ declare const resolveFontWeightValue: (theme: Theme$1, fontWeight: FontWeight) => 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | 950;
607
+ //#endregion
608
+ //#region src/theme/theme.d.ts
609
+ declare const theme: {
610
+ readonly palette: {
611
+ readonly gold500: "#a58b4b";
612
+ readonly gold600: "#85703d";
613
+ readonly gold700: "#776437";
614
+ readonly gold800: "#62532d";
615
+ readonly pink100: "#fef6fc";
616
+ readonly pink200: "#fae0f5";
617
+ readonly pink300: "#f3b4e6";
618
+ readonly pink400: "#ec88d7";
619
+ readonly pink500: "#e55cc8";
620
+ readonly pink600: "#de31b9";
621
+ readonly pink700: "#bd1e9b";
622
+ readonly pink800: "#911777";
623
+ readonly pink900: "#651053";
624
+ readonly pink1000: "#39092f";
625
+ readonly grey100: "#fafcff";
626
+ readonly grey200: "#e4e7ec";
627
+ readonly grey300: "#c6ccd7";
628
+ readonly grey400: "#a8b2c2";
629
+ readonly grey500: "#8a97ad";
630
+ readonly grey600: "#6c7d98";
631
+ readonly grey700: "#56647b";
632
+ readonly grey800: "#414c5d";
633
+ readonly grey900: "#2c333f";
634
+ readonly grey1000: "#171b21";
635
+ readonly black: "#000000";
636
+ readonly white: "#ffffff";
637
+ readonly transparent: "rgba(255, 255, 255, 0.0000)";
638
+ readonly yellow100: "#fffcee";
639
+ readonly yellow200: "#fff9db";
640
+ readonly yellow300: "#fdf6d8";
641
+ readonly yellow400: "#fae9a3";
642
+ readonly yellow500: "#d7b45b";
643
+ readonly yellow600: "#b17902";
644
+ readonly yellow700: "#ab6802";
645
+ readonly yellow800: "#885202";
646
+ readonly yellow900: "#704300";
647
+ readonly yellow1000: "#3d2500";
648
+ readonly green100: "#f7fffb";
649
+ readonly green200: "#e9fff4";
650
+ readonly green300: "#def7e6";
651
+ readonly green400: "#99e5b3";
652
+ readonly green500: "#6cd07b";
653
+ readonly green600: "#2e9721";
654
+ readonly green700: "#258a19";
655
+ readonly green800: "#1c6c13";
656
+ readonly green900: "#1d5a16";
657
+ readonly green1000: "#10310c";
658
+ readonly red100: "#fff8f7";
659
+ readonly red200: "#ffebe9";
660
+ readonly red300: "#fbddda";
661
+ readonly red400: "#f5aea8";
662
+ readonly red500: "#eb827a";
663
+ readonly red600: "#dc3628";
664
+ readonly red700: "#ca2e21";
665
+ readonly red800: "#b92518";
666
+ readonly red900: "#a0271c";
667
+ readonly red1000: "#57150f";
668
+ readonly blue100: "#f0f5ff";
669
+ readonly blue200: "#d7e4ff";
670
+ readonly blue300: "#b3ccfe";
671
+ readonly blue400: "#81a9fe";
672
+ readonly blue500: "#4e86fe";
673
+ readonly blue600: "#1c65fd";
674
+ readonly blue700: "#024be3";
675
+ readonly blue800: "#023ab1";
676
+ readonly blue900: "#012a7e";
677
+ readonly blue1000: "#01194c";
678
+ };
679
+ readonly colors: {
680
+ readonly fg: {
681
+ readonly neutral: {
682
+ readonly default: {
683
+ readonly light: "#01194c";
684
+ readonly dark: "#ffffff";
685
+ };
686
+ readonly subtle: {
687
+ readonly light: "#56647b";
688
+ readonly dark: "#a8b2c2";
689
+ };
690
+ readonly subtlest: {
691
+ readonly light: "#6c7d98";
692
+ readonly dark: "#6c7d98";
693
+ };
694
+ };
695
+ readonly disabled: {
696
+ readonly light: "#8a97ad";
697
+ readonly dark: "#6c7d98";
698
+ };
699
+ readonly inverse: {
700
+ readonly light: "#ffffff";
701
+ readonly dark: "#171b21";
702
+ };
703
+ readonly link: {
704
+ readonly default: {
705
+ readonly light: "#1c65fd";
706
+ readonly dark: "#4e86fe";
707
+ };
708
+ readonly hover: {
709
+ readonly light: "#024be3";
710
+ readonly dark: "#81a9fe";
711
+ };
712
+ readonly pressed: {
713
+ readonly light: "#023ab1";
714
+ readonly dark: "#b3ccfe";
715
+ };
716
+ };
717
+ readonly success: {
718
+ readonly light: "#1c6c13";
719
+ readonly dark: "#99e5b3";
720
+ };
721
+ readonly warning: {
722
+ readonly light: "#b17902";
723
+ readonly dark: "#fae9a3";
724
+ };
725
+ readonly error: {
726
+ readonly light: "#ca2e21";
727
+ readonly dark: "#f5aea8";
728
+ };
729
+ readonly info: {
730
+ readonly light: "#1c65fd";
731
+ readonly dark: "#4e86fe";
732
+ };
733
+ readonly promo: {
734
+ readonly light: "#85703d";
735
+ readonly dark: "#a58b4b";
736
+ };
737
+ readonly brand: {
738
+ readonly default: {
739
+ readonly light: "#1c65fd";
740
+ readonly dark: "#1c65fd";
741
+ };
742
+ readonly bold: {
743
+ readonly light: "#024be3";
744
+ readonly dark: "#4e86fe";
745
+ };
746
+ };
747
+ readonly accent: {
748
+ readonly default: {
749
+ readonly light: "#de31b9";
750
+ readonly dark: "#de31b9";
751
+ };
752
+ readonly bold: {
753
+ readonly light: "#bd1e9b";
754
+ readonly dark: "#e55cc8";
755
+ };
756
+ };
757
+ };
758
+ readonly bg: {
759
+ readonly neutral: {
760
+ readonly default: {
761
+ readonly light: "#a8b2c2";
762
+ readonly dark: "#56647b";
763
+ };
764
+ readonly subtle: {
765
+ readonly light: "#c6ccd7";
766
+ readonly dark: "#414c5d";
767
+ };
768
+ readonly subtlest: {
769
+ readonly light: "#e4e7ec";
770
+ readonly dark: "#171b21";
771
+ };
772
+ readonly white: {
773
+ readonly light: "#ffffff";
774
+ readonly dark: "#ffffff";
775
+ };
776
+ };
777
+ readonly disabled: {
778
+ readonly light: "#e4e7ec";
779
+ readonly dark: "#414c5d";
780
+ };
781
+ readonly promo: {
782
+ readonly default: {
783
+ readonly light: "#fbf9f4";
784
+ readonly dark: "#62532d";
785
+ };
786
+ readonly bold: {
787
+ readonly light: "#a58b4b";
788
+ readonly dark: "#a58b4b";
789
+ };
790
+ };
791
+ readonly error: {
792
+ readonly default: {
793
+ readonly light: "#fff8f7";
794
+ readonly dark: "#a0271c";
795
+ };
796
+ readonly bold: {
797
+ readonly light: "#dc3628";
798
+ readonly dark: "#f5aea8";
799
+ };
800
+ };
801
+ readonly warning: {
802
+ readonly default: {
803
+ readonly light: "#fff9db";
804
+ readonly dark: "#fffcee";
805
+ };
806
+ readonly bold: {
807
+ readonly light: "#fae9a3";
808
+ readonly dark: "#b17902";
809
+ };
810
+ };
811
+ readonly inverse: {
812
+ readonly light: "#171b21";
813
+ readonly dark: "#fafcff";
814
+ };
815
+ readonly success: {
816
+ readonly default: {
817
+ readonly light: "#e9fff4";
818
+ readonly dark: "#1d5a16";
819
+ };
820
+ readonly bold: {
821
+ readonly light: "#2e9721";
822
+ readonly dark: "#99e5b3";
823
+ };
824
+ };
825
+ readonly info: {
826
+ readonly default: {
827
+ readonly light: "#f0f5ff";
828
+ readonly dark: "#01194c";
829
+ };
830
+ readonly bold: {
831
+ readonly light: "#1c65fd";
832
+ readonly dark: "#4e86fe";
833
+ };
834
+ };
835
+ readonly accent: {
836
+ readonly light: "#fef6fc";
837
+ readonly dark: "#651053";
838
+ };
839
+ readonly brand: {
840
+ readonly default: {
841
+ readonly light: "#f0f5ff";
842
+ readonly dark: "#01194c";
843
+ readonly hover: {
844
+ readonly light: "#d7e4ff";
845
+ readonly dark: "#023ab1";
846
+ };
847
+ readonly pressed: {
848
+ readonly light: "#d7e4ff";
849
+ readonly dark: "#023ab1";
850
+ };
851
+ };
852
+ readonly bold: {
853
+ readonly light: "#1c65fd";
854
+ readonly dark: "#1c65fd";
855
+ readonly hover: {
856
+ readonly light: "#024be3";
857
+ readonly dark: "#024be3";
858
+ };
859
+ readonly pressed: {
860
+ readonly light: "#023ab1";
861
+ readonly dark: "#023ab1";
862
+ };
863
+ };
864
+ readonly semibold: {
865
+ readonly light: "#d7e4ff";
866
+ readonly dark: "#012a7e";
867
+ };
868
+ };
869
+ };
870
+ readonly surface: {
871
+ readonly overlay: {
872
+ readonly light: "rgba(240, 245, 255, .75)";
873
+ readonly dark: "rgba(23, 27, 33, .75)";
874
+ };
875
+ readonly risen: {
876
+ readonly light: "#ffffff";
877
+ readonly dark: "#2c333f";
878
+ };
879
+ readonly default: {
880
+ readonly light: "#fafcff";
881
+ readonly dark: "#171b21";
882
+ };
883
+ readonly sunken: {
884
+ readonly light: "#c6ccd7";
885
+ readonly dark: "#56647b";
886
+ };
887
+ };
888
+ readonly border: {
889
+ readonly neutral: {
890
+ readonly default: {
891
+ readonly light: "#56647b";
892
+ readonly dark: "#c6ccd7";
893
+ };
894
+ readonly subtle: {
895
+ readonly light: "#a8b2c2";
896
+ readonly dark: "#6c7d98";
897
+ };
898
+ readonly subtlest: {
899
+ readonly light: "#e4e7ec";
900
+ readonly dark: "#56647b";
901
+ };
902
+ };
903
+ readonly disabled: {
904
+ readonly light: "#c6ccd7";
905
+ readonly dark: "#56647b";
906
+ };
907
+ readonly success: {
908
+ readonly light: "#2e9721";
909
+ readonly dark: "#2e9721";
910
+ };
911
+ readonly warning: {
912
+ readonly light: "#b17902";
913
+ readonly dark: "#b17902";
914
+ };
915
+ readonly error: {
916
+ readonly light: "#ca2e21";
917
+ readonly dark: "#dc3628";
918
+ };
919
+ readonly promo: {
920
+ readonly light: "#a58b4b";
921
+ readonly dark: "#a58b4b";
922
+ };
923
+ readonly brand: {
924
+ readonly bold: {
925
+ readonly light: "#024be3";
926
+ readonly dark: "#b3ccfe";
927
+ };
928
+ readonly default: {
929
+ readonly light: "#1c65fd";
930
+ readonly dark: "#1c65fd";
931
+ };
932
+ readonly subtle: {
933
+ readonly light: "#81a9fe";
934
+ readonly dark: "#1c65fd";
935
+ };
936
+ readonly subtlest: {
937
+ readonly light: "#d7e4ff";
938
+ readonly dark: "#023ab1";
939
+ };
940
+ };
941
+ readonly inverse: {
942
+ readonly light: "#fafcff";
943
+ readonly dark: "#2c333f";
944
+ };
945
+ readonly accent: {
946
+ readonly light: "#fae0f5";
947
+ readonly dark: "#911777";
948
+ };
949
+ };
950
+ readonly icon: {
951
+ readonly bg: {
952
+ readonly light: "#ffffff";
953
+ readonly dark: "rgba(255, 255, 255, 0.0000)";
954
+ };
955
+ readonly brand: {
956
+ readonly light: "#1c65fd";
957
+ readonly dark: "#a8b2c2";
958
+ };
959
+ readonly neutral: {
960
+ readonly light: "#56647b";
961
+ readonly dark: "#a8b2c2";
962
+ };
963
+ readonly inverse: {
964
+ readonly light: "#ffffff";
965
+ readonly dark: "#000000";
966
+ };
967
+ readonly disabled: {
968
+ readonly light: "#c6ccd7";
969
+ readonly dark: "#ffffff";
970
+ };
971
+ readonly error: {
972
+ readonly light: "#dc3628";
973
+ readonly dark: "#dc3628";
974
+ };
975
+ };
976
+ readonly shadow: {
977
+ readonly cards: "0px 1px 40px 0px rgba(0, 0, 0, 0.05)";
978
+ readonly ultraStrongBlueLg: "0px 4px 25px 0px rgba(28, 101, 253, 0.08), 0px 4px 4px 0px rgba(28, 101, 253, 0.04)";
979
+ readonly strongBlueMd: "0px 4px 4px 0px rgba(28, 101, 253, 0.02), 0px 4px 25px 0px rgba(28, 101, 253, 0.06)";
980
+ };
981
+ readonly focus: {
982
+ readonly light: "#024be3";
983
+ readonly dark: "#b3ccfe";
984
+ };
985
+ };
986
+ readonly font: {
987
+ readonly size: {
988
+ readonly heading: {
989
+ readonly h1: {
990
+ readonly desktop: "4rem";
991
+ readonly mobile: "2rem";
992
+ };
993
+ readonly h2: {
994
+ readonly desktop: "2.625rem";
995
+ readonly mobile: "2rem";
996
+ };
997
+ readonly h3: {
998
+ readonly desktop: "2rem";
999
+ readonly mobile: "1.5rem";
1000
+ };
1001
+ readonly h4: {
1002
+ readonly desktop: "1.5rem";
1003
+ readonly mobile: "1.125rem";
1004
+ };
1005
+ readonly h5: {
1006
+ readonly desktop: "1.125rem";
1007
+ readonly mobile: "1.125rem";
1008
+ };
1009
+ };
1010
+ readonly body: {
1011
+ readonly xs: "0.75rem";
1012
+ readonly sm: "0.875rem";
1013
+ readonly md: "1rem";
1014
+ readonly lg: "1.125rem";
1015
+ };
1016
+ };
1017
+ readonly lineHeight: {
1018
+ readonly heading: {
1019
+ readonly h1: {
1020
+ readonly desktop: "4.375rem";
1021
+ readonly mobile: "2.5rem";
1022
+ };
1023
+ readonly h2: {
1024
+ readonly desktop: "3.375rem";
1025
+ readonly mobile: "2.5rem";
1026
+ };
1027
+ readonly h3: {
1028
+ readonly desktop: "2.5rem";
1029
+ readonly mobile: "2rem";
1030
+ };
1031
+ readonly h4: {
1032
+ readonly desktop: "2rem";
1033
+ readonly mobile: "1.5rem";
1034
+ };
1035
+ readonly h5: {
1036
+ readonly desktop: "1.5rem";
1037
+ readonly mobile: "1.5rem";
1038
+ };
1039
+ };
1040
+ readonly body: {
1041
+ readonly lg: "1.75rem";
1042
+ readonly md: "1.5rem";
1043
+ readonly sm: "1.25rem";
1044
+ readonly xs: "1rem";
1045
+ };
1046
+ };
1047
+ readonly weight: {
1048
+ readonly thin: 100;
1049
+ readonly extraLight: 200;
1050
+ readonly light: 300;
1051
+ readonly regular: 400;
1052
+ readonly medium: 500;
1053
+ readonly semiBold: 600;
1054
+ readonly bold: 700;
1055
+ readonly extraBold: 800;
1056
+ readonly heavy: 900;
1057
+ readonly ultra: 950;
1058
+ };
1059
+ readonly letterSpacing: {
1060
+ readonly heading: {
1061
+ readonly h1: {
1062
+ readonly desktop: "-1.28px";
1063
+ readonly mobile: "-1px";
1064
+ };
1065
+ readonly h2: {
1066
+ readonly desktop: "-1px";
1067
+ readonly mobile: "-1px";
1068
+ };
1069
+ readonly h3: {
1070
+ readonly desktop: "-1px";
1071
+ readonly mobile: "0";
1072
+ };
1073
+ readonly h4: {
1074
+ readonly desktop: "0";
1075
+ readonly mobile: "0";
1076
+ };
1077
+ readonly h5: {
1078
+ readonly desktop: "0";
1079
+ readonly mobile: "0";
1080
+ };
1081
+ };
1082
+ readonly body: {
1083
+ readonly lg: "0";
1084
+ readonly md: "0";
1085
+ readonly sm: "-0.2px";
1086
+ readonly xs: "-0.2px";
1087
+ };
1088
+ };
1089
+ readonly family: {
1090
+ readonly main: "Inter, sans-serif";
1091
+ readonly heading: "'Plus Jakarta Sans', sans-serif";
1092
+ };
1093
+ };
1094
+ readonly spacing: {
1095
+ readonly xxs: "4px";
1096
+ readonly xs: "8px";
1097
+ readonly sm: "12px";
1098
+ readonly md: "16px";
1099
+ readonly lg: "24px";
1100
+ readonly xl: "32px";
1101
+ readonly xxl: "40px";
1102
+ readonly xxxl: "48px";
1103
+ readonly xxxxl: "56px";
1104
+ readonly xxxxxl: "64px";
1105
+ };
1106
+ readonly borderRadius: {
1107
+ readonly xxs: "4px";
1108
+ readonly xs: "8px";
1109
+ readonly sm: "12px";
1110
+ readonly md: "16px";
1111
+ readonly lg: "24px";
1112
+ readonly xl: "32px";
1113
+ readonly full: "9999px";
1114
+ };
1115
+ readonly shadow: {
1116
+ readonly box: {
1117
+ readonly sm: "0px 0px 8px 0px rgba(28, 101, 253, 0.06), 0px 1px 1px 0px rgba(28, 101, 253, 0.02)";
1118
+ readonly md: "0px 4px 25px 0px rgba(28, 101, 253, 0.06), 0px 4px 4px 0px rgba(28, 101, 253, 0.02)";
1119
+ readonly lg: "0px 4px 25px 0px rgba(28, 101, 253, 0.08), 0px 4px 4px 0px rgba(28, 101, 253, 0.04)";
1120
+ readonly xl: "-23px 132px 38px 0px rgba(28, 101, 253, 0.00), -15px 84px 34px 0px rgba(28, 101, 253, 0.01), -8px 48px 29px 0px rgba(28, 101, 253, 0.05), -4px 21px 21px 0px rgba(28, 101, 253, 0.09), -1px 5px 12px 0px rgba(28, 101, 253, 0.10)";
1121
+ };
1122
+ readonly border: {
1123
+ readonly sm: "0px 1px 2px 0px rgba(16, 24, 40, 0.06), 0px 1px 3px 0px rgba(16, 24, 40, 0.10)";
1124
+ };
1125
+ };
1126
+ readonly container: {
1127
+ readonly xl: "1200px";
1128
+ };
1129
+ readonly breakpoints: {
1130
+ readonly xs: "375px";
1131
+ readonly sm: "576px";
1132
+ readonly md: "768px";
1133
+ readonly lg: "992px";
1134
+ readonly xl: "1280px";
1135
+ readonly xxl: "1920px";
1136
+ };
1137
+ readonly zIndex: {
1138
+ readonly dropdown: 1000;
1139
+ readonly sticky: 1020;
1140
+ readonly fixed: 1030;
1141
+ readonly modalBackdrop: 1040;
1142
+ readonly offcanvas: 1050;
1143
+ readonly modal: 1060;
1144
+ readonly popover: 1070;
1145
+ readonly tooltip: 1080;
1146
+ };
1147
+ };
1148
+ type Theme = typeof theme;
1149
+ //#endregion
1150
+ //#region src/theme/overflow.d.ts
1151
+ declare enum Overflow {
1152
+ auto = "auto",
1153
+ clip = "clip",
1154
+ hidden = "hidden",
1155
+ inherit = "inherit",
1156
+ visible = "visible"
1157
+ }
1158
+ declare const resolveOverflowValue: (overflow: Overflow) => string;
1159
+ //#endregion
1160
+ //#region src/theme/borderRadius.d.ts
1161
+ declare enum BorderRadius {
1162
+ none = "none",
1163
+ xxs = "xxs",
1164
+ xs = "xs",
1165
+ sm = "sm",
1166
+ md = "md",
1167
+ lg = "lg",
1168
+ xl = "xl",
1169
+ full = "full"
1170
+ }
1171
+ declare const resolveBorderRadiusValue: (theme: Theme$1, borderRadius: BorderRadius) => "4px" | "8px" | "12px" | "16px" | "24px" | "32px" | "9999px" | "0";
1172
+ //#endregion
1173
+ //#region src/theme/flexWrap.d.ts
1174
+ declare enum FlexWrap {
1175
+ noWrap = "noWrap",
1176
+ wrap = "wrap",
1177
+ wrapReverse = "wrapReverse"
1178
+ }
1179
+ declare const resolveFlexWrapValue: (flexWrap: FlexWrap) => string;
1180
+ //#endregion
1181
+ //#region src/theme/textDecoration.d.ts
1182
+ declare enum TextDecoration {
1183
+ noneImportant = "noneImportant",
1184
+ underline = "underline"
1185
+ }
1186
+ declare const resolveTextDecorationValue: (textDecoration: TextDecoration) => "underline" | "none !important";
1187
+ declare const getTextDecorationStyle: (textDecoration?: TextDecoration) => _$_emotion_react0.SerializedStyles | "";
1188
+ //#endregion
1189
+ //#region src/components/buttonsLayout/types.d.ts
1190
+ declare enum ButtonsLayoutAlign {
1191
+ center = "center",
1192
+ end = "end",
1193
+ spaceBetween = "spaceBetween",
1194
+ start = "start",
1195
+ stretch = "stretch"
1196
+ }
1197
+ declare enum ButtonsLayoutDirection {
1198
+ column = "column",
1199
+ columnReverse = "columnReverse",
1200
+ row = "row",
1201
+ rowReverse = "rowReverse"
1202
+ }
1203
+ //#endregion
1204
+ //#region src/components/buttonsLayout/ButtonsLayout.d.ts
1205
+ interface ButtonsLayoutProps extends SsrProps {
1206
+ align: ButtonsLayoutAlign;
1207
+ buttons: ReactNode[];
1208
+ direction: ButtonsLayoutDirection;
1209
+ gap?: Spacing;
1210
+ wrap?: FlexWrap;
1211
+ }
1212
+ declare const ButtonsLayout: (props: ButtonsLayoutProps) => _$react.JSX.Element;
1213
+ //#endregion
1214
+ //#region src/components/calculatorResult/types.d.ts
1215
+ interface CalculatorResultHeader {
1216
+ bottom?: ReactElement | string | undefined;
1217
+ main?: ReactElement | string | undefined;
1218
+ top?: ReactElement | string | undefined;
1219
+ /** Visually hidden text for screen readers, providing additional info, such as the availability of help under tooltip button. */
1220
+ topHiddenText?: string;
1221
+ topTooltip?: TooltipInfoDescriptor;
1222
+ }
1223
+ interface CalculatorResultBodyItem {
1224
+ left: {
1225
+ element: ReactElement | string; /** Visually hidden text for screen readers, providing additional info, such as the availability of help under tooltip button. */
1226
+ hiddenText?: string;
1227
+ tooltip?: TooltipInfoDescriptor;
1228
+ };
1229
+ right: {
1230
+ element: ReactElement | string;
1231
+ };
1232
+ }
1233
+ interface CalculatorResultMain {
1234
+ element: ReactElement | string;
1235
+ topSeparator?: boolean;
1236
+ }
1237
+ interface CalculatorResultModalDescriptor {
1238
+ content: ReactElement | string;
1239
+ modalCloseButtonAriaLabel?: string;
1240
+ triggerText: ReactElement | string;
1241
+ }
1242
+ declare enum CalculatorResultInfoPosition {
1243
+ inBox = "inBox",
1244
+ underBox = "underBox"
1245
+ }
1246
+ //#endregion
1247
+ //#region src/components/calculatorResult/CalculatorResult.d.ts
1248
+ interface CalculatorResultProps extends DesignSystemBaseProps {
1249
+ bodyItems: CalculatorResultBodyItem[];
1250
+ containerRef?: RefObject<HTMLDivElement | null>;
1251
+ description?: ReactElement | string;
1252
+ header: CalculatorResultHeader;
1253
+ infoPosition?: CalculatorResultInfoPosition;
1254
+ main: CalculatorResultMain;
1255
+ modal?: CalculatorResultModalDescriptor;
1256
+ resultBoxRef?: RefObject<HTMLDivElement | null>;
1257
+ }
1258
+ declare const CalculatorResult: (props: CalculatorResultProps) => _$react.JSX.Element;
1259
+ //#endregion
1260
+ //#region src/components/checkboxField/checkboxControl/CheckboxControl.d.ts
1261
+ interface CheckboxControlProps {
1262
+ ariaLabel?: string;
1263
+ checked?: boolean;
1264
+ colorScheme?: ColorScheme;
1265
+ disabled?: boolean;
1266
+ focused?: boolean;
1267
+ id?: string;
1268
+ invalid?: boolean;
1269
+ name: string;
1270
+ onBlur?: (event: FocusEvent<HTMLInputElement>) => void;
1271
+ onChange?: (event: ChangeEvent<HTMLInputElement>) => void;
1272
+ ref?: Ref<HTMLInputElement>;
1273
+ value?: string;
1274
+ }
1275
+ declare const CheckboxControl: (props: CheckboxControlProps) => _$react.JSX.Element;
1276
+ //#endregion
1277
+ //#region src/components/checkboxField/types.d.ts
1278
+ declare enum CheckboxPosition {
1279
+ left = "left",
1280
+ right = "right"
1281
+ }
1282
+ //#endregion
1283
+ //#region src/components/checkboxField/checkbox/Checkbox.d.ts
1284
+ interface CheckboxProps extends CheckboxControlProps, InputLabelPassthroughProps, DesignSystemBaseProps {
1285
+ errorMessage?: ReactNode;
1286
+ labelColor?: string;
1287
+ position?: CheckboxPosition;
1288
+ tooltipPosition?: LabelTooltipPosition;
1289
+ }
1290
+ declare const Checkbox: (props: CheckboxProps) => _$react.JSX.Element;
1291
+ //#endregion
1292
+ //#region src/components/checkboxField/CheckboxField.d.ts
1293
+ interface CheckboxFieldProps extends Omit<CheckboxProps, 'onChange' | 'value'> {
1294
+ options?: RegisterOptions;
1295
+ }
1296
+ declare const CheckboxField: (props: CheckboxFieldProps) => _$react.JSX.Element;
1297
+ //#endregion
1298
+ //#region src/components/iconProduct/types.d.ts
1299
+ declare enum IconProductType {
1300
+ atm = "atm",
1301
+ bank = "bank",
1302
+ bill = "bill",
1303
+ billingPayment = "billingPayment",
1304
+ check = "check",
1305
+ coinsStack = "coinsStack",
1306
+ creditCard = "creditCard",
1307
+ diceQuestion = "diceQuestion",
1308
+ graphBarIncrease = "graphBarIncrease",
1309
+ graphIncrease = "graphIncrease",
1310
+ helpChat = "helpChat",
1311
+ houseRefresh = "houseRefresh",
1312
+ information = "information",
1313
+ loginPassword = "loginPassword",
1314
+ mailCheck = "mailCheck",
1315
+ mobilePhone = "mobilePhone",
1316
+ moneta = "moneta",
1317
+ moneyBag = "moneyBag",
1318
+ openUmbrella = "openUmbrella",
1319
+ passwordLock = "passwordLock",
1320
+ people = "people",
1321
+ piggyBank = "piggyBank",
1322
+ propertiesMortgage = "propertiesMortgage",
1323
+ reward = "reward",
1324
+ shieldCheck = "shieldCheck",
1325
+ suitcase = "suitcase",
1326
+ user = "user",
1327
+ userAddPlus = "userAddPlus",
1328
+ wallet = "wallet",
1329
+ warningCircle = "warningCircle",
1330
+ warningTriangle = "warningTriangle"
1331
+ }
1332
+ declare enum IconProductSize {
1333
+ big = "big",
1334
+ small = "small"
1335
+ }
1336
+ declare enum IconProductVariant {
1337
+ active = "active",
1338
+ default = "default"
1339
+ }
1340
+ declare enum IconProductHighlightType {
1341
+ default = "default",
1342
+ defaultInverse = "defaultInverse"
1343
+ }
1344
+ //#endregion
1345
+ //#region src/components/iconProduct/IconProduct.d.ts
1346
+ interface IconProductProps {
1347
+ colorScheme?: ColorScheme;
1348
+ fill?: string;
1349
+ highlightType?: IconProductHighlightType;
1350
+ size: IconProductSize;
1351
+ stroke?: string;
1352
+ type: IconProductType;
1353
+ variant?: IconProductVariant | undefined;
1354
+ }
1355
+ declare const IconProduct: (props: IconProductProps) => _$react.JSX.Element;
1356
+ //#endregion
1357
+ //#region src/components/circularProgressBar/CircularProgressBar.d.ts
1358
+ interface CircularProgressBarProps extends DesignSystemBaseProps {
1359
+ iconProduct: IconProductType;
1360
+ progress: number;
1361
+ }
1362
+ declare const CircularProgressBar: (props: CircularProgressBarProps) => _$react.JSX.Element;
1363
+ //#endregion
1364
+ //#region src/components/comboBoxField/types.d.ts
1365
+ type ComboBoxItem = boolean | number | object | string | null;
1366
+ declare enum ComboBoxItemOrderSource {
1367
+ formatter = "formatter",
1368
+ value = "value"
1369
+ }
1370
+ interface ComboBoxItemOrder {
1371
+ compareFn?: (a: unknown, b: unknown) => number;
1372
+ source: ComboBoxItemOrderSource;
1373
+ }
1374
+ declare enum ComboBoxValueType {
1375
+ custom = "custom",
1376
+ item = "item"
1377
+ }
1378
+ type ComboBoxValue<TItem> = {
1379
+ input: string;
1380
+ type: ComboBoxValueType.custom;
1381
+ } | {
1382
+ item: TItem;
1383
+ type: ComboBoxValueType.item;
1384
+ } | null;
1385
+ //#endregion
1386
+ //#region src/components/inputBase/InputBase.d.ts
1387
+ interface InputBaseProps extends FieldControlProps, Pick<AriaAttributes, 'aria-activedescendant' | 'aria-autocomplete' | 'aria-controls' | 'aria-describedby' | 'aria-expanded' | 'aria-invalid' | 'aria-label' | 'aria-labelledby' | 'aria-required'> {
1388
+ ariaLabel?: string;
1389
+ autoComplete?: HTMLInputAutoCompleteAttribute;
1390
+ button?: ReactNode;
1391
+ colorInput?: Property.Color | undefined;
1392
+ disabled?: boolean;
1393
+ halfWidth?: boolean;
1394
+ icon?: ReactNode;
1395
+ iconSystem?: IconSystemType;
1396
+ id?: string | undefined;
1397
+ isPastingDisabled?: boolean;
1398
+ maxLength?: number;
1399
+ name: string;
1400
+ onBlur?: ((event: FocusEvent<HTMLInputElement>) => void) | undefined;
1401
+ onChange?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
1402
+ onClick?: MouseEventHandler;
1403
+ onFocus?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
1404
+ onKeyDown?: KeyboardEventHandler;
1405
+ placeholder?: string;
1406
+ prefix?: ReactNode;
1407
+ prefixColor?: Property.Color;
1408
+ ref?: Ref<HTMLInputElement>;
1409
+ role?: HTMLAttributes<HTMLInputElement>['role'];
1410
+ size?: InputSize;
1411
+ suffix?: ReactNode;
1412
+ textAlign?: InputTextAlign;
1413
+ type?: HTMLInputTypeAttribute;
1414
+ value?: string;
1415
+ weight?: FontWeight;
1416
+ }
1417
+ declare const InputBase: (props: InputBaseProps) => _$react.JSX.Element;
1418
+ //#endregion
1419
+ //#region src/components/comboBoxField/comboBoxControl/ComboBoxControl.d.ts
1420
+ interface ComboBoxControlProps<TItem extends ComboBoxItem> extends Omit<FieldControlProps, 'name'>, Pick<InputBaseProps, 'ariaLabel' | 'disabled' | 'icon' | 'isPastingDisabled' | 'maxLength' | 'name' | 'onFocus' | 'placeholder' | 'required'> {
1421
+ formatter?: Formatter<TItem, ReactNode>;
1422
+ getItemKey?: (item: TItem | null) => number | string;
1423
+ inputPrefix?: ReactNode;
1424
+ inputSize?: InputSize;
1425
+ inputSuffix?: ReactNode;
1426
+ inputTextAlign?: InputTextAlign;
1427
+ inputWeight?: FontWeight;
1428
+ itemOrder?: ComboBoxItemOrder;
1429
+ items: TItem[];
1430
+ onBlur?: () => void;
1431
+ onChange: (value: ComboBoxValue<TItem>) => void;
1432
+ ref?: Ref<HTMLInputElement>;
1433
+ shouldHighlightFirstItem?: boolean;
1434
+ value: ComboBoxValue<TItem>;
1435
+ }
1436
+ declare const ComboBoxControl: <TItem extends ComboBoxItem>(props: ComboBoxControlProps<TItem>) => _$react.JSX.Element;
1437
+ //#endregion
1438
+ //#region src/components/fieldWrapper/types.d.ts
1439
+ declare enum FieldWrapperLayout {
1440
+ horizontal = "horizontal",
1441
+ vertical = "vertical"
1442
+ }
1443
+ //#endregion
1444
+ //#region src/components/fieldWrapper/FieldWrapper.d.ts
1445
+ type FieldWrapperControlProps = Required<Pick<FieldControlProps, 'describedBy' | 'id' | 'invalid' | 'labelledBy' | 'required'>>;
1446
+ declare enum FieldAddonPosition {
1447
+ afterControl = "afterControl",
1448
+ beforeControl = "beforeControl",
1449
+ belowControl = "belowControl",
1450
+ bottom = "bottom"
1451
+ }
1452
+ interface FieldAddon {
1453
+ children: ReactNode;
1454
+ key: Key;
1455
+ position: FieldAddonPosition;
1456
+ }
1457
+ interface FieldWrapperProps extends DesignSystemBaseProps, InputLabelPassthroughProps {
1458
+ addons?: FieldAddon[];
1459
+ children?: ReactNode | ((controlProps: FieldWrapperControlProps) => ReactNode);
1460
+ controlId?: string;
1461
+ controlMobileWidth?: Property.Width;
1462
+ /** `controlSection` represents the right section in horizontal layout. */
1463
+ controlSectionWidth?: Property.Width;
1464
+ controlWidth?: Property.Width;
1465
+ errorMessage?: ReactNode;
1466
+ /** Visually hidden text for screen readers providing additional info, such as the availability of a tooltip. */
1467
+ hiddenHintText?: ReactNode;
1468
+ hintText?: ReactNode;
1469
+ /** @default isRenderable(errorMessage) */
1470
+ invalid?: boolean;
1471
+ layout?: FieldWrapperLayout;
1472
+ /** Necessary for registration of `label` to `FieldLabelStore`. */
1473
+ name?: string;
1474
+ note?: ReactNode;
1475
+ /** @default FieldOptionality.required */
1476
+ optionality?: FieldOptionality;
1477
+ successMessage?: ReactNode;
1478
+ }
1479
+ declare const FieldWrapper: (props: FieldWrapperProps) => _$react.JSX.Element;
1480
+ //#endregion
1481
+ //#region src/components/fieldWrapper/withFieldWrapper.d.ts
1482
+ /** These props are reserved for `FieldWrapper` and cannot be used in the wrapped component. */
1483
+ type FieldWrapperReservedProps = Pick<FieldWrapperProps, 'addons' | 'controlMobileWidth' | 'controlSectionWidth' | 'controlWidth' | 'errorMessage' | 'hiddenHintText' | 'hintText' | 'label' | 'labelAs' | 'labelHiddenText' | 'labelId' | 'labelSuffix' | 'layout' | 'note' | 'optionality' | 'successMessage' | 'tooltip'>;
1484
+ declare const withFieldWrapper: <TProps extends FieldControlProps>(FieldControl: ComponentType<TProps>) => {
1485
+ (props: FieldWrapperReservedProps & Omit<TProps, keyof FieldWrapperReservedProps>): _$react.JSX.Element;
1486
+ displayName: string;
1487
+ };
1488
+ //#endregion
1489
+ //#region src/components/comboBoxField/comboBox/ComboBox.d.ts
1490
+ type ComboBoxProps<TItem extends ComboBoxItem> = ComboBoxControlProps<TItem> & FieldWrapperReservedProps;
1491
+ declare const ComboBox: <TItem extends ComboBoxItem>(props: ComboBoxProps<TItem>) => ReactElement;
1492
+ //#endregion
1493
+ //#region src/components/comboBoxField/ComboBoxField.d.ts
1494
+ interface ComboBoxFieldProps<TItem extends ComboBoxItem> extends Omit<ComboBoxProps<TItem>, 'onChange' | 'value'> {
1495
+ defaultValue?: TItem | null;
1496
+ name: string;
1497
+ options?: RegisterOptions;
1498
+ shouldResetInvalidValues?: boolean;
1499
+ }
1500
+ declare const ComboBoxField: <TItem extends ComboBoxItem>(props: ComboBoxFieldProps<TItem>) => _$react.JSX.Element;
1501
+ //#endregion
1502
+ //#region src/components/datePickerField/datePickerControl/DatePickerControl.d.ts
1503
+ interface DatePickerControlProps extends Pick<DatePickerProps$1, 'chooseDayAriaLabelPrefix' | 'dateFormat' | 'disabledDayAriaLabelPrefix' | 'filterDate' | 'maxDate' | 'minDate' | 'monthAriaLabelPrefix' | 'nextMonthAriaLabel' | 'onBlur' | 'previousMonthAriaLabel' | 'selected'>, FieldControlProps {
1504
+ chevronCloseAriaLabel?: string;
1505
+ chevronOpenAriaLabel?: string;
1506
+ disabled?: boolean;
1507
+ locale?: Locale;
1508
+ monthSelectAriaLabel?: string;
1509
+ monthYearSelectEnabled?: boolean;
1510
+ name: string;
1511
+ onChange?: (date: Date | null, event?: KeyboardEvent<HTMLElement> | MouseEvent<HTMLElement>) => void;
1512
+ placeholder?: string;
1513
+ ref?: Ref<HTMLInputElement>;
1514
+ yearSelectAriaLabel?: string;
1515
+ }
1516
+ declare const DatePickerControl: (props: DatePickerControlProps) => _$react.JSX.Element;
1517
+ //#endregion
1518
+ //#region src/components/datePickerField/datePicker/DatePicker.d.ts
1519
+ declare const DatePicker: {
1520
+ (props: FieldWrapperReservedProps & Omit<DatePickerControlProps, "label" | "note" | "tooltip" | "layout" | "errorMessage" | "labelAs" | "labelHiddenText" | "labelId" | "labelSuffix" | "addons" | "controlMobileWidth" | "controlSectionWidth" | "controlWidth" | "hiddenHintText" | "hintText" | "optionality" | "successMessage">): _$react.JSX.Element;
1521
+ displayName: string;
1522
+ };
1523
+ type DatePickerProps = ComponentProps<typeof DatePicker>;
1524
+ //#endregion
1525
+ //#region src/components/datePickerField/DatePickerField.d.ts
1526
+ interface DatePickerFieldProps extends Omit<ComponentProps<typeof DatePicker>, 'onChange'> {
1527
+ name: string;
1528
+ options?: RegisterOptions;
1529
+ }
1530
+ declare const DatePickerField: (props: DatePickerFieldProps) => _$react.JSX.Element;
1531
+ //#endregion
1532
+ //#region src/components/datePickerField/constants.d.ts
1533
+ declare const datePickerValueFormat = "yyyy-MM-dd";
1534
+ //#endregion
1535
+ //#region src/components/emailInputField/emailInput/EmailInput.d.ts
1536
+ interface EmailInputControlProps extends InputProps {
1537
+ placeholder?: string;
1538
+ }
1539
+ declare const EmailInput: {
1540
+ (props: FieldWrapperReservedProps & Omit<EmailInputControlProps, "label" | "note" | "tooltip" | "layout" | "errorMessage" | "labelAs" | "labelHiddenText" | "labelId" | "labelSuffix" | "addons" | "controlMobileWidth" | "controlSectionWidth" | "controlWidth" | "hiddenHintText" | "hintText" | "optionality" | "successMessage">): _$react.JSX.Element;
1541
+ displayName: string;
1542
+ };
1543
+ type EmailInputProps = ComponentProps<typeof EmailInput>;
1544
+ //#endregion
1545
+ //#region src/components/emailInputField/EmailInputField.d.ts
1546
+ interface EmailInputFieldProps extends Omit<EmailInputProps, 'onChange' | 'value'> {
1547
+ name: string;
1548
+ options?: RegisterOptions;
1549
+ }
1550
+ declare const EmailInputField: (props: EmailInputFieldProps) => _$react.JSX.Element;
1551
+ //#endregion
1552
+ //#region src/components/errorBox/types.d.ts
1553
+ interface ErrorBoxItem {
1554
+ body: ReactElement | string;
1555
+ onClick?: () => void;
1556
+ }
1557
+ //#endregion
1558
+ //#region src/components/errorBox/ErrorBox.d.ts
1559
+ interface ErrorBoxProps {
1560
+ colorScheme?: ColorScheme;
1561
+ content?: ReactNode;
1562
+ items?: ErrorBoxItem[];
1563
+ ref?: Ref<HTMLDivElement>;
1564
+ tabIndex?: number;
1565
+ title?: ReactNode;
1566
+ }
1567
+ declare const ErrorBox: (props: ErrorBoxProps) => _$react.JSX.Element;
1568
+ //#endregion
1569
+ //#region src/components/fileInputField/types.d.ts
1570
+ declare enum FileInputErrorCode {
1571
+ fileSizeTooLarge = "fileSizeTooLarge",
1572
+ general = "general",
1573
+ tooManyFiles = "tooManyFiles",
1574
+ totalFileSizeTooLarge = "totalFileSizeTooLarge",
1575
+ unsupportedFormat = "unsupportedFormat"
1576
+ }
1577
+ interface FileInputSettings {
1578
+ fileExtensions: string[];
1579
+ maxFiles?: number;
1580
+ maxSize: number;
1581
+ maxTotalSize?: number;
1582
+ }
1583
+ type FileInputLimitDescriptionComponent = ComponentType<FileInputSettings>;
1584
+ type FileInputUploadErrorReasonComponent = ComponentType<{
1585
+ errorCode: FileInputErrorCode;
1586
+ }>;
1587
+ type FileInputUploadFailedComponent = ComponentType<{
1588
+ fileName: string;
1589
+ }>;
1590
+ type FileInputDropzoneDragOrSelectFilesComponent = ComponentType<{
1591
+ selectedFiles: ReactNode;
1592
+ }>;
1593
+ type FileInputDropzoneDragFilesHereComponent = ComponentType;
1594
+ type FileInputRemoveButtonTextComponent = ComponentType<{
1595
+ fileName: string;
1596
+ }>;
1597
+ type FileInputDropzoneSelectFilesComponent = ComponentType;
1598
+ //#endregion
1599
+ //#region src/components/fileInputField/fileInput/FileInputControl.d.ts
1600
+ interface FileInputControlProps extends FileInputSettings, DesignSystemBaseProps {
1601
+ /** Component displayed when a file is dragged over the dropzone. */
1602
+ DropzoneDragFilesHere: FileInputDropzoneDragFilesHereComponent;
1603
+ /** Component displaying prompt to drag or select files for upload. */
1604
+ DropzoneDragOrSelectFiles: FileInputDropzoneDragOrSelectFilesComponent;
1605
+ /** Clickable text prompting the user to select files for upload. */
1606
+ DropzoneSelectFiles: FileInputDropzoneSelectFilesComponent;
1607
+ /** Component describing the limits for uploaded files. */
1608
+ LimitDescription: FileInputLimitDescriptionComponent;
1609
+ /** Component for label for the remove file button. */
1610
+ RemoveButtonText: FileInputRemoveButtonTextComponent;
1611
+ /** Component displaying the reason for file upload failure. */
1612
+ UploadErrorReason: FileInputUploadErrorReasonComponent;
1613
+ /** Component displayed when file upload fails. */
1614
+ UploadFailed: FileInputUploadFailedComponent;
1615
+ /** Message read by screen readers after file is removed. */
1616
+ getFileRemovedLiveText?: (fileName: string) => string;
1617
+ /** Message read by screen readers after files are added. */
1618
+ getFilesAddedLiveText?: (fileNames: string[]) => string;
1619
+ /** aria-label for remove file button. */
1620
+ getRemoveButtonAriaLabel: (fileName: string) => string;
1621
+ invalid?: boolean;
1622
+ name: string;
1623
+ onBlur?: () => void;
1624
+ onChange: (files: File[]) => void;
1625
+ ref?: Ref<HTMLDivElement>;
1626
+ value: File[];
1627
+ }
1628
+ declare const FileInputControl: (props: FileInputControlProps) => _$react.JSX.Element;
1629
+ //#endregion
1630
+ //#region src/components/fileInputField/fileInput/FileInput.d.ts
1631
+ declare const FileInputBase: {
1632
+ (props: FieldWrapperReservedProps & Omit<FileInputControlProps, "label" | "note" | "tooltip" | "layout" | "errorMessage" | "labelAs" | "labelHiddenText" | "labelId" | "labelSuffix" | "addons" | "controlMobileWidth" | "controlSectionWidth" | "controlWidth" | "hiddenHintText" | "hintText" | "optionality" | "successMessage">): _$react.JSX.Element;
1633
+ displayName: string;
1634
+ };
1635
+ declare const FileInput: (props: ComponentProps<typeof FileInputBase>) => _$react.JSX.Element;
1636
+ type FileInputProps = ComponentProps<typeof FileInput>;
1637
+ //#endregion
1638
+ //#region src/components/fileInputField/FileInputField.d.ts
1639
+ interface FileInputFieldProps extends Omit<FileInputProps, 'onBlur' | 'onChange' | 'value'> {
1640
+ name: string;
1641
+ options?: RegisterOptions;
1642
+ }
1643
+ declare const FileInputField: (props: FileInputFieldProps) => _$react.JSX.Element;
1644
+ //#endregion
1645
+ //#region src/components/formattedAmount/types.d.ts
1646
+ declare enum FormatAmountCurrencyDisplay {
1647
+ code = "code",
1648
+ name = "name",
1649
+ none = "none",
1650
+ symbol = "symbol"
1651
+ }
1652
+ declare enum FormatAmountGrouping {
1653
+ always = "always",
1654
+ auto = "auto",
1655
+ none = "none"
1656
+ }
1657
+ interface FormatAmountDescriptor {
1658
+ currency?: string;
1659
+ currencyDisplay?: FormatAmountCurrencyDisplay;
1660
+ grouping?: FormatAmountGrouping;
1661
+ maximumFractionDigits?: number;
1662
+ minimumFractionDigits?: number;
1663
+ value: number;
1664
+ }
1665
+ interface FormatAmountParam extends FormatAmountDescriptor {}
1666
+ //#endregion
1667
+ //#region src/components/formattedAmount/reactIntl/useFormatAmount.d.ts
1668
+ declare const useFormatAmount: () => (param: FormatAmountParam) => string;
1669
+ //#endregion
1670
+ //#region src/components/formattedAmount/nextIntl/useFormatAmount.d.ts
1671
+ declare const useFormatAmount$1: () => (param: FormatAmountParam) => string;
1672
+ //#endregion
1673
+ //#region src/components/formattedAmount/BaseFormattedAmount.d.ts
1674
+ interface BaseFormattedAmountProps extends FormatAmountDescriptor {
1675
+ formatAmount: (param: FormatAmountParam) => string;
1676
+ }
1677
+ //#endregion
1678
+ //#region src/components/formattedAmount/reactIntl/FormattedAmount.d.ts
1679
+ interface FormattedAmountProps extends Omit<BaseFormattedAmountProps, 'formatAmount'> {}
1680
+ declare const FormattedAmount: (props: FormattedAmountProps) => _$react.JSX.Element;
1681
+ //#endregion
1682
+ //#region src/components/formattedAmount/nextIntl/FormattedAmount.d.ts
1683
+ interface FormattedAmountProps$1 extends Omit<BaseFormattedAmountProps, 'formatAmount'> {}
1684
+ declare const FormattedAmount$1: (props: FormattedAmountProps$1) => _$react.JSX.Element;
1685
+ //#endregion
1686
+ //#region src/components/formattedPercentage/useFormatPercentage.d.ts
1687
+ interface FormatPercentageParam {
1688
+ maximumFractionDigits?: number;
1689
+ minimumFractionDigits?: number;
1690
+ value: number;
1691
+ }
1692
+ declare const useFormatPercentage: () => (param: FormatPercentageParam) => string;
1693
+ //#endregion
1694
+ //#region src/components/formattedPercentage/FormattedPercentage.d.ts
1695
+ interface FormattedPercentageProps {
1696
+ maximumFractionDigits?: number;
1697
+ minimumFractionDigits?: number;
1698
+ value: number;
1699
+ }
1700
+ declare const FormattedPercentage: _$react.MemoExoticComponent<(props: FormattedPercentageProps) => string>;
1701
+ //#endregion
1702
+ //#region src/components/formattedPercentage/index.d.ts
1703
+ /** @deprecated Use `useFormatPercentage` instead */
1704
+ declare const useFormattedPercentage: () => (param: FormatPercentageParam) => string;
1705
+ //#endregion
1706
+ //#region src/form/types.d.ts
1707
+ interface ThrownFieldLevelError {
1708
+ code: string;
1709
+ fieldName: string;
1710
+ message: string;
1711
+ }
1712
+ declare enum ThrownFormLevelErrorType {
1713
+ /**
1714
+ * Used for displaying custom application-specific errors.
1715
+ *
1716
+ * Pass additional info in the `meta` property and consume it in using `thrownFormLevelErrorFormatter`.
1717
+ * Make sure to extend `ThrownFormLevelErrorMeta` via declaration merging.
1718
+ */
1719
+ application = "application",
1720
+ /** Indicates that an unknown error occurred, just like an HTTP 500 status code. */
1721
+ generic = "generic",
1722
+ /** Indicates that an error occured due to a request timing out. */
1723
+ timeout = "timeout"
1724
+ }
1725
+ interface ThrownFormLevelErrorMeta {}
1726
+ interface ThrownFormLevelError {
1727
+ meta?: ThrownFormLevelErrorMeta;
1728
+ type: ThrownFormLevelErrorType;
1729
+ }
1730
+ interface ThrownFormErrors {
1731
+ fieldLevelErrors: ThrownFieldLevelError[];
1732
+ formLevelErrors: ThrownFormLevelError[];
1733
+ }
1734
+ interface ThrownFormLevelErrorFormatterOutput {
1735
+ description: ReactNode;
1736
+ iconProduct?: IconProductType;
1737
+ title: ReactNode;
1738
+ }
1739
+ type ThrownFieldLevelErrorFormatter = Formatter<ThrownFieldLevelError, ReactNode>;
1740
+ type ThrownFormLevelErrorFormatter = Formatter<ThrownFormLevelError, ReactNode | ThrownFormLevelErrorFormatterOutput>;
1741
+ interface ReCaptchaV3Config {
1742
+ isEnabled: boolean;
1743
+ isEnterprise: boolean;
1744
+ siteKey: string;
1745
+ }
1746
+ declare enum CaptchaType {
1747
+ reCaptchaV3 = "reCaptchaV3"
1748
+ }
1749
+ interface SubmitHandlerErrorInfo {
1750
+ captchaToken?: string;
1751
+ timings: {
1752
+ captchaExecuteEnd?: number;
1753
+ captchaExecuteStart?: number;
1754
+ submitEnd?: number;
1755
+ submitStart?: number;
1756
+ };
1757
+ }
1758
+ interface FormConfig {
1759
+ onSubmitHandlerError?: (error: unknown, errorInfo: SubmitHandlerErrorInfo) => void;
1760
+ reCaptchaV3Config?: ReCaptchaV3Config;
1761
+ resolveThrownFormErrors?: (error: unknown) => ThrownFormErrors;
1762
+ thrownFieldLevelErrorFormatter?: ThrownFieldLevelErrorFormatter;
1763
+ thrownFormLevelErrorFormatter?: ThrownFormLevelErrorFormatter;
1764
+ }
1765
+ interface SubmitHandlerExtraParam {
1766
+ captchaToken?: string;
1767
+ }
1768
+ type SubmitHandler<TFieldValues extends FieldValues> = (data: TFieldValues, extraParam: SubmitHandlerExtraParam, event?: BaseSyntheticEvent) => Promise<unknown> | unknown;
1769
+ //#endregion
1770
+ //#region src/components/formErrorOutcome/FormErrorOutcome.d.ts
1771
+ interface FormErrorOutcomeProps extends DesignSystemBaseProps, Pick<FormConfig, 'thrownFormLevelErrorFormatter'> {}
1772
+ declare const FormErrorOutcome: (props: FormErrorOutcomeProps) => _$react.JSX.Element | null;
1773
+ //#endregion
1774
+ //#region src/components/formErrorSummary/FormErrorSummary.d.ts
1775
+ interface FormErrorSummaryProps extends DesignSystemBaseProps {
1776
+ order?: string[];
1777
+ title?: ReactNode;
1778
+ }
1779
+ declare const FormErrorSummary: (props: FormErrorSummaryProps) => _$react.JSX.Element;
1780
+ //#endregion
1781
+ //#region src/components/formSuccessOutcome/FormSuccessOutcome.d.ts
1782
+ interface FormSuccessOutcomeProps extends DesignSystemBaseProps {
1783
+ children: ReactNode;
1784
+ onHide: () => void;
1785
+ title: ReactNode;
1786
+ visible: boolean;
1787
+ }
1788
+ declare const FormSuccessOutcome: (props: FormSuccessOutcomeProps) => _$react.JSX.Element;
1789
+ //#endregion
1790
+ //#region src/components/formSuccessOutcome/useFormSuccessOutcomeManager.d.ts
1791
+ interface UseFormSuccessOutcomeManagerReturn {
1792
+ formKey: Key;
1793
+ formSuccessOutcomeProps: {
1794
+ onHide: () => void;
1795
+ visible: boolean;
1796
+ };
1797
+ onMutationSuccess: () => void;
1798
+ }
1799
+ declare const useFormSuccessOutcomeManager: () => UseFormSuccessOutcomeManagerReturn;
1800
+ //#endregion
1801
+ //#region src/components/iconFlag/types.d.ts
1802
+ declare enum IconFlagType {
1803
+ cz = "cz",
1804
+ eu = "eu",
1805
+ hr = "hr",
1806
+ usa = "usa"
1807
+ }
1808
+ //#endregion
1809
+ //#region src/components/iconFlag/IconFlag.d.ts
1810
+ interface IconFlagProps {
1811
+ type: IconFlagType;
1812
+ }
1813
+ declare const IconFlag: (props: IconFlagProps) => _$react.JSX.Element;
1814
+ //#endregion
1815
+ //#region src/components/infobox/types.d.ts
1816
+ declare enum InfoboxVariant {
1817
+ primary = "primary",
1818
+ secondary = "secondary"
1819
+ }
1820
+ declare enum InfoboxSize {
1821
+ md = "md",
1822
+ sm = "sm",
1823
+ xs = "xs"
1824
+ }
1825
+ interface InfoboxTextContent {
1826
+ primary: ReactNode;
1827
+ secondary?: ReactNode;
1828
+ }
1829
+ //#endregion
1830
+ //#region src/components/infobox/Infobox.d.ts
1831
+ interface InfoboxProps extends DesignSystemBaseProps, AriaAttributes {
1832
+ /** Cannot be used alongside `children`. */
1833
+ actionNode?: ReactNode;
1834
+ children?: ReactNode;
1835
+ /** In order to render a circular progress bar, `iconProduct` must be provided as well. */
1836
+ circularProgress?: number;
1837
+ className?: string;
1838
+ fullWidth?: boolean;
1839
+ iconProduct?: IconProductType;
1840
+ id?: string;
1841
+ isWarning?: boolean;
1842
+ ref?: Ref<HTMLDivElement>;
1843
+ role?: AriaRole;
1844
+ size: InfoboxSize;
1845
+ tabIndex?: number;
1846
+ /** Cannot be used alongside `children`. */
1847
+ textContent?: InfoboxTextContent;
1848
+ variant: InfoboxVariant;
1849
+ }
1850
+ declare const Infobox: (props: InfoboxProps) => _$react.JSX.Element;
1851
+ //#endregion
1852
+ //#region src/components/inputLabel/types.d.ts
1853
+ declare enum InputLabelSize {
1854
+ xs = "xs",
1855
+ sm = "sm",
1856
+ md = "md",
1857
+ lg = "lg"
1858
+ }
1859
+ //#endregion
1860
+ //#region src/components/inputLabel/InputLabel.d.ts
1861
+ interface InputLabelProps extends DesignSystemBaseProps {
1862
+ as?: ElementType;
1863
+ /** Visually hidden text for screen readers, providing additional info, such as the availability of help under tooltip button. */
1864
+ hiddenText?: string;
1865
+ id?: string;
1866
+ invalid?: boolean;
1867
+ label?: ReactNode;
1868
+ labelId?: string;
1869
+ size?: InputLabelSize;
1870
+ suffix?: ReactNode;
1871
+ tooltip?: TooltipInfoDescriptor;
1872
+ }
1873
+ declare const InputLabel: (props: InputLabelProps) => _$react.JSX.Element;
1874
+ //#endregion
1875
+ //#region src/components/loader/types.d.ts
1876
+ declare enum LoaderSize {
1877
+ lg = "lg",
1878
+ sm = "sm"
1879
+ }
1880
+ //#endregion
1881
+ //#region src/components/loader/Loader.d.ts
1882
+ interface LoaderProps extends DesignSystemBaseProps, AriaAttributes {
1883
+ loaderSize: LoaderSize;
1884
+ role?: AriaRole;
1885
+ }
1886
+ declare const Loader: (props: LoaderProps) => _$react.JSX.Element;
1887
+ //#endregion
1888
+ //#region src/components/loaderOverlayBox/LoaderOverlayBox.d.ts
1889
+ interface LoaderOverlayBoxProps extends DesignSystemBaseProps, AriaAttributes {
1890
+ loaderSize: LoaderSize;
1891
+ role?: AriaRole;
1892
+ }
1893
+ declare const LoaderOverlayBox: (props: LoaderOverlayBoxProps) => _$react.JSX.Element;
1894
+ //#endregion
1895
+ //#region src/components/maskedInputField/types.d.ts
1896
+ type MaskedInputOnAccept = (unmaskedValue: string, maskedValue: string) => void;
1897
+ //#endregion
1898
+ //#region src/components/maskedInputField/maskedInput/MaskedInputBase.d.ts
1899
+ interface MaskedInputBaseProps extends InputBaseProps {
1900
+ maskOptions: FactoryOpts;
1901
+ onAccept?: MaskedInputOnAccept;
1902
+ }
1903
+ declare const MaskedInputBase: (props: MaskedInputBaseProps) => _$react.JSX.Element;
1904
+ //#endregion
1905
+ //#region src/components/maskedInputField/maskedInput/MaskedInput.d.ts
1906
+ declare const MaskedInput: {
1907
+ (props: FieldWrapperReservedProps & Omit<MaskedInputBaseProps, "label" | "note" | "tooltip" | "layout" | "errorMessage" | "labelAs" | "labelHiddenText" | "labelId" | "labelSuffix" | "addons" | "controlMobileWidth" | "controlSectionWidth" | "controlWidth" | "hiddenHintText" | "hintText" | "optionality" | "successMessage">): _$react.JSX.Element;
1908
+ displayName: string;
1909
+ };
1910
+ type MaskedInputProps = ComponentProps<typeof MaskedInput>;
1911
+ //#endregion
1912
+ //#region src/components/maskedInputField/MaskedInputField.d.ts
1913
+ type ManagedMaskedInputProps = Pick<MaskedInputProps, 'errorMessage' | 'onAccept' | 'onBlur' | 'ref' | 'value'>;
1914
+ declare const withMaskedInputField: <TProps extends ManagedMaskedInputProps>(Component: ComponentType<TProps>) => <TFieldValues extends FieldValues>(props: TProps & {
1915
+ name: FieldPath<TFieldValues>;
1916
+ options?: RegisterOptions<TFieldValues>;
1917
+ }) => _$react.JSX.Element;
1918
+ declare const MaskedInputField: <TFieldValues extends FieldValues>(props: FieldWrapperReservedProps & Omit<MaskedInputBaseProps, "label" | "note" | "tooltip" | "layout" | "errorMessage" | "labelAs" | "labelHiddenText" | "labelId" | "labelSuffix" | "addons" | "controlMobileWidth" | "controlSectionWidth" | "controlWidth" | "hiddenHintText" | "hintText" | "optionality" | "successMessage"> & {
1919
+ name: _$react_hook_form0.Path<TFieldValues>;
1920
+ options?: RegisterOptions<TFieldValues> | undefined;
1921
+ }) => _$react.JSX.Element;
1922
+ type MaskedInputFieldProps = ComponentProps<typeof MaskedInputField>;
1923
+ //#endregion
1924
+ //#region src/components/modal/types.d.ts
1925
+ type ModalOnClose = (reasonForClosing: ReasonForClosing) => void;
1926
+ declare enum ModalWidthType {
1927
+ default = "default",
1928
+ narrow = "narrow",
1929
+ narrowOnDesktopAndTablet = "narrowOnDesktopAndTablet"
1930
+ }
1931
+ declare enum ModalVerticalPosition {
1932
+ centerOnTablet = "centerOnTablet",
1933
+ default = "default"
1934
+ }
1935
+ declare enum ReasonForClosing {
1936
+ closeButton = "closeButton",
1937
+ esc = "esc",
1938
+ overlay = "overlay"
1939
+ }
1940
+ //#endregion
1941
+ //#region src/components/modal/Modal.d.ts
1942
+ interface ModalProps extends DesignSystemBaseProps {
1943
+ children: ReactNode;
1944
+ className?: string;
1945
+ closeButtonAriaLabel?: string;
1946
+ hideCloseButton: boolean;
1947
+ id?: string;
1948
+ isOpen: boolean;
1949
+ onClose: ModalOnClose;
1950
+ /** When a string is passed, `Modal` will search for an element with such `id`, otherwise create one. */
1951
+ rootElement?: Element | string;
1952
+ title?: ReactNode;
1953
+ verticalPosition?: ModalVerticalPosition;
1954
+ widthType?: ModalWidthType;
1955
+ withoutPadding?: boolean;
1956
+ }
1957
+ declare const Modal: (props: ModalProps) => _$react.ReactPortal | null;
1958
+ //#endregion
1959
+ //#region src/components/numberInputField/numberInput/NumberInput.d.ts
1960
+ interface NumberInputProps extends Omit<MaskedInputProps, 'maskOptions'> {
1961
+ allowNegative?: boolean;
1962
+ decimalPlaces?: number;
1963
+ integerPlaces?: number;
1964
+ maskOptions?: FactoryOpts;
1965
+ }
1966
+ declare const NumberInput: (props: NumberInputProps) => _$react.JSX.Element;
1967
+ //#endregion
1968
+ //#region src/components/numberInputField/NumberInputField.d.ts
1969
+ declare const NumberInputField: <TFieldValues extends _$react_hook_form0.FieldValues>(props: NumberInputProps & {
1970
+ name: _$react_hook_form0.Path<TFieldValues>;
1971
+ options?: _$react_hook_form0.RegisterOptions<TFieldValues> | undefined;
1972
+ }) => _$react.JSX.Element;
1973
+ type NumberInputFieldProps = ComponentProps<typeof NumberInputField>;
1974
+ //#endregion
1975
+ //#region src/components/paper/types.d.ts
1976
+ declare enum PaperShadow {
1977
+ lg = "lg",
1978
+ md = "md",
1979
+ sm = "sm"
1980
+ }
1981
+ //#endregion
1982
+ //#region src/components/paper/Paper.d.ts
1983
+ interface PaperProps extends DesignSystemBaseProps, SsrProps, AriaAttributes {
1984
+ as?: ElementType;
1985
+ children: ReactNode;
1986
+ className?: string;
1987
+ id?: string;
1988
+ overflow?: Overflow;
1989
+ padding?: Spacing;
1990
+ ref?: Ref<HTMLDivElement>;
1991
+ role?: AriaRole;
1992
+ shadow?: PaperShadow;
1993
+ tabIndex?: number;
1994
+ }
1995
+ declare const Paper: (props: PaperProps) => _$react.JSX.Element;
1996
+ //#endregion
1997
+ //#region src/components/phoneInputField/phoneInput/PhoneInput.d.ts
1998
+ interface PhoneInputProps extends Omit<MaskedInputProps, 'maskOptions'> {
1999
+ maskOptions?: FactoryOpts;
2000
+ prefixColor?: Property.Color;
2001
+ }
2002
+ declare const PhoneInput: (props: PhoneInputProps) => _$react.JSX.Element;
2003
+ //#endregion
2004
+ //#region src/components/phoneInputField/PhoneInputField.d.ts
2005
+ declare const PhoneInputField: <TFieldValues extends _$react_hook_form0.FieldValues>(props: PhoneInputProps & {
2006
+ name: _$react_hook_form0.Path<TFieldValues>;
2007
+ options?: _$react_hook_form0.RegisterOptions<TFieldValues> | undefined;
2008
+ }) => _$react.JSX.Element;
2009
+ type PhoneInputFieldProps = ComponentProps<typeof PhoneInputField>;
2010
+ //#endregion
2011
+ //#region src/components/progressPaper/progressStepper/ProgressStepper.d.ts
2012
+ interface ProgressDefinition extends AriaAttributes {
2013
+ activeStepIndex: number;
2014
+ /**
2015
+ * Accessible label for the progress bar, e.g. "Step progress".
2016
+ * Maps directly to the native `aria-label` attribute.
2017
+ */
2018
+ 'aria-label'?: string;
2019
+ /**
2020
+ * Maximum value for the progress bar.
2021
+ * Defaults to `numberOfSteps`.
2022
+ */
2023
+ 'aria-valuemax'?: number;
2024
+ /**
2025
+ * Minimum value for the progress bar.
2026
+ * Defaults to `1`.
2027
+ */
2028
+ 'aria-valuemin'?: number;
2029
+ /**
2030
+ * Current value for the progress bar.
2031
+ * Defaults to `activeStepIndex + 1`.
2032
+ */
2033
+ 'aria-valuenow'?: number;
2034
+ /**
2035
+ * Accessible text describing the current progress value, e.g. "Step 3 of 5".
2036
+ * Maps directly to the native `aria-valuetext` attribute.
2037
+ */
2038
+ 'aria-valuetext'?: string;
2039
+ numberOfSteps: number;
2040
+ role?: AriaRole;
2041
+ }
2042
+ //#endregion
2043
+ //#region src/components/progressPaper/ProgressPaper.d.ts
2044
+ interface ProgressPaperProps extends PaperProps, SsrProps {
2045
+ progressDefinition: ProgressDefinition;
2046
+ }
2047
+ declare const ProgressPaper: (props: ProgressPaperProps) => _$react.JSX.Element;
2048
+ //#endregion
2049
+ //#region src/components/radioField/types.d.ts
2050
+ declare enum RadioPosition {
2051
+ left = "left",
2052
+ right = "right"
2053
+ }
2054
+ interface RadioGeneralProps extends AriaAttributes {
2055
+ checked?: boolean;
2056
+ disabled?: boolean;
2057
+ id?: string;
2058
+ invalid?: boolean;
2059
+ name: string;
2060
+ onBlur?: (event: FocusEvent<HTMLInputElement>) => void;
2061
+ onChange?: (event: ChangeEvent<HTMLInputElement>) => void;
2062
+ role?: AriaRole;
2063
+ value: string;
2064
+ }
2065
+ //#endregion
2066
+ //#region src/components/radioButtonField/types.d.ts
2067
+ interface RadioButtonLabel {
2068
+ main: ReactElement | string;
2069
+ top?: ReactElement | string | undefined;
2070
+ }
2071
+ //#endregion
2072
+ //#region src/components/radioButtonField/radioButton/RadioButton.d.ts
2073
+ interface RadioButtonProps extends RadioGeneralProps, DesignSystemBaseProps {
2074
+ errorMessage?: ReactElement | string | undefined;
2075
+ label: RadioButtonLabel;
2076
+ ref?: Ref<HTMLInputElement>;
2077
+ }
2078
+ declare const RadioButton: (props: RadioButtonProps) => _$react.JSX.Element;
2079
+ //#endregion
2080
+ //#region src/components/radioButtonField/RadioButtonField.d.ts
2081
+ interface RadioButtonFieldProps extends Omit<RadioButtonProps, 'onChange'> {
2082
+ name: string;
2083
+ options?: RegisterOptions;
2084
+ }
2085
+ declare const RadioButtonField: (props: RadioButtonFieldProps) => _$react.JSX.Element;
2086
+ //#endregion
2087
+ //#region src/components/radioButtonGroupField/types.d.ts
2088
+ interface RadioButtonGroupItem extends AriaAttributes {
2089
+ id?: string;
2090
+ label: RadioButtonLabel;
2091
+ role?: AriaRole;
2092
+ value: string;
2093
+ }
2094
+ declare enum RadioButtonGroupLayout {
2095
+ flex = "flex",
2096
+ grid = "grid",
2097
+ /** Special layout ensuring that single item is not stretched to full width alone.
2098
+ * If there is only one or two items, they are displayed in 3-column layout.
2099
+ * Works only up to 6 items; if there are more, it behaves like `flex`.
2100
+ */
2101
+ smartGrid = "smartGrid"
2102
+ }
2103
+ //#endregion
2104
+ //#region src/components/radioButtonGroupField/radioButtonGroupControl/RadioButtonGroupControl.d.ts
2105
+ interface RadioButtonGroupControlProps extends DesignSystemBaseProps, FieldControlProps {
2106
+ buttonsLayout?: RadioButtonGroupLayout;
2107
+ controlWidth?: Property.Width;
2108
+ disabled?: boolean;
2109
+ gridColumns?: number;
2110
+ itemMinWidth?: Property.Width;
2111
+ items: RadioButtonGroupItem[];
2112
+ name: string;
2113
+ onBlur?: ((event: FocusEvent<HTMLInputElement>) => void) | undefined;
2114
+ onChange?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
2115
+ ref?: Ref<HTMLInputElement>;
2116
+ value?: string;
2117
+ }
2118
+ declare const RadioButtonGroupControl: (props: RadioButtonGroupControlProps) => _$react.JSX.Element;
2119
+ //#endregion
2120
+ //#region src/components/radioButtonGroupField/radioButtonGroup/RadioButtonGroup.d.ts
2121
+ declare const RadioButtonGroupBase: {
2122
+ (props: FieldWrapperReservedProps & Omit<RadioButtonGroupControlProps, "label" | "note" | "tooltip" | "layout" | "errorMessage" | "labelAs" | "labelHiddenText" | "labelId" | "labelSuffix" | "addons" | "controlMobileWidth" | "controlSectionWidth" | "controlWidth" | "hiddenHintText" | "hintText" | "optionality" | "successMessage">): _$react.JSX.Element;
2123
+ displayName: string;
2124
+ };
2125
+ declare const RadioButtonGroup: (props: ComponentProps<typeof RadioButtonGroupBase>) => _$react.JSX.Element;
2126
+ type RadioButtonGroupProps = ComponentProps<typeof RadioButtonGroup>;
2127
+ //#endregion
2128
+ //#region src/components/radioButtonGroupField/RadioButtonGroupField.d.ts
2129
+ interface RadioButtonGroupFieldProps extends Omit<RadioButtonGroupProps, 'onBlur' | 'onChange' | 'value'> {
2130
+ name: string;
2131
+ options?: RegisterOptions;
2132
+ }
2133
+ declare const RadioButtonGroupField: (props: RadioButtonGroupFieldProps) => _$react.JSX.Element;
2134
+ //#endregion
2135
+ //#region src/components/radioField/radioControl/RadioControl.d.ts
2136
+ interface RadioControlProps extends DesignSystemBaseProps, RadioGeneralProps {
2137
+ ref?: Ref<HTMLInputElement>;
2138
+ }
2139
+ declare const RadioControl: (props: RadioControlProps) => _$react.JSX.Element;
2140
+ //#endregion
2141
+ //#region src/components/radioField/radio/Radio.d.ts
2142
+ interface RadioProps extends RadioControlProps, InputLabelPassthroughProps, DesignSystemBaseProps {
2143
+ errorMessage?: ReactNode;
2144
+ labelColor?: string;
2145
+ position?: RadioPosition;
2146
+ tooltipPosition?: LabelTooltipPosition;
2147
+ }
2148
+ declare const Radio: (props: RadioProps) => _$react.JSX.Element;
2149
+ //#endregion
2150
+ //#region src/components/radioField/RadioField.d.ts
2151
+ interface RadioFieldProps extends Omit<RadioProps, 'onChange'> {
2152
+ name: string;
2153
+ options?: RegisterOptions;
2154
+ }
2155
+ declare const RadioField: (props: RadioFieldProps) => _$react.JSX.Element;
2156
+ //#endregion
2157
+ //#region src/components/radioGroupField/types.d.ts
2158
+ interface RadioGroupItem extends InputLabelPassthroughProps, AriaAttributes {
2159
+ id?: string;
2160
+ role?: AriaRole;
2161
+ value: string;
2162
+ }
2163
+ declare enum RadioGroupDirection {
2164
+ column = "column",
2165
+ columnReverse = "columnReverse",
2166
+ row = "row",
2167
+ rowReverse = "rowReverse"
2168
+ }
2169
+ //#endregion
2170
+ //#region src/components/radioGroupField/radioGroupControl/RadioGroupControl.d.ts
2171
+ interface RadioGroupControlProps extends FieldControlProps, DesignSystemBaseProps {
2172
+ columnGap?: Spacing;
2173
+ controlWidth?: Property.Width;
2174
+ direction: RadioGroupDirection;
2175
+ disabled?: boolean;
2176
+ itemMinWidth?: Property.Width;
2177
+ items: RadioGroupItem[];
2178
+ name: string;
2179
+ onBlur?: ((event: FocusEvent<HTMLInputElement>) => void) | undefined;
2180
+ onChange?: ((event: ChangeEvent<HTMLInputElement>) => void) | undefined;
2181
+ ref?: Ref<HTMLInputElement>;
2182
+ rowGap?: Spacing;
2183
+ value?: string;
2184
+ }
2185
+ declare const RadioGroupControl: (props: RadioGroupControlProps) => _$react.JSX.Element;
2186
+ //#endregion
2187
+ //#region src/components/radioGroupField/radioGroup/RadioGroup.d.ts
2188
+ declare const RadioGroupBase: {
2189
+ (props: FieldWrapperReservedProps & Omit<RadioGroupControlProps, "label" | "note" | "tooltip" | "layout" | "errorMessage" | "labelAs" | "labelHiddenText" | "labelId" | "labelSuffix" | "addons" | "controlMobileWidth" | "controlSectionWidth" | "controlWidth" | "hiddenHintText" | "hintText" | "optionality" | "successMessage">): _$react.JSX.Element;
2190
+ displayName: string;
2191
+ };
2192
+ declare const RadioGroup: (props: ComponentProps<typeof RadioGroupBase>) => _$react.JSX.Element;
2193
+ type RadioGroupProps = ComponentProps<typeof RadioGroup>;
2194
+ //#endregion
2195
+ //#region src/components/radioGroupField/RadioGroupField.d.ts
2196
+ interface RadioGroupFieldProps extends Omit<RadioGroupProps, 'onBlur' | 'onChange' | 'value'> {
2197
+ name: string;
2198
+ options?: RegisterOptions;
2199
+ }
2200
+ declare const RadioGroupField: (props: RadioGroupFieldProps) => _$react.JSX.Element;
2201
+ //#endregion
2202
+ //#region src/components/searchInput/SearchInput.d.ts
2203
+ interface SearchInputControlProps extends InputProps {
2204
+ buttonAction?: () => void;
2205
+ buttonText?: ReactNode;
2206
+ invalid?: boolean;
2207
+ placeholder?: string;
2208
+ }
2209
+ declare const SearchInput: {
2210
+ (props: FieldWrapperReservedProps & Omit<SearchInputControlProps, "label" | "note" | "tooltip" | "layout" | "errorMessage" | "labelAs" | "labelHiddenText" | "labelId" | "labelSuffix" | "addons" | "controlMobileWidth" | "controlSectionWidth" | "controlWidth" | "hiddenHintText" | "hintText" | "optionality" | "successMessage">): _$react.JSX.Element;
2211
+ displayName: string;
2212
+ };
2213
+ type SearchInputProps = ComponentProps<typeof SearchInput>;
2214
+ //#endregion
2215
+ //#region src/components/selectField/types.d.ts
2216
+ declare enum SelectVariant {
2217
+ inputLike = "inputLike",
2218
+ text = "text"
2219
+ }
2220
+ declare enum SelectItemOrderSource {
2221
+ formatter = "formatter",
2222
+ value = "value"
2223
+ }
2224
+ interface SelectItemOrder {
2225
+ compareFn?: (a: unknown, b: unknown) => number;
2226
+ source: SelectItemOrderSource;
2227
+ }
2228
+ type SelectItem = boolean | number | object | string | null;
2229
+ //#endregion
2230
+ //#region src/components/selectField/selectControl/SelectControl.d.ts
2231
+ interface SelectControlProps<TItem extends SelectItem> extends FieldControlProps, DesignSystemBaseProps {
2232
+ ariaLabel?: string;
2233
+ disabled?: boolean;
2234
+ formatter?: Formatter<TItem, ReactNode>;
2235
+ getItemKey?: (item: TItem | null) => number | string;
2236
+ iconSystem?: IconSystemType;
2237
+ id?: string;
2238
+ itemOrder?: SelectItemOrder;
2239
+ items: TItem[];
2240
+ nilMessage?: string;
2241
+ onBlur?: FocusEventHandler<HTMLDivElement>;
2242
+ onChange: (item: TItem | null) => void;
2243
+ ref?: Ref<HTMLDivElement>;
2244
+ value: TItem | null;
2245
+ variant?: SelectVariant;
2246
+ }
2247
+ declare const SelectControl: <TItem extends SelectItem>(props: SelectControlProps<TItem>) => _$react.JSX.Element;
2248
+ //#endregion
2249
+ //#region src/components/selectField/select/Select.d.ts
2250
+ type SelectProps<TItem extends SelectItem> = FieldWrapperReservedProps & SelectControlProps<TItem>;
2251
+ declare const Select: <TItem extends SelectItem>(props: SelectProps<TItem>) => ReactElement;
2252
+ //#endregion
2253
+ //#region src/components/selectField/SelectField.d.ts
2254
+ interface SelectFieldProps<TItem extends SelectItem> extends Omit<SelectProps<TItem>, 'onChange' | 'value'> {
2255
+ defaultValue?: TItem | null;
2256
+ name: string;
2257
+ options?: RegisterOptions;
2258
+ shouldResetInvalidValues?: boolean;
2259
+ }
2260
+ declare const SelectField: <TItem extends SelectItem>(props: SelectFieldProps<TItem>) => _$react.JSX.Element;
2261
+ //#endregion
2262
+ //#region src/components/sliderInputField/types.d.ts
2263
+ declare enum SliderInputRoundingType {
2264
+ ceilBySteps = "ceilBySteps",
2265
+ ceilToThousands = "ceilToThousands",
2266
+ floorBySteps = "floorBySteps",
2267
+ floorToThousands = "floorToThousands",
2268
+ roundBySteps = "roundBySteps",
2269
+ roundToThousands = "roundToThousands"
2270
+ }
2271
+ interface SliderBreakpoint {
2272
+ bottomBreakpoint: number;
2273
+ step: number;
2274
+ }
2275
+ interface SliderSteps {
2276
+ baseStep: number;
2277
+ breakpointList: SliderBreakpoint[];
2278
+ }
2279
+ declare enum SliderStepType {
2280
+ visuallyLinearByValue = "visuallyLinearByValue",
2281
+ visuallySameStepSize = "visuallySameStepSize"
2282
+ }
2283
+ interface SliderMinMaxLabels {
2284
+ max: ReactElement | string;
2285
+ min: ReactElement | string;
2286
+ }
2287
+ interface SliderAriaValueTextFormatterContext {
2288
+ clampMax?: number;
2289
+ clampMin?: number;
2290
+ }
2291
+ type SliderAriaValueTextFormatter = Formatter<number, string, SliderAriaValueTextFormatterContext>;
2292
+ interface SliderInputLimitExceededLiveTextFormatterContext {
2293
+ clampMax?: number;
2294
+ clampMin?: number;
2295
+ effectiveMax: number;
2296
+ effectiveMin: number;
2297
+ max: number;
2298
+ min: number;
2299
+ oldValue: number;
2300
+ }
2301
+ type SliderInputLimitExceededLiveTextFormatter = Formatter<number, string, SliderInputLimitExceededLiveTextFormatterContext>;
2302
+ //#endregion
2303
+ //#region src/components/sliderInputField/sliderInput/SliderInput.d.ts
2304
+ interface SliderInputProps extends DesignSystemBaseProps, InputLabelPassthroughProps {
2305
+ ariaLabelForHandle?: string;
2306
+ ariaLabelledByForHandle?: string;
2307
+ ariaValueTextFormatter?: SliderAriaValueTextFormatter;
2308
+ /** The maximum value that the slider can be moved to. Even if the visible range allows higher values, the thumb cannot go above this limit. */
2309
+ clampMax?: number;
2310
+ /** The minimum value that the slider can be moved to. Even if the visible range allows lower values, the thumb cannot go below this limit. */
2311
+ clampMin?: number;
2312
+ colorInput?: string;
2313
+ disabled?: boolean;
2314
+ hintText?: ReactElement | string;
2315
+ id?: string;
2316
+ inputLimitExceededLiveTextFormatter?: SliderInputLimitExceededLiveTextFormatter;
2317
+ inputNote?: ReactElement | string;
2318
+ inputRoundingType?: SliderInputRoundingType;
2319
+ invalid?: boolean;
2320
+ isInputHidden?: boolean;
2321
+ max: number;
2322
+ min: number;
2323
+ minMaxLabels?: SliderMinMaxLabels;
2324
+ name: string;
2325
+ /**
2326
+ * Callback triggered when either the input field or the slider thumb loses focus.
2327
+ */
2328
+ onBlur?: () => void;
2329
+ /**
2330
+ * Callback triggered after the value is finalized, either by completing slider movement or by finalizing input (onBlur or Enter).
2331
+ */
2332
+ onChange?: (value: number) => void;
2333
+ /**
2334
+ * Callback triggered on every change in the input field, before the user blurs the field or presses Enter.
2335
+ * It is also called after completing slider movement or finalizing input (on Enter orBlur),
2336
+ * if the value needs to be adjusted (e.g., clamped to max if it exceeds the allowed maximum).
2337
+ */
2338
+ onInputChange?: (value: string) => void;
2339
+ /**
2340
+ * Callback triggered on every slider value change during movement (e.g., while dragging the thumb).
2341
+ * Also called when the value is finalized via input (onBlur or Enter).
2342
+ * Useful when another slider or component should react immediately to this slider’s changes.
2343
+ */
2344
+ onSliderChange?: (value: number) => void;
2345
+ prefix?: ReactNode;
2346
+ ref?: Ref<HTMLInputElement>;
2347
+ steps: SliderSteps;
2348
+ stepType: SliderStepType;
2349
+ suffix?: ReactNode;
2350
+ value: number;
2351
+ weight?: FontWeight;
2352
+ }
2353
+ /**
2354
+ * The `SliderInput` component triggers the `onChange` callback only after the user either:
2355
+ * 1. Presses Enter while the input field is focused, or
2356
+ * 2. The input field or the slider handle loses focus (onBlur).
2357
+ *
2358
+ * This behavior is intentional and aligns with use cases such as calculators, where the value is finalized
2359
+ * only after the user explicitly confirms their input. This ensures the input is validated and adjusted
2360
+ * appropriately before the change is committed. The value is not updated during slider movement to avoid
2361
+ * immediate side effects while the user is adjusting the value.
2362
+ *
2363
+ * For more immediate feedback during slider movement or input changes, you can use the `onSliderChange`
2364
+ * and `onInputChange` callbacks. These callbacks are triggered on every change during slider movement
2365
+ * or while typing in the input field, before the user finalizes their selection with Enter or onBlur.
2366
+ */
2367
+ declare const SliderInput: (props: SliderInputProps) => _$react.JSX.Element;
2368
+ //#endregion
2369
+ //#region src/components/sliderInputField/slider/Slider.d.ts
2370
+ interface SliderProps extends DesignSystemBaseProps {
2371
+ ariaLabelForHandle?: string;
2372
+ ariaLabelledByForHandle?: string;
2373
+ ariaValueTextFormatter?: SliderAriaValueTextFormatter;
2374
+ /** The maximum value that the slider can be moved to. Even if the visible range allows higher values, the thumb cannot go above this limit. */
2375
+ clampMax?: number;
2376
+ /** The minimum value that the slider can be moved to. Even if the visible range allows lower values, the thumb cannot go below this limit. */
2377
+ clampMin?: number;
2378
+ disable?: boolean | undefined;
2379
+ max: number;
2380
+ min: number;
2381
+ minMaxLabels: SliderMinMaxLabels | undefined;
2382
+ onBlur?: FocusEventHandler<HTMLDivElement>;
2383
+ /** it is triggered during movement */
2384
+ onChange: (value: number) => void;
2385
+ /** it is triggered after the user drops the handle */
2386
+ onFinalChange: (value: number) => void;
2387
+ steps: SliderSteps;
2388
+ stepType: SliderStepType;
2389
+ value: number;
2390
+ }
2391
+ declare const Slider: (props: SliderProps) => _$react.JSX.Element;
2392
+ //#endregion
2393
+ //#region src/components/sliderInputField/SliderInputField.d.ts
2394
+ interface SliderInputFieldProps extends Omit<SliderInputProps, 'onChange' | 'value'> {
2395
+ options?: RegisterOptions;
2396
+ }
2397
+ /**
2398
+ * Note: You must set the `defaultValues` for this field in `useForm`. Without it, the field throw error.
2399
+ */
2400
+ declare const SliderInputField: (props: SliderInputFieldProps) => _$react.JSX.Element;
2401
+ //#endregion
2402
+ //#region src/components/spanButton/SpanButton.d.ts
2403
+ interface SpanButtonProps extends DesignSystemBaseProps, AriaAttributes {
2404
+ borderRadius?: BorderRadius;
2405
+ children?: ReactNode;
2406
+ className?: string;
2407
+ disabled?: boolean;
2408
+ id?: string;
2409
+ onClick?: (event: MouseEvent<HTMLButtonElement>) => void;
2410
+ onMouseDown?: (event: MouseEvent<HTMLButtonElement>) => void;
2411
+ onMouseUp?: (event: MouseEvent<HTMLButtonElement>) => void;
2412
+ onTouchStart?: (event: TouchEvent<HTMLButtonElement>) => void;
2413
+ }
2414
+ declare const SpanButton: (props: SpanButtonProps) => _$react.JSX.Element;
2415
+ //#endregion
2416
+ //#region src/components/stack/types.d.ts
2417
+ declare enum StackDirection {
2418
+ column = "column",
2419
+ columnReverse = "columnReverse",
2420
+ row = "row",
2421
+ rowReverse = "rowReverse"
2422
+ }
2423
+ //#endregion
2424
+ //#region src/components/stack/Stack.d.ts
2425
+ interface StackProps extends AriaAttributes {
2426
+ as?: ElementType;
2427
+ children?: ReactNode;
2428
+ className?: string;
2429
+ direction?: StackDirection;
2430
+ fullWidth?: boolean;
2431
+ gap?: Spacing;
2432
+ id?: string;
2433
+ ref?: Ref<HTMLDivElement>;
2434
+ role?: AriaRole;
2435
+ tabIndex?: number;
2436
+ wrap?: FlexWrap;
2437
+ }
2438
+ declare const Stack: (props: StackProps) => _$react.JSX.Element;
2439
+ //#endregion
2440
+ //#region src/components/stepper/types.d.ts
2441
+ declare enum StepperVariant {
2442
+ horizontal = "horizontal",
2443
+ vertical = "vertical"
2444
+ }
2445
+ //#endregion
2446
+ //#region src/components/stepper/stepperItem/StepperItem.d.ts
2447
+ interface StepperItemProps {
2448
+ disabled?: boolean;
2449
+ id: string;
2450
+ index: number;
2451
+ isActive?: boolean;
2452
+ isCompleted?: boolean;
2453
+ onClick?: () => void;
2454
+ text?: ReactNode | string;
2455
+ variant: StepperVariant;
2456
+ }
2457
+ //#endregion
2458
+ //#region src/components/stepper/Stepper.d.ts
2459
+ interface StepperProps {
2460
+ steps: StepperItemProps[];
2461
+ variant: StepperVariant;
2462
+ }
2463
+ declare const Stepper: (props: StepperProps) => _$react.JSX.Element;
2464
+ //#endregion
2465
+ //#region src/components/storeButton/types.d.ts
2466
+ declare enum StoreButtonVariant {
2467
+ android = "android",
2468
+ apple = "apple"
2469
+ }
2470
+ declare enum StoreButtonSize {
2471
+ big = "big",
2472
+ small = "small"
2473
+ }
2474
+ //#endregion
2475
+ //#region src/components/storeButton/StoreButton.d.ts
2476
+ interface StoreButtonProps {
2477
+ href: string;
2478
+ size: StoreButtonSize;
2479
+ variant: StoreButtonVariant;
2480
+ }
2481
+ declare const StoreButton: (props: StoreButtonProps) => _$react.JSX.Element;
2482
+ //#endregion
2483
+ //#region src/components/table/types.d.ts
2484
+ declare enum TableVariant {
2485
+ exchange = "exchange",
2486
+ simple = "simple",
2487
+ simpleWithoutShadow = "simpleWithoutShadow"
2488
+ }
2489
+ declare enum TableTextAlign {
2490
+ center = "center",
2491
+ left = "left",
2492
+ right = "right"
2493
+ }
2494
+ declare enum TableHeadScope {
2495
+ col = "col",
2496
+ colgroup = "colgroup",
2497
+ row = "row",
2498
+ rowgroup = "rowgroup"
2499
+ }
2500
+ //#endregion
2501
+ //#region src/components/table/table/Table.d.ts
2502
+ interface TableProps {
2503
+ children: ReactNode;
2504
+ variant: TableVariant;
2505
+ width?: Property.Width;
2506
+ }
2507
+ declare const Table: (props: TableProps) => _$react.JSX.Element;
2508
+ //#endregion
2509
+ //#region src/components/table/tableBody/TableBody.d.ts
2510
+ interface TableBodyProps {
2511
+ children: ReactNode;
2512
+ }
2513
+ declare const TableBody: (props: TableBodyProps) => _$react.JSX.Element;
2514
+ //#endregion
2515
+ //#region src/components/table/tableData/TableData.d.ts
2516
+ interface TableDataProps extends DesignSystemBaseProps {
2517
+ children: ReactNode;
2518
+ delimiter?: boolean;
2519
+ headers?: string;
2520
+ textAlign?: TableTextAlign;
2521
+ variant: TableVariant;
2522
+ }
2523
+ declare const TableData: (props: TableDataProps) => _$react.JSX.Element;
2524
+ //#endregion
2525
+ //#region src/components/table/tableHead/TableHead.d.ts
2526
+ interface TableHeadProps {
2527
+ children: ReactNode;
2528
+ }
2529
+ declare const TableHead: (props: TableHeadProps) => _$react.JSX.Element;
2530
+ //#endregion
2531
+ //#region src/components/table/tableHeadData/TableHeadData.d.ts
2532
+ interface TableHeadDataProps extends DesignSystemBaseProps {
2533
+ abbr?: string;
2534
+ children: ReactNode;
2535
+ delimiter?: boolean;
2536
+ headers?: string;
2537
+ scope?: TableHeadScope;
2538
+ textAlign?: TableTextAlign;
2539
+ variant: TableVariant;
2540
+ width?: Property.Width;
2541
+ }
2542
+ declare const TableHeadData: (props: TableHeadDataProps) => _$react.JSX.Element;
2543
+ //#endregion
2544
+ //#region src/components/table/tableRow/TableRow.d.ts
2545
+ interface TableRowProps extends DesignSystemBaseProps {
2546
+ children: ReactNode;
2547
+ variant: TableVariant;
2548
+ }
2549
+ declare const TableRow: (props: TableRowProps) => _$react.JSX.Element;
2550
+ //#endregion
2551
+ //#region src/components/tabs/types.d.ts
2552
+ declare enum TabsVariant {
2553
+ infoTags = "infoTags",
2554
+ primary = "primary",
2555
+ secondary = "secondary",
2556
+ tertiary = "tertiary"
2557
+ }
2558
+ declare enum TabsSize {
2559
+ xs = "xs",
2560
+ sm = "sm",
2561
+ md = "md",
2562
+ lg = "lg"
2563
+ }
2564
+ declare enum TabsActiveTabDefaultPosition {
2565
+ center = "center",
2566
+ noScrolling = "noScrolling",
2567
+ scrollOnlyWhenNotVisible = "scrollOnlyWhenNotVisible"
2568
+ }
2569
+ declare enum TabsWrap {
2570
+ noWrap = "noWrap",
2571
+ /**
2572
+ * Tabs wrap to the next line based on the container width instead of scrolling.
2573
+ * Each tab sizes according to its text content.
2574
+ * This option is intended only for {@link TabsVariant.infoTags}.
2575
+ * When enabled, {@link TabsActiveTabDefaultPosition} has no effect.
2576
+ */
2577
+ wrap = "wrap"
2578
+ }
2579
+ interface TabItemType {
2580
+ ariaControls?: string;
2581
+ as?: ElementType;
2582
+ href?: string;
2583
+ icon?: ReactNode;
2584
+ id: string;
2585
+ isActive?: boolean;
2586
+ onActivate?: () => void;
2587
+ text?: ReactElement | string;
2588
+ }
2589
+ interface TabsType {
2590
+ activeTabDefaultPosition: TabsActiveTabDefaultPosition;
2591
+ fullWidth?: boolean;
2592
+ /**
2593
+ * Controls the gap between individual tab items.
2594
+ * Defaults to {@link Spacing.xxs}.
2595
+ */
2596
+ gap?: Spacing;
2597
+ /**
2598
+ * Removes the border and background from the tabs container.
2599
+ * Defaults to `false`.
2600
+ */
2601
+ noBorder?: boolean;
2602
+ size?: TabsSize;
2603
+ tabItems: TabItemType[];
2604
+ variant: TabsVariant;
2605
+ wrap?: TabsWrap;
2606
+ }
2607
+ //#endregion
2608
+ //#region src/components/tabs/Tabs.d.ts
2609
+ interface TabsProps extends TabsType, DesignSystemBaseProps {}
2610
+ /**
2611
+ * This component implements accessibility for tabs according to W3C WAI-ARIA guidelines.
2612
+ * To ensure proper functionality, tab panels must also be described using ARIA attributes.
2613
+ *
2614
+ * More info: https://www.w3.org/WAI/ARIA/apg/patterns/tabs/examples/tabs-manual/
2615
+ */
2616
+ declare const Tabs: (props: TabsProps) => _$react.JSX.Element;
2617
+ //#endregion
2618
+ //#region src/components/tag/types.d.ts
2619
+ declare enum TagType {
2620
+ alert = "alert",
2621
+ info = "info",
2622
+ infoLight = "infoLight",
2623
+ invert = "invert",
2624
+ neutralDefault = "neutralDefault",
2625
+ neutralSubtle = "neutralSubtle",
2626
+ success = "success",
2627
+ warning = "warning"
2628
+ }
2629
+ declare enum TagSize {
2630
+ md = "md",
2631
+ sm = "sm"
2632
+ }
2633
+ declare enum TagTextTransform {
2634
+ none = "none",
2635
+ uppercase = "uppercase"
2636
+ }
2637
+ declare enum TagIconPosition {
2638
+ left = "left",
2639
+ right = "right",
2640
+ top = "top"
2641
+ }
2642
+ //#endregion
2643
+ //#region src/components/tag/Tag.d.ts
2644
+ interface TagProps extends DesignSystemBaseProps, AriaAttributes {
2645
+ as?: ElementType;
2646
+ children: ReactNode;
2647
+ className?: string;
2648
+ fontWeight?: FontWeight;
2649
+ href?: string;
2650
+ iconPosition?: TagIconPosition;
2651
+ iconProduct?: IconProductType;
2652
+ iconSystem?: IconSystemType;
2653
+ onClick?: (event: MouseEvent<HTMLDivElement>) => void;
2654
+ onKeyDown?: (event: KeyboardEvent<HTMLDivElement>) => void;
2655
+ ref?: Ref<HTMLDivElement>;
2656
+ role?: AriaRole;
2657
+ size?: TagSize;
2658
+ tabIndex?: number;
2659
+ textDecoration?: TextDecoration;
2660
+ textTransform?: TagTextTransform;
2661
+ type: TagType;
2662
+ whiteSpace?: WhiteSpace;
2663
+ }
2664
+ declare const Tag: (props: TagProps) => _$react.JSX.Element;
2665
+ //#endregion
2666
+ //#region src/components/textAreaField/textArea/TextArea.d.ts
2667
+ interface TextAreaControlProps extends TextareaHTMLAttributes<HTMLTextAreaElement>, FieldControlProps {
2668
+ ref?: Ref<HTMLTextAreaElement>;
2669
+ }
2670
+ declare const TextArea: {
2671
+ (props: FieldWrapperReservedProps & Omit<TextAreaControlProps, "label" | "note" | "tooltip" | "layout" | "errorMessage" | "labelAs" | "labelHiddenText" | "labelId" | "labelSuffix" | "addons" | "controlMobileWidth" | "controlSectionWidth" | "controlWidth" | "hiddenHintText" | "hintText" | "optionality" | "successMessage">): _$react.JSX.Element;
2672
+ displayName: string;
2673
+ };
2674
+ type TextAreaProps = ComponentProps<typeof TextArea>;
2675
+ //#endregion
2676
+ //#region src/components/textAreaField/TextAreaField.d.ts
2677
+ interface TextAreaFieldProps extends Omit<TextAreaProps, 'onChange' | 'value'> {
2678
+ name: string;
2679
+ options?: RegisterOptions;
2680
+ }
2681
+ declare const TextAreaField: (props: TextAreaFieldProps) => _$react.JSX.Element;
2682
+ //#endregion
2683
+ //#region src/components/textInputField/textInput/TextInput.d.ts
2684
+ interface TextInputControlProps extends InputProps {
2685
+ iconSystem?: IconSystemType;
2686
+ placeholder?: string;
2687
+ }
2688
+ declare const TextInput: {
2689
+ (props: FieldWrapperReservedProps & Omit<TextInputControlProps, "label" | "note" | "tooltip" | "layout" | "errorMessage" | "labelAs" | "labelHiddenText" | "labelId" | "labelSuffix" | "addons" | "controlMobileWidth" | "controlSectionWidth" | "controlWidth" | "hiddenHintText" | "hintText" | "optionality" | "successMessage">): _$react.JSX.Element;
2690
+ displayName: string;
2691
+ };
2692
+ type TextInputProps = ComponentProps<typeof TextInput>;
2693
+ //#endregion
2694
+ //#region src/components/textInputField/TextInputField.d.ts
2695
+ interface TextInputFieldProps extends Omit<TextInputProps, 'onChange' | 'value'> {
2696
+ name: string;
2697
+ options?: RegisterOptions;
2698
+ }
2699
+ declare const TextInputField: (props: TextInputFieldProps) => _$react.JSX.Element;
2700
+ //#endregion
2701
+ //#region src/components/toggle/Toggle.d.ts
2702
+ interface ToggleProps {
2703
+ defaultValue?: boolean;
2704
+ disabled?: boolean;
2705
+ id: string | undefined;
2706
+ label?: ReactNode | string;
2707
+ name: string;
2708
+ onChange?: (value: boolean) => void;
2709
+ }
2710
+ /**
2711
+ * Currently not compatible with react-hook-form
2712
+ */
2713
+ declare const Toggle: (props: ToggleProps) => _$react.JSX.Element;
2714
+ //#endregion
2715
+ //#region src/components/trailingTextInput/TrailingTextInput.d.ts
2716
+ interface TrailingTextInputControlProps extends InputProps {
2717
+ placeholder?: string;
2718
+ suffix?: ReactNode;
2719
+ }
2720
+ declare const TrailingTextInput: {
2721
+ (props: FieldWrapperReservedProps & Omit<TrailingTextInputControlProps, "label" | "note" | "tooltip" | "layout" | "errorMessage" | "labelAs" | "labelHiddenText" | "labelId" | "labelSuffix" | "addons" | "controlMobileWidth" | "controlSectionWidth" | "controlWidth" | "hiddenHintText" | "hintText" | "optionality" | "successMessage">): _$react.JSX.Element;
2722
+ displayName: string;
2723
+ };
2724
+ type TrailingTextInputProps = ComponentProps<typeof TrailingTextInput>;
2725
+ //#endregion
2726
+ //#region src/components/typography/types.d.ts
2727
+ declare enum TypographyVariant {
2728
+ textXs = "textXs",
2729
+ textSm = "textSm",
2730
+ textMd = "textMd",
2731
+ textLg = "textLg",
2732
+ h1 = "h1",
2733
+ h2 = "h2",
2734
+ h3 = "h3",
2735
+ h4 = "h4",
2736
+ h5 = "h5"
2737
+ }
2738
+ declare enum TypographyTextAlign {
2739
+ center = "center",
2740
+ left = "left",
2741
+ right = "right"
2742
+ }
2743
+ //#endregion
2744
+ //#region src/components/typography/Typography.d.ts
2745
+ interface TypographyProps extends DesignSystemBaseProps, SsrProps, AriaAttributes {
2746
+ as?: ElementType;
2747
+ children: ReactNode;
2748
+ className?: string;
2749
+ color?: ColorObject | string;
2750
+ decoration?: TextDecoration;
2751
+ fullWidth?: boolean;
2752
+ id?: string;
2753
+ onClick?: ((event: MouseEvent<HTMLElement>) => void) | undefined;
2754
+ ref?: Ref<HTMLElement>;
2755
+ role?: AriaRole;
2756
+ tabIndex?: number;
2757
+ textAlign?: TypographyTextAlign;
2758
+ variant?: TypographyVariant;
2759
+ weight?: FontWeight;
2760
+ whiteSpace?: WhiteSpace;
2761
+ }
2762
+ declare const Typography: (props: TypographyProps) => _$react.JSX.Element;
2763
+ //#endregion
2764
+ //#region src/components/visuallyHidden/VisuallyHidden.d.ts
2765
+ interface VisuallyHiddenProps extends AriaAttributes {
2766
+ as?: ElementType;
2767
+ children: ReactNode;
2768
+ id?: string;
2769
+ role?: AriaRole;
2770
+ }
2771
+ declare const VisuallyHidden: (props: VisuallyHiddenProps) => _$react.JSX.Element;
2772
+ //#endregion
2773
+ //#region src/hooks/useUniqueIdIfIsUndefined.d.ts
2774
+ declare const useUniqueIdIfIsUndefined: (idParam: string | undefined) => string;
2775
+ //#endregion
2776
+ //#region src/constants.d.ts
2777
+ declare const liferayClassNames: {
2778
+ tooltipInfoButton: string;
2779
+ label: string;
2780
+ };
2781
+ declare const htmlNbsp = "\u00A0";
2782
+ //#endregion
2783
+ //#region src/form/FormConfigProvider.d.ts
2784
+ interface FormConfigProviderProps {
2785
+ children: ReactNode;
2786
+ config: FormConfig;
2787
+ }
2788
+ declare const FormConfigProvider: (props: FormConfigProviderProps) => _$react.JSX.Element;
2789
+ //#endregion
2790
+ //#region src/form/useForm.d.ts
2791
+ interface UseFormCaptchaProp {
2792
+ action: string;
2793
+ type: CaptchaType;
2794
+ }
2795
+ interface UseFormProps<TFieldValues extends FieldValues> extends UseFormProps$1<TFieldValues>, Pick<FormConfig, 'onSubmitHandlerError' | 'reCaptchaV3Config' | 'resolveThrownFormErrors' | 'thrownFieldLevelErrorFormatter'> {
2796
+ captcha?: UseFormCaptchaProp;
2797
+ schema?: z.ZodType;
2798
+ }
2799
+ type UseFormHandleSubmit<TFieldValues extends FieldValues, TSubmitValues extends FieldValues | undefined = undefined> = (onValid: TSubmitValues extends FieldValues ? SubmitHandler<TSubmitValues> : SubmitHandler<TFieldValues>, onInvalid?: SubmitErrorHandler<TFieldValues>) => (event?: BaseSyntheticEvent) => Promise<void>;
2800
+ type UseFormReturn<TFieldValues extends FieldValues, TSubmitValues extends FieldValues | undefined = undefined> = Omit<UseFormReturn$1<TFieldValues, any, TSubmitValues>, 'handleSubmit'> & {
2801
+ handleSubmit: UseFormHandleSubmit<TFieldValues, TSubmitValues>;
2802
+ thrownFormErrors: ThrownFormErrors;
2803
+ };
2804
+ /**
2805
+ * `TFieldValues` represents the shape of the field values at any given time, whereas `TSubmitValues` represents the form values
2806
+ * received by the submit handler.
2807
+ *
2808
+ * If `schema` is provided, `TFieldValues` must be assignable to the schema input type, and `TSubmitValues` should exactly
2809
+ * match the schema output type.
2810
+ *
2811
+ * If `defaultValues` are not provided, `TFieldValues` should be something like `DeepPartial<TSubmitValues>`.
2812
+ *
2813
+ * If enabled using the `captcha` prop, automatically performs Google reCAPTCHA verification when submitting a form.
2814
+ * The reCAPTCHA token is passed to the submit handler.
2815
+ */
2816
+ declare const useForm: <TFieldValues extends FieldValues, TSubmitValues extends FieldValues | undefined = undefined>(props?: UseFormProps<TFieldValues>) => UseFormReturn<TFieldValues, TSubmitValues>;
2817
+ //#endregion
2818
+ //#region src/form/FormProvider.d.ts
2819
+ interface FormProviderProps<TFieldValues extends FieldValues, TSubmitValues extends FieldValues | undefined = undefined> {
2820
+ children: ReactNode;
2821
+ form: UseFormReturn<TFieldValues, TSubmitValues>;
2822
+ }
2823
+ declare const FormProvider: <TFieldValues extends FieldValues, TSubmitValues extends FieldValues | undefined = undefined>(props: FormProviderProps<TFieldValues, TSubmitValues>) => _$react.JSX.Element;
2824
+ //#endregion
2825
+ //#region src/form/contexts.d.ts
2826
+ declare const FormConfigContext: _$react.Context<FormConfig>;
2827
+ //#endregion
2828
+ //#region src/form/errors.d.ts
2829
+ declare enum ReCaptchaErrorType {
2830
+ instanceNotInitialized = "instanceNotInitialized",
2831
+ scriptLoading = "scriptLoading"
2832
+ }
2833
+ declare class ReCaptchaError extends Error {
2834
+ readonly type: ReCaptchaErrorType;
2835
+ constructor(type: ReCaptchaErrorType);
2836
+ }
2837
+ //#endregion
2838
+ //#region src/form/useFormContext.d.ts
2839
+ declare const useFormContext: <TFieldValues extends FieldValues, TSubmitValues extends FieldValues | undefined = undefined>() => UseFormReturn<TFieldValues, TSubmitValues>;
2840
+ //#endregion
2841
+ //#region src/formatters.d.ts
2842
+ declare const identityFormatter: _$afformative.Formatter<any, any, unknown>;
2843
+ declare const jsonFormatter: _$afformative.Formatter<any, string, unknown>;
2844
+ declare const useMessageFormatter: <TInput extends unknown>(getMessage: (value: TInput) => MessageDescriptorWithPrimitiveValues | string) => _$afformative.Formatter<TInput, ReactNode, unknown>;
2845
+ //#endregion
2846
+ export { Accordion, AccordionContent, type AccordionContentType, AccordionItem, type AccordionItemProps, type AccordionItemType, AccordionKeyValue, type AccordionKeyValueProps, type AccordionProps, AccordionVariant, BorderRadius, Button, ButtonContentAlign, type ButtonProps, ButtonSize, ButtonStyle, ButtonType, ButtonsLayout, ButtonsLayoutAlign, ButtonsLayoutDirection, ButtonsLayoutProps, CalculatorResult, type CalculatorResultBodyItem, type CalculatorResultHeader, CalculatorResultInfoPosition, type CalculatorResultMain, type CalculatorResultModalDescriptor, type CalculatorResultProps, CaptchaType, Checkbox, CheckboxControl, CheckboxControlProps, CheckboxField, CheckboxFieldProps, CheckboxPosition, CheckboxProps, type ChooseColor, CircularProgressBar, type CircularProgressBarProps, ColorObject, ColorScheme, ColorSchemeProvider, type ColorSchemeProviderProps, ComboBox, ComboBoxControl, type ComboBoxControlProps, ComboBoxField, type ComboBoxFieldProps, type ComboBoxItem, type ComboBoxItemOrder, ComboBoxItemOrderSource, type ComboBoxProps, type ComboBoxValue, ComboBoxValueType, CreateTooltipInfoDescriptor, CreateTooltipInfoDescriptorParam, DatePicker, DatePickerControl, type DatePickerControlProps, DatePickerField, type DatePickerFieldProps, type DatePickerProps, type DesignSystemBaseProps, type DesignSystemFullMessages, type DesignSystemFullPropDefaults, DesignSystemMessagesProvider, type DesignSystemMessagesProviderProps, type DesignSystemPartialMessages, type DesignSystemPartialPropDefaults, DesignSystemPropDefaultsProvider, type DesignSystemPropDefaultsProviderProps, DesignSystemProvider, type DesignSystemProviderProps, EmailInput, EmailInputField, type EmailInputFieldProps, type EmailInputProps, ErrorBox, type ErrorBoxItem, ErrorBoxProps, FieldAddon, FieldAddonPosition, type FieldConfig, FieldConfigProvider, type FieldConfigProviderProps, FieldControlProps, FieldLabelStoreProvider, type FieldLabelStoreProviderProps, FieldOptionality, FieldWrapper, FieldWrapperControlProps, FieldWrapperLayout, FieldWrapperProps, FieldWrapperReservedProps, FileInput, FileInputControl, type FileInputControlProps, type FileInputDropzoneDragFilesHereComponent, type FileInputDropzoneDragOrSelectFilesComponent, type FileInputDropzoneSelectFilesComponent, FileInputErrorCode, FileInputField, type FileInputFieldProps, type FileInputLimitDescriptionComponent, type FileInputProps, type FileInputRemoveButtonTextComponent, type FileInputSettings, type FileInputUploadErrorReasonComponent, type FileInputUploadFailedComponent, FlexWrap, FontWeight, type FormConfig, FormConfigContext, FormConfigProvider, type FormConfigProviderProps, FormErrorOutcome, FormErrorOutcomeProps, FormErrorSummary, FormErrorSummaryProps, FormProvider, type FormProviderProps, FormSuccessOutcome, FormSuccessOutcomeProps, FormatAmountCurrencyDisplay, FormatAmountGrouping, type FormatAmountParam, FormattedAmount, type FormattedAmountProps, FormattedHtmlMessage, FormattedHtmlMessageProps, FormattedMessage, FormattedMessageProps, FormattedPercentage, type FormattedPercentageProps, type GetColor, IconFlag, type IconFlagProps, IconFlagType, IconProduct, IconProductHighlightType, type IconProductProps, IconProductSize, IconProductType, IconProductVariant, IconSystem, type IconSystemProps, IconSystemSize, type IconSystemSvgProps, IconSystemType, Infobox, type InfoboxProps, InfoboxSize, type InfoboxTextContent, InfoboxVariant, InputBase, type InputBaseProps, InputLabel, InputLabelPassthroughProps, type InputLabelProps, InputLabelSize, InputProps, InputSize, InputTextAlign, LabelTooltipPosition, Loader, LoaderOverlayBox, type LoaderOverlayBoxProps, LoaderProps, LoaderSize, MaskedInput, MaskedInputBase, MaskedInputBaseProps, MaskedInputField, MaskedInputFieldProps, MaskedInputProps, MediaType, MediaTypeProvider, type MediaTypeProviderProps, MessageDescriptorWithPrimitiveValues, MessageDescriptorWithValues, type MessageValues, Modal, ModalOnClose, ModalProps, ModalVerticalPosition, ModalWidthType, FormattedAmount$1 as NextFormattedAmount, type FormattedAmountProps$1 as NextFormattedAmountProps, NumberInput, NumberInputField, NumberInputFieldProps, NumberInputProps, Overflow, Paper, type PaperProps, PaperShadow, PhoneInput, PhoneInputField, type PhoneInputFieldProps, type PhoneInputProps, type PrimitiveMessageValues, ProgressPaper, type ProgressPaperProps, Radio, RadioButton, RadioButtonField, RadioButtonFieldProps, RadioButtonGroup, RadioButtonGroupControl, RadioButtonGroupControlProps, RadioButtonGroupField, type RadioButtonGroupFieldProps, RadioButtonGroupItem, RadioButtonGroupLayout, RadioButtonGroupProps, RadioButtonLabel, RadioButtonProps, RadioControl, RadioControlProps, RadioField, RadioFieldProps, RadioGeneralProps, RadioGroup, RadioGroupControl, RadioGroupControlProps, RadioGroupDirection, RadioGroupField, RadioGroupFieldProps, RadioGroupItem, RadioGroupProps, RadioPosition, RadioProps, ReCaptchaError, ReCaptchaErrorType, type ReCaptchaV3Config, ReasonForClosing, SearchInput, type SearchInputProps, Select, SelectControl, type SelectControlProps, SelectField, type SelectFieldProps, type SelectItem, type SelectItemOrder, SelectItemOrderSource, type SelectProps, SelectVariant, Slider, type SliderAriaValueTextFormatter, type SliderAriaValueTextFormatterContext, type SliderBreakpoint, SliderInput, SliderInputField, type SliderInputFieldProps, type SliderInputLimitExceededLiveTextFormatter, type SliderInputLimitExceededLiveTextFormatterContext, type SliderInputProps, SliderInputRoundingType, type SliderMinMaxLabels, type SliderProps, SliderStepType, type SliderSteps, Spacing, SpanButton, type SpanButtonProps, SsrProps, Stack, StackDirection, type StackProps, Stepper, type StepperItemProps, type StepperProps, StepperVariant, StoreButton, type StoreButtonProps, StoreButtonSize, StoreButtonVariant, type SubmitHandler, type SubmitHandlerErrorInfo, type SubmitHandlerExtraParam, type TabItemType, Table, TableBody, type TableBodyProps, TableData, type TableDataProps, TableHead, TableHeadData, type TableHeadDataProps, type TableHeadProps, TableHeadScope, type TableProps, TableRow, type TableRowProps, TableTextAlign, TableVariant, Tabs, TabsActiveTabDefaultPosition, TabsProps, TabsSize, type TabsType, TabsVariant, TabsWrap, Tag, TagIconPosition, type TagProps, TagSize, TagTextTransform, TagType, TextArea, TextAreaField, type TextAreaFieldProps, type TextAreaProps, TextDecoration, TextInput, TextInputField, type TextInputFieldProps, type TextInputProps, type Theme, type ThrownFieldLevelError, type ThrownFieldLevelErrorFormatter, type ThrownFormErrors, type ThrownFormLevelError, type ThrownFormLevelErrorFormatter, type ThrownFormLevelErrorFormatterOutput, type ThrownFormLevelErrorMeta, ThrownFormLevelErrorType, Toggle, type ToggleProps, TooltipCloseReason, type TooltipDescriptor, TooltipGeneral, TooltipGeneralProps, TooltipInfo, TooltipInfoConditional, TooltipInfoConditionalProps, type TooltipInfoDescriptor, TooltipInfoDisplayMethod, TooltipInfoDisplayableCheck, TooltipInfoDisplayableCheckProps, TooltipInfoProps, TooltipPlacement, type TooltipRenderParent, TooltipWidth, TrailingTextInput, type TrailingTextInputProps, Typography, type TypographyProps, TypographyTextAlign, TypographyVariant, type UseColorSchemeOptions, type UseColorSchemeParam, type UseDesignSystemOptions, type UseDesignSystemParam, type UseFormCaptchaProp, type UseFormHandleSubmit, type UseFormProps, type UseFormReturn, UseFormSuccessOutcomeManagerReturn, type UseMediaTypeOptions, type UseMediaTypeParam, VisuallyHidden, type VisuallyHiddenProps, WhiteSpace, datePickerValueFormat, getClampedFontSize, getColor, getTextDecorationStyle, htmlNbsp, identityFormatter, isRenderable, jsonFormatter, liferayClassNames, mapTooltipInfoDescriptorToPropsSubset, mergeRefs, pxToRem, renderReactNodeArray, resolveBorderRadiusValue, resolveFlexWrapValue, resolveFontWeightValue, resolveOverflowValue, resolveSpacingValue, resolveTextDecorationValue, resolveWhiteSpaceValue, styled, theme, useChooseColor, useColorScheme, useCreateTooltipInfoDescriptor, useDesignSystem, useDesignSystemMessages, useDesignSystemPropDefaults, useFieldConfig, useFieldLabels, useForm, useFormContext, useFormSuccessOutcomeManager, useFormatAmount, useFormatPercentage, useFormattedPercentage, useGetFormattedHtmlMessageIfDisplayable, useIsMessageDisplayable, useMediaType, useMergeRefs, useMessageFormatter, useFormatAmount$1 as useNextFormatAmount, useRegisterFieldLabel, useUniqueIdIfIsUndefined, withFieldWrapper, withMaskedInputField };
2847
+ //# sourceMappingURL=index.d.cts.map