@marigold/components 16.0.1 → 16.1.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.js → index.cjs} +236 -234
- package/dist/{index.d.ts → index.d.cts} +112 -116
- package/dist/index.d.mts +112 -116
- package/dist/index.mjs +237 -215
- package/package.json +5 -5
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { AriaLabelingProps, Orientation, RefObject, Selection } from "@react-types/shared";
|
|
2
2
|
import RAC, { BreadcrumbsProps as BreadcrumbsProps$1, ButtonProps as ButtonProps$1, DateValue, DialogProps as DialogProps$1, DisclosurePanelProps, DisclosureProps as DisclosureProps$1, HeadingProps, Key, ProgressBarProps, RouterProvider, SlotProps, TagListProps, TimeValue, TimeValue as TimeValue$1, ValidationResult } from "react-aria-components";
|
|
3
3
|
import { useAsyncList, useListData } from "@react-stately/data";
|
|
4
|
-
import { AspectProp, CursorProp, DateFormat, FontSizeProp, FontStyleProp, FontWeightProp, GapSpaceProp, HeightProp, MaxWidthProp, NumericFormat, PaddingBottomProp, PaddingLeftProp, PaddingRightProp, PaddingSpaceProp, PaddingSpacePropX, PaddingSpacePropY, PaddingTopProp, PlaceItemsProp, TextAlignProp, TextWrapProp, Theme, ThemeProvider, ThemeProviderProps, WhiteSpaceProps, WidthProp, alignment, useTheme } from "@marigold/system";
|
|
5
|
-
import * as
|
|
4
|
+
import { AspectProp, CursorProp, DateFormat, FontSizeProp, FontStyleProp, FontWeightProp, GapSpaceProp, HeightProp, MaxWidthProp, NumericFormat, PaddingBottomProp, PaddingLeftProp, PaddingRightProp, PaddingSpaceProp, PaddingSpacePropX, PaddingSpacePropY, PaddingTopProp, PlaceItemsProp, SpaceProp, TextAlignProp, TextWrapProp, Theme, ThemeProvider, ThemeProviderProps, WhiteSpaceProps, WidthProp, alignment, useTheme } from "@marigold/system";
|
|
5
|
+
import * as react_jsx_runtime5 from "react/jsx-runtime";
|
|
6
6
|
import * as react8 from "react";
|
|
7
7
|
import { CSSProperties, ComponentPropsWithRef, Dispatch, ElementType, FormEvent, ForwardRefExoticComponent, JSX, Key as Key$1, PropsWithChildren, ReactElement, ReactNode, RefAttributes, SVGProps, SetStateAction } from "react";
|
|
8
8
|
import { AriaLabelingProps as AriaLabelingProps$1, AriaRegionProps, DistributiveOmit, NonZeroPercentage } from "@marigold/types";
|
|
@@ -37,7 +37,7 @@ declare const AccordionItem: ({
|
|
|
37
37
|
disabled,
|
|
38
38
|
expanded,
|
|
39
39
|
...props
|
|
40
|
-
}: DisclosureProps) =>
|
|
40
|
+
}: DisclosureProps) => react_jsx_runtime5.JSX.Element;
|
|
41
41
|
//#endregion
|
|
42
42
|
//#region src/Accordion/Accordion.d.ts
|
|
43
43
|
type RemovedProps$37 = 'isDisabled';
|
|
@@ -60,27 +60,27 @@ declare const Accordion: {
|
|
|
60
60
|
stickyHeader,
|
|
61
61
|
iconPosition,
|
|
62
62
|
...props
|
|
63
|
-
}: AccordionProps):
|
|
63
|
+
}: AccordionProps): react_jsx_runtime5.JSX.Element;
|
|
64
64
|
Header: ({
|
|
65
65
|
children
|
|
66
|
-
}: AccordionHeaderProps) =>
|
|
66
|
+
}: AccordionHeaderProps) => react_jsx_runtime5.JSX.Element;
|
|
67
67
|
Content: ({
|
|
68
68
|
children
|
|
69
|
-
}: AccordionPanelProps) =>
|
|
69
|
+
}: AccordionPanelProps) => react_jsx_runtime5.JSX.Element;
|
|
70
70
|
Item: ({
|
|
71
71
|
children,
|
|
72
72
|
disabled,
|
|
73
73
|
expanded,
|
|
74
74
|
...props
|
|
75
|
-
}: DisclosureProps) =>
|
|
75
|
+
}: DisclosureProps) => react_jsx_runtime5.JSX.Element;
|
|
76
76
|
};
|
|
77
77
|
//#endregion
|
|
78
78
|
//#region src/Aside/Aside.d.ts
|
|
79
|
-
interface AsideProps extends
|
|
79
|
+
interface AsideProps extends SpaceProp<'section' | 'fieldY' | 'container' | 'group'>, AriaRegionProps {
|
|
80
80
|
/**
|
|
81
81
|
* The children of the component.
|
|
82
82
|
*/
|
|
83
|
-
children: [ReactElement
|
|
83
|
+
children: [ReactElement, ReactElement];
|
|
84
84
|
/**
|
|
85
85
|
* The side of the aside content.
|
|
86
86
|
* @default left
|
|
@@ -102,7 +102,7 @@ declare const Aside: ({
|
|
|
102
102
|
space,
|
|
103
103
|
side,
|
|
104
104
|
wrap
|
|
105
|
-
}: AsideProps) =>
|
|
105
|
+
}: AsideProps) => react_jsx_runtime5.JSX.Element;
|
|
106
106
|
//#endregion
|
|
107
107
|
//#region src/Aspect/Aspect.d.ts
|
|
108
108
|
interface AspectProps extends AspectProp, AriaRegionProps {
|
|
@@ -120,7 +120,7 @@ declare const Aspect: ({
|
|
|
120
120
|
ratio,
|
|
121
121
|
maxWidth,
|
|
122
122
|
children
|
|
123
|
-
}: AspectProps) =>
|
|
123
|
+
}: AspectProps) => react_jsx_runtime5.JSX.Element;
|
|
124
124
|
//#endregion
|
|
125
125
|
//#region src/HelpText/HelpText.d.ts
|
|
126
126
|
interface HelpTextProps {
|
|
@@ -141,11 +141,11 @@ declare const HelpText: ({
|
|
|
141
141
|
description,
|
|
142
142
|
errorMessage,
|
|
143
143
|
...props
|
|
144
|
-
}: HelpTextProps) =>
|
|
144
|
+
}: HelpTextProps) => react_jsx_runtime5.JSX.Element | null;
|
|
145
145
|
//#endregion
|
|
146
146
|
//#region src/FieldBase/FieldBase.d.ts
|
|
147
|
-
interface FieldBaseProps<T
|
|
148
|
-
as?: T
|
|
147
|
+
interface FieldBaseProps<T extends ElementType> extends WidthProp, Pick<HelpTextProps, 'description' | 'errorMessage'> {
|
|
148
|
+
as?: T;
|
|
149
149
|
/**
|
|
150
150
|
* Specifies the label of the field.
|
|
151
151
|
*/
|
|
@@ -170,7 +170,7 @@ type ListBoxItemProps = Omit<RAC.ListBoxItemProps, 'style' | 'className' | 'chil
|
|
|
170
170
|
};
|
|
171
171
|
declare const _ListBoxItem: ({
|
|
172
172
|
...props
|
|
173
|
-
}: ListBoxItemProps) =>
|
|
173
|
+
}: ListBoxItemProps) => react_jsx_runtime5.JSX.Element;
|
|
174
174
|
//#endregion
|
|
175
175
|
//#region src/ListBox/ListBoxSection.d.ts
|
|
176
176
|
interface SectionProps extends Omit<RAC.SectionProps<object>, 'className' | 'style' | 'children'> {
|
|
@@ -187,7 +187,7 @@ declare const _Section: ({
|
|
|
187
187
|
header,
|
|
188
188
|
children,
|
|
189
189
|
...props
|
|
190
|
-
}: SectionProps) =>
|
|
190
|
+
}: SectionProps) => react_jsx_runtime5.JSX.Element;
|
|
191
191
|
//#endregion
|
|
192
192
|
//#region src/ListBox/ListBox.d.ts
|
|
193
193
|
interface ListBoxProps extends Omit<RAC.ListBoxProps<object>, 'className' | 'style'> {
|
|
@@ -292,7 +292,7 @@ declare const Badge: ({
|
|
|
292
292
|
size,
|
|
293
293
|
children,
|
|
294
294
|
...props
|
|
295
|
-
}: BadgeProps) =>
|
|
295
|
+
}: BadgeProps) => react_jsx_runtime5.JSX.Element;
|
|
296
296
|
//#endregion
|
|
297
297
|
//#region src/Breadcrumbs/BreadcrumbsItem.d.ts
|
|
298
298
|
type RemovedProps$35 = 'className' | 'style';
|
|
@@ -340,7 +340,7 @@ interface BreakoutProps extends AriaRegionProps {
|
|
|
340
340
|
}
|
|
341
341
|
declare const Breakout: ({
|
|
342
342
|
children
|
|
343
|
-
}: BreakoutProps) =>
|
|
343
|
+
}: BreakoutProps) => react_jsx_runtime5.JSX.Element;
|
|
344
344
|
//#endregion
|
|
345
345
|
//#region src/Button/Button.d.ts
|
|
346
346
|
type RemovedProps$33 = 'isDisabled' | 'isPending' | 'className' | 'style';
|
|
@@ -404,7 +404,7 @@ declare const _Calendar: ({
|
|
|
404
404
|
minValue: _minValue,
|
|
405
405
|
maxValue: _maxValue,
|
|
406
406
|
...rest
|
|
407
|
-
}: CalendarProps) =>
|
|
407
|
+
}: CalendarProps) => react_jsx_runtime5.JSX.Element;
|
|
408
408
|
//#endregion
|
|
409
409
|
//#region src/Card/Card.d.ts
|
|
410
410
|
interface CardProps extends PaddingRightProp, PaddingLeftProp, PaddingBottomProp, PaddingTopProp {
|
|
@@ -441,7 +441,7 @@ declare const Card: ({
|
|
|
441
441
|
pl,
|
|
442
442
|
pr,
|
|
443
443
|
...props
|
|
444
|
-
}: CardProps) =>
|
|
444
|
+
}: CardProps) => react_jsx_runtime5.JSX.Element;
|
|
445
445
|
//#endregion
|
|
446
446
|
//#region src/Center/Center.d.ts
|
|
447
447
|
interface CenterProps extends GapSpaceProp, AriaRegionProps {
|
|
@@ -457,7 +457,7 @@ declare const Center: ({
|
|
|
457
457
|
space,
|
|
458
458
|
children,
|
|
459
459
|
...props
|
|
460
|
-
}: CenterProps) =>
|
|
460
|
+
}: CenterProps) => react_jsx_runtime5.JSX.Element;
|
|
461
461
|
//#endregion
|
|
462
462
|
//#region src/Checkbox/CheckboxGroup.d.ts
|
|
463
463
|
type RemovedProps$31 = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly';
|
|
@@ -525,7 +525,7 @@ declare const _CheckboxGroup: ({
|
|
|
525
525
|
orientation,
|
|
526
526
|
collapseAt,
|
|
527
527
|
...rest
|
|
528
|
-
}: CheckboxGroupProps) =>
|
|
528
|
+
}: CheckboxGroupProps) => react_jsx_runtime5.JSX.Element;
|
|
529
529
|
//#endregion
|
|
530
530
|
//#region src/Checkbox/Checkbox.d.ts
|
|
531
531
|
type RemovedProps$30 = 'children' | 'className' | 'style' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'isSelected' | 'isIndeterminate' | 'defaultSelected';
|
|
@@ -620,20 +620,20 @@ declare const Collapsible: {
|
|
|
620
620
|
children,
|
|
621
621
|
unstyled,
|
|
622
622
|
...props
|
|
623
|
-
}: CollapsibleProps):
|
|
623
|
+
}: CollapsibleProps): react_jsx_runtime5.JSX.Element;
|
|
624
624
|
Trigger: ({
|
|
625
625
|
variant,
|
|
626
626
|
size,
|
|
627
627
|
children,
|
|
628
628
|
level,
|
|
629
629
|
...props
|
|
630
|
-
}: CollapsibleProps$1) =>
|
|
630
|
+
}: CollapsibleProps$1) => react_jsx_runtime5.JSX.Element;
|
|
631
631
|
Content: ({
|
|
632
632
|
variant,
|
|
633
633
|
size,
|
|
634
634
|
children,
|
|
635
635
|
...props
|
|
636
|
-
}: CollapsibleContentProps) =>
|
|
636
|
+
}: CollapsibleContentProps) => react_jsx_runtime5.JSX.Element;
|
|
637
637
|
};
|
|
638
638
|
//#endregion
|
|
639
639
|
//#region src/Columns/Columns.d.ts
|
|
@@ -663,7 +663,7 @@ declare const Columns: ({
|
|
|
663
663
|
stretch,
|
|
664
664
|
children,
|
|
665
665
|
...props
|
|
666
|
-
}: ColumnsProps) =>
|
|
666
|
+
}: ColumnsProps) => react_jsx_runtime5.JSX.Element;
|
|
667
667
|
//#endregion
|
|
668
668
|
//#region src/ComboBox/ComboBox.d.ts
|
|
669
669
|
type RemovedProps$29 = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'defaultInputValue' | 'inputValue' | 'onInputChange';
|
|
@@ -767,7 +767,7 @@ declare const Container: ({
|
|
|
767
767
|
space,
|
|
768
768
|
children,
|
|
769
769
|
...props
|
|
770
|
-
}: ContainerProps) =>
|
|
770
|
+
}: ContainerProps) => react_jsx_runtime5.JSX.Element;
|
|
771
771
|
//#endregion
|
|
772
772
|
//#region src/icons/Icons.types.d.ts
|
|
773
773
|
interface IconProps extends Omit<SVGProps<SVGSVGElement>, 'width' | 'height'> {
|
|
@@ -784,7 +784,7 @@ declare const ContextualHelpContent: ({
|
|
|
784
784
|
children,
|
|
785
785
|
variant,
|
|
786
786
|
size
|
|
787
|
-
}: ContextualHelpContentProps) =>
|
|
787
|
+
}: ContextualHelpContentProps) => react_jsx_runtime5.JSX.Element;
|
|
788
788
|
//#endregion
|
|
789
789
|
//#region src/ContextualHelp/ContextualHelpTitle.d.ts
|
|
790
790
|
interface ContextualHelpTitleProps {
|
|
@@ -796,7 +796,7 @@ declare const ContextualHelpTitle: ({
|
|
|
796
796
|
children,
|
|
797
797
|
variant,
|
|
798
798
|
size
|
|
799
|
-
}: ContextualHelpTitleProps) =>
|
|
799
|
+
}: ContextualHelpTitleProps) => react_jsx_runtime5.JSX.Element;
|
|
800
800
|
//#endregion
|
|
801
801
|
//#region src/ContextualHelp/ContextualHelp.d.ts
|
|
802
802
|
declare const icons$1: {
|
|
@@ -804,12 +804,12 @@ declare const icons$1: {
|
|
|
804
804
|
size,
|
|
805
805
|
className,
|
|
806
806
|
...props
|
|
807
|
-
}: IconProps) =>
|
|
807
|
+
}: IconProps) => react_jsx_runtime5.JSX.Element;
|
|
808
808
|
info: ({
|
|
809
809
|
size,
|
|
810
810
|
className,
|
|
811
811
|
...props
|
|
812
|
-
}: IconProps) =>
|
|
812
|
+
}: IconProps) => react_jsx_runtime5.JSX.Element;
|
|
813
813
|
};
|
|
814
814
|
interface ContextualHelpComponent extends ForwardRefExoticComponent<ContextualHelpProps & RefAttributes<HTMLInputElement>> {
|
|
815
815
|
/**
|
|
@@ -959,7 +959,7 @@ declare const DialogActions: ({
|
|
|
959
959
|
variant,
|
|
960
960
|
size,
|
|
961
961
|
children
|
|
962
|
-
}: DialogActions) =>
|
|
962
|
+
}: DialogActions) => react_jsx_runtime5.JSX.Element;
|
|
963
963
|
//#endregion
|
|
964
964
|
//#region src/Dialog/DialogContent.d.ts
|
|
965
965
|
interface DialogContentProps {
|
|
@@ -974,7 +974,7 @@ declare const DialogContent: ({
|
|
|
974
974
|
variant,
|
|
975
975
|
size,
|
|
976
976
|
children
|
|
977
|
-
}: DialogContentProps) =>
|
|
977
|
+
}: DialogContentProps) => react_jsx_runtime5.JSX.Element;
|
|
978
978
|
//#endregion
|
|
979
979
|
//#region src/Dialog/DialogTitle.d.ts
|
|
980
980
|
interface DialogTitleProps {
|
|
@@ -987,7 +987,7 @@ declare const DialogTitle: ({
|
|
|
987
987
|
variant,
|
|
988
988
|
size,
|
|
989
989
|
children
|
|
990
|
-
}: DialogTitleProps) =>
|
|
990
|
+
}: DialogTitleProps) => react_jsx_runtime5.JSX.Element;
|
|
991
991
|
//#endregion
|
|
992
992
|
//#region src/Dialog/Context.d.ts
|
|
993
993
|
interface DialogContextProps extends RAC.ModalOverlayProps {
|
|
@@ -1068,7 +1068,7 @@ declare const ConfirmationDialog: {
|
|
|
1068
1068
|
variant,
|
|
1069
1069
|
size,
|
|
1070
1070
|
...props
|
|
1071
|
-
}: ConfirmationDialogProps):
|
|
1071
|
+
}: ConfirmationDialogProps): react_jsx_runtime5.JSX.Element;
|
|
1072
1072
|
Trigger: ({
|
|
1073
1073
|
open,
|
|
1074
1074
|
dismissable,
|
|
@@ -1086,7 +1086,7 @@ type ConfirmationFn = (props: ConfirmationConfig) => Promise<ConfirmationResult>
|
|
|
1086
1086
|
declare const ConfirmationContext: react8.Context<ConfirmationFn | null>;
|
|
1087
1087
|
declare const ConfirmationProvider: ({
|
|
1088
1088
|
children
|
|
1089
|
-
}: PropsWithChildren) =>
|
|
1089
|
+
}: PropsWithChildren) => react_jsx_runtime5.JSX.Element;
|
|
1090
1090
|
declare const useConfirmation: () => ConfirmationFn;
|
|
1091
1091
|
//#endregion
|
|
1092
1092
|
//#region src/Divider/Divider.d.ts
|
|
@@ -1097,7 +1097,7 @@ interface DividerProps extends Omit<RAC.SeparatorProps, RemovedProps$25> {
|
|
|
1097
1097
|
declare const _Divider: ({
|
|
1098
1098
|
variant,
|
|
1099
1099
|
...props
|
|
1100
|
-
}: DividerProps) =>
|
|
1100
|
+
}: DividerProps) => react_jsx_runtime5.JSX.Element;
|
|
1101
1101
|
//#endregion
|
|
1102
1102
|
//#region src/Drawer/DrawerTrigger.d.ts
|
|
1103
1103
|
interface DrawerTriggerProps extends Omit<RAC.DialogTriggerProps, 'isOpen'> {
|
|
@@ -1141,7 +1141,7 @@ declare const DrawerActions: ({
|
|
|
1141
1141
|
variant,
|
|
1142
1142
|
size,
|
|
1143
1143
|
children
|
|
1144
|
-
}: DrawerActions) =>
|
|
1144
|
+
}: DrawerActions) => react_jsx_runtime5.JSX.Element;
|
|
1145
1145
|
//#endregion
|
|
1146
1146
|
//#region src/Drawer/Drawer.d.ts
|
|
1147
1147
|
interface DrawerProps extends Omit<DialogProps$1, 'className' | 'style' | 'isOpen' | 'role'> {
|
|
@@ -1188,27 +1188,27 @@ declare const Drawer: {
|
|
|
1188
1188
|
role,
|
|
1189
1189
|
placement,
|
|
1190
1190
|
...props
|
|
1191
|
-
}: DrawerProps):
|
|
1191
|
+
}: DrawerProps): react_jsx_runtime5.JSX.Element;
|
|
1192
1192
|
Trigger: ({
|
|
1193
1193
|
open,
|
|
1194
1194
|
children,
|
|
1195
1195
|
...props
|
|
1196
|
-
}: DrawerTriggerProps) =>
|
|
1196
|
+
}: DrawerTriggerProps) => react_jsx_runtime5.JSX.Element;
|
|
1197
1197
|
Title: ({
|
|
1198
1198
|
variant,
|
|
1199
1199
|
size,
|
|
1200
1200
|
children
|
|
1201
|
-
}: DrawerTitleProps) =>
|
|
1201
|
+
}: DrawerTitleProps) => react_jsx_runtime5.JSX.Element;
|
|
1202
1202
|
Content: ({
|
|
1203
1203
|
variant,
|
|
1204
1204
|
size,
|
|
1205
1205
|
children
|
|
1206
|
-
}: DrawerContentProps) =>
|
|
1206
|
+
}: DrawerContentProps) => react_jsx_runtime5.JSX.Element;
|
|
1207
1207
|
Actions: ({
|
|
1208
1208
|
variant,
|
|
1209
1209
|
size,
|
|
1210
1210
|
children
|
|
1211
|
-
}: DrawerActions) =>
|
|
1211
|
+
}: DrawerActions) => react_jsx_runtime5.JSX.Element;
|
|
1212
1212
|
};
|
|
1213
1213
|
//#endregion
|
|
1214
1214
|
//#region src/FileField/FileTrigger.d.ts
|
|
@@ -1266,11 +1266,11 @@ declare const FileField: {
|
|
|
1266
1266
|
width,
|
|
1267
1267
|
label,
|
|
1268
1268
|
...props
|
|
1269
|
-
}: FileFieldProps):
|
|
1269
|
+
}: FileFieldProps): react_jsx_runtime5.JSX.Element;
|
|
1270
1270
|
Item: ({
|
|
1271
1271
|
children,
|
|
1272
1272
|
onRemove
|
|
1273
|
-
}: FileFieldItemProps) =>
|
|
1273
|
+
}: FileFieldItemProps) => react_jsx_runtime5.JSX.Element;
|
|
1274
1274
|
};
|
|
1275
1275
|
//#endregion
|
|
1276
1276
|
//#region src/Form/Form.d.ts
|
|
@@ -1285,7 +1285,7 @@ declare const _Form: ({
|
|
|
1285
1285
|
unstyled,
|
|
1286
1286
|
maxWidth,
|
|
1287
1287
|
...props
|
|
1288
|
-
}: FormProps) =>
|
|
1288
|
+
}: FormProps) => react_jsx_runtime5.JSX.Element;
|
|
1289
1289
|
//#endregion
|
|
1290
1290
|
//#region src/Grid/GridArea.d.ts
|
|
1291
1291
|
interface GridAreaProps {
|
|
@@ -1338,11 +1338,11 @@ declare const Grid: {
|
|
|
1338
1338
|
height,
|
|
1339
1339
|
space,
|
|
1340
1340
|
...props
|
|
1341
|
-
}: GridProps):
|
|
1341
|
+
}: GridProps): react_jsx_runtime5.JSX.Element;
|
|
1342
1342
|
Area: ({
|
|
1343
1343
|
name,
|
|
1344
1344
|
children
|
|
1345
|
-
}: GridAreaProps) =>
|
|
1345
|
+
}: GridAreaProps) => react_jsx_runtime5.JSX.Element;
|
|
1346
1346
|
};
|
|
1347
1347
|
//#endregion
|
|
1348
1348
|
//#region src/Headline/Headline.d.ts
|
|
@@ -1374,7 +1374,7 @@ declare const _Headline: ({
|
|
|
1374
1374
|
color,
|
|
1375
1375
|
level,
|
|
1376
1376
|
...props
|
|
1377
|
-
}: HeadlineProps) =>
|
|
1377
|
+
}: HeadlineProps) => react_jsx_runtime5.JSX.Element;
|
|
1378
1378
|
//#endregion
|
|
1379
1379
|
//#region src/IconButton/IconButton.d.ts
|
|
1380
1380
|
interface IconButtonProps extends RAC.ButtonProps {
|
|
@@ -1388,16 +1388,11 @@ declare const IconButton: ({
|
|
|
1388
1388
|
variant,
|
|
1389
1389
|
size,
|
|
1390
1390
|
...props
|
|
1391
|
-
}: IconButtonProps) =>
|
|
1391
|
+
}: IconButtonProps) => react_jsx_runtime5.JSX.Element;
|
|
1392
1392
|
//#endregion
|
|
1393
1393
|
//#region src/Inline/Inline.d.ts
|
|
1394
|
-
declare const inlineAlignmentY:
|
|
1395
|
-
|
|
1396
|
-
top: "items-start";
|
|
1397
|
-
center: "items-center";
|
|
1398
|
-
bottom: "items-end";
|
|
1399
|
-
};
|
|
1400
|
-
interface InlineProps extends GapSpaceProp, AriaRegionProps {
|
|
1394
|
+
declare const inlineAlignmentY: any;
|
|
1395
|
+
interface InlineProps extends SpaceProp<'section' | 'fieldX' | 'container' | 'group'>, AriaRegionProps {
|
|
1401
1396
|
/**
|
|
1402
1397
|
* The children of the component.
|
|
1403
1398
|
*/
|
|
@@ -1422,7 +1417,7 @@ declare const Inline: ({
|
|
|
1422
1417
|
alignY,
|
|
1423
1418
|
children,
|
|
1424
1419
|
...props
|
|
1425
|
-
}: InlineProps) =>
|
|
1420
|
+
}: InlineProps) => react_jsx_runtime5.JSX.Element;
|
|
1426
1421
|
//#endregion
|
|
1427
1422
|
//#region src/Input/Input.d.ts
|
|
1428
1423
|
type RemovedProps$22 = 'className' | 'style' | 'size';
|
|
@@ -1475,7 +1470,7 @@ declare const Inset: ({
|
|
|
1475
1470
|
spaceX,
|
|
1476
1471
|
spaceY,
|
|
1477
1472
|
children
|
|
1478
|
-
}: InsetProps) =>
|
|
1473
|
+
}: InsetProps) => react_jsx_runtime5.JSX.Element;
|
|
1479
1474
|
//#endregion
|
|
1480
1475
|
//#region src/Label/Label.d.ts
|
|
1481
1476
|
type RemovedProps$21 = 'className';
|
|
@@ -1488,7 +1483,7 @@ declare const _Label: ({
|
|
|
1488
1483
|
variant,
|
|
1489
1484
|
children,
|
|
1490
1485
|
...props
|
|
1491
|
-
}: LabelProps) =>
|
|
1486
|
+
}: LabelProps) => react_jsx_runtime5.JSX.Element;
|
|
1492
1487
|
//#endregion
|
|
1493
1488
|
//#region src/Link/Link.d.ts
|
|
1494
1489
|
type RemovedProps$20 = 'className' | 'isDisabled' | 'slot';
|
|
@@ -1554,11 +1549,11 @@ declare const List: {
|
|
|
1554
1549
|
variant,
|
|
1555
1550
|
size,
|
|
1556
1551
|
...props
|
|
1557
|
-
}: ListProps):
|
|
1552
|
+
}: ListProps): react_jsx_runtime5.JSX.Element;
|
|
1558
1553
|
Item: ({
|
|
1559
1554
|
children,
|
|
1560
1555
|
...props
|
|
1561
|
-
}: ListItemProps) =>
|
|
1556
|
+
}: ListItemProps) => react_jsx_runtime5.JSX.Element;
|
|
1562
1557
|
};
|
|
1563
1558
|
//#endregion
|
|
1564
1559
|
//#region src/Menu/MenuItem.d.ts
|
|
@@ -1626,18 +1621,18 @@ declare const _Menu: {
|
|
|
1626
1621
|
placement,
|
|
1627
1622
|
"aria-label": ariaLabel,
|
|
1628
1623
|
...props
|
|
1629
|
-
}: MenuProps):
|
|
1624
|
+
}: MenuProps): react_jsx_runtime5.JSX.Element;
|
|
1630
1625
|
Item: ({
|
|
1631
1626
|
children,
|
|
1632
1627
|
variant,
|
|
1633
1628
|
size,
|
|
1634
1629
|
...props
|
|
1635
|
-
}: MenuItemProps) =>
|
|
1630
|
+
}: MenuItemProps) => react_jsx_runtime5.JSX.Element;
|
|
1636
1631
|
Section: ({
|
|
1637
1632
|
children,
|
|
1638
1633
|
title,
|
|
1639
1634
|
...props
|
|
1640
|
-
}: MenuSectionProps) =>
|
|
1635
|
+
}: MenuSectionProps) => react_jsx_runtime5.JSX.Element;
|
|
1641
1636
|
};
|
|
1642
1637
|
//#endregion
|
|
1643
1638
|
//#region src/Menu/ActionMenu.d.ts
|
|
@@ -1646,18 +1641,18 @@ declare const ActionMenu: {
|
|
|
1646
1641
|
({
|
|
1647
1642
|
children,
|
|
1648
1643
|
...props
|
|
1649
|
-
}: ActionMenuProps):
|
|
1644
|
+
}: ActionMenuProps): react_jsx_runtime5.JSX.Element;
|
|
1650
1645
|
Item: ({
|
|
1651
1646
|
children,
|
|
1652
1647
|
variant,
|
|
1653
1648
|
size,
|
|
1654
1649
|
...props
|
|
1655
|
-
}: MenuItemProps) =>
|
|
1650
|
+
}: MenuItemProps) => react_jsx_runtime5.JSX.Element;
|
|
1656
1651
|
Section: ({
|
|
1657
1652
|
children,
|
|
1658
1653
|
title,
|
|
1659
1654
|
...props
|
|
1660
|
-
}: MenuSectionProps) =>
|
|
1655
|
+
}: MenuSectionProps) => react_jsx_runtime5.JSX.Element;
|
|
1661
1656
|
};
|
|
1662
1657
|
//#endregion
|
|
1663
1658
|
//#region src/Multiselect/Multiselect.d.ts
|
|
@@ -1785,7 +1780,7 @@ declare const Multiselect: ({
|
|
|
1785
1780
|
onSelectionChange,
|
|
1786
1781
|
width,
|
|
1787
1782
|
...rest
|
|
1788
|
-
}: MultipleSelectProps) =>
|
|
1783
|
+
}: MultipleSelectProps) => react_jsx_runtime5.JSX.Element;
|
|
1789
1784
|
//#endregion
|
|
1790
1785
|
//#region src/NumberField/NumberField.d.ts
|
|
1791
1786
|
type RemovedProps$15 = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'size';
|
|
@@ -1831,19 +1826,19 @@ interface NumberFieldProps extends Omit<RAC.NumberFieldProps, RemovedProps$15>,
|
|
|
1831
1826
|
declare const _NumberField: react8.ForwardRefExoticComponent<NumberFieldProps & react8.RefAttributes<HTMLInputElement>>;
|
|
1832
1827
|
//#endregion
|
|
1833
1828
|
//#region src/utils/useRenderProps.d.ts
|
|
1834
|
-
interface StyleRenderProps<T
|
|
1829
|
+
interface StyleRenderProps<T> {
|
|
1835
1830
|
/** The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state. */
|
|
1836
|
-
className?: string | ((values: T
|
|
1831
|
+
className?: string | ((values: T & {
|
|
1837
1832
|
defaultClassName: string | undefined;
|
|
1838
1833
|
}) => string);
|
|
1839
1834
|
/** The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state. */
|
|
1840
|
-
style?: CSSProperties | ((values: T
|
|
1835
|
+
style?: CSSProperties | ((values: T & {
|
|
1841
1836
|
defaultStyle: CSSProperties;
|
|
1842
1837
|
}) => CSSProperties | undefined);
|
|
1843
1838
|
}
|
|
1844
|
-
interface RenderProps<T
|
|
1839
|
+
interface RenderProps<T> extends StyleRenderProps<T> {
|
|
1845
1840
|
/** The children of the component. A function may be provided to alter the children based on component state. */
|
|
1846
|
-
children?: ReactNode | ((values: T
|
|
1841
|
+
children?: ReactNode | ((values: T & {
|
|
1847
1842
|
defaultChildren: ReactNode | undefined;
|
|
1848
1843
|
}) => ReactNode);
|
|
1849
1844
|
}
|
|
@@ -1927,7 +1922,7 @@ declare const Underlay: ({
|
|
|
1927
1922
|
dismissable,
|
|
1928
1923
|
keyboardDismissable,
|
|
1929
1924
|
...rest
|
|
1930
|
-
}: UnderlayProps) =>
|
|
1925
|
+
}: UnderlayProps) => react_jsx_runtime5.JSX.Element;
|
|
1931
1926
|
//#endregion
|
|
1932
1927
|
//#region src/Pagination/Pagination.d.ts
|
|
1933
1928
|
interface PaginationProps {
|
|
@@ -1962,7 +1957,7 @@ declare const _Pagination: ({
|
|
|
1962
1957
|
totalItems,
|
|
1963
1958
|
pageSize,
|
|
1964
1959
|
...props
|
|
1965
|
-
}: PaginationProps) =>
|
|
1960
|
+
}: PaginationProps) => react_jsx_runtime5.JSX.Element;
|
|
1966
1961
|
//#endregion
|
|
1967
1962
|
//#region src/ProgressCircle/ProgressCircle.d.ts
|
|
1968
1963
|
interface ProgressCircleProps extends RAC.ProgressBarProps {
|
|
@@ -1976,19 +1971,19 @@ interface ProgressCircleProps extends RAC.ProgressBarProps {
|
|
|
1976
1971
|
declare const ProgressCircleSvg: ({
|
|
1977
1972
|
size,
|
|
1978
1973
|
variant
|
|
1979
|
-
}: ProgressCircleProps) =>
|
|
1974
|
+
}: ProgressCircleProps) => react_jsx_runtime5.JSX.Element;
|
|
1980
1975
|
declare const ProgressCircle: ({
|
|
1981
1976
|
size,
|
|
1982
1977
|
...props
|
|
1983
|
-
}: ProgressCircleProps) =>
|
|
1978
|
+
}: ProgressCircleProps) => react_jsx_runtime5.JSX.Element;
|
|
1984
1979
|
//#endregion
|
|
1985
1980
|
//#region src/Provider/MarigoldProvider.d.ts
|
|
1986
|
-
type MarigoldProviderProps<T
|
|
1987
|
-
declare function MarigoldProvider<T
|
|
1981
|
+
type MarigoldProviderProps<T extends Theme> = ThemeProviderProps<T>;
|
|
1982
|
+
declare function MarigoldProvider<T extends Theme>({
|
|
1988
1983
|
children,
|
|
1989
1984
|
className,
|
|
1990
1985
|
theme
|
|
1991
|
-
}: MarigoldProviderProps<T
|
|
1986
|
+
}: MarigoldProviderProps<T>): react_jsx_runtime5.JSX.Element;
|
|
1992
1987
|
//#endregion
|
|
1993
1988
|
//#region src/Provider/OverlayContainerProvider.d.ts
|
|
1994
1989
|
interface OverlayContainerProps extends PropsWithChildren {
|
|
@@ -2003,7 +1998,7 @@ interface OverlayContainerProps extends PropsWithChildren {
|
|
|
2003
1998
|
declare const OverlayContainerProvider: ({
|
|
2004
1999
|
container,
|
|
2005
2000
|
children
|
|
2006
|
-
}: OverlayContainerProps) =>
|
|
2001
|
+
}: OverlayContainerProps) => react_jsx_runtime5.JSX.Element;
|
|
2007
2002
|
//#endregion
|
|
2008
2003
|
//#region src/Radio/RadioGroup.d.ts
|
|
2009
2004
|
type RemovedProps$14 = 'className' | 'style' | 'isDisabled' | 'isInvalid' | 'isRequired' | 'isSelected';
|
|
@@ -2087,7 +2082,7 @@ declare const _RadioGroup: ({
|
|
|
2087
2082
|
width,
|
|
2088
2083
|
collapseAt,
|
|
2089
2084
|
...rest
|
|
2090
|
-
}: RadioGroupProps) =>
|
|
2085
|
+
}: RadioGroupProps) => react_jsx_runtime5.JSX.Element;
|
|
2091
2086
|
//#endregion
|
|
2092
2087
|
//#region src/Radio/Radio.d.ts
|
|
2093
2088
|
type RemovedProps$13 = 'className' | 'style' | 'children' | 'isDisabled';
|
|
@@ -2131,7 +2126,7 @@ declare const Scrollable: ({
|
|
|
2131
2126
|
width,
|
|
2132
2127
|
height,
|
|
2133
2128
|
...props
|
|
2134
|
-
}: ScrollableProps) =>
|
|
2129
|
+
}: ScrollableProps) => react_jsx_runtime5.JSX.Element;
|
|
2135
2130
|
//#endregion
|
|
2136
2131
|
//#region src/SearchField/SearchField.d.ts
|
|
2137
2132
|
type RemovedProps$12 = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'value' | 'defaultValue';
|
|
@@ -2207,22 +2202,22 @@ declare const icons: {
|
|
|
2207
2202
|
size,
|
|
2208
2203
|
className,
|
|
2209
2204
|
...props
|
|
2210
|
-
}: IconProps) =>
|
|
2205
|
+
}: IconProps) => react_jsx_runtime5.JSX.Element;
|
|
2211
2206
|
readonly info: ({
|
|
2212
2207
|
size,
|
|
2213
2208
|
className,
|
|
2214
2209
|
...props
|
|
2215
|
-
}: IconProps) =>
|
|
2210
|
+
}: IconProps) => react_jsx_runtime5.JSX.Element;
|
|
2216
2211
|
readonly warning: ({
|
|
2217
2212
|
size,
|
|
2218
2213
|
className,
|
|
2219
2214
|
...props
|
|
2220
|
-
}: IconProps) =>
|
|
2215
|
+
}: IconProps) => react_jsx_runtime5.JSX.Element;
|
|
2221
2216
|
readonly error: ({
|
|
2222
2217
|
size,
|
|
2223
2218
|
className,
|
|
2224
2219
|
...props
|
|
2225
|
-
}: IconProps) =>
|
|
2220
|
+
}: IconProps) => react_jsx_runtime5.JSX.Element;
|
|
2226
2221
|
};
|
|
2227
2222
|
interface SectionMessageProps {
|
|
2228
2223
|
variant?: keyof typeof icons;
|
|
@@ -2253,25 +2248,25 @@ declare const SectionMessage: {
|
|
|
2253
2248
|
close,
|
|
2254
2249
|
onCloseChange,
|
|
2255
2250
|
...props
|
|
2256
|
-
}: SectionMessageProps):
|
|
2251
|
+
}: SectionMessageProps): react_jsx_runtime5.JSX.Element | null;
|
|
2257
2252
|
Title: ({
|
|
2258
2253
|
children
|
|
2259
|
-
}: SectionMessageTitleProps) =>
|
|
2254
|
+
}: SectionMessageTitleProps) => react_jsx_runtime5.JSX.Element;
|
|
2260
2255
|
Content: ({
|
|
2261
2256
|
children
|
|
2262
|
-
}: SectionMessageContentProps) =>
|
|
2257
|
+
}: SectionMessageContentProps) => react_jsx_runtime5.JSX.Element;
|
|
2263
2258
|
};
|
|
2264
2259
|
//#endregion
|
|
2265
2260
|
//#region src/Select/Select.d.ts
|
|
2266
2261
|
type SelectionMode = 'single' | 'multiple';
|
|
2267
2262
|
type RemovedProps$11 = 'children' | 'isInvalid' | 'isDisabled' | 'isOpen' | 'isRequired' | 'style' | 'className';
|
|
2268
|
-
interface SelectProps<T
|
|
2263
|
+
interface SelectProps<T extends object, M extends SelectionMode = 'single'> extends Omit<RAC.SelectProps<T, M>, RemovedProps$11>, WidthProp {
|
|
2269
2264
|
variant?: string;
|
|
2270
2265
|
size?: string;
|
|
2271
2266
|
/**
|
|
2272
2267
|
* Children of the select.
|
|
2273
2268
|
*/
|
|
2274
|
-
children?: ReactNode | ((item: T
|
|
2269
|
+
children?: ReactNode | ((item: T) => ReactNode);
|
|
2275
2270
|
/**
|
|
2276
2271
|
* Set a label for the select.
|
|
2277
2272
|
*/
|
|
@@ -2287,7 +2282,7 @@ interface SelectProps<T$1 extends object, M$1 extends SelectionMode = 'single'>
|
|
|
2287
2282
|
/**
|
|
2288
2283
|
* Items of the select.
|
|
2289
2284
|
*/
|
|
2290
|
-
items?: Iterable<T
|
|
2285
|
+
items?: Iterable<T>;
|
|
2291
2286
|
/**
|
|
2292
2287
|
* If the select should be required.
|
|
2293
2288
|
*
|
|
@@ -2316,12 +2311,12 @@ interface SelectProps<T$1 extends object, M$1 extends SelectionMode = 'single'>
|
|
|
2316
2311
|
declare const Select: (<T extends object, M extends SelectionMode = "single">(props: SelectProps<T, M> & react8.RefAttributes<HTMLButtonElement>) => react8.ReactElement | null) & {
|
|
2317
2312
|
Option: ({
|
|
2318
2313
|
...props
|
|
2319
|
-
}: ListBoxItemProps) =>
|
|
2314
|
+
}: ListBoxItemProps) => react_jsx_runtime5.JSX.Element;
|
|
2320
2315
|
Section: ({
|
|
2321
2316
|
header,
|
|
2322
2317
|
children,
|
|
2323
2318
|
...props
|
|
2324
|
-
}: SectionProps) =>
|
|
2319
|
+
}: SectionProps) => react_jsx_runtime5.JSX.Element;
|
|
2325
2320
|
};
|
|
2326
2321
|
//#endregion
|
|
2327
2322
|
//#region src/SelectList/SelectListAction.d.ts
|
|
@@ -2330,7 +2325,7 @@ interface SelectListAction {
|
|
|
2330
2325
|
}
|
|
2331
2326
|
declare const SelectListAction: ({
|
|
2332
2327
|
children
|
|
2333
|
-
}: SelectListAction) =>
|
|
2328
|
+
}: SelectListAction) => react_jsx_runtime5.JSX.Element;
|
|
2334
2329
|
//#endregion
|
|
2335
2330
|
//#region src/SelectList/SelectListItem.d.ts
|
|
2336
2331
|
type RemovedProps$10 = 'className' | 'style' | 'isDisabled';
|
|
@@ -2362,7 +2357,7 @@ interface SelectListComponent extends ForwardRefExoticComponent<SelectListProps
|
|
|
2362
2357
|
declare const _SelectList: SelectListComponent;
|
|
2363
2358
|
//#endregion
|
|
2364
2359
|
//#region src/Slider/Slider.d.ts
|
|
2365
|
-
interface SliderProps<T
|
|
2360
|
+
interface SliderProps<T> extends Omit<RAC.SliderProps<T>, 'children' | 'isDisabled' | 'orientation'>, Pick<FieldBaseProps<'label'>, 'description'> {
|
|
2366
2361
|
variant?: string;
|
|
2367
2362
|
size?: string;
|
|
2368
2363
|
/**
|
|
@@ -2393,10 +2388,10 @@ interface SliderProps<T$1> extends Omit<RAC.SliderProps<T$1>, 'children' | 'isDi
|
|
|
2393
2388
|
declare const _Slider: react8.ForwardRefExoticComponent<SliderProps<number | number[]> & react8.RefAttributes<HTMLDivElement>>;
|
|
2394
2389
|
//#endregion
|
|
2395
2390
|
//#region src/Split/Split.d.ts
|
|
2396
|
-
declare const Split: () =>
|
|
2391
|
+
declare const Split: () => react_jsx_runtime5.JSX.Element;
|
|
2397
2392
|
//#endregion
|
|
2398
2393
|
//#region src/Stack/Stack.d.ts
|
|
2399
|
-
interface StackProps extends
|
|
2394
|
+
interface StackProps extends SpaceProp<'section' | 'fieldY' | 'container' | 'group'>, AriaRegionProps {
|
|
2400
2395
|
/**
|
|
2401
2396
|
* Children of the component.
|
|
2402
2397
|
*/
|
|
@@ -2408,6 +2403,7 @@ interface StackProps extends GapSpaceProp, AriaRegionProps {
|
|
|
2408
2403
|
stretch?: boolean;
|
|
2409
2404
|
/**
|
|
2410
2405
|
* Horizontal alignment for the children.
|
|
2406
|
+
* @default 'stretch'
|
|
2411
2407
|
*/
|
|
2412
2408
|
alignX?: keyof typeof alignment.vertical.alignmentX;
|
|
2413
2409
|
/**
|
|
@@ -2429,7 +2425,7 @@ declare const Stack: ({
|
|
|
2429
2425
|
alignY,
|
|
2430
2426
|
asList,
|
|
2431
2427
|
...props
|
|
2432
|
-
}: StackProps) =>
|
|
2428
|
+
}: StackProps) => react_jsx_runtime5.JSX.Element;
|
|
2433
2429
|
//#endregion
|
|
2434
2430
|
//#region src/Switch/Switch.d.ts
|
|
2435
2431
|
type RemovedProps$9 = 'children' | 'className' | 'isDisabled' | 'isReadOnly' | 'isSelected' | 'children' | 'slot';
|
|
@@ -2468,7 +2464,7 @@ interface TableProps extends Pick<AriaTableProps, 'focusMode' | 'onRowAction' |
|
|
|
2468
2464
|
variant?: 'grid' | 'default' | 'muted' | (string & {});
|
|
2469
2465
|
size?: string;
|
|
2470
2466
|
/**
|
|
2471
|
-
* Stretch table to fill the container.
|
|
2467
|
+
* Stretch the table to fill the container.
|
|
2472
2468
|
* @default false
|
|
2473
2469
|
*/
|
|
2474
2470
|
stretch?: boolean;
|
|
@@ -2542,13 +2538,13 @@ declare const _Tabs: {
|
|
|
2542
2538
|
variant,
|
|
2543
2539
|
size,
|
|
2544
2540
|
...rest
|
|
2545
|
-
}: TabsProps):
|
|
2541
|
+
}: TabsProps): react_jsx_runtime5.JSX.Element;
|
|
2546
2542
|
List: ({
|
|
2547
2543
|
space,
|
|
2548
2544
|
...props
|
|
2549
|
-
}: TabListProps) =>
|
|
2550
|
-
TabPanel: (props: TabPanelProps) =>
|
|
2551
|
-
Item: (props: TabProps) =>
|
|
2545
|
+
}: TabListProps) => react_jsx_runtime5.JSX.Element;
|
|
2546
|
+
TabPanel: (props: TabPanelProps) => react_jsx_runtime5.JSX.Element;
|
|
2547
|
+
Item: (props: TabProps) => react_jsx_runtime5.JSX.Element;
|
|
2552
2548
|
};
|
|
2553
2549
|
//#endregion
|
|
2554
2550
|
//#region src/TagGroup/TagGroup.d.ts
|
|
@@ -2584,7 +2580,7 @@ declare const _TagGroup: ({
|
|
|
2584
2580
|
name,
|
|
2585
2581
|
removeAll,
|
|
2586
2582
|
...rest
|
|
2587
|
-
}: TagGroupProps) =>
|
|
2583
|
+
}: TagGroupProps) => react_jsx_runtime5.JSX.Element;
|
|
2588
2584
|
//#endregion
|
|
2589
2585
|
//#region src/TagGroup/Tag.d.ts
|
|
2590
2586
|
type RemovedProps$7 = 'className' | 'style' | 'isDisabled';
|
|
@@ -2601,7 +2597,7 @@ declare const _Tag: {
|
|
|
2601
2597
|
children,
|
|
2602
2598
|
disabled,
|
|
2603
2599
|
...rest
|
|
2604
|
-
}: TagProps):
|
|
2600
|
+
}: TagProps): react_jsx_runtime5.JSX.Element;
|
|
2605
2601
|
Group: ({
|
|
2606
2602
|
items,
|
|
2607
2603
|
children,
|
|
@@ -2611,7 +2607,7 @@ declare const _Tag: {
|
|
|
2611
2607
|
name,
|
|
2612
2608
|
removeAll,
|
|
2613
2609
|
...rest
|
|
2614
|
-
}: TagGroupProps) =>
|
|
2610
|
+
}: TagGroupProps) => react_jsx_runtime5.JSX.Element;
|
|
2615
2611
|
};
|
|
2616
2612
|
//#endregion
|
|
2617
2613
|
//#region src/Text/Text.d.ts
|
|
@@ -2652,7 +2648,7 @@ declare const _Text: ({
|
|
|
2652
2648
|
children,
|
|
2653
2649
|
as,
|
|
2654
2650
|
...props
|
|
2655
|
-
}: TextProps) =>
|
|
2651
|
+
}: TextProps) => react_jsx_runtime5.JSX.Element;
|
|
2656
2652
|
//#endregion
|
|
2657
2653
|
//#region src/TextArea/TextArea.d.ts
|
|
2658
2654
|
type RemovedProps$5 = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'value' | 'defaultValue';
|
|
@@ -2794,7 +2790,7 @@ declare const Tiles: ({
|
|
|
2794
2790
|
tilesWidth,
|
|
2795
2791
|
children,
|
|
2796
2792
|
...props
|
|
2797
|
-
}: TilesProps) =>
|
|
2793
|
+
}: TilesProps) => react_jsx_runtime5.JSX.Element;
|
|
2798
2794
|
//#endregion
|
|
2799
2795
|
//#region src/TimeField/TimeField.d.ts
|
|
2800
2796
|
type RemovedProps$3 = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'slot';
|
|
@@ -2859,7 +2855,7 @@ interface ToastProps {
|
|
|
2859
2855
|
}
|
|
2860
2856
|
declare const Toast: ({
|
|
2861
2857
|
toast
|
|
2862
|
-
}: ToastProps) =>
|
|
2858
|
+
}: ToastProps) => react_jsx_runtime5.JSX.Element;
|
|
2863
2859
|
//#endregion
|
|
2864
2860
|
//#region src/Toast/ToastProvider.d.ts
|
|
2865
2861
|
interface ToastProviderProps extends Omit<RAC.ToastRegionProps<object>, RemovedProps$2> {
|
|
@@ -2869,7 +2865,7 @@ type RemovedProps$2 = 'children' | 'className' | 'style' | 'queue';
|
|
|
2869
2865
|
type ToastPosition = 'bottom-left' | 'bottom-right' | 'top-left' | 'top-right' | 'top' | 'bottom';
|
|
2870
2866
|
declare const ToastProvider: ({
|
|
2871
2867
|
position
|
|
2872
|
-
}: ToastProviderProps) =>
|
|
2868
|
+
}: ToastProviderProps) => react_jsx_runtime5.JSX.Element;
|
|
2873
2869
|
//#endregion
|
|
2874
2870
|
//#region src/Toast/ToastQueue.d.ts
|
|
2875
2871
|
declare function useToast(): {
|
|
@@ -2922,14 +2918,14 @@ declare const _Tooltip: {
|
|
|
2922
2918
|
size,
|
|
2923
2919
|
open,
|
|
2924
2920
|
...rest
|
|
2925
|
-
}: TooltipProps):
|
|
2921
|
+
}: TooltipProps): react_jsx_runtime5.JSX.Element;
|
|
2926
2922
|
Trigger: ({
|
|
2927
2923
|
delay,
|
|
2928
2924
|
children,
|
|
2929
2925
|
disabled,
|
|
2930
2926
|
open,
|
|
2931
2927
|
...rest
|
|
2932
|
-
}: TooltipTriggerProps) =>
|
|
2928
|
+
}: TooltipTriggerProps) => react_jsx_runtime5.JSX.Element;
|
|
2933
2929
|
};
|
|
2934
2930
|
//#endregion
|
|
2935
2931
|
//#region src/Loader/BaseLoader.d.ts
|
|
@@ -2961,7 +2957,7 @@ declare const Loader: ({
|
|
|
2961
2957
|
mode,
|
|
2962
2958
|
variant,
|
|
2963
2959
|
...props
|
|
2964
|
-
}: LoaderProps) =>
|
|
2960
|
+
}: LoaderProps) => react_jsx_runtime5.JSX.Element;
|
|
2965
2961
|
//#endregion
|
|
2966
2962
|
//#region src/utils/form.utils.d.ts
|
|
2967
2963
|
/**
|