@publicplan/kern-react-kit 1.3.1 → 1.3.2
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.cjs +118 -153
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +24 -36
- package/dist/index.d.ts +24 -36
- package/dist/index.js +118 -153
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react11 from "react";
|
|
2
2
|
import React$1 from "react";
|
|
3
3
|
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
4
4
|
|
|
@@ -273,13 +273,13 @@ declare const GridRow: React$1.FC<GridRowProps>;
|
|
|
273
273
|
interface CheckboxInputProps$1 extends Omit<React.ComponentPropsWithoutRef<'input'>, 'type' | 'aria-describedby'> {
|
|
274
274
|
erroneous?: boolean;
|
|
275
275
|
}
|
|
276
|
-
declare const CheckboxInput$1:
|
|
276
|
+
declare const CheckboxInput$1: react11.ForwardRefExoticComponent<CheckboxInputProps$1 & react11.RefAttributes<HTMLInputElement>>;
|
|
277
277
|
//#endregion
|
|
278
278
|
//#region src/components/Input/Primitives/Email/EmailInput.d.ts
|
|
279
279
|
interface EmailInputProps$1 extends Omit<React.ComponentPropsWithoutRef<'input'>, 'type'> {
|
|
280
280
|
erroneous?: boolean;
|
|
281
281
|
}
|
|
282
|
-
declare const EmailInput$1:
|
|
282
|
+
declare const EmailInput$1: react11.ForwardRefExoticComponent<EmailInputProps$1 & react11.RefAttributes<HTMLInputElement>>;
|
|
283
283
|
//#endregion
|
|
284
284
|
//#region src/components/Input/Primitives/Error.d.ts
|
|
285
285
|
interface InputErrorProps extends Omit<React.ComponentPropsWithoutRef<'p'>, 'role'> {
|
|
@@ -299,7 +299,7 @@ interface FileInputProps$1 extends Omit<React.ComponentPropsWithoutRef<'input'>,
|
|
|
299
299
|
supportedFormats?: (FileExtension | MimeType)[];
|
|
300
300
|
erroneous?: boolean;
|
|
301
301
|
}
|
|
302
|
-
declare const FileInput$1:
|
|
302
|
+
declare const FileInput$1: react11.ForwardRefExoticComponent<FileInputProps$1 & react11.RefAttributes<HTMLInputElement>>;
|
|
303
303
|
//#endregion
|
|
304
304
|
//#region src/components/Input/Primitives/Hint.d.ts
|
|
305
305
|
interface HintProps extends React.ComponentPropsWithoutRef<'p'> {
|
|
@@ -335,13 +335,13 @@ declare const Label$1: ({
|
|
|
335
335
|
interface PasswordInputProps$1 extends Omit<React.ComponentPropsWithoutRef<'input'>, 'type'> {
|
|
336
336
|
erroneous?: boolean;
|
|
337
337
|
}
|
|
338
|
-
declare const PasswordInput$1:
|
|
338
|
+
declare const PasswordInput$1: react11.ForwardRefExoticComponent<PasswordInputProps$1 & react11.RefAttributes<HTMLInputElement>>;
|
|
339
339
|
//#endregion
|
|
340
340
|
//#region src/components/Input/Primitives/Radio/RadioInput.d.ts
|
|
341
341
|
interface RadioInputProps$1 extends Omit<React.ComponentPropsWithoutRef<'input'>, 'type' | 'aria-describedby'> {
|
|
342
342
|
erroneous?: boolean;
|
|
343
343
|
}
|
|
344
|
-
declare const RadioInput$1:
|
|
344
|
+
declare const RadioInput$1: react11.ForwardRefExoticComponent<RadioInputProps$1 & react11.RefAttributes<HTMLInputElement>>;
|
|
345
345
|
//#endregion
|
|
346
346
|
//#region src/components/Input/Primitives/Root.d.ts
|
|
347
347
|
interface RootProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
@@ -362,31 +362,31 @@ interface SelectInputProps$1 extends React.ComponentPropsWithoutRef<'select'> {
|
|
|
362
362
|
label: string;
|
|
363
363
|
}>;
|
|
364
364
|
}
|
|
365
|
-
declare const SelectInput$1:
|
|
365
|
+
declare const SelectInput$1: react11.ForwardRefExoticComponent<SelectInputProps$1 & react11.RefAttributes<HTMLSelectElement>>;
|
|
366
366
|
//#endregion
|
|
367
367
|
//#region src/components/Input/Primitives/Tel/TelInput.d.ts
|
|
368
368
|
interface TelInputProps$1 extends Omit<React.ComponentPropsWithoutRef<'input'>, 'type' | 'autoComplete'> {
|
|
369
369
|
erroneous?: boolean;
|
|
370
370
|
}
|
|
371
|
-
declare const TelInput$1:
|
|
371
|
+
declare const TelInput$1: react11.ForwardRefExoticComponent<TelInputProps$1 & react11.RefAttributes<HTMLInputElement>>;
|
|
372
372
|
//#endregion
|
|
373
373
|
//#region src/components/Input/Primitives/Text/TextInput.d.ts
|
|
374
374
|
interface TextInputProps$1 extends Omit<React.ComponentPropsWithoutRef<'input'>, 'type'> {
|
|
375
375
|
erroneous?: boolean;
|
|
376
376
|
}
|
|
377
|
-
declare const TextInput$1:
|
|
377
|
+
declare const TextInput$1: react11.ForwardRefExoticComponent<TextInputProps$1 & react11.RefAttributes<HTMLInputElement>>;
|
|
378
378
|
//#endregion
|
|
379
379
|
//#region src/components/Input/Primitives/Textarea/TextareaInput.d.ts
|
|
380
380
|
interface TextareaInputProps$1 extends React.ComponentPropsWithoutRef<'textarea'> {
|
|
381
381
|
erroneous?: boolean;
|
|
382
382
|
}
|
|
383
|
-
declare const TextareaInput$1:
|
|
383
|
+
declare const TextareaInput$1: react11.ForwardRefExoticComponent<TextareaInputProps$1 & react11.RefAttributes<HTMLTextAreaElement>>;
|
|
384
384
|
//#endregion
|
|
385
385
|
//#region src/components/Input/Primitives/Url/UrlInput.d.ts
|
|
386
386
|
interface UrlInputProps$1 extends Omit<React.ComponentPropsWithoutRef<'input'>, 'type'> {
|
|
387
387
|
erroneous?: boolean;
|
|
388
388
|
}
|
|
389
|
-
declare const UrlInput$1:
|
|
389
|
+
declare const UrlInput$1: react11.ForwardRefExoticComponent<UrlInputProps$1 & react11.RefAttributes<HTMLInputElement>>;
|
|
390
390
|
//#endregion
|
|
391
391
|
//#region src/components/Lists/Root.d.ts
|
|
392
392
|
interface ListsRootProps extends Omit<React.ComponentPropsWithoutRef<'ol' | 'ul'>, 'type'> {
|
|
@@ -428,12 +428,6 @@ declare const ListsNumber: React.FC<ListsNumberProps>;
|
|
|
428
428
|
interface ProgressBarProps extends React.ComponentPropsWithoutRef<'progress'> {}
|
|
429
429
|
declare const ProgressBar: React.FC<ProgressBarProps>;
|
|
430
430
|
//#endregion
|
|
431
|
-
//#region src/components/Progress/Cancel.d.ts
|
|
432
|
-
interface ProgressCancelProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
433
|
-
onCancel?: () => void;
|
|
434
|
-
}
|
|
435
|
-
declare const ProgressCancel: React.FC<ProgressCancelProps>;
|
|
436
|
-
//#endregion
|
|
437
431
|
//#region src/components/Progress/Header.d.ts
|
|
438
432
|
interface ProgressHeaderProps extends React.HTMLAttributes<HTMLDivElement> {}
|
|
439
433
|
declare const ProgressHeader: React.FC<ProgressHeaderProps>;
|
|
@@ -442,12 +436,6 @@ declare const ProgressHeader: React.FC<ProgressHeaderProps>;
|
|
|
442
436
|
interface ProgressLabelProps extends React.LabelHTMLAttributes<HTMLLabelElement> {}
|
|
443
437
|
declare const ProgressLabel: React.FC<ProgressLabelProps>;
|
|
444
438
|
//#endregion
|
|
445
|
-
//#region src/components/Progress/Percentage.d.ts
|
|
446
|
-
interface ProgressPercentageProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
447
|
-
formatter?: (percentage: number) => string;
|
|
448
|
-
}
|
|
449
|
-
declare const ProgressPercentage: React.FC<ProgressPercentageProps>;
|
|
450
|
-
//#endregion
|
|
451
439
|
//#region src/components/Progress/Root.d.ts
|
|
452
440
|
interface ProgressRootProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
453
441
|
value: number;
|
|
@@ -1084,23 +1072,23 @@ declare const ThemeProvider: ({
|
|
|
1084
1072
|
}: ThemeProviderProps) => react_jsx_runtime0.JSX.Element;
|
|
1085
1073
|
//#endregion
|
|
1086
1074
|
//#region src/index.d.ts
|
|
1087
|
-
declare const Accordion:
|
|
1088
|
-
declare const Alert:
|
|
1089
|
-
declare const Card:
|
|
1090
|
-
declare const DescriptionList:
|
|
1091
|
-
declare const Dialog:
|
|
1092
|
-
declare const Fieldset:
|
|
1093
|
-
declare const Grid:
|
|
1075
|
+
declare const Accordion: react11.FC<AccordionRootProps> & typeof index_d_exports;
|
|
1076
|
+
declare const Alert: react11.FC<AlertRootProps> & typeof index_d_exports$1;
|
|
1077
|
+
declare const Card: react11.FC<CardRootProps> & typeof index_d_exports$2;
|
|
1078
|
+
declare const DescriptionList: react11.FC<DescriptionListRootProps> & typeof index_d_exports$3;
|
|
1079
|
+
declare const Dialog: react11.FC<DialogRootProps> & typeof index_d_exports$4;
|
|
1080
|
+
declare const Fieldset: react11.FC<FieldsetRootProps> & typeof index_d_exports$5;
|
|
1081
|
+
declare const Grid: react11.FC<GridRootProps> & typeof index_d_exports$6;
|
|
1094
1082
|
declare const InputPrimitive: (({
|
|
1095
1083
|
className,
|
|
1096
1084
|
erroneous,
|
|
1097
1085
|
...props
|
|
1098
1086
|
}: RootProps) => react_jsx_runtime0.JSX.Element) & typeof index_d_exports$7;
|
|
1099
|
-
declare const Lists:
|
|
1100
|
-
declare const Table:
|
|
1101
|
-
declare const Progress:
|
|
1102
|
-
declare const Summary:
|
|
1103
|
-
declare const TaskList:
|
|
1087
|
+
declare const Lists: react11.FC<ListsRootProps> & typeof index_d_exports$8;
|
|
1088
|
+
declare const Table: react11.FC<TableRootProps> & typeof index_d_exports$11;
|
|
1089
|
+
declare const Progress: react11.FC<ProgressRootProps> & typeof index_d_exports$9;
|
|
1090
|
+
declare const Summary: react11.FC<SummaryProps> & typeof index_d_exports$10;
|
|
1091
|
+
declare const TaskList: react11.FC<TaskListRootProps> & typeof index_d_exports$12;
|
|
1104
1092
|
//#endregion
|
|
1105
|
-
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
|
|
1093
|
+
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 ProgressHeaderProps, type ProgressLabelProps, 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 };
|
|
1106
1094
|
//# sourceMappingURL=index.d.cts.map
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react11 from "react";
|
|
3
3
|
import React$1 from "react";
|
|
4
4
|
|
|
5
5
|
//#region src/components/Accordion/Content.d.ts
|
|
@@ -271,13 +271,13 @@ declare const GridRow: React$1.FC<GridRowProps>;
|
|
|
271
271
|
interface CheckboxInputProps$1 extends Omit<React.ComponentPropsWithoutRef<'input'>, 'type' | 'aria-describedby'> {
|
|
272
272
|
erroneous?: boolean;
|
|
273
273
|
}
|
|
274
|
-
declare const CheckboxInput$1:
|
|
274
|
+
declare const CheckboxInput$1: react11.ForwardRefExoticComponent<CheckboxInputProps$1 & react11.RefAttributes<HTMLInputElement>>;
|
|
275
275
|
//#endregion
|
|
276
276
|
//#region src/components/Input/Primitives/Email/EmailInput.d.ts
|
|
277
277
|
interface EmailInputProps$1 extends Omit<React.ComponentPropsWithoutRef<'input'>, 'type'> {
|
|
278
278
|
erroneous?: boolean;
|
|
279
279
|
}
|
|
280
|
-
declare const EmailInput$1:
|
|
280
|
+
declare const EmailInput$1: react11.ForwardRefExoticComponent<EmailInputProps$1 & react11.RefAttributes<HTMLInputElement>>;
|
|
281
281
|
//#endregion
|
|
282
282
|
//#region src/components/Input/Primitives/Error.d.ts
|
|
283
283
|
interface InputErrorProps extends Omit<React.ComponentPropsWithoutRef<'p'>, 'role'> {
|
|
@@ -297,7 +297,7 @@ interface FileInputProps$1 extends Omit<React.ComponentPropsWithoutRef<'input'>,
|
|
|
297
297
|
supportedFormats?: (FileExtension | MimeType)[];
|
|
298
298
|
erroneous?: boolean;
|
|
299
299
|
}
|
|
300
|
-
declare const FileInput$1:
|
|
300
|
+
declare const FileInput$1: react11.ForwardRefExoticComponent<FileInputProps$1 & react11.RefAttributes<HTMLInputElement>>;
|
|
301
301
|
//#endregion
|
|
302
302
|
//#region src/components/Input/Primitives/Hint.d.ts
|
|
303
303
|
interface HintProps extends React.ComponentPropsWithoutRef<'p'> {
|
|
@@ -333,13 +333,13 @@ declare const Label$1: ({
|
|
|
333
333
|
interface PasswordInputProps$1 extends Omit<React.ComponentPropsWithoutRef<'input'>, 'type'> {
|
|
334
334
|
erroneous?: boolean;
|
|
335
335
|
}
|
|
336
|
-
declare const PasswordInput$1:
|
|
336
|
+
declare const PasswordInput$1: react11.ForwardRefExoticComponent<PasswordInputProps$1 & react11.RefAttributes<HTMLInputElement>>;
|
|
337
337
|
//#endregion
|
|
338
338
|
//#region src/components/Input/Primitives/Radio/RadioInput.d.ts
|
|
339
339
|
interface RadioInputProps$1 extends Omit<React.ComponentPropsWithoutRef<'input'>, 'type' | 'aria-describedby'> {
|
|
340
340
|
erroneous?: boolean;
|
|
341
341
|
}
|
|
342
|
-
declare const RadioInput$1:
|
|
342
|
+
declare const RadioInput$1: react11.ForwardRefExoticComponent<RadioInputProps$1 & react11.RefAttributes<HTMLInputElement>>;
|
|
343
343
|
//#endregion
|
|
344
344
|
//#region src/components/Input/Primitives/Root.d.ts
|
|
345
345
|
interface RootProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
@@ -360,31 +360,31 @@ interface SelectInputProps$1 extends React.ComponentPropsWithoutRef<'select'> {
|
|
|
360
360
|
label: string;
|
|
361
361
|
}>;
|
|
362
362
|
}
|
|
363
|
-
declare const SelectInput$1:
|
|
363
|
+
declare const SelectInput$1: react11.ForwardRefExoticComponent<SelectInputProps$1 & react11.RefAttributes<HTMLSelectElement>>;
|
|
364
364
|
//#endregion
|
|
365
365
|
//#region src/components/Input/Primitives/Tel/TelInput.d.ts
|
|
366
366
|
interface TelInputProps$1 extends Omit<React.ComponentPropsWithoutRef<'input'>, 'type' | 'autoComplete'> {
|
|
367
367
|
erroneous?: boolean;
|
|
368
368
|
}
|
|
369
|
-
declare const TelInput$1:
|
|
369
|
+
declare const TelInput$1: react11.ForwardRefExoticComponent<TelInputProps$1 & react11.RefAttributes<HTMLInputElement>>;
|
|
370
370
|
//#endregion
|
|
371
371
|
//#region src/components/Input/Primitives/Text/TextInput.d.ts
|
|
372
372
|
interface TextInputProps$1 extends Omit<React.ComponentPropsWithoutRef<'input'>, 'type'> {
|
|
373
373
|
erroneous?: boolean;
|
|
374
374
|
}
|
|
375
|
-
declare const TextInput$1:
|
|
375
|
+
declare const TextInput$1: react11.ForwardRefExoticComponent<TextInputProps$1 & react11.RefAttributes<HTMLInputElement>>;
|
|
376
376
|
//#endregion
|
|
377
377
|
//#region src/components/Input/Primitives/Textarea/TextareaInput.d.ts
|
|
378
378
|
interface TextareaInputProps$1 extends React.ComponentPropsWithoutRef<'textarea'> {
|
|
379
379
|
erroneous?: boolean;
|
|
380
380
|
}
|
|
381
|
-
declare const TextareaInput$1:
|
|
381
|
+
declare const TextareaInput$1: react11.ForwardRefExoticComponent<TextareaInputProps$1 & react11.RefAttributes<HTMLTextAreaElement>>;
|
|
382
382
|
//#endregion
|
|
383
383
|
//#region src/components/Input/Primitives/Url/UrlInput.d.ts
|
|
384
384
|
interface UrlInputProps$1 extends Omit<React.ComponentPropsWithoutRef<'input'>, 'type'> {
|
|
385
385
|
erroneous?: boolean;
|
|
386
386
|
}
|
|
387
|
-
declare const UrlInput$1:
|
|
387
|
+
declare const UrlInput$1: react11.ForwardRefExoticComponent<UrlInputProps$1 & react11.RefAttributes<HTMLInputElement>>;
|
|
388
388
|
//#endregion
|
|
389
389
|
//#region src/components/Lists/Root.d.ts
|
|
390
390
|
interface ListsRootProps extends Omit<React.ComponentPropsWithoutRef<'ol' | 'ul'>, 'type'> {
|
|
@@ -426,12 +426,6 @@ declare const ListsNumber: React.FC<ListsNumberProps>;
|
|
|
426
426
|
interface ProgressBarProps extends React.ComponentPropsWithoutRef<'progress'> {}
|
|
427
427
|
declare const ProgressBar: React.FC<ProgressBarProps>;
|
|
428
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
429
|
//#region src/components/Progress/Header.d.ts
|
|
436
430
|
interface ProgressHeaderProps extends React.HTMLAttributes<HTMLDivElement> {}
|
|
437
431
|
declare const ProgressHeader: React.FC<ProgressHeaderProps>;
|
|
@@ -440,12 +434,6 @@ declare const ProgressHeader: React.FC<ProgressHeaderProps>;
|
|
|
440
434
|
interface ProgressLabelProps extends React.LabelHTMLAttributes<HTMLLabelElement> {}
|
|
441
435
|
declare const ProgressLabel: React.FC<ProgressLabelProps>;
|
|
442
436
|
//#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
437
|
//#region src/components/Progress/Root.d.ts
|
|
450
438
|
interface ProgressRootProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
451
439
|
value: number;
|
|
@@ -1082,23 +1070,23 @@ declare const ThemeProvider: ({
|
|
|
1082
1070
|
}: ThemeProviderProps) => react_jsx_runtime0.JSX.Element;
|
|
1083
1071
|
//#endregion
|
|
1084
1072
|
//#region src/index.d.ts
|
|
1085
|
-
declare const Accordion:
|
|
1086
|
-
declare const Alert:
|
|
1087
|
-
declare const Card:
|
|
1088
|
-
declare const DescriptionList:
|
|
1089
|
-
declare const Dialog:
|
|
1090
|
-
declare const Fieldset:
|
|
1091
|
-
declare const Grid:
|
|
1073
|
+
declare const Accordion: react11.FC<AccordionRootProps> & typeof index_d_exports;
|
|
1074
|
+
declare const Alert: react11.FC<AlertRootProps> & typeof index_d_exports$1;
|
|
1075
|
+
declare const Card: react11.FC<CardRootProps> & typeof index_d_exports$2;
|
|
1076
|
+
declare const DescriptionList: react11.FC<DescriptionListRootProps> & typeof index_d_exports$3;
|
|
1077
|
+
declare const Dialog: react11.FC<DialogRootProps> & typeof index_d_exports$4;
|
|
1078
|
+
declare const Fieldset: react11.FC<FieldsetRootProps> & typeof index_d_exports$5;
|
|
1079
|
+
declare const Grid: react11.FC<GridRootProps> & typeof index_d_exports$6;
|
|
1092
1080
|
declare const InputPrimitive: (({
|
|
1093
1081
|
className,
|
|
1094
1082
|
erroneous,
|
|
1095
1083
|
...props
|
|
1096
1084
|
}: RootProps) => react_jsx_runtime0.JSX.Element) & typeof index_d_exports$7;
|
|
1097
|
-
declare const Lists:
|
|
1098
|
-
declare const Table:
|
|
1099
|
-
declare const Progress:
|
|
1100
|
-
declare const Summary:
|
|
1101
|
-
declare const TaskList:
|
|
1085
|
+
declare const Lists: react11.FC<ListsRootProps> & typeof index_d_exports$8;
|
|
1086
|
+
declare const Table: react11.FC<TableRootProps> & typeof index_d_exports$11;
|
|
1087
|
+
declare const Progress: react11.FC<ProgressRootProps> & typeof index_d_exports$9;
|
|
1088
|
+
declare const Summary: react11.FC<SummaryProps> & typeof index_d_exports$10;
|
|
1089
|
+
declare const TaskList: react11.FC<TaskListRootProps> & typeof index_d_exports$12;
|
|
1102
1090
|
//#endregion
|
|
1103
|
-
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
|
|
1091
|
+
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 ProgressHeaderProps, type ProgressLabelProps, 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 };
|
|
1104
1092
|
//# sourceMappingURL=index.d.ts.map
|