@marigold/components 6.10.0 → 6.11.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 CHANGED
@@ -4,14 +4,14 @@ import * as react from 'react';
4
4
  import react__default, { ReactElement, ReactNode, Key, ElementType, HTMLAttributes, ComponentPropsWithRef, RefObject, ForwardRefExoticComponent, RefAttributes } from 'react';
5
5
  import { AriaAccordionProps } from '@react-aria/accordion';
6
6
  import * as _react_types_shared from '@react-types/shared';
7
- import { ItemElement, ItemProps, Node, CollectionElement, StyleProps, LabelableProps } from '@react-types/shared';
7
+ import { ItemElement, ItemProps, Node, CollectionElement, StyleProps } from '@react-types/shared';
8
8
  import { TreeState } from '@react-stately/tree';
9
9
  import { GapSpaceProp, AspectProp, WidthProp, AlignmentProp, alignment, PaddingSpaceProp, PaddingSpacePropX, PaddingSpacePropY, PaddingRightProp, PaddingLeftProp, PaddingBottomProp, PaddingTopProp, PlaceItemsProp, GridColumn, GridColsAlignProp, TextAlignProp, StateAttrProps, ObjectFitProp, ObjectPositionProp, Theme, ThemeProviderProps, FontSizeProp, FontWeightProp, FontStyleProp, CursorProp, SVGProps } from '@marigold/system';
10
10
  export { ThemeProvider, useTheme } from '@marigold/system';
11
11
  import { NonZeroPercentage, HtmlProps } from '@marigold/types';
12
12
  import { SearchAutocompleteProps } from '@react-types/autocomplete';
13
13
  import { ComboBoxProps as ComboBoxProps$1 } from '@react-types/combobox';
14
- import RAC, { ValidationResult } from 'react-aria-components';
14
+ import RAC, { ValidationResult, TagListProps } from 'react-aria-components';
15
15
  import { DateValue, CalendarDate } from '@internationalized/date';
16
16
  import { AriaDateFieldProps, AriaDatePickerProps } from '@react-aria/datepicker';
17
17
  import { AriaCalendarProps, DateValue as DateValue$1, AriaCalendarCellProps, AriaCalendarGridProps } from '@react-aria/calendar';
@@ -22,7 +22,6 @@ import { Item, Section } from '@react-stately/collections';
22
22
  import { AriaSelectProps } from '@react-types/select';
23
23
  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
- import { AriaTagGroupProps } from '@react-aria/tag';
26
25
  export { VisuallyHidden } from '@react-aria/visually-hidden';
27
26
 
28
27
  interface AccordionProps extends Omit<AriaAccordionProps<object>, 'children' | 'expandedKeys' | 'disabledKeys' | 'onExpandedChange'> {
@@ -52,10 +51,9 @@ interface AsideProps extends GapSpaceProp {
52
51
  children: [ReactElement, ReactElement];
53
52
  side?: 'left' | 'right';
54
53
  sideWidth?: string;
55
- stretch?: boolean;
56
54
  wrap?: NonZeroPercentage;
57
55
  }
58
- declare const Aside: ({ children, sideWidth, space, side, stretch, wrap, }: AsideProps) => react_jsx_runtime.JSX.Element;
56
+ declare const Aside: ({ children, sideWidth, space, side, wrap, }: AsideProps) => react_jsx_runtime.JSX.Element;
59
57
 
60
58
  interface AspectProps extends Omit<HtmlProps<'div'>, 'className'>, AspectProp {
61
59
  children?: ReactNode;
@@ -132,8 +130,8 @@ interface BodyProps extends Omit<HtmlProps<'section'>, 'className'> {
132
130
  }
133
131
  declare const Body: ({ children, variant, size, ...props }: BodyProps) => react_jsx_runtime.JSX.Element;
134
132
 
135
- type RemovedProps$d = 'isDisabled';
136
- interface ButtonProps extends Omit<RAC.ButtonProps, RemovedProps$d> {
133
+ type RemovedProps$e = 'isDisabled';
134
+ interface ButtonProps extends Omit<RAC.ButtonProps, RemovedProps$e> {
137
135
  variant?: string;
138
136
  size?: string;
139
137
  fullWidth?: boolean;
@@ -173,7 +171,6 @@ interface HelpTextProps {
173
171
  size?: string;
174
172
  description?: ReactNode;
175
173
  error?: boolean;
176
- isInvalid?: ValidationResult['isInvalid'];
177
174
  errorMessage?: ReactNode | ((v: ValidationResult) => ReactNode);
178
175
  }
179
176
 
@@ -185,8 +182,8 @@ interface FieldBaseProps$1<T extends ElementType> extends WidthProp, Pick<HelpTe
185
182
  children?: ReactNode;
186
183
  }
187
184
 
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'> {
185
+ type RemovedProps$d = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly';
186
+ interface CheckboxGroupProps extends Omit<RAC.CheckboxGroupProps, RemovedProps$d>, Pick<FieldBaseProps$1<'label'>, 'label' | 'description' | 'errorMessage'> {
190
187
  children?: ReactNode;
191
188
  variant?: string;
192
189
  size?: string;
@@ -229,10 +226,11 @@ interface DialogTriggerProps extends Omit<RAC.DialogTriggerProps, 'isOpen'> {
229
226
  open?: boolean;
230
227
  dismissable?: boolean;
231
228
  keyboardDismissable?: boolean;
229
+ isNonModal?: boolean;
232
230
  }
233
231
 
234
- type RemovedProps$b = 'className' | 'level';
235
- interface HeadlineProps extends Omit<RAC.HeadingProps, RemovedProps$b>, TextAlignProp {
232
+ type RemovedProps$c = 'className' | 'level';
233
+ interface HeadlineProps extends Omit<RAC.HeadingProps, RemovedProps$c>, TextAlignProp {
236
234
  color?: string;
237
235
  variant?: string;
238
236
  size?: string;
@@ -250,7 +248,7 @@ interface DialogProps extends Omit<RAC.DialogProps, 'className' | 'style'> {
250
248
  }
251
249
  declare const _Dialog: {
252
250
  ({ variant, size, closeButton, isNonModal, ...props }: DialogProps): react_jsx_runtime.JSX.Element;
253
- Trigger: ({ open, dismissable, keyboardDismissable, ...rest }: DialogTriggerProps) => react_jsx_runtime.JSX.Element;
251
+ Trigger: ({ open, dismissable, keyboardDismissable, isNonModal, ...rest }: DialogTriggerProps) => react_jsx_runtime.JSX.Element;
254
252
  Headline: ({ children }: DialogHeadlineProps) => react_jsx_runtime.JSX.Element;
255
253
  };
256
254
 
@@ -259,8 +257,8 @@ interface DividerProps extends RAC.SeparatorProps {
259
257
  }
260
258
  declare const _Divider: ({ variant, ...props }: DividerProps) => react_jsx_runtime.JSX.Element;
261
259
 
262
- type RemovedProps$a = 'className';
263
- interface LabelProps extends Omit<RAC.LabelProps, RemovedProps$a> {
260
+ type RemovedProps$b = 'className';
261
+ interface LabelProps extends Omit<RAC.LabelProps, RemovedProps$b> {
264
262
  size?: string;
265
263
  variant?: string;
266
264
  }
@@ -395,8 +393,8 @@ type InsetProps = {
395
393
  };
396
394
  declare const Inset: ({ space, spaceX, spaceY, children }: InsetProps) => react_jsx_runtime.JSX.Element;
397
395
 
398
- type RemovedProps$9 = 'className' | 'isDisabled';
399
- interface LinkProps extends Omit<RAC.LinkProps, RemovedProps$9> {
396
+ type RemovedProps$a = 'className' | 'isDisabled';
397
+ interface LinkProps extends Omit<RAC.LinkProps, RemovedProps$a> {
400
398
  variant?: string;
401
399
  size?: string;
402
400
  disabled?: RAC.LinkProps['isDisabled'];
@@ -455,8 +453,8 @@ interface MessageProps extends Omit<HtmlProps<'div'>, 'className'> {
455
453
  }
456
454
  declare const Message: ({ messageTitle, variant, size, children, ...props }: MessageProps) => react_jsx_runtime.JSX.Element;
457
455
 
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'> {
456
+ type RemovedProps$9 = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'size';
457
+ interface NumberFieldProps extends Omit<RAC.NumberFieldProps, RemovedProps$9>, Pick<FieldBaseProps$1<'label'>, 'label' | 'description' | 'errorMessage'> {
460
458
  variant?: string;
461
459
  size?: string;
462
460
  width?: WidthProp['width'];
@@ -465,6 +463,7 @@ interface NumberFieldProps extends Omit<RAC.NumberFieldProps, RemovedProps$8>, P
465
463
  error?: RAC.NumberFieldProps['isInvalid'];
466
464
  readOnly?: RAC.NumberFieldProps['isReadOnly'];
467
465
  hideStepper?: boolean;
466
+ placeholder?: string;
468
467
  }
469
468
  declare const _NumberField: react.ForwardRefExoticComponent<NumberFieldProps & react.RefAttributes<HTMLInputElement>>;
470
469
 
@@ -511,8 +510,8 @@ interface MarigoldProviderProps<T extends Theme> extends ThemeProviderProps<T> {
511
510
  }
512
511
  declare function MarigoldProvider<T extends Theme>({ children, theme, }: MarigoldProviderProps<T>): react_jsx_runtime.JSX.Element;
513
512
 
514
- type RemovedProps$7 = 'className' | 'style' | 'isDisabled' | 'isInvalid' | 'isRequired' | 'isSelected';
515
- interface RadioGroupProps extends Omit<RAC.RadioGroupProps, RemovedProps$7> {
513
+ type RemovedProps$8 = 'className' | 'style' | 'isDisabled' | 'isInvalid' | 'isRequired' | 'isSelected';
514
+ interface RadioGroupProps extends Omit<RAC.RadioGroupProps, RemovedProps$8> {
516
515
  variant?: string;
517
516
  size?: string;
518
517
  label?: string;
@@ -528,8 +527,8 @@ interface RadioGroupProps extends Omit<RAC.RadioGroupProps, RemovedProps$7> {
528
527
  }
529
528
  declare const _RadioGroup: ({ variant, size, label, error, disabled, required, readOnly, description, errorMessage, orientation, children, width, ...rest }: RadioGroupProps) => react_jsx_runtime.JSX.Element;
530
529
 
531
- type RemovedProps$6 = 'className' | 'style' | 'children' | 'isDisabled';
532
- interface RadioProps extends Omit<RAC.RadioProps, RemovedProps$6> {
530
+ type RemovedProps$7 = 'className' | 'style' | 'children' | 'isDisabled';
531
+ interface RadioProps extends Omit<RAC.RadioProps, RemovedProps$7> {
533
532
  variant?: string;
534
533
  size?: string;
535
534
  width?: string;
@@ -546,8 +545,8 @@ interface RadioComponent extends ForwardRefExoticComponent<RadioProps & RefAttri
546
545
  Group: typeof _RadioGroup;
547
546
  }
548
547
 
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'> {
548
+ type RemovedProps$6 = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'value' | 'defaultValue';
549
+ interface SearchFieldProps extends Omit<RAC.SearchFieldProps, RemovedProps$6>, Pick<FieldBaseProps$1<'label'>, 'label' | 'description' | 'errorMessage'> {
551
550
  icon?: ReactElement;
552
551
  action?: ReactElement;
553
552
  variant?: string;
@@ -559,6 +558,7 @@ interface SearchFieldProps extends Omit<RAC.SearchFieldProps, RemovedProps$5>, P
559
558
  readOnly?: RAC.SearchFieldProps['isReadOnly'];
560
559
  value?: string;
561
560
  defaultValue?: string;
561
+ placeholder?: string;
562
562
  }
563
563
  declare const _SearchField: react.ForwardRefExoticComponent<SearchFieldProps & react.RefAttributes<HTMLInputElement>>;
564
564
 
@@ -603,8 +603,8 @@ interface StackProps extends AlignmentProp, GapSpaceProp {
603
603
  }
604
604
  declare const Stack: ({ children, space, stretch, orientation, alignX, alignY, ...props }: StackProps) => react_jsx_runtime.JSX.Element;
605
605
 
606
- type RemovedProps$4 = 'className' | 'isDisabled' | 'isReadOnly' | 'isSelected' | 'children';
607
- interface SwitchProps extends Omit<RAC.SwitchProps, RemovedProps$4> {
606
+ type RemovedProps$5 = 'className' | 'isDisabled' | 'isReadOnly' | 'isSelected' | 'children';
607
+ interface SwitchProps extends Omit<RAC.SwitchProps, RemovedProps$5> {
608
608
  variant?: string;
609
609
  size?: string;
610
610
  children?: ReactNode;
@@ -648,8 +648,8 @@ interface TextProps extends Omit<HtmlProps<'p'>, 'className'>, TextAlignProp, Fo
648
648
  }
649
649
  declare const Text: ({ variant, size, color, align, cursor, weight, fontSize, fontStyle, children, ...props }: TextProps) => react_jsx_runtime.JSX.Element;
650
650
 
651
- type RemovedProps$3 = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'value' | 'defaultValue';
652
- interface TextAreaProps extends Omit<RAC.TextFieldProps, RemovedProps$3>, Pick<RAC.TextAreaProps, 'rows'>, Pick<FieldBaseProps$1<'label'>, 'label' | 'description' | 'errorMessage'> {
651
+ type RemovedProps$4 = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'value' | 'defaultValue';
652
+ interface TextAreaProps extends Omit<RAC.TextFieldProps, RemovedProps$4>, Pick<RAC.TextAreaProps, 'rows'>, Pick<FieldBaseProps$1<'label'>, 'label' | 'description' | 'errorMessage'> {
653
653
  variant?: string;
654
654
  size?: string;
655
655
  width?: WidthProp['width'];
@@ -662,8 +662,8 @@ interface TextAreaProps extends Omit<RAC.TextFieldProps, RemovedProps$3>, Pick<R
662
662
  }
663
663
  declare const _TextArea: react.ForwardRefExoticComponent<TextAreaProps & react.RefAttributes<HTMLTextAreaElement>>;
664
664
 
665
- type RemovedProps$2 = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'value' | 'defaultValue';
666
- interface TextFieldProps extends Omit<RAC.TextFieldProps, RemovedProps$2>, Pick<FieldBaseProps$1<'label'>, 'label' | 'description' | 'errorMessage'> {
665
+ type RemovedProps$3 = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'value' | 'defaultValue';
666
+ interface TextFieldProps extends Omit<RAC.TextFieldProps, RemovedProps$3>, Pick<FieldBaseProps$1<'label'>, 'label' | 'description' | 'errorMessage'> {
667
667
  variant?: string;
668
668
  size?: string;
669
669
  width?: WidthProp['width'];
@@ -673,6 +673,7 @@ interface TextFieldProps extends Omit<RAC.TextFieldProps, RemovedProps$2>, Pick<
673
673
  readOnly?: RAC.TextFieldProps['isReadOnly'];
674
674
  value?: string;
675
675
  defaultValue?: string;
676
+ placeholder?: string;
676
677
  }
677
678
  declare const _TextField: react.ForwardRefExoticComponent<TextFieldProps & react.RefAttributes<HTMLInputElement>>;
678
679
 
@@ -684,14 +685,14 @@ interface TilesProps extends GapSpaceProp {
684
685
  }
685
686
  declare const Tiles: ({ space, stretch, equalHeight, tilesWidth, children, ...props }: TilesProps) => react_jsx_runtime.JSX.Element;
686
687
 
687
- type RemovedProps$1 = 'isDisabled' | 'isOpen';
688
- interface TooltipTriggerProps extends Omit<RAC.TooltipTriggerComponentProps, RemovedProps$1> {
688
+ type RemovedProps$2 = 'isDisabled' | 'isOpen';
689
+ interface TooltipTriggerProps extends Omit<RAC.TooltipTriggerComponentProps, RemovedProps$2> {
689
690
  disabled?: RAC.TooltipTriggerComponentProps['isDisabled'];
690
691
  open?: boolean;
691
692
  }
692
693
 
693
- type RemovedProps = 'className' | 'isOpen' | 'style';
694
- interface TooltipProps extends Omit<RAC.TooltipProps, RemovedProps> {
694
+ type RemovedProps$1 = 'className' | 'isOpen' | 'style';
695
+ interface TooltipProps extends Omit<RAC.TooltipProps, RemovedProps$1> {
695
696
  children?: ReactNode;
696
697
  variant?: string;
697
698
  size?: string;
@@ -702,23 +703,26 @@ declare const _Tooltip: {
702
703
  Trigger: ({ delay, children, disabled, open, ...rest }: TooltipTriggerProps) => react_jsx_runtime.JSX.Element;
703
704
  };
704
705
 
705
- interface TagGroupProps extends Omit<AriaTagGroupProps<object>, 'isRequired' | 'validationState'>, LabelableProps {
706
+ type RemovedProps = 'className' | 'style' | 'children' | 'isRequired';
707
+ interface TagGroupProps extends Omit<RAC.TagGroupProps, RemovedProps>, Pick<TagListProps<object>, 'items' | 'children'>, Pick<FieldBaseProps$1<'label'>, 'label' | 'description'> {
708
+ variant?: string;
709
+ size?: string;
706
710
  width?: WidthProp['width'];
707
- required?: boolean;
708
- error?: boolean;
709
711
  allowsRemoving?: boolean;
710
712
  }
711
- declare const TagGroup: ({ width, required, error, allowsRemoving, ...rest }: TagGroupProps) => react_jsx_runtime.JSX.Element;
712
713
 
713
- declare const Tag: TagComponent;
714
- /**
715
- * We need this so that TypeScripts allows us to add
716
- * additional properties to the component (function).
717
- */
718
- type ItemComponent = typeof Item;
719
- interface TagComponent extends ItemComponent {
720
- Group: typeof TagGroup;
714
+ interface CloseButtonProps {
715
+ className: string;
721
716
  }
717
+ declare const CloseButton: ({ className }: CloseButtonProps) => react_jsx_runtime.JSX.Element;
718
+ interface TagProps extends RAC.TagProps {
719
+ variant?: string;
720
+ size?: string;
721
+ }
722
+ declare const _Tag: {
723
+ ({ variant, size, children, ...props }: TagProps): react_jsx_runtime.JSX.Element;
724
+ Group: ({ width, items, children, variant, size, ...rest }: TagGroupProps) => react_jsx_runtime.JSX.Element;
725
+ };
722
726
 
723
727
  declare const XLoader: react.ForwardRefExoticComponent<SVGProps & react.RefAttributes<SVGElement>>;
724
728
 
@@ -743,4 +747,4 @@ declare const _Tabs: {
743
747
  Item: (props: TabProps) => react_jsx_runtime.JSX.Element;
744
748
  };
745
749
 
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 };
750
+ 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, CloseButton, 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 as Tag, TagProps, 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
@@ -4,14 +4,14 @@ import * as react from 'react';
4
4
  import react__default, { ReactElement, ReactNode, Key, ElementType, HTMLAttributes, ComponentPropsWithRef, RefObject, ForwardRefExoticComponent, RefAttributes } from 'react';
5
5
  import { AriaAccordionProps } from '@react-aria/accordion';
6
6
  import * as _react_types_shared from '@react-types/shared';
7
- import { ItemElement, ItemProps, Node, CollectionElement, StyleProps, LabelableProps } from '@react-types/shared';
7
+ import { ItemElement, ItemProps, Node, CollectionElement, StyleProps } from '@react-types/shared';
8
8
  import { TreeState } from '@react-stately/tree';
9
9
  import { GapSpaceProp, AspectProp, WidthProp, AlignmentProp, alignment, PaddingSpaceProp, PaddingSpacePropX, PaddingSpacePropY, PaddingRightProp, PaddingLeftProp, PaddingBottomProp, PaddingTopProp, PlaceItemsProp, GridColumn, GridColsAlignProp, TextAlignProp, StateAttrProps, ObjectFitProp, ObjectPositionProp, Theme, ThemeProviderProps, FontSizeProp, FontWeightProp, FontStyleProp, CursorProp, SVGProps } from '@marigold/system';
10
10
  export { ThemeProvider, useTheme } from '@marigold/system';
11
11
  import { NonZeroPercentage, HtmlProps } from '@marigold/types';
12
12
  import { SearchAutocompleteProps } from '@react-types/autocomplete';
13
13
  import { ComboBoxProps as ComboBoxProps$1 } from '@react-types/combobox';
14
- import RAC, { ValidationResult } from 'react-aria-components';
14
+ import RAC, { ValidationResult, TagListProps } from 'react-aria-components';
15
15
  import { DateValue, CalendarDate } from '@internationalized/date';
16
16
  import { AriaDateFieldProps, AriaDatePickerProps } from '@react-aria/datepicker';
17
17
  import { AriaCalendarProps, DateValue as DateValue$1, AriaCalendarCellProps, AriaCalendarGridProps } from '@react-aria/calendar';
@@ -22,7 +22,6 @@ import { Item, Section } from '@react-stately/collections';
22
22
  import { AriaSelectProps } from '@react-types/select';
23
23
  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
- import { AriaTagGroupProps } from '@react-aria/tag';
26
25
  export { VisuallyHidden } from '@react-aria/visually-hidden';
27
26
 
28
27
  interface AccordionProps extends Omit<AriaAccordionProps<object>, 'children' | 'expandedKeys' | 'disabledKeys' | 'onExpandedChange'> {
@@ -52,10 +51,9 @@ interface AsideProps extends GapSpaceProp {
52
51
  children: [ReactElement, ReactElement];
53
52
  side?: 'left' | 'right';
54
53
  sideWidth?: string;
55
- stretch?: boolean;
56
54
  wrap?: NonZeroPercentage;
57
55
  }
58
- declare const Aside: ({ children, sideWidth, space, side, stretch, wrap, }: AsideProps) => react_jsx_runtime.JSX.Element;
56
+ declare const Aside: ({ children, sideWidth, space, side, wrap, }: AsideProps) => react_jsx_runtime.JSX.Element;
59
57
 
60
58
  interface AspectProps extends Omit<HtmlProps<'div'>, 'className'>, AspectProp {
61
59
  children?: ReactNode;
@@ -132,8 +130,8 @@ interface BodyProps extends Omit<HtmlProps<'section'>, 'className'> {
132
130
  }
133
131
  declare const Body: ({ children, variant, size, ...props }: BodyProps) => react_jsx_runtime.JSX.Element;
134
132
 
135
- type RemovedProps$d = 'isDisabled';
136
- interface ButtonProps extends Omit<RAC.ButtonProps, RemovedProps$d> {
133
+ type RemovedProps$e = 'isDisabled';
134
+ interface ButtonProps extends Omit<RAC.ButtonProps, RemovedProps$e> {
137
135
  variant?: string;
138
136
  size?: string;
139
137
  fullWidth?: boolean;
@@ -173,7 +171,6 @@ interface HelpTextProps {
173
171
  size?: string;
174
172
  description?: ReactNode;
175
173
  error?: boolean;
176
- isInvalid?: ValidationResult['isInvalid'];
177
174
  errorMessage?: ReactNode | ((v: ValidationResult) => ReactNode);
178
175
  }
179
176
 
@@ -185,8 +182,8 @@ interface FieldBaseProps$1<T extends ElementType> extends WidthProp, Pick<HelpTe
185
182
  children?: ReactNode;
186
183
  }
187
184
 
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'> {
185
+ type RemovedProps$d = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly';
186
+ interface CheckboxGroupProps extends Omit<RAC.CheckboxGroupProps, RemovedProps$d>, Pick<FieldBaseProps$1<'label'>, 'label' | 'description' | 'errorMessage'> {
190
187
  children?: ReactNode;
191
188
  variant?: string;
192
189
  size?: string;
@@ -229,10 +226,11 @@ interface DialogTriggerProps extends Omit<RAC.DialogTriggerProps, 'isOpen'> {
229
226
  open?: boolean;
230
227
  dismissable?: boolean;
231
228
  keyboardDismissable?: boolean;
229
+ isNonModal?: boolean;
232
230
  }
233
231
 
234
- type RemovedProps$b = 'className' | 'level';
235
- interface HeadlineProps extends Omit<RAC.HeadingProps, RemovedProps$b>, TextAlignProp {
232
+ type RemovedProps$c = 'className' | 'level';
233
+ interface HeadlineProps extends Omit<RAC.HeadingProps, RemovedProps$c>, TextAlignProp {
236
234
  color?: string;
237
235
  variant?: string;
238
236
  size?: string;
@@ -250,7 +248,7 @@ interface DialogProps extends Omit<RAC.DialogProps, 'className' | 'style'> {
250
248
  }
251
249
  declare const _Dialog: {
252
250
  ({ variant, size, closeButton, isNonModal, ...props }: DialogProps): react_jsx_runtime.JSX.Element;
253
- Trigger: ({ open, dismissable, keyboardDismissable, ...rest }: DialogTriggerProps) => react_jsx_runtime.JSX.Element;
251
+ Trigger: ({ open, dismissable, keyboardDismissable, isNonModal, ...rest }: DialogTriggerProps) => react_jsx_runtime.JSX.Element;
254
252
  Headline: ({ children }: DialogHeadlineProps) => react_jsx_runtime.JSX.Element;
255
253
  };
256
254
 
@@ -259,8 +257,8 @@ interface DividerProps extends RAC.SeparatorProps {
259
257
  }
260
258
  declare const _Divider: ({ variant, ...props }: DividerProps) => react_jsx_runtime.JSX.Element;
261
259
 
262
- type RemovedProps$a = 'className';
263
- interface LabelProps extends Omit<RAC.LabelProps, RemovedProps$a> {
260
+ type RemovedProps$b = 'className';
261
+ interface LabelProps extends Omit<RAC.LabelProps, RemovedProps$b> {
264
262
  size?: string;
265
263
  variant?: string;
266
264
  }
@@ -395,8 +393,8 @@ type InsetProps = {
395
393
  };
396
394
  declare const Inset: ({ space, spaceX, spaceY, children }: InsetProps) => react_jsx_runtime.JSX.Element;
397
395
 
398
- type RemovedProps$9 = 'className' | 'isDisabled';
399
- interface LinkProps extends Omit<RAC.LinkProps, RemovedProps$9> {
396
+ type RemovedProps$a = 'className' | 'isDisabled';
397
+ interface LinkProps extends Omit<RAC.LinkProps, RemovedProps$a> {
400
398
  variant?: string;
401
399
  size?: string;
402
400
  disabled?: RAC.LinkProps['isDisabled'];
@@ -455,8 +453,8 @@ interface MessageProps extends Omit<HtmlProps<'div'>, 'className'> {
455
453
  }
456
454
  declare const Message: ({ messageTitle, variant, size, children, ...props }: MessageProps) => react_jsx_runtime.JSX.Element;
457
455
 
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'> {
456
+ type RemovedProps$9 = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'size';
457
+ interface NumberFieldProps extends Omit<RAC.NumberFieldProps, RemovedProps$9>, Pick<FieldBaseProps$1<'label'>, 'label' | 'description' | 'errorMessage'> {
460
458
  variant?: string;
461
459
  size?: string;
462
460
  width?: WidthProp['width'];
@@ -465,6 +463,7 @@ interface NumberFieldProps extends Omit<RAC.NumberFieldProps, RemovedProps$8>, P
465
463
  error?: RAC.NumberFieldProps['isInvalid'];
466
464
  readOnly?: RAC.NumberFieldProps['isReadOnly'];
467
465
  hideStepper?: boolean;
466
+ placeholder?: string;
468
467
  }
469
468
  declare const _NumberField: react.ForwardRefExoticComponent<NumberFieldProps & react.RefAttributes<HTMLInputElement>>;
470
469
 
@@ -511,8 +510,8 @@ interface MarigoldProviderProps<T extends Theme> extends ThemeProviderProps<T> {
511
510
  }
512
511
  declare function MarigoldProvider<T extends Theme>({ children, theme, }: MarigoldProviderProps<T>): react_jsx_runtime.JSX.Element;
513
512
 
514
- type RemovedProps$7 = 'className' | 'style' | 'isDisabled' | 'isInvalid' | 'isRequired' | 'isSelected';
515
- interface RadioGroupProps extends Omit<RAC.RadioGroupProps, RemovedProps$7> {
513
+ type RemovedProps$8 = 'className' | 'style' | 'isDisabled' | 'isInvalid' | 'isRequired' | 'isSelected';
514
+ interface RadioGroupProps extends Omit<RAC.RadioGroupProps, RemovedProps$8> {
516
515
  variant?: string;
517
516
  size?: string;
518
517
  label?: string;
@@ -528,8 +527,8 @@ interface RadioGroupProps extends Omit<RAC.RadioGroupProps, RemovedProps$7> {
528
527
  }
529
528
  declare const _RadioGroup: ({ variant, size, label, error, disabled, required, readOnly, description, errorMessage, orientation, children, width, ...rest }: RadioGroupProps) => react_jsx_runtime.JSX.Element;
530
529
 
531
- type RemovedProps$6 = 'className' | 'style' | 'children' | 'isDisabled';
532
- interface RadioProps extends Omit<RAC.RadioProps, RemovedProps$6> {
530
+ type RemovedProps$7 = 'className' | 'style' | 'children' | 'isDisabled';
531
+ interface RadioProps extends Omit<RAC.RadioProps, RemovedProps$7> {
533
532
  variant?: string;
534
533
  size?: string;
535
534
  width?: string;
@@ -546,8 +545,8 @@ interface RadioComponent extends ForwardRefExoticComponent<RadioProps & RefAttri
546
545
  Group: typeof _RadioGroup;
547
546
  }
548
547
 
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'> {
548
+ type RemovedProps$6 = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'value' | 'defaultValue';
549
+ interface SearchFieldProps extends Omit<RAC.SearchFieldProps, RemovedProps$6>, Pick<FieldBaseProps$1<'label'>, 'label' | 'description' | 'errorMessage'> {
551
550
  icon?: ReactElement;
552
551
  action?: ReactElement;
553
552
  variant?: string;
@@ -559,6 +558,7 @@ interface SearchFieldProps extends Omit<RAC.SearchFieldProps, RemovedProps$5>, P
559
558
  readOnly?: RAC.SearchFieldProps['isReadOnly'];
560
559
  value?: string;
561
560
  defaultValue?: string;
561
+ placeholder?: string;
562
562
  }
563
563
  declare const _SearchField: react.ForwardRefExoticComponent<SearchFieldProps & react.RefAttributes<HTMLInputElement>>;
564
564
 
@@ -603,8 +603,8 @@ interface StackProps extends AlignmentProp, GapSpaceProp {
603
603
  }
604
604
  declare const Stack: ({ children, space, stretch, orientation, alignX, alignY, ...props }: StackProps) => react_jsx_runtime.JSX.Element;
605
605
 
606
- type RemovedProps$4 = 'className' | 'isDisabled' | 'isReadOnly' | 'isSelected' | 'children';
607
- interface SwitchProps extends Omit<RAC.SwitchProps, RemovedProps$4> {
606
+ type RemovedProps$5 = 'className' | 'isDisabled' | 'isReadOnly' | 'isSelected' | 'children';
607
+ interface SwitchProps extends Omit<RAC.SwitchProps, RemovedProps$5> {
608
608
  variant?: string;
609
609
  size?: string;
610
610
  children?: ReactNode;
@@ -648,8 +648,8 @@ interface TextProps extends Omit<HtmlProps<'p'>, 'className'>, TextAlignProp, Fo
648
648
  }
649
649
  declare const Text: ({ variant, size, color, align, cursor, weight, fontSize, fontStyle, children, ...props }: TextProps) => react_jsx_runtime.JSX.Element;
650
650
 
651
- type RemovedProps$3 = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'value' | 'defaultValue';
652
- interface TextAreaProps extends Omit<RAC.TextFieldProps, RemovedProps$3>, Pick<RAC.TextAreaProps, 'rows'>, Pick<FieldBaseProps$1<'label'>, 'label' | 'description' | 'errorMessage'> {
651
+ type RemovedProps$4 = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'value' | 'defaultValue';
652
+ interface TextAreaProps extends Omit<RAC.TextFieldProps, RemovedProps$4>, Pick<RAC.TextAreaProps, 'rows'>, Pick<FieldBaseProps$1<'label'>, 'label' | 'description' | 'errorMessage'> {
653
653
  variant?: string;
654
654
  size?: string;
655
655
  width?: WidthProp['width'];
@@ -662,8 +662,8 @@ interface TextAreaProps extends Omit<RAC.TextFieldProps, RemovedProps$3>, Pick<R
662
662
  }
663
663
  declare const _TextArea: react.ForwardRefExoticComponent<TextAreaProps & react.RefAttributes<HTMLTextAreaElement>>;
664
664
 
665
- type RemovedProps$2 = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'value' | 'defaultValue';
666
- interface TextFieldProps extends Omit<RAC.TextFieldProps, RemovedProps$2>, Pick<FieldBaseProps$1<'label'>, 'label' | 'description' | 'errorMessage'> {
665
+ type RemovedProps$3 = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'value' | 'defaultValue';
666
+ interface TextFieldProps extends Omit<RAC.TextFieldProps, RemovedProps$3>, Pick<FieldBaseProps$1<'label'>, 'label' | 'description' | 'errorMessage'> {
667
667
  variant?: string;
668
668
  size?: string;
669
669
  width?: WidthProp['width'];
@@ -673,6 +673,7 @@ interface TextFieldProps extends Omit<RAC.TextFieldProps, RemovedProps$2>, Pick<
673
673
  readOnly?: RAC.TextFieldProps['isReadOnly'];
674
674
  value?: string;
675
675
  defaultValue?: string;
676
+ placeholder?: string;
676
677
  }
677
678
  declare const _TextField: react.ForwardRefExoticComponent<TextFieldProps & react.RefAttributes<HTMLInputElement>>;
678
679
 
@@ -684,14 +685,14 @@ interface TilesProps extends GapSpaceProp {
684
685
  }
685
686
  declare const Tiles: ({ space, stretch, equalHeight, tilesWidth, children, ...props }: TilesProps) => react_jsx_runtime.JSX.Element;
686
687
 
687
- type RemovedProps$1 = 'isDisabled' | 'isOpen';
688
- interface TooltipTriggerProps extends Omit<RAC.TooltipTriggerComponentProps, RemovedProps$1> {
688
+ type RemovedProps$2 = 'isDisabled' | 'isOpen';
689
+ interface TooltipTriggerProps extends Omit<RAC.TooltipTriggerComponentProps, RemovedProps$2> {
689
690
  disabled?: RAC.TooltipTriggerComponentProps['isDisabled'];
690
691
  open?: boolean;
691
692
  }
692
693
 
693
- type RemovedProps = 'className' | 'isOpen' | 'style';
694
- interface TooltipProps extends Omit<RAC.TooltipProps, RemovedProps> {
694
+ type RemovedProps$1 = 'className' | 'isOpen' | 'style';
695
+ interface TooltipProps extends Omit<RAC.TooltipProps, RemovedProps$1> {
695
696
  children?: ReactNode;
696
697
  variant?: string;
697
698
  size?: string;
@@ -702,23 +703,26 @@ declare const _Tooltip: {
702
703
  Trigger: ({ delay, children, disabled, open, ...rest }: TooltipTriggerProps) => react_jsx_runtime.JSX.Element;
703
704
  };
704
705
 
705
- interface TagGroupProps extends Omit<AriaTagGroupProps<object>, 'isRequired' | 'validationState'>, LabelableProps {
706
+ type RemovedProps = 'className' | 'style' | 'children' | 'isRequired';
707
+ interface TagGroupProps extends Omit<RAC.TagGroupProps, RemovedProps>, Pick<TagListProps<object>, 'items' | 'children'>, Pick<FieldBaseProps$1<'label'>, 'label' | 'description'> {
708
+ variant?: string;
709
+ size?: string;
706
710
  width?: WidthProp['width'];
707
- required?: boolean;
708
- error?: boolean;
709
711
  allowsRemoving?: boolean;
710
712
  }
711
- declare const TagGroup: ({ width, required, error, allowsRemoving, ...rest }: TagGroupProps) => react_jsx_runtime.JSX.Element;
712
713
 
713
- declare const Tag: TagComponent;
714
- /**
715
- * We need this so that TypeScripts allows us to add
716
- * additional properties to the component (function).
717
- */
718
- type ItemComponent = typeof Item;
719
- interface TagComponent extends ItemComponent {
720
- Group: typeof TagGroup;
714
+ interface CloseButtonProps {
715
+ className: string;
721
716
  }
717
+ declare const CloseButton: ({ className }: CloseButtonProps) => react_jsx_runtime.JSX.Element;
718
+ interface TagProps extends RAC.TagProps {
719
+ variant?: string;
720
+ size?: string;
721
+ }
722
+ declare const _Tag: {
723
+ ({ variant, size, children, ...props }: TagProps): react_jsx_runtime.JSX.Element;
724
+ Group: ({ width, items, children, variant, size, ...rest }: TagGroupProps) => react_jsx_runtime.JSX.Element;
725
+ };
722
726
 
723
727
  declare const XLoader: react.ForwardRefExoticComponent<SVGProps & react.RefAttributes<SVGElement>>;
724
728
 
@@ -743,4 +747,4 @@ declare const _Tabs: {
743
747
  Item: (props: TabProps) => react_jsx_runtime.JSX.Element;
744
748
  };
745
749
 
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 };
750
+ 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, CloseButton, 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 as Tag, TagProps, Text, _TextArea as TextArea, TextAreaProps, _TextField as TextField, TextFieldProps, TextProps, Tiles, TilesProps, _Tooltip as Tooltip, TooltipProps, Tray, TrayProps, TrayWrapper, Underlay, UnderlayProps, XLoader, useFieldGroupContext };