@publicplan/kern-react-kit 1.0.1 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts DELETED
@@ -1,1103 +0,0 @@
1
- import * as react_jsx_runtime0 from "react/jsx-runtime";
2
- import * as react11 from "react";
3
- import React$1 from "react";
4
-
5
- //#region src/components/Accordion/Content.d.ts
6
- interface AccordionContentProps extends React.ComponentPropsWithoutRef<'section'> {}
7
- declare const AccordionContent: React.FC<AccordionContentProps>;
8
- //#endregion
9
- //#region src/components/Title/Title.d.ts
10
- type TextWrapper$1 = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p' | 'span';
11
- type TitleProps<TWrapper extends TextWrapper$1 = TextWrapper$1> = React.ComponentPropsWithoutRef<TWrapper> & {
12
- variant?: 'large' | 'default' | 'small';
13
- textWrapper?: TWrapper;
14
- text?: React.ReactNode;
15
- children?: React.ReactNode;
16
- };
17
- declare const Title: React.FC<TitleProps>;
18
- //#endregion
19
- //#region src/components/Accordion/Group.d.ts
20
- interface AccordionGroupProps extends Omit<React$1.ComponentPropsWithoutRef<'div'>, 'title'> {
21
- title?: TitleProps;
22
- }
23
- declare const AccordionGroup: React$1.FC<AccordionGroupProps>;
24
- //#endregion
25
- //#region src/components/Accordion/Root.d.ts
26
- interface AccordionRootProps extends React.ComponentPropsWithoutRef<'details'> {
27
- isOpened?: boolean;
28
- position?: number;
29
- totalItems?: number;
30
- }
31
- declare const AccordionRoot: React.FC<AccordionRootProps>;
32
- //#endregion
33
- //#region src/components/Accordion/Summary.d.ts
34
- interface AccordionSummaryProps extends Omit<React.ComponentPropsWithoutRef<'summary'>, 'title'> {
35
- title: TitleProps;
36
- }
37
- declare const AccordionSummary: React.FC<AccordionSummaryProps>;
38
- //#endregion
39
- //#region src/components/Alert/Body.d.ts
40
- interface AlertBodyProps extends Omit<React.ComponentPropsWithoutRef<'div'>, 'text'> {}
41
- declare const AlertBody: React.FC<AlertBodyProps>;
42
- //#endregion
43
- //#region src/components/Icon/Icon.d.ts
44
- type IconType = 'home' | 'arrow-up' | 'arrow-down' | 'arrow-forward' | 'arrow-back' | 'info' | 'success' | 'calendar-today' | 'warning' | 'danger' | 'open-in-new' | 'download' | 'logout' | 'checklist' | 'mail' | 'edit' | 'sign-language' | 'easy-language' | 'autorenew' | 'add' | 'close' | 'delete' | 'search' | 'question-mark' | 'more-vert' | 'content-copy' | 'visibility' | 'visibility-off' | 'check' | 'drive-folder-upload' | 'chevron-left' | 'chevron-right' | 'keyboard-double-arrow-left' | 'keyboard-double-arrow-right' | 'brightness-medium' | 'light-mode' | 'dark-mode' | 'help';
45
- interface IconProps extends React.ComponentPropsWithoutRef<'span'> {
46
- name: IconType;
47
- size?: 'small' | 'default' | 'large' | 'x-large';
48
- }
49
- declare const Icon: React.FC<IconProps>;
50
- //#endregion
51
- //#region src/components/Alert/Header.d.ts
52
- interface AlertHeaderProps extends React.ComponentPropsWithoutRef<'div'> {
53
- hasIcon?: boolean;
54
- icon?: IconProps;
55
- title: string;
56
- }
57
- declare const AlertHeader: React.FC<AlertHeaderProps>;
58
- //#endregion
59
- //#region src/types/interactive-component.d.ts
60
- /**
61
- * React Function Component with a static `isInteractive: true` property
62
- */
63
- interface InteractiveFC<P = object> extends React$1.FC<P> {
64
- isInteractive: true;
65
- }
66
- //#endregion
67
- //#region src/components/Link/Link.d.ts
68
- interface LinkProps extends React.ComponentPropsWithoutRef<'a'> {
69
- variant?: 'default' | 'small';
70
- title?: string;
71
- icon?: IconProps;
72
- iconLeft?: boolean;
73
- isStretched?: boolean;
74
- }
75
- declare const Link: InteractiveFC<LinkProps>;
76
- //#endregion
77
- //#region src/components/Alert/Link.d.ts
78
- declare const AlertLink: {
79
- (props: LinkProps): react_jsx_runtime0.JSX.Element;
80
- displayName: string;
81
- };
82
- //#endregion
83
- //#region src/components/Alert/Root.d.ts
84
- interface AlertRootProps extends Omit<React.ComponentPropsWithoutRef<'div'>, 'role'> {
85
- variant: 'info' | 'success' | 'warning' | 'danger';
86
- }
87
- declare const AlertRoot: React.FC<AlertRootProps>;
88
- //#endregion
89
- //#region src/components/Card/Body.d.ts
90
- interface CardBodyProps extends React.ComponentPropsWithoutRef<'section'> {}
91
- declare const CardBody: React.FC<CardBodyProps>;
92
- //#endregion
93
- //#region src/components/Card/Container.d.ts
94
- interface CardContainerProps extends React.ComponentPropsWithoutRef<'div'> {}
95
- declare const CardContainer: React.FC<CardContainerProps>;
96
- //#endregion
97
- //#region src/components/Card/Footer.d.ts
98
- interface CardFooterProps extends React.ComponentPropsWithoutRef<'footer'> {}
99
- declare const CardFooter: React.FC<CardFooterProps>;
100
- //#endregion
101
- //#region src/components/Card/Header.d.ts
102
- interface CardHeaderProps extends React.ComponentPropsWithoutRef<'header'> {}
103
- declare const CardHeader: React.FC<CardHeaderProps>;
104
- //#endregion
105
- //#region src/components/Card/Media.d.ts
106
- interface CardMediaProps extends React.ComponentPropsWithoutRef<'div'> {
107
- /** Image source URL */
108
- src: string;
109
- /** Alt text for the image */
110
- alt: string;
111
- /** Optional image width */
112
- width?: number | string;
113
- /** Optional image height */
114
- height?: number | string;
115
- }
116
- declare const CardMedia: React.FC<CardMediaProps>;
117
- //#endregion
118
- //#region src/components/Card/Preline.d.ts
119
- interface CardPrelineProps extends React.ComponentPropsWithoutRef<'p'> {}
120
- declare const CardPreline: React.FC<CardPrelineProps>;
121
- //#endregion
122
- //#region src/components/Card/Root.d.ts
123
- interface CardRootProps extends React.ComponentPropsWithoutRef<'article'> {
124
- /** Optional active state for the card */
125
- active?: boolean;
126
- /** Optional size for the card */
127
- size?: 'small' | 'large' | 'medium';
128
- /** Optional style for the root card */
129
- isCardHug?: boolean;
130
- }
131
- declare const CardRoot: React.FC<CardRootProps>;
132
- //#endregion
133
- //#region src/components/Card/Subline.d.ts
134
- interface CardSublineProps extends React.ComponentPropsWithoutRef<'h3'> {}
135
- declare const CardSubline: React.FC<CardSublineProps>;
136
- //#endregion
137
- //#region src/components/Card/Title.d.ts
138
- interface CardTitleProps extends React.HTMLAttributes<HTMLHeadingElement> {
139
- /** Title level (h1-h6) */
140
- textWrapper?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
141
- }
142
- declare const CardTitle: React.FC<CardTitleProps>;
143
- //#endregion
144
- //#region src/components/DescriptionList/Heading.d.ts
145
- interface DescriptionListHeadingProps extends Omit<React.ComponentPropsWithoutRef<'div'>, 'title'> {
146
- title: TitleProps;
147
- }
148
- declare const DescriptionListHeading: React.FC<DescriptionListHeadingProps>;
149
- //#endregion
150
- //#region src/components/DescriptionList/Item.d.ts
151
- interface DescriptionListItemProps extends React.ComponentPropsWithoutRef<'div'> {}
152
- declare const DescriptionListItem: React.FC<DescriptionListItemProps>;
153
- //#endregion
154
- //#region src/components/DescriptionList/Key.d.ts
155
- interface DescriptionListKeyProps extends React.ComponentPropsWithoutRef<'dt'> {}
156
- declare const DescriptionListKey: React.FC<DescriptionListKeyProps>;
157
- //#endregion
158
- //#region src/components/DescriptionList/Root.d.ts
159
- interface DescriptionListRootProps extends React.ComponentPropsWithoutRef<'dl'> {
160
- variant?: 'row' | 'column';
161
- className?: string;
162
- style?: React.CSSProperties;
163
- children: React.ReactNode;
164
- }
165
- declare const DescriptionListRoot: React.FC<DescriptionListRootProps>;
166
- //#endregion
167
- //#region src/components/DescriptionList/Value.d.ts
168
- interface DescriptionListValueProps extends React.ComponentPropsWithoutRef<'dd'> {}
169
- declare const DescriptionListValue: React.FC<DescriptionListValueProps>;
170
- //#endregion
171
- //#region src/components/Dialog/Button.d.ts
172
- interface DialogButtonProps extends Omit<React.ComponentPropsWithoutRef<'button'>, 'onClick'> {
173
- variant: 'primary' | 'secondary' | 'tertiary';
174
- title: string;
175
- onClick: (e: React.MouseEvent, context: {
176
- closeDialog: () => void;
177
- }) => void;
178
- }
179
- declare const DialogButton: React.FC<DialogButtonProps>;
180
- //#endregion
181
- //#region src/components/Dialog/Content.d.ts
182
- interface DialogContentProps extends React.ComponentPropsWithoutRef<'section'> {}
183
- declare const DialogContent: React.FC<DialogContentProps>;
184
- //#endregion
185
- //#region src/components/Dialog/Footer.d.ts
186
- interface DialogFooterProps extends React.ComponentPropsWithoutRef<'footer'> {}
187
- declare const DialogFooter: React.FC<DialogFooterProps>;
188
- //#endregion
189
- //#region src/components/Dialog/Header.d.ts
190
- interface DialogHeaderProps extends React.ComponentPropsWithoutRef<'header'> {
191
- dialogTitle: string;
192
- hasCloseButton?: boolean;
193
- }
194
- declare const DialogHeader: React.FC<DialogHeaderProps>;
195
- //#endregion
196
- //#region src/components/Dialog/Modal.d.ts
197
- interface DialogModalProps extends React.ComponentPropsWithoutRef<'dialog'> {
198
- noOverlay?: boolean;
199
- }
200
- declare const DialogModal: React.FC<DialogModalProps>;
201
- //#endregion
202
- //#region src/components/Dialog/Root.d.ts
203
- interface DialogRootProps extends React.ComponentPropsWithoutRef<'div'> {
204
- disableOverlayClose?: boolean;
205
- id?: string;
206
- }
207
- declare const DialogRoot: React.FC<DialogRootProps>;
208
- //#endregion
209
- //#region src/components/Dialog/Trigger.d.ts
210
- interface DialogTriggerProps {
211
- children: React$1.ReactNode;
212
- }
213
- declare const DialogTrigger: React$1.FC<DialogTriggerProps>;
214
- //#endregion
215
- //#region src/components/Fieldset/Content.d.ts
216
- interface FieldsetContentProps extends React.ComponentPropsWithoutRef<'div'> {
217
- horizontal?: boolean;
218
- }
219
- declare const FieldsetContent: React.FC<FieldsetContentProps>;
220
- //#endregion
221
- //#region src/components/Fieldset/Error.d.ts
222
- interface FieldsetErrorProps extends React.ComponentPropsWithoutRef<'p'> {}
223
- declare const FieldsetError: React.FC<FieldsetErrorProps>;
224
- //#endregion
225
- //#region src/components/Fieldset/Hint.d.ts
226
- interface FieldsetHintProps extends React.ComponentPropsWithoutRef<'div'> {}
227
- declare const FieldsetHint: React.FC<FieldsetHintProps>;
228
- //#endregion
229
- //#region src/components/Fieldset/Legend.d.ts
230
- interface FieldsetLegendProps extends React.ComponentPropsWithoutRef<'legend'> {
231
- hasOptionalLabel?: boolean;
232
- }
233
- declare const FieldsetLegend: React.FC<FieldsetLegendProps>;
234
- //#endregion
235
- //#region src/components/Fieldset/Root.d.ts
236
- interface FieldsetRootProps extends React$1.ComponentPropsWithoutRef<'fieldset'> {
237
- error?: boolean;
238
- }
239
- declare const FieldsetRoot: React$1.FC<FieldsetRootProps>;
240
- //#endregion
241
- //#region src/components/Grid/Column.d.ts
242
- type Breakpoint = 'sm' | 'md' | 'lg' | 'xl';
243
- type AlignItems$1 = 'start' | 'center' | 'end';
244
- interface GridColumnProps extends React.ComponentPropsWithoutRef<'div'> {
245
- breakpoint?: Breakpoint;
246
- width?: number;
247
- isOffset?: boolean;
248
- offsetWidth?: number;
249
- isSelfAlignment?: boolean;
250
- alignItem?: AlignItems$1;
251
- children: React.ReactNode;
252
- }
253
- declare const GridColumn: React.FC<GridColumnProps>;
254
- //#endregion
255
- //#region src/components/Grid/Root.d.ts
256
- interface GridRootProps extends React.ComponentPropsWithoutRef<'div'> {
257
- type?: 'fluid';
258
- }
259
- declare const GridRoot: React.FC<GridRootProps>;
260
- //#endregion
261
- //#region src/components/Grid/Row.d.ts
262
- type AlignItems = 'start' | 'center' | 'end';
263
- type HorizontalAlignment = 'start' | 'center' | 'end' | 'around' | 'between' | 'evenly';
264
- interface GridRowProps extends React$1.ComponentPropsWithoutRef<'div'> {
265
- alignItems?: AlignItems;
266
- horizontalAlignment?: HorizontalAlignment;
267
- }
268
- declare const GridRow: React$1.FC<GridRowProps>;
269
- //#endregion
270
- //#region src/components/Input/Primitives/Checkbox/CheckboxInput.d.ts
271
- interface CheckboxInputProps$1 extends Omit<React.ComponentPropsWithoutRef<'input'>, 'type' | 'aria-describedby'> {
272
- erroneous?: boolean;
273
- }
274
- declare const CheckboxInput$1: react11.ForwardRefExoticComponent<CheckboxInputProps$1 & react11.RefAttributes<HTMLInputElement>>;
275
- //#endregion
276
- //#region src/components/Input/Primitives/Email/EmailInput.d.ts
277
- interface EmailInputProps$1 extends Omit<React.ComponentPropsWithoutRef<'input'>, 'type'> {
278
- erroneous?: boolean;
279
- }
280
- declare const EmailInput$1: react11.ForwardRefExoticComponent<EmailInputProps$1 & react11.RefAttributes<HTMLInputElement>>;
281
- //#endregion
282
- //#region src/components/Input/Primitives/Error.d.ts
283
- interface InputErrorProps extends Omit<React.ComponentPropsWithoutRef<'p'>, 'role'> {
284
- message: string;
285
- id: string;
286
- }
287
- declare const InputError: ({
288
- className,
289
- message,
290
- ...props
291
- }: InputErrorProps) => react_jsx_runtime0.JSX.Element;
292
- //#endregion
293
- //#region src/components/Input/Primitives/File/FileInput.d.ts
294
- type FileExtension = `.${string}`;
295
- type MimeType = `${string}/${string}`;
296
- interface FileInputProps$1 extends Omit<React.ComponentPropsWithoutRef<'input'>, 'type'> {
297
- supportedFormats?: (FileExtension | MimeType)[];
298
- erroneous?: boolean;
299
- }
300
- declare const FileInput$1: react11.ForwardRefExoticComponent<FileInputProps$1 & react11.RefAttributes<HTMLInputElement>>;
301
- //#endregion
302
- //#region src/components/Input/Primitives/Hint.d.ts
303
- interface HintProps extends React.ComponentPropsWithoutRef<'p'> {
304
- id: string;
305
- }
306
- declare const Hint: ({
307
- className,
308
- children,
309
- ...props
310
- }: HintProps) => react_jsx_runtime0.JSX.Element;
311
- //#endregion
312
- //#region src/components/Label/Label.d.ts
313
- type TextWrapper = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p' | 'span' | 'label' | 'legend';
314
- type LabelProps$1<TWrapper extends TextWrapper = TextWrapper> = React.ComponentPropsWithoutRef<TWrapper> & {
315
- variant?: 'large' | 'default' | 'small';
316
- textWrapper?: TWrapper;
317
- text?: React.ReactNode;
318
- };
319
- declare const Label: React.FC<LabelProps$1>;
320
- //#endregion
321
- //#region src/components/Input/Primitives/Label.d.ts
322
- interface LabelProps extends Omit<LabelProps$1, 'textWrapper'> {
323
- htmlFor: string;
324
- isOptional?: boolean;
325
- }
326
- declare const Label$1: ({
327
- children,
328
- isOptional,
329
- ...props
330
- }: LabelProps) => react_jsx_runtime0.JSX.Element;
331
- //#endregion
332
- //#region src/components/Input/Primitives/Password/PasswordInput.d.ts
333
- interface PasswordInputProps$1 extends Omit<React.ComponentPropsWithoutRef<'input'>, 'type'> {
334
- erroneous?: boolean;
335
- }
336
- declare const PasswordInput$1: react11.ForwardRefExoticComponent<PasswordInputProps$1 & react11.RefAttributes<HTMLInputElement>>;
337
- //#endregion
338
- //#region src/components/Input/Primitives/Radio/RadioInput.d.ts
339
- interface RadioInputProps$1 extends Omit<React.ComponentPropsWithoutRef<'input'>, 'type' | 'aria-describedby'> {
340
- erroneous?: boolean;
341
- }
342
- declare const RadioInput$1: react11.ForwardRefExoticComponent<RadioInputProps$1 & react11.RefAttributes<HTMLInputElement>>;
343
- //#endregion
344
- //#region src/components/Input/Primitives/Root.d.ts
345
- interface RootProps extends React.HTMLAttributes<HTMLDivElement> {
346
- children: React.ReactNode;
347
- erroneous?: boolean;
348
- }
349
- declare const Root: ({
350
- className,
351
- erroneous,
352
- ...props
353
- }: RootProps) => react_jsx_runtime0.JSX.Element;
354
- //#endregion
355
- //#region src/components/Input/Primitives/Select/SelectInput.d.ts
356
- interface SelectInputProps$1 extends React.ComponentPropsWithoutRef<'select'> {
357
- erroneous?: boolean;
358
- options?: Array<{
359
- value: string;
360
- label: string;
361
- }>;
362
- }
363
- declare const SelectInput$1: react11.ForwardRefExoticComponent<SelectInputProps$1 & react11.RefAttributes<HTMLSelectElement>>;
364
- //#endregion
365
- //#region src/components/Input/Primitives/Tel/TelInput.d.ts
366
- interface TelInputProps$1 extends Omit<React.ComponentPropsWithoutRef<'input'>, 'type' | 'autoComplete'> {
367
- erroneous?: boolean;
368
- }
369
- declare const TelInput$1: react11.ForwardRefExoticComponent<TelInputProps$1 & react11.RefAttributes<HTMLInputElement>>;
370
- //#endregion
371
- //#region src/components/Input/Primitives/Text/TextInput.d.ts
372
- interface TextInputProps$1 extends Omit<React.ComponentPropsWithoutRef<'input'>, 'type'> {
373
- erroneous?: boolean;
374
- }
375
- declare const TextInput$1: react11.ForwardRefExoticComponent<TextInputProps$1 & react11.RefAttributes<HTMLInputElement>>;
376
- //#endregion
377
- //#region src/components/Input/Primitives/Textarea/TextareaInput.d.ts
378
- interface TextareaInputProps$1 extends React.ComponentPropsWithoutRef<'textarea'> {
379
- erroneous?: boolean;
380
- }
381
- declare const TextareaInput$1: react11.ForwardRefExoticComponent<TextareaInputProps$1 & react11.RefAttributes<HTMLTextAreaElement>>;
382
- //#endregion
383
- //#region src/components/Input/Primitives/Url/UrlInput.d.ts
384
- interface UrlInputProps$1 extends Omit<React.ComponentPropsWithoutRef<'input'>, 'type'> {
385
- erroneous?: boolean;
386
- }
387
- declare const UrlInput$1: react11.ForwardRefExoticComponent<UrlInputProps$1 & react11.RefAttributes<HTMLInputElement>>;
388
- //#endregion
389
- //#region src/components/Lists/Root.d.ts
390
- interface ListsRootProps extends Omit<React.ComponentPropsWithoutRef<'ol' | 'ul'>, 'type'> {
391
- children: React.ReactNode;
392
- className?: string;
393
- style?: React.CSSProperties;
394
- size?: 'default' | 'large' | 'small';
395
- type?: 'bullet' | 'number' | 'link';
396
- }
397
- declare const ListsRoot: React.FC<ListsRootProps>;
398
- //#endregion
399
- //#region src/components/Lists/Item.d.ts
400
- interface ListsItemProps extends React$1.ComponentPropsWithoutRef<'li'> {
401
- children?: React$1.ReactNode;
402
- className?: string;
403
- style?: React$1.CSSProperties;
404
- text?: string;
405
- }
406
- declare const ListsItem: React$1.FC<ListsItemProps>;
407
- //#endregion
408
- //#region src/components/Lists/Bullet.d.ts
409
- interface ListsBulletProps extends React.ComponentPropsWithoutRef<'div'> {
410
- title: string;
411
- items: string[];
412
- className?: string;
413
- style?: React.CSSProperties;
414
- }
415
- declare const ListsBullet: React.FC<ListsBulletProps>;
416
- //#endregion
417
- //#region src/components/Lists/Number.d.ts
418
- interface ListsNumberProps extends Omit<React.ComponentPropsWithoutRef<'ol'>, 'type'> {
419
- children: React.ReactNode;
420
- size?: 'default' | 'large' | 'small';
421
- type?: 'bullet' | 'number' | 'link';
422
- }
423
- declare const ListsNumber: React.FC<ListsNumberProps>;
424
- //#endregion
425
- //#region src/components/Progress/Bar.d.ts
426
- interface ProgressBarProps extends React.ComponentPropsWithoutRef<'progress'> {}
427
- declare const ProgressBar: React.FC<ProgressBarProps>;
428
- //#endregion
429
- //#region src/components/Progress/Cancel.d.ts
430
- interface ProgressCancelProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
431
- onCancel?: () => void;
432
- }
433
- declare const ProgressCancel: React.FC<ProgressCancelProps>;
434
- //#endregion
435
- //#region src/components/Progress/Header.d.ts
436
- interface ProgressHeaderProps extends React.HTMLAttributes<HTMLDivElement> {}
437
- declare const ProgressHeader: React.FC<ProgressHeaderProps>;
438
- //#endregion
439
- //#region src/components/Progress/Label.d.ts
440
- interface ProgressLabelProps extends React.LabelHTMLAttributes<HTMLLabelElement> {}
441
- declare const ProgressLabel: React.FC<ProgressLabelProps>;
442
- //#endregion
443
- //#region src/components/Progress/Percentage.d.ts
444
- interface ProgressPercentageProps extends React.HTMLAttributes<HTMLSpanElement> {
445
- formatter?: (percentage: number) => string;
446
- }
447
- declare const ProgressPercentage: React.FC<ProgressPercentageProps>;
448
- //#endregion
449
- //#region src/components/Progress/Root.d.ts
450
- interface ProgressRootProps extends React$1.HTMLAttributes<HTMLDivElement> {
451
- value: number;
452
- max?: number;
453
- progressId?: string;
454
- }
455
- interface ProgressContextValue {
456
- value: number;
457
- max: number;
458
- percentage: number;
459
- progressId: string;
460
- }
461
- declare const ProgressRoot: React$1.FC<ProgressRootProps>;
462
- //#endregion
463
- //#region src/components/Summary/Actions.d.ts
464
- interface SummaryActionsProps extends React$1.ComponentPropsWithoutRef<'div'> {
465
- children: React$1.ReactNode;
466
- }
467
- declare const SummaryActions: React$1.FC<SummaryActionsProps>;
468
- //#endregion
469
- //#region src/components/Summary/Body.d.ts
470
- interface SummaryBodyProps extends React.ComponentPropsWithoutRef<'div'> {
471
- children: React.ReactNode;
472
- }
473
- declare const SummaryBody: React.FC<SummaryBodyProps>;
474
- //#endregion
475
- //#region src/components/Summary/Group.d.ts
476
- interface SummaryGroupProps extends React.ComponentPropsWithoutRef<'div'> {
477
- children: React.ReactNode;
478
- }
479
- declare const SummaryGroup: React.FC<SummaryGroupProps>;
480
- //#endregion
481
- //#region src/components/Heading/Heading.d.ts
482
- interface HeadingProps extends React.HTMLAttributes<HTMLHeadingElement> {
483
- type: 'display' | 'x-large' | 'large' | 'medium' | 'small';
484
- headerElement: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p' | 'span';
485
- title: string;
486
- }
487
- declare const Heading: React.FC<HeadingProps>;
488
- //#endregion
489
- //#region src/components/Summary/GroupHeading.d.ts
490
- interface SummaryGroupHeadingProps extends Omit<React.ComponentPropsWithoutRef<'div'>, 'title'> {
491
- heading: HeadingProps;
492
- }
493
- declare const SummaryGroupHeading: React.FC<SummaryGroupHeadingProps>;
494
- //#endregion
495
- //#region src/components/Summary/Heading.d.ts
496
- interface SummaryHeadingProps extends Omit<React.ComponentPropsWithoutRef<'div'>, 'title'> {
497
- number?: number | string;
498
- title?: TitleProps;
499
- }
500
- declare const SummaryHeading: React.FC<SummaryHeadingProps>;
501
- //#endregion
502
- //#region src/components/Summary/Root.d.ts
503
- interface SummaryProps extends React$1.ComponentPropsWithoutRef<'div'> {
504
- variant?: 'row' | 'column';
505
- headingID: string;
506
- className?: string;
507
- style?: React$1.CSSProperties;
508
- }
509
- declare const SummaryRoot: React$1.FC<SummaryProps>;
510
- //#endregion
511
- //#region src/components/Table/Body.d.ts
512
- interface TableBodyProps extends React.ComponentPropsWithoutRef<'tbody'> {
513
- children: React.ReactNode;
514
- }
515
- declare const TableBody: React.FC<TableBodyProps>;
516
- //#endregion
517
- //#region src/components/Table/Cell.d.ts
518
- interface TableCellProps extends React.ComponentPropsWithoutRef<'td'> {
519
- numeric?: boolean;
520
- children: React.ReactNode;
521
- }
522
- declare const TableCell: React.FC<TableCellProps>;
523
- //#endregion
524
- //#region src/components/Table/Column.d.ts
525
- interface TableColumnProps extends React.ComponentPropsWithoutRef<'th'> {
526
- numeric?: boolean;
527
- scope: 'col' | 'row';
528
- children: React.ReactNode;
529
- }
530
- declare const TableColumn: React.FC<TableColumnProps>;
531
- //#endregion
532
- //#region src/components/Table/Footer.d.ts
533
- interface TableFooterProps extends React.ComponentPropsWithoutRef<'tfoot'> {
534
- children: React.ReactNode;
535
- }
536
- declare const TableFooter: React.FC<TableFooterProps>;
537
- //#endregion
538
- //#region src/components/Table/Header.d.ts
539
- interface TableHeaderProps extends React.ComponentPropsWithoutRef<'thead'> {
540
- children: React.ReactNode;
541
- }
542
- declare const TableHeader: React.FC<TableHeaderProps>;
543
- //#endregion
544
- //#region src/components/Table/Root.d.ts
545
- interface TableRootProps extends React.ComponentPropsWithoutRef<'table'> {
546
- variant?: 'default' | 'small';
547
- caption?: string;
548
- striped?: boolean;
549
- responsive?: boolean;
550
- children: React.ReactNode;
551
- }
552
- declare const TableRoot: React.FC<TableRootProps>;
553
- //#endregion
554
- //#region src/components/Table/Row.d.ts
555
- interface TableRowProps extends React.ComponentPropsWithoutRef<'tr'> {
556
- children: React.ReactNode;
557
- }
558
- declare const TableRow: React.FC<TableRowProps>;
559
- //#endregion
560
- //#region src/components/TaskList/Item.d.ts
561
- interface TaskListItemProps extends React.ComponentPropsWithoutRef<'li'> {
562
- className?: string;
563
- style?: React.CSSProperties;
564
- number?: number | string;
565
- title: string;
566
- href?: string;
567
- asParagraph?: boolean;
568
- status?: 'success' | 'warning' | 'error' | 'info' | 'neutral';
569
- statusLabel?: string;
570
- titleId?: string;
571
- statusId?: string;
572
- stretchedLink?: boolean;
573
- }
574
- declare const TaskListItem: React.FC<TaskListItemProps>;
575
- //#endregion
576
- //#region src/components/TaskList/List.d.ts
577
- interface TaskListProps extends React$1.ComponentPropsWithoutRef<'ul'> {
578
- items?: TaskListItemProps[];
579
- }
580
- declare const TaskList$1: React$1.FC<TaskListProps>;
581
- //#endregion
582
- //#region src/components/TaskList/Group.d.ts
583
- interface TaskListGroupProps extends React.ComponentPropsWithoutRef<'div'> {
584
- children: React.ReactNode;
585
- }
586
- declare const TaskListGroup: React.FC<TaskListGroupProps>;
587
- //#endregion
588
- //#region src/components/TaskList/Heading.d.ts
589
- interface TaskListHeadingProps extends React.ComponentPropsWithoutRef<'div'> {
590
- title: string;
591
- type?: HeadingProps['type'];
592
- headerElement?: HeadingProps['headerElement'];
593
- className?: string;
594
- style?: React.CSSProperties;
595
- }
596
- declare const TaskListHeading: React.FC<TaskListHeadingProps>;
597
- //#endregion
598
- //#region src/components/TaskList/Root.d.ts
599
- interface TaskListRootProps extends React.ComponentPropsWithoutRef<'div'> {}
600
- declare const TaskListRoot: React.FC<TaskListRootProps>;
601
- //#endregion
602
- //#region src/components/Badge/Badge.d.ts
603
- interface BadgeProps extends React.ComponentPropsWithoutRef<'span'> {
604
- variant: 'info' | 'success' | 'warning' | 'danger';
605
- title: string;
606
- icon?: Omit<IconProps, 'name' | 'aria-hidden'>;
607
- showIcon?: boolean;
608
- }
609
- declare const Badge: React.FC<BadgeProps>;
610
- //#endregion
611
- //#region src/components/Body/Body.d.ts
612
- interface BodyProps extends Omit<React.ComponentPropsWithoutRef<'p'>, 'text'> {
613
- isBold?: boolean;
614
- isMuted?: boolean;
615
- size?: 'large' | 'small';
616
- text?: React.ReactNode;
617
- children?: React.ReactNode;
618
- }
619
- declare const Body: React.FC<BodyProps>;
620
- //#endregion
621
- //#region src/components/Button/Button.d.ts
622
- interface ButtonProps extends Omit<React$1.ComponentPropsWithoutRef<'button'>, 'text'> {
623
- variant?: 'primary' | 'secondary' | 'tertiary';
624
- isBlock?: boolean;
625
- icon?: IconProps;
626
- iconOnly?: boolean;
627
- iconLeft?: boolean;
628
- text?: string | null;
629
- }
630
- declare const Button: React$1.FC<ButtonProps>;
631
- //#endregion
632
- //#region src/components/Divider/Divider.d.ts
633
- declare const Divider: React.FC<React.ComponentPropsWithoutRef<'hr'>>;
634
- //#endregion
635
- //#region src/components/Input/Checkbox/index.d.ts
636
- interface CheckboxInputProps extends React.ComponentPropsWithoutRef<'input'> {
637
- id: string;
638
- label?: string;
639
- error?: boolean | string;
640
- disabled?: boolean;
641
- hasOptionalLabel?: boolean;
642
- }
643
- declare const CheckboxInput: InteractiveFC<CheckboxInputProps>;
644
- //#endregion
645
- //#region src/components/Input/Date/index.d.ts
646
- interface DateInputProps extends React.ComponentPropsWithoutRef<'input'> {
647
- id: string;
648
- label?: string;
649
- error?: boolean;
650
- dateType: 'day' | 'month' | 'year';
651
- hasOptionalLabel?: boolean;
652
- }
653
- declare const DateInput: InteractiveFC<DateInputProps>;
654
- //#endregion
655
- //#region src/components/Input/Email/index.d.ts
656
- interface EmailInputProps extends React.ComponentPropsWithoutRef<'input'> {
657
- id: string;
658
- label?: string;
659
- hintText?: string;
660
- error?: string | boolean;
661
- hasOptionalLabel?: boolean;
662
- }
663
- declare const EmailInput: InteractiveFC<EmailInputProps>;
664
- //#endregion
665
- //#region src/components/Input/File/index.d.ts
666
- interface FileInputProps extends React.ComponentPropsWithoutRef<'input'> {
667
- id: string;
668
- title?: string;
669
- hintText?: string;
670
- errorMessage?: string;
671
- supportedFormats?: React.ComponentPropsWithoutRef<typeof FileInput$1>['supportedFormats'];
672
- hasOptionalLabel?: boolean;
673
- }
674
- declare const FileInput: InteractiveFC<FileInputProps>;
675
- //#endregion
676
- //#region src/components/Input/Number/index.d.ts
677
- interface NumberInputProps extends React.ComponentPropsWithoutRef<'input'> {
678
- id: string;
679
- label?: string;
680
- hintText?: string;
681
- error?: string | boolean;
682
- hasOptionalLabel?: boolean;
683
- }
684
- declare const NumberInput: InteractiveFC<NumberInputProps>;
685
- //#endregion
686
- //#region src/components/Input/Password/index.d.ts
687
- interface PasswordInputProps extends React.ComponentPropsWithoutRef<'input'> {
688
- id: string;
689
- label?: string;
690
- hintText?: string;
691
- error?: string | boolean;
692
- ariaRequired?: boolean;
693
- hasOptionalLabel?: boolean;
694
- }
695
- declare const PasswordInput: InteractiveFC<PasswordInputProps>;
696
- //#endregion
697
- //#region src/components/Input/Radio/index.d.ts
698
- interface RadioInputProps extends React.ComponentPropsWithoutRef<'input'> {
699
- id: string;
700
- label?: string;
701
- error?: boolean;
702
- disabled?: boolean;
703
- className?: string;
704
- hasOptionalLabel?: boolean;
705
- }
706
- declare const RadioInput: InteractiveFC<RadioInputProps>;
707
- //#endregion
708
- //#region src/components/Input/Select/index.d.ts
709
- interface SelectInputProps extends React.ComponentPropsWithoutRef<'select'> {
710
- id: string;
711
- label?: string;
712
- hintText?: string;
713
- errorMessage?: string;
714
- options?: Array<{
715
- value: string;
716
- label: string;
717
- }>;
718
- hasOptionalLabel?: boolean;
719
- }
720
- declare const SelectInput: InteractiveFC<SelectInputProps>;
721
- //#endregion
722
- //#region src/components/Input/Tel/index.d.ts
723
- interface TelInputProps extends React.ComponentPropsWithoutRef<'input'> {
724
- id: string;
725
- label?: string;
726
- hintText?: string;
727
- error?: string | boolean;
728
- hasOptionalLabel?: boolean;
729
- }
730
- declare const TelInput: InteractiveFC<TelInputProps>;
731
- //#endregion
732
- //#region src/components/Input/Text/index.d.ts
733
- interface TextInputProps extends React.ComponentPropsWithoutRef<'input'> {
734
- id: string;
735
- label?: string;
736
- hintText?: string;
737
- error?: boolean | string;
738
- hasOptionalLabel?: boolean;
739
- }
740
- declare const TextInput: InteractiveFC<TextInputProps>;
741
- //#endregion
742
- //#region src/components/Input/Textarea/index.d.ts
743
- interface TextareaInputProps extends React.ComponentPropsWithoutRef<'textarea'> {
744
- id: string;
745
- label?: string;
746
- hintText?: string;
747
- error?: string | boolean;
748
- hasOptionalLabel?: boolean;
749
- }
750
- declare const TextareaInput: InteractiveFC<TextareaInputProps>;
751
- //#endregion
752
- //#region src/components/Input/Url/index.d.ts
753
- interface UrlInputProps extends React.ComponentPropsWithoutRef<'input'> {
754
- id: string;
755
- label?: string;
756
- hintText?: string;
757
- error?: boolean | string;
758
- hasOptionalLabel?: boolean;
759
- }
760
- declare const UrlInput: InteractiveFC<UrlInputProps>;
761
- //#endregion
762
- //#region src/components/Kopfzeile/Kopfzeile.d.ts
763
- interface KopfzeileProps extends React.ComponentPropsWithoutRef<'div'> {
764
- label?: string;
765
- fluid?: boolean;
766
- flag?: boolean;
767
- breakpoints?: string;
768
- }
769
- declare const Kopfzeile: React.FC<KopfzeileProps>;
770
- //#endregion
771
- //#region src/components/Loader/Loader.d.ts
772
- interface LoaderProps extends Omit<React.ComponentPropsWithoutRef<'div'>, 'role' | 'aria-atomic'> {
773
- visible?: boolean;
774
- srDescription?: string;
775
- }
776
- declare const Loader: React.FC<LoaderProps>;
777
- //#endregion
778
- //#region src/components/Preline/Preline.d.ts
779
- interface PrelineProps extends React.ComponentPropsWithoutRef<'p'> {
780
- variant?: 'small' | 'default' | 'large';
781
- text?: string;
782
- }
783
- declare const Preline: React.FC<PrelineProps>;
784
- //#endregion
785
- //#region src/components/Subline/Subline.d.ts
786
- interface SublineProps extends React.ComponentPropsWithoutRef<'p'> {
787
- text?: string;
788
- variant?: 'small' | 'default' | 'large';
789
- }
790
- declare const Subline: React.FC<SublineProps>;
791
- //#endregion
792
- //#region src/components/ThemeProvider/ThemeProvider.d.ts
793
- interface ThemeColors {
794
- action?: {
795
- default?: string;
796
- onDefault?: string;
797
- visited?: string;
798
- focus?: {
799
- background?: string;
800
- borderInside?: string;
801
- borderOutside?: string;
802
- };
803
- state?: {
804
- indicator?: {
805
- default?: string;
806
- shade?: string;
807
- tint?: string;
808
- shadeHover?: string;
809
- shadeActive?: string;
810
- tintHover?: string;
811
- tintActive?: string;
812
- tintHoverOpacity?: string;
813
- tintActiveOpacity?: string;
814
- };
815
- opacity?: {
816
- hover?: number;
817
- pressed?: number;
818
- selected?: number;
819
- disabled?: number;
820
- active?: number;
821
- overlay?: number;
822
- };
823
- };
824
- };
825
- feedback?: {
826
- danger?: string;
827
- dangerBackground?: string;
828
- info?: string;
829
- infoBackground?: string;
830
- success?: string;
831
- successBackground?: string;
832
- warning?: string;
833
- warningBackground?: string;
834
- loader?: string;
835
- loaderBackground?: string;
836
- };
837
- form?: {
838
- input?: {
839
- background?: string;
840
- backgroundInverted?: string;
841
- border?: string;
842
- };
843
- };
844
- layout?: {
845
- border?: string;
846
- text?: {
847
- default?: string;
848
- inverse?: string;
849
- muted?: string;
850
- };
851
- background?: {
852
- default?: string;
853
- hued?: string;
854
- overlay?: string;
855
- };
856
- };
857
- }
858
- interface ThemeMetric {
859
- border?: {
860
- width?: {
861
- none?: string;
862
- light?: string;
863
- default?: string;
864
- bold?: string;
865
- heavy?: string;
866
- };
867
- radius?: {
868
- none?: string;
869
- small?: string;
870
- default?: string;
871
- large?: string;
872
- circle?: string;
873
- };
874
- };
875
- dimension?: {
876
- '2xSmall'?: string;
877
- xSmall?: string;
878
- small?: string;
879
- default?: string;
880
- large?: string;
881
- xLarge?: string;
882
- '2xLarge'?: string;
883
- '3xLarge'?: string;
884
- '4xLarge'?: string;
885
- '5xLarge'?: string;
886
- media?: {
887
- small?: string;
888
- default?: string;
889
- large?: string;
890
- };
891
- };
892
- space?: {
893
- none?: string;
894
- '2xSmall'?: string;
895
- xSmall?: string;
896
- small?: string;
897
- default?: string;
898
- large?: string;
899
- xLarge?: string;
900
- };
901
- screenSize?: string;
902
- baseline?: {
903
- body?: {
904
- default?: {
905
- paddingTop?: string;
906
- paddingBottom?: string;
907
- };
908
- large?: {
909
- paddingTop?: string;
910
- paddingBottom?: string;
911
- };
912
- small?: {
913
- paddingTop?: string;
914
- paddingBottom?: string;
915
- };
916
- };
917
- heading?: {
918
- display?: {
919
- paddingTop?: string;
920
- paddingBottom?: string;
921
- };
922
- xLarge?: {
923
- paddingTop?: string;
924
- paddingBottom?: string;
925
- };
926
- large?: {
927
- paddingTop?: string;
928
- paddingBottom?: string;
929
- };
930
- medium?: {
931
- paddingTop?: string;
932
- paddingBottom?: string;
933
- };
934
- small?: {
935
- paddingTop?: string;
936
- paddingBottom?: string;
937
- };
938
- };
939
- title?: {
940
- large?: {
941
- paddingTop?: string;
942
- paddingBottom?: string;
943
- };
944
- default?: {
945
- paddingTop?: string;
946
- paddingBottom?: string;
947
- };
948
- small?: {
949
- paddingTop?: string;
950
- paddingBottom?: string;
951
- };
952
- };
953
- preline?: {
954
- large?: {
955
- paddingTop?: string;
956
- paddingBottom?: string;
957
- };
958
- default?: {
959
- paddingTop?: string;
960
- paddingBottom?: string;
961
- };
962
- small?: {
963
- paddingTop?: string;
964
- paddingBottom?: string;
965
- };
966
- };
967
- subline?: {
968
- large?: {
969
- paddingTop?: string;
970
- paddingBottom?: string;
971
- };
972
- default?: {
973
- paddingTop?: string;
974
- paddingBottom?: string;
975
- };
976
- small?: {
977
- paddingTop?: string;
978
- paddingBottom?: string;
979
- };
980
- };
981
- label?: {
982
- large?: {
983
- paddingTop?: string;
984
- paddingBottom?: string;
985
- };
986
- default?: {
987
- paddingTop?: string;
988
- paddingBottom?: string;
989
- };
990
- small?: {
991
- paddingTop?: string;
992
- paddingBottom?: string;
993
- };
994
- };
995
- };
996
- }
997
- interface ThemeTypography {
998
- fontFamily?: {
999
- default?: string;
1000
- };
1001
- fontSize?: {
1002
- static?: {
1003
- small?: string;
1004
- medium?: string;
1005
- large?: string;
1006
- };
1007
- adaptive?: {
1008
- medium?: string;
1009
- large?: string;
1010
- xLarge?: string;
1011
- '2xLarge'?: string;
1012
- };
1013
- };
1014
- lineHeight?: {
1015
- static?: {
1016
- medium?: string;
1017
- large?: string;
1018
- };
1019
- adaptive?: {
1020
- medium?: string;
1021
- large?: string;
1022
- xLarge?: string;
1023
- '2xLarge'?: string;
1024
- };
1025
- };
1026
- fontWeight?: {
1027
- regular?: number;
1028
- medium?: number;
1029
- semiBold?: number;
1030
- };
1031
- }
1032
- interface ThemeComponent {
1033
- badge?: {
1034
- spaceLeft?: string;
1035
- };
1036
- descriptionList?: {
1037
- termMaxWidth?: string;
1038
- };
1039
- alert?: {
1040
- iconSize?: string;
1041
- };
1042
- kopfzeile?: {
1043
- fontFamily?: string;
1044
- fontSize?: string;
1045
- lineHeight?: string;
1046
- padding?: string;
1047
- };
1048
- }
1049
- interface Theme {
1050
- light?: {
1051
- color?: ThemeColors;
1052
- metric?: ThemeMetric;
1053
- typography?: ThemeTypography;
1054
- component?: ThemeComponent;
1055
- };
1056
- dark?: {
1057
- color?: ThemeColors;
1058
- metric?: ThemeMetric;
1059
- typography?: ThemeTypography;
1060
- component?: ThemeComponent;
1061
- };
1062
- color?: ThemeColors;
1063
- metric?: ThemeMetric;
1064
- typography?: ThemeTypography;
1065
- component?: ThemeComponent;
1066
- }
1067
- interface ThemeProviderProps {
1068
- theme?: Theme;
1069
- children?: React.ReactNode;
1070
- global?: boolean;
1071
- style?: React.CSSProperties;
1072
- className?: string;
1073
- }
1074
- declare const ThemeProvider: ({
1075
- theme,
1076
- children,
1077
- global,
1078
- className,
1079
- style,
1080
- ...props
1081
- }: ThemeProviderProps) => react_jsx_runtime0.JSX.Element;
1082
- //#endregion
1083
- //#region src/index.d.ts
1084
- declare const Accordion: react11.FC<AccordionRootProps> & typeof index_d_exports;
1085
- declare const Alert: react11.FC<AlertRootProps> & typeof index_d_exports$1;
1086
- declare const Card: react11.FC<CardRootProps> & typeof index_d_exports$2;
1087
- declare const DescriptionList: react11.FC<DescriptionListRootProps> & typeof index_d_exports$3;
1088
- declare const Dialog: react11.FC<DialogRootProps> & typeof index_d_exports$4;
1089
- declare const Fieldset: react11.FC<FieldsetRootProps> & typeof index_d_exports$5;
1090
- declare const Grid: react11.FC<GridRootProps> & typeof index_d_exports$6;
1091
- declare const InputPrimitive: (({
1092
- className,
1093
- erroneous,
1094
- ...props
1095
- }: RootProps) => react_jsx_runtime0.JSX.Element) & typeof index_d_exports$7;
1096
- declare const Lists: react11.FC<ListsRootProps> & typeof index_d_exports$8;
1097
- declare const Table: react11.FC<TableRootProps> & typeof index_d_exports$11;
1098
- declare const Progress: react11.FC<ProgressRootProps> & typeof index_d_exports$9;
1099
- declare const Summary: react11.FC<SummaryProps> & typeof index_d_exports$10;
1100
- declare const TaskList: react11.FC<TaskListRootProps> & typeof index_d_exports$12;
1101
- //#endregion
1102
- export { Accordion, type AccordionContentProps, type AccordionGroupProps, type AccordionRootProps, type AccordionSummaryProps, Alert, type AlertBodyProps, type AlertHeaderProps, type AlertRootProps, Badge, type BadgeProps, Body, Button, type ButtonProps, Card, type CardBodyProps, type CardContainerProps, type CardFooterProps, type CardHeaderProps, type CardMediaProps, type CardPrelineProps, type CardRootProps, type CardSublineProps, type CardTitleProps, CheckboxInput, type CheckboxInputProps, DateInput, type DateInputProps, DescriptionList, type DescriptionListItemProps, type DescriptionListKeyProps, type DescriptionListRootProps, type DescriptionListValueProps, Dialog, type DialogButtonProps, type DialogContentProps, type DialogFooterProps, type DialogHeaderProps, type DialogModalProps, type DialogRootProps, type DialogTriggerProps, Divider, EmailInput, type EmailInputProps, Fieldset, type FieldsetContentProps, type FieldsetErrorProps, type FieldsetHintProps, type FieldsetLegendProps, type FieldsetRootProps, FileInput, type FileInputProps, Grid, type GridColumnProps, type GridRootProps, type GridRowProps, Heading, Icon, type IconProps, type InputErrorProps, type HintProps as InputHintProps, type LabelProps as InputLabelProps, InputPrimitive, type RootProps as InputRootProps, Kopfzeile, type KopfzeileProps, Label, type LabelProps$1 as LabelProps, Link, type LinkProps, Lists, type ListsBulletProps, type ListsItemProps, type ListsNumberProps, type ListsRootProps, Loader, type LoaderProps, NumberInput, type NumberInputProps, PasswordInput, type PasswordInputProps, Preline, type PrelineProps, Progress, type ProgressBarProps, type ProgressCancelProps, type ProgressHeaderProps, type ProgressLabelProps, type ProgressPercentageProps, type ProgressRootProps, RadioInput, type RadioInputProps, SelectInput, type SelectInputProps, Subline, type SublineProps, Summary, type SummaryActionsProps, type SummaryBodyProps, type SummaryGroupHeadingProps, type SummaryGroupProps, type SummaryHeadingProps, type SummaryProps, Table, type TableBodyProps, type TableCellProps, type TableColumnProps, type TableFooterProps, type TableHeaderProps, type TableRootProps, type TableRowProps, TaskList, type TaskListHeadingProps, type TaskListItemProps, type TaskListProps, type TaskListRootProps, TelInput, type TelInputProps, TextInput, type TextInputProps, TextareaInput, type TextareaInputProps, type Theme, ThemeProvider, type ThemeProviderProps, Title, type TitleProps, UrlInput, type UrlInputProps };
1103
- //# sourceMappingURL=index.d.ts.map