@marigold/components 6.9.1 → 6.10.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.mts +49 -23
- package/dist/index.d.ts +49 -23
- package/dist/index.js +224 -223
- package/dist/index.mjs +278 -276
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -24,7 +24,6 @@ import { AriaTableProps } from '@react-aria/table';
|
|
|
24
24
|
import { TableStateProps, RowProps as RowProps$1, TableBody, Cell, TableHeader, ColumnProps as ColumnProps$1 } from '@react-stately/table';
|
|
25
25
|
import { AriaTagGroupProps } from '@react-aria/tag';
|
|
26
26
|
export { VisuallyHidden } from '@react-aria/visually-hidden';
|
|
27
|
-
import { AriaTabListProps } from '@react-types/tabs';
|
|
28
27
|
|
|
29
28
|
interface AccordionProps extends Omit<AriaAccordionProps<object>, 'children' | 'expandedKeys' | 'disabledKeys' | 'onExpandedChange'> {
|
|
30
29
|
children: ItemElement<object>[] | ItemElement<object>;
|
|
@@ -133,8 +132,8 @@ interface BodyProps extends Omit<HtmlProps<'section'>, 'className'> {
|
|
|
133
132
|
}
|
|
134
133
|
declare const Body: ({ children, variant, size, ...props }: BodyProps) => react_jsx_runtime.JSX.Element;
|
|
135
134
|
|
|
136
|
-
type RemovedProps$
|
|
137
|
-
interface ButtonProps extends Omit<RAC.ButtonProps, RemovedProps$
|
|
135
|
+
type RemovedProps$d = 'isDisabled';
|
|
136
|
+
interface ButtonProps extends Omit<RAC.ButtonProps, RemovedProps$d> {
|
|
138
137
|
variant?: string;
|
|
139
138
|
size?: string;
|
|
140
139
|
fullWidth?: boolean;
|
|
@@ -186,8 +185,8 @@ interface FieldBaseProps$1<T extends ElementType> extends WidthProp, Pick<HelpTe
|
|
|
186
185
|
children?: ReactNode;
|
|
187
186
|
}
|
|
188
187
|
|
|
189
|
-
type RemovedProps$
|
|
190
|
-
interface CheckboxGroupProps extends Omit<RAC.CheckboxGroupProps, RemovedProps$
|
|
188
|
+
type RemovedProps$c = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly';
|
|
189
|
+
interface CheckboxGroupProps extends Omit<RAC.CheckboxGroupProps, RemovedProps$c>, Pick<FieldBaseProps$1<'label'>, 'label' | 'description' | 'errorMessage'> {
|
|
191
190
|
children?: ReactNode;
|
|
192
191
|
variant?: string;
|
|
193
192
|
size?: string;
|
|
@@ -232,8 +231,8 @@ interface DialogTriggerProps extends Omit<RAC.DialogTriggerProps, 'isOpen'> {
|
|
|
232
231
|
keyboardDismissable?: boolean;
|
|
233
232
|
}
|
|
234
233
|
|
|
235
|
-
type RemovedProps$
|
|
236
|
-
interface HeadlineProps extends Omit<RAC.HeadingProps, RemovedProps$
|
|
234
|
+
type RemovedProps$b = 'className' | 'level';
|
|
235
|
+
interface HeadlineProps extends Omit<RAC.HeadingProps, RemovedProps$b>, TextAlignProp {
|
|
237
236
|
color?: string;
|
|
238
237
|
variant?: string;
|
|
239
238
|
size?: string;
|
|
@@ -260,8 +259,8 @@ interface DividerProps extends RAC.SeparatorProps {
|
|
|
260
259
|
}
|
|
261
260
|
declare const _Divider: ({ variant, ...props }: DividerProps) => react_jsx_runtime.JSX.Element;
|
|
262
261
|
|
|
263
|
-
type RemovedProps$
|
|
264
|
-
interface LabelProps extends Omit<RAC.LabelProps, RemovedProps$
|
|
262
|
+
type RemovedProps$a = 'className';
|
|
263
|
+
interface LabelProps extends Omit<RAC.LabelProps, RemovedProps$a> {
|
|
265
264
|
size?: string;
|
|
266
265
|
variant?: string;
|
|
267
266
|
}
|
|
@@ -396,8 +395,8 @@ type InsetProps = {
|
|
|
396
395
|
};
|
|
397
396
|
declare const Inset: ({ space, spaceX, spaceY, children }: InsetProps) => react_jsx_runtime.JSX.Element;
|
|
398
397
|
|
|
399
|
-
type RemovedProps$
|
|
400
|
-
interface LinkProps extends Omit<RAC.LinkProps, RemovedProps$
|
|
398
|
+
type RemovedProps$9 = 'className' | 'isDisabled';
|
|
399
|
+
interface LinkProps extends Omit<RAC.LinkProps, RemovedProps$9> {
|
|
401
400
|
variant?: string;
|
|
402
401
|
size?: string;
|
|
403
402
|
disabled?: RAC.LinkProps['isDisabled'];
|
|
@@ -456,8 +455,8 @@ interface MessageProps extends Omit<HtmlProps<'div'>, 'className'> {
|
|
|
456
455
|
}
|
|
457
456
|
declare const Message: ({ messageTitle, variant, size, children, ...props }: MessageProps) => react_jsx_runtime.JSX.Element;
|
|
458
457
|
|
|
459
|
-
type RemovedProps$
|
|
460
|
-
interface NumberFieldProps extends Omit<RAC.NumberFieldProps, RemovedProps$
|
|
458
|
+
type RemovedProps$8 = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'size';
|
|
459
|
+
interface NumberFieldProps extends Omit<RAC.NumberFieldProps, RemovedProps$8>, Pick<FieldBaseProps$1<'label'>, 'label' | 'description' | 'errorMessage'> {
|
|
461
460
|
variant?: string;
|
|
462
461
|
size?: string;
|
|
463
462
|
width?: WidthProp['width'];
|
|
@@ -512,8 +511,8 @@ interface MarigoldProviderProps<T extends Theme> extends ThemeProviderProps<T> {
|
|
|
512
511
|
}
|
|
513
512
|
declare function MarigoldProvider<T extends Theme>({ children, theme, }: MarigoldProviderProps<T>): react_jsx_runtime.JSX.Element;
|
|
514
513
|
|
|
515
|
-
type RemovedProps$
|
|
516
|
-
interface RadioGroupProps extends Omit<RAC.RadioGroupProps, RemovedProps$
|
|
514
|
+
type RemovedProps$7 = 'className' | 'style' | 'isDisabled' | 'isInvalid' | 'isRequired' | 'isSelected';
|
|
515
|
+
interface RadioGroupProps extends Omit<RAC.RadioGroupProps, RemovedProps$7> {
|
|
517
516
|
variant?: string;
|
|
518
517
|
size?: string;
|
|
519
518
|
label?: string;
|
|
@@ -529,8 +528,8 @@ interface RadioGroupProps extends Omit<RAC.RadioGroupProps, RemovedProps$6> {
|
|
|
529
528
|
}
|
|
530
529
|
declare const _RadioGroup: ({ variant, size, label, error, disabled, required, readOnly, description, errorMessage, orientation, children, width, ...rest }: RadioGroupProps) => react_jsx_runtime.JSX.Element;
|
|
531
530
|
|
|
532
|
-
type RemovedProps$
|
|
533
|
-
interface RadioProps extends Omit<RAC.RadioProps, RemovedProps$
|
|
531
|
+
type RemovedProps$6 = 'className' | 'style' | 'children' | 'isDisabled';
|
|
532
|
+
interface RadioProps extends Omit<RAC.RadioProps, RemovedProps$6> {
|
|
534
533
|
variant?: string;
|
|
535
534
|
size?: string;
|
|
536
535
|
width?: string;
|
|
@@ -547,6 +546,22 @@ interface RadioComponent extends ForwardRefExoticComponent<RadioProps & RefAttri
|
|
|
547
546
|
Group: typeof _RadioGroup;
|
|
548
547
|
}
|
|
549
548
|
|
|
549
|
+
type RemovedProps$5 = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'value' | 'defaultValue';
|
|
550
|
+
interface SearchFieldProps extends Omit<RAC.SearchFieldProps, RemovedProps$5>, Pick<FieldBaseProps$1<'label'>, 'label' | 'description' | 'errorMessage'> {
|
|
551
|
+
icon?: ReactElement;
|
|
552
|
+
action?: ReactElement;
|
|
553
|
+
variant?: string;
|
|
554
|
+
size?: string;
|
|
555
|
+
width?: WidthProp['width'];
|
|
556
|
+
error?: RAC.SearchFieldProps['isInvalid'];
|
|
557
|
+
disabled?: RAC.SearchFieldProps['isDisabled'];
|
|
558
|
+
required?: RAC.SearchFieldProps['isRequired'];
|
|
559
|
+
readOnly?: RAC.SearchFieldProps['isReadOnly'];
|
|
560
|
+
value?: string;
|
|
561
|
+
defaultValue?: string;
|
|
562
|
+
}
|
|
563
|
+
declare const _SearchField: react.ForwardRefExoticComponent<SearchFieldProps & react.RefAttributes<HTMLInputElement>>;
|
|
564
|
+
|
|
550
565
|
interface SelectProps extends Omit<AriaSelectProps<object>, 'autoComplete' | 'isOpen' | 'isLoading' | 'onLoadMore' | 'isDisabled' | 'isRequired' | 'validationState' | 'onSelectionChange'>, Omit<HtmlProps<'select'>, 'onKeyUp' | 'onKeyDown' | 'onFocus' | 'onBlur' | 'children' | 'size' | 'onChange' | 'className'> {
|
|
551
566
|
variant?: string;
|
|
552
567
|
size?: string;
|
|
@@ -707,14 +722,25 @@ interface TagComponent extends ItemComponent {
|
|
|
707
722
|
|
|
708
723
|
declare const XLoader: react.ForwardRefExoticComponent<SVGProps & react.RefAttributes<SVGElement>>;
|
|
709
724
|
|
|
710
|
-
interface
|
|
711
|
-
|
|
725
|
+
interface TabProps extends Omit<RAC.TabProps, 'className' | 'style'> {
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
interface TabPanelProps extends Omit<RAC.TabPanelProps, 'className' | 'style'> {
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
interface TabListProps extends Omit<RAC.TabListProps<Object>, 'className' | 'style'>, GapSpaceProp {
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
interface TabsProps extends Omit<RAC.TabsProps, 'className' | 'style' | 'isDisabled' | 'orientation'> {
|
|
712
735
|
disabled?: boolean;
|
|
736
|
+
size?: 'small' | 'medium' | 'large';
|
|
713
737
|
variant?: string;
|
|
714
738
|
}
|
|
715
|
-
declare const
|
|
716
|
-
({
|
|
717
|
-
|
|
739
|
+
declare const _Tabs: {
|
|
740
|
+
({ disabled, variant, size, ...rest }: TabsProps): react_jsx_runtime.JSX.Element;
|
|
741
|
+
List: ({ space, ...props }: TabListProps) => react_jsx_runtime.JSX.Element;
|
|
742
|
+
TabPanel: (props: TabPanelProps) => react_jsx_runtime.JSX.Element;
|
|
743
|
+
Item: (props: TabProps) => react_jsx_runtime.JSX.Element;
|
|
718
744
|
};
|
|
719
745
|
|
|
720
|
-
export { Accordion, AccordionItem, AccordionItemProps, AccordionOwnItemProps, AccordionProps, ActionMenu, Aside, AsideProps, Aspect, AspectProps, Autocomplete, AutocompleteProps, Badge, BadgeProps, Body, BodyProps, Breakout, BreakoutProps, _Button as Button, ButtonProps, Calendar, CalendarCell, CalendarCellProps, CalendarGrid, CalendarGridProps, CalendarProps, Card, CardProps, Center, CenterProps, _Checkbox as Checkbox, _CheckboxGroup as CheckboxGroup, CheckboxGroupProps, CheckboxProps, Columns, ColumnsProps, ComboBox, ComboBoxProps, Container, ContainerProps, CustomCheckboxProps, DateField, DateFieldProps, DatePicker, DatePickerProps, _Dialog as Dialog, DialogProps, _Divider as Divider, DividerProps, FieldBase, FieldBaseProps, FieldGroup, FieldGroupContext, FieldGroupContextProps, FieldGroupProps, Footer, FooterProps, _Header as Header, HeaderProps, _Headline as Headline, HeadlineProps, Image, ImageProps, Inline, InlineProps, Input, InputOwnProps, InputProps, Inset, InsetProps, _Label as Label, LabelProps, _Link as Link, LinkProps, List, ListProps, MarigoldProvider, MarigoldProviderProps, Menu, MenuProps, Message, MessageProps, _Modal as Modal, ModalProps, _NumberField as NumberField, NumberFieldProps, Overlay, OverlayProps, Popover, PopoverProps, _Radio as Radio, RadioComponent, _RadioGroup as RadioGroup, RadioGroupProps, RadioProps, RowProps, Select, SelectComponent, SelectProps, _Slider as Slider, SliderProps, Split, SplitProps, Stack, StackProps, _Switch as Switch, SwitchProps, Table, TableProps, Tabs, Tag, TagComponent, Text, _TextArea as TextArea, TextAreaProps, _TextField as TextField, TextFieldProps, TextProps, Tiles, TilesProps, _Tooltip as Tooltip, TooltipProps, Tray, TrayProps, TrayWrapper, Underlay, UnderlayProps, XLoader,
|
|
746
|
+
export { Accordion, AccordionItem, AccordionItemProps, AccordionOwnItemProps, AccordionProps, ActionMenu, Aside, AsideProps, Aspect, AspectProps, Autocomplete, AutocompleteProps, Badge, BadgeProps, Body, BodyProps, Breakout, BreakoutProps, _Button as Button, ButtonProps, Calendar, CalendarCell, CalendarCellProps, CalendarGrid, CalendarGridProps, CalendarProps, Card, CardProps, Center, CenterProps, _Checkbox as Checkbox, _CheckboxGroup as CheckboxGroup, CheckboxGroupProps, CheckboxProps, Columns, ColumnsProps, ComboBox, ComboBoxProps, Container, ContainerProps, CustomCheckboxProps, DateField, DateFieldProps, DatePicker, DatePickerProps, _Dialog as Dialog, DialogProps, _Divider as Divider, DividerProps, FieldBase, FieldBaseProps, FieldGroup, FieldGroupContext, FieldGroupContextProps, FieldGroupProps, Footer, FooterProps, _Header as Header, HeaderProps, _Headline as Headline, HeadlineProps, Image, ImageProps, Inline, InlineProps, Input, InputOwnProps, InputProps, Inset, InsetProps, _Label as Label, LabelProps, _Link as Link, LinkProps, List, ListProps, MarigoldProvider, MarigoldProviderProps, Menu, MenuProps, Message, MessageProps, _Modal as Modal, ModalProps, _NumberField as NumberField, NumberFieldProps, Overlay, OverlayProps, Popover, PopoverProps, _Radio as Radio, RadioComponent, _RadioGroup as RadioGroup, RadioGroupProps, RadioProps, RowProps, _SearchField as SearchField, SearchFieldProps, Select, SelectComponent, SelectProps, _Slider as Slider, SliderProps, Split, SplitProps, Stack, StackProps, _Switch as Switch, SwitchProps, Table, TableProps, _Tabs as Tabs, TabsProps, Tag, TagComponent, Text, _TextArea as TextArea, TextAreaProps, _TextField as TextField, TextFieldProps, TextProps, Tiles, TilesProps, _Tooltip as Tooltip, TooltipProps, Tray, TrayProps, TrayWrapper, Underlay, UnderlayProps, XLoader, useFieldGroupContext };
|
package/dist/index.d.ts
CHANGED
|
@@ -24,7 +24,6 @@ import { AriaTableProps } from '@react-aria/table';
|
|
|
24
24
|
import { TableStateProps, RowProps as RowProps$1, TableBody, Cell, TableHeader, ColumnProps as ColumnProps$1 } from '@react-stately/table';
|
|
25
25
|
import { AriaTagGroupProps } from '@react-aria/tag';
|
|
26
26
|
export { VisuallyHidden } from '@react-aria/visually-hidden';
|
|
27
|
-
import { AriaTabListProps } from '@react-types/tabs';
|
|
28
27
|
|
|
29
28
|
interface AccordionProps extends Omit<AriaAccordionProps<object>, 'children' | 'expandedKeys' | 'disabledKeys' | 'onExpandedChange'> {
|
|
30
29
|
children: ItemElement<object>[] | ItemElement<object>;
|
|
@@ -133,8 +132,8 @@ interface BodyProps extends Omit<HtmlProps<'section'>, 'className'> {
|
|
|
133
132
|
}
|
|
134
133
|
declare const Body: ({ children, variant, size, ...props }: BodyProps) => react_jsx_runtime.JSX.Element;
|
|
135
134
|
|
|
136
|
-
type RemovedProps$
|
|
137
|
-
interface ButtonProps extends Omit<RAC.ButtonProps, RemovedProps$
|
|
135
|
+
type RemovedProps$d = 'isDisabled';
|
|
136
|
+
interface ButtonProps extends Omit<RAC.ButtonProps, RemovedProps$d> {
|
|
138
137
|
variant?: string;
|
|
139
138
|
size?: string;
|
|
140
139
|
fullWidth?: boolean;
|
|
@@ -186,8 +185,8 @@ interface FieldBaseProps$1<T extends ElementType> extends WidthProp, Pick<HelpTe
|
|
|
186
185
|
children?: ReactNode;
|
|
187
186
|
}
|
|
188
187
|
|
|
189
|
-
type RemovedProps$
|
|
190
|
-
interface CheckboxGroupProps extends Omit<RAC.CheckboxGroupProps, RemovedProps$
|
|
188
|
+
type RemovedProps$c = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly';
|
|
189
|
+
interface CheckboxGroupProps extends Omit<RAC.CheckboxGroupProps, RemovedProps$c>, Pick<FieldBaseProps$1<'label'>, 'label' | 'description' | 'errorMessage'> {
|
|
191
190
|
children?: ReactNode;
|
|
192
191
|
variant?: string;
|
|
193
192
|
size?: string;
|
|
@@ -232,8 +231,8 @@ interface DialogTriggerProps extends Omit<RAC.DialogTriggerProps, 'isOpen'> {
|
|
|
232
231
|
keyboardDismissable?: boolean;
|
|
233
232
|
}
|
|
234
233
|
|
|
235
|
-
type RemovedProps$
|
|
236
|
-
interface HeadlineProps extends Omit<RAC.HeadingProps, RemovedProps$
|
|
234
|
+
type RemovedProps$b = 'className' | 'level';
|
|
235
|
+
interface HeadlineProps extends Omit<RAC.HeadingProps, RemovedProps$b>, TextAlignProp {
|
|
237
236
|
color?: string;
|
|
238
237
|
variant?: string;
|
|
239
238
|
size?: string;
|
|
@@ -260,8 +259,8 @@ interface DividerProps extends RAC.SeparatorProps {
|
|
|
260
259
|
}
|
|
261
260
|
declare const _Divider: ({ variant, ...props }: DividerProps) => react_jsx_runtime.JSX.Element;
|
|
262
261
|
|
|
263
|
-
type RemovedProps$
|
|
264
|
-
interface LabelProps extends Omit<RAC.LabelProps, RemovedProps$
|
|
262
|
+
type RemovedProps$a = 'className';
|
|
263
|
+
interface LabelProps extends Omit<RAC.LabelProps, RemovedProps$a> {
|
|
265
264
|
size?: string;
|
|
266
265
|
variant?: string;
|
|
267
266
|
}
|
|
@@ -396,8 +395,8 @@ type InsetProps = {
|
|
|
396
395
|
};
|
|
397
396
|
declare const Inset: ({ space, spaceX, spaceY, children }: InsetProps) => react_jsx_runtime.JSX.Element;
|
|
398
397
|
|
|
399
|
-
type RemovedProps$
|
|
400
|
-
interface LinkProps extends Omit<RAC.LinkProps, RemovedProps$
|
|
398
|
+
type RemovedProps$9 = 'className' | 'isDisabled';
|
|
399
|
+
interface LinkProps extends Omit<RAC.LinkProps, RemovedProps$9> {
|
|
401
400
|
variant?: string;
|
|
402
401
|
size?: string;
|
|
403
402
|
disabled?: RAC.LinkProps['isDisabled'];
|
|
@@ -456,8 +455,8 @@ interface MessageProps extends Omit<HtmlProps<'div'>, 'className'> {
|
|
|
456
455
|
}
|
|
457
456
|
declare const Message: ({ messageTitle, variant, size, children, ...props }: MessageProps) => react_jsx_runtime.JSX.Element;
|
|
458
457
|
|
|
459
|
-
type RemovedProps$
|
|
460
|
-
interface NumberFieldProps extends Omit<RAC.NumberFieldProps, RemovedProps$
|
|
458
|
+
type RemovedProps$8 = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'size';
|
|
459
|
+
interface NumberFieldProps extends Omit<RAC.NumberFieldProps, RemovedProps$8>, Pick<FieldBaseProps$1<'label'>, 'label' | 'description' | 'errorMessage'> {
|
|
461
460
|
variant?: string;
|
|
462
461
|
size?: string;
|
|
463
462
|
width?: WidthProp['width'];
|
|
@@ -512,8 +511,8 @@ interface MarigoldProviderProps<T extends Theme> extends ThemeProviderProps<T> {
|
|
|
512
511
|
}
|
|
513
512
|
declare function MarigoldProvider<T extends Theme>({ children, theme, }: MarigoldProviderProps<T>): react_jsx_runtime.JSX.Element;
|
|
514
513
|
|
|
515
|
-
type RemovedProps$
|
|
516
|
-
interface RadioGroupProps extends Omit<RAC.RadioGroupProps, RemovedProps$
|
|
514
|
+
type RemovedProps$7 = 'className' | 'style' | 'isDisabled' | 'isInvalid' | 'isRequired' | 'isSelected';
|
|
515
|
+
interface RadioGroupProps extends Omit<RAC.RadioGroupProps, RemovedProps$7> {
|
|
517
516
|
variant?: string;
|
|
518
517
|
size?: string;
|
|
519
518
|
label?: string;
|
|
@@ -529,8 +528,8 @@ interface RadioGroupProps extends Omit<RAC.RadioGroupProps, RemovedProps$6> {
|
|
|
529
528
|
}
|
|
530
529
|
declare const _RadioGroup: ({ variant, size, label, error, disabled, required, readOnly, description, errorMessage, orientation, children, width, ...rest }: RadioGroupProps) => react_jsx_runtime.JSX.Element;
|
|
531
530
|
|
|
532
|
-
type RemovedProps$
|
|
533
|
-
interface RadioProps extends Omit<RAC.RadioProps, RemovedProps$
|
|
531
|
+
type RemovedProps$6 = 'className' | 'style' | 'children' | 'isDisabled';
|
|
532
|
+
interface RadioProps extends Omit<RAC.RadioProps, RemovedProps$6> {
|
|
534
533
|
variant?: string;
|
|
535
534
|
size?: string;
|
|
536
535
|
width?: string;
|
|
@@ -547,6 +546,22 @@ interface RadioComponent extends ForwardRefExoticComponent<RadioProps & RefAttri
|
|
|
547
546
|
Group: typeof _RadioGroup;
|
|
548
547
|
}
|
|
549
548
|
|
|
549
|
+
type RemovedProps$5 = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'value' | 'defaultValue';
|
|
550
|
+
interface SearchFieldProps extends Omit<RAC.SearchFieldProps, RemovedProps$5>, Pick<FieldBaseProps$1<'label'>, 'label' | 'description' | 'errorMessage'> {
|
|
551
|
+
icon?: ReactElement;
|
|
552
|
+
action?: ReactElement;
|
|
553
|
+
variant?: string;
|
|
554
|
+
size?: string;
|
|
555
|
+
width?: WidthProp['width'];
|
|
556
|
+
error?: RAC.SearchFieldProps['isInvalid'];
|
|
557
|
+
disabled?: RAC.SearchFieldProps['isDisabled'];
|
|
558
|
+
required?: RAC.SearchFieldProps['isRequired'];
|
|
559
|
+
readOnly?: RAC.SearchFieldProps['isReadOnly'];
|
|
560
|
+
value?: string;
|
|
561
|
+
defaultValue?: string;
|
|
562
|
+
}
|
|
563
|
+
declare const _SearchField: react.ForwardRefExoticComponent<SearchFieldProps & react.RefAttributes<HTMLInputElement>>;
|
|
564
|
+
|
|
550
565
|
interface SelectProps extends Omit<AriaSelectProps<object>, 'autoComplete' | 'isOpen' | 'isLoading' | 'onLoadMore' | 'isDisabled' | 'isRequired' | 'validationState' | 'onSelectionChange'>, Omit<HtmlProps<'select'>, 'onKeyUp' | 'onKeyDown' | 'onFocus' | 'onBlur' | 'children' | 'size' | 'onChange' | 'className'> {
|
|
551
566
|
variant?: string;
|
|
552
567
|
size?: string;
|
|
@@ -707,14 +722,25 @@ interface TagComponent extends ItemComponent {
|
|
|
707
722
|
|
|
708
723
|
declare const XLoader: react.ForwardRefExoticComponent<SVGProps & react.RefAttributes<SVGElement>>;
|
|
709
724
|
|
|
710
|
-
interface
|
|
711
|
-
|
|
725
|
+
interface TabProps extends Omit<RAC.TabProps, 'className' | 'style'> {
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
interface TabPanelProps extends Omit<RAC.TabPanelProps, 'className' | 'style'> {
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
interface TabListProps extends Omit<RAC.TabListProps<Object>, 'className' | 'style'>, GapSpaceProp {
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
interface TabsProps extends Omit<RAC.TabsProps, 'className' | 'style' | 'isDisabled' | 'orientation'> {
|
|
712
735
|
disabled?: boolean;
|
|
736
|
+
size?: 'small' | 'medium' | 'large';
|
|
713
737
|
variant?: string;
|
|
714
738
|
}
|
|
715
|
-
declare const
|
|
716
|
-
({
|
|
717
|
-
|
|
739
|
+
declare const _Tabs: {
|
|
740
|
+
({ disabled, variant, size, ...rest }: TabsProps): react_jsx_runtime.JSX.Element;
|
|
741
|
+
List: ({ space, ...props }: TabListProps) => react_jsx_runtime.JSX.Element;
|
|
742
|
+
TabPanel: (props: TabPanelProps) => react_jsx_runtime.JSX.Element;
|
|
743
|
+
Item: (props: TabProps) => react_jsx_runtime.JSX.Element;
|
|
718
744
|
};
|
|
719
745
|
|
|
720
|
-
export { Accordion, AccordionItem, AccordionItemProps, AccordionOwnItemProps, AccordionProps, ActionMenu, Aside, AsideProps, Aspect, AspectProps, Autocomplete, AutocompleteProps, Badge, BadgeProps, Body, BodyProps, Breakout, BreakoutProps, _Button as Button, ButtonProps, Calendar, CalendarCell, CalendarCellProps, CalendarGrid, CalendarGridProps, CalendarProps, Card, CardProps, Center, CenterProps, _Checkbox as Checkbox, _CheckboxGroup as CheckboxGroup, CheckboxGroupProps, CheckboxProps, Columns, ColumnsProps, ComboBox, ComboBoxProps, Container, ContainerProps, CustomCheckboxProps, DateField, DateFieldProps, DatePicker, DatePickerProps, _Dialog as Dialog, DialogProps, _Divider as Divider, DividerProps, FieldBase, FieldBaseProps, FieldGroup, FieldGroupContext, FieldGroupContextProps, FieldGroupProps, Footer, FooterProps, _Header as Header, HeaderProps, _Headline as Headline, HeadlineProps, Image, ImageProps, Inline, InlineProps, Input, InputOwnProps, InputProps, Inset, InsetProps, _Label as Label, LabelProps, _Link as Link, LinkProps, List, ListProps, MarigoldProvider, MarigoldProviderProps, Menu, MenuProps, Message, MessageProps, _Modal as Modal, ModalProps, _NumberField as NumberField, NumberFieldProps, Overlay, OverlayProps, Popover, PopoverProps, _Radio as Radio, RadioComponent, _RadioGroup as RadioGroup, RadioGroupProps, RadioProps, RowProps, Select, SelectComponent, SelectProps, _Slider as Slider, SliderProps, Split, SplitProps, Stack, StackProps, _Switch as Switch, SwitchProps, Table, TableProps, Tabs, Tag, TagComponent, Text, _TextArea as TextArea, TextAreaProps, _TextField as TextField, TextFieldProps, TextProps, Tiles, TilesProps, _Tooltip as Tooltip, TooltipProps, Tray, TrayProps, TrayWrapper, Underlay, UnderlayProps, XLoader,
|
|
746
|
+
export { Accordion, AccordionItem, AccordionItemProps, AccordionOwnItemProps, AccordionProps, ActionMenu, Aside, AsideProps, Aspect, AspectProps, Autocomplete, AutocompleteProps, Badge, BadgeProps, Body, BodyProps, Breakout, BreakoutProps, _Button as Button, ButtonProps, Calendar, CalendarCell, CalendarCellProps, CalendarGrid, CalendarGridProps, CalendarProps, Card, CardProps, Center, CenterProps, _Checkbox as Checkbox, _CheckboxGroup as CheckboxGroup, CheckboxGroupProps, CheckboxProps, Columns, ColumnsProps, ComboBox, ComboBoxProps, Container, ContainerProps, CustomCheckboxProps, DateField, DateFieldProps, DatePicker, DatePickerProps, _Dialog as Dialog, DialogProps, _Divider as Divider, DividerProps, FieldBase, FieldBaseProps, FieldGroup, FieldGroupContext, FieldGroupContextProps, FieldGroupProps, Footer, FooterProps, _Header as Header, HeaderProps, _Headline as Headline, HeadlineProps, Image, ImageProps, Inline, InlineProps, Input, InputOwnProps, InputProps, Inset, InsetProps, _Label as Label, LabelProps, _Link as Link, LinkProps, List, ListProps, MarigoldProvider, MarigoldProviderProps, Menu, MenuProps, Message, MessageProps, _Modal as Modal, ModalProps, _NumberField as NumberField, NumberFieldProps, Overlay, OverlayProps, Popover, PopoverProps, _Radio as Radio, RadioComponent, _RadioGroup as RadioGroup, RadioGroupProps, RadioProps, RowProps, _SearchField as SearchField, SearchFieldProps, Select, SelectComponent, SelectProps, _Slider as Slider, SliderProps, Split, SplitProps, Stack, StackProps, _Switch as Switch, SwitchProps, Table, TableProps, _Tabs as Tabs, TabsProps, Tag, TagComponent, Text, _TextArea as TextArea, TextAreaProps, _TextField as TextField, TextFieldProps, TextProps, Tiles, TilesProps, _Tooltip as Tooltip, TooltipProps, Tray, TrayProps, TrayWrapper, Underlay, UnderlayProps, XLoader, useFieldGroupContext };
|