@marigold/components 7.1.0 → 7.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -10,7 +10,6 @@ export { ThemeProvider, useTheme } from '@marigold/system';
10
10
  import { NonZeroPercentage, HtmlProps, DistributiveOmit } from '@marigold/types';
11
11
  import RAC, { ValidationResult, Key, DateValue, TagListProps } from 'react-aria-components';
12
12
  export { Form, FormProps } from 'react-aria-components';
13
- import { DateValue as DateValue$1 } from '@react-aria/calendar';
14
13
  import { AriaTableProps } from '@react-aria/table';
15
14
  import { TableStateProps, RowProps as RowProps$1, TableBody, Cell, TableHeader, ColumnProps as ColumnProps$1 } from '@react-stately/table';
16
15
  export { VisuallyHidden } from '@react-aria/visually-hidden';
@@ -56,7 +55,6 @@ interface HelpTextProps {
56
55
  variant?: string;
57
56
  size?: string;
58
57
  description?: ReactNode;
59
- error?: boolean;
60
58
  errorMessage?: ReactNode | ((v: ValidationResult) => ReactNode);
61
59
  }
62
60
 
@@ -200,7 +198,7 @@ interface CheckboxProps extends Omit<HtmlProps<'input'>, 'size' | 'type' | 'defa
200
198
  variant?: string;
201
199
  size?: string;
202
200
  }
203
- declare const _Checkbox: react.ForwardRefExoticComponent<CheckboxProps & react.RefAttributes<HTMLInputElement>>;
201
+ declare const _Checkbox: react.ForwardRefExoticComponent<CheckboxProps & react.RefAttributes<HTMLLabelElement>>;
204
202
 
205
203
  type RemovedProps$k = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly';
206
204
  interface CheckboxGroupProps extends Omit<RAC.CheckboxGroupProps, RemovedProps$k>, Pick<FieldBaseProps<'label'>, 'label' | 'description' | 'errorMessage'> {
@@ -330,7 +328,7 @@ interface DateFieldProps extends Omit<RAC.DateFieldProps<DateValue>, RemovedProp
330
328
  declare const _DateField: react.ForwardRefExoticComponent<DateFieldProps & react.RefAttributes<HTMLInputElement>>;
331
329
 
332
330
  type RemovedProps$g = 'isDisabled' | 'isReadOnly' | 'isInvalid' | 'errorMessage' | 'className' | 'style';
333
- interface CalendarProps extends Omit<RAC.CalendarProps<DateValue$1>, RemovedProps$g> {
331
+ interface CalendarProps extends Omit<RAC.CalendarProps<DateValue>, RemovedProps$g> {
334
332
  disabled?: boolean;
335
333
  readOnly?: boolean;
336
334
  variant?: string;
@@ -425,8 +423,9 @@ declare const _Menu: {
425
423
  interface ActionMenuProps extends RAC.MenuProps<object> {
426
424
  variant?: string;
427
425
  size?: string;
426
+ disabled?: boolean;
428
427
  }
429
- declare const ActionMenu: ({ variant, size, ...props }: ActionMenuProps) => react_jsx_runtime.JSX.Element;
428
+ declare const ActionMenu: ({ variant, size, disabled, ...props }: ActionMenuProps) => react_jsx_runtime.JSX.Element;
430
429
 
431
430
  declare const icons: {
432
431
  success: () => react_jsx_runtime.JSX.Element;
@@ -465,6 +464,7 @@ declare const _Modal: react.ForwardRefExoticComponent<Omit<ModalProps, "classNam
465
464
  interface PopoverProps extends Omit<RAC.PopoverProps, 'isOpen' | 'isKeyboardDismissDisabled' | 'style' | 'className'> {
466
465
  keyboardDismissDisabled?: boolean;
467
466
  open?: boolean;
467
+ container?: Element;
468
468
  }
469
469
  declare const _Popover: react.ForwardRefExoticComponent<PopoverProps & react.RefAttributes<HTMLDivElement>>;
470
470
 
@@ -478,8 +478,12 @@ interface UnderlayProps extends Omit<RAC.ModalOverlayProps, 'isOpen' | 'isDismis
478
478
  declare const Underlay: ({ size, variant, open, dismissable, keyboardDismissable, ...rest }: UnderlayProps) => react_jsx_runtime.JSX.Element;
479
479
 
480
480
  interface MarigoldProviderProps<T extends Theme> extends ThemeProviderProps<T> {
481
+ portalContainer?: string;
481
482
  }
482
- declare function MarigoldProvider<T extends Theme>({ children, theme, }: MarigoldProviderProps<T>): react_jsx_runtime.JSX.Element;
483
+ declare function MarigoldProvider<T extends Theme>({ children, theme, portalContainer, }: MarigoldProviderProps<T>): react_jsx_runtime.JSX.Element;
484
+
485
+ declare const OverlayContainerProvider: react.Provider<string | undefined>;
486
+ declare const usePortalContainer: () => HTMLElement | null;
483
487
 
484
488
  type RemovedProps$8 = 'className' | 'style' | 'isDisabled' | 'isInvalid' | 'isRequired' | 'isSelected';
485
489
  interface RadioGroupProps extends Omit<RAC.RadioGroupProps, RemovedProps$8> {
@@ -512,7 +516,7 @@ declare const _Radio: RadioComponent;
512
516
  * We need this so that TypeScripts allows us to add
513
517
  * additional properties to the component (function).
514
518
  */
515
- interface RadioComponent extends ForwardRefExoticComponent<RadioProps & RefAttributes<HTMLInputElement>> {
519
+ interface RadioComponent extends ForwardRefExoticComponent<RadioProps & RefAttributes<HTMLLabelElement>> {
516
520
  Group: typeof _RadioGroup;
517
521
  }
518
522
 
@@ -555,6 +559,12 @@ interface SelectComponent extends ForwardRefExoticComponent<SelectProps<object>
555
559
  }
556
560
  declare const _Select: SelectComponent;
557
561
 
562
+ interface ScrollableProps extends WidthProp {
563
+ children?: ReactNode;
564
+ height?: string;
565
+ }
566
+ declare const Scrollable: ({ children, width, height, ...props }: ScrollableProps) => react_jsx_runtime.JSX.Element;
567
+
558
568
  interface SliderProps<T> extends Omit<RAC.SliderProps<T>, 'isDisabled' | 'label'> {
559
569
  thumbLabels?: string[];
560
570
  width?: WidthProp['width'];
@@ -586,18 +596,20 @@ interface SwitchProps extends Omit<RAC.SwitchProps, RemovedProps$5> {
586
596
  readOnly?: RAC.SwitchProps['isReadOnly'];
587
597
  selected?: RAC.SwitchProps['isSelected'];
588
598
  }
589
- declare const _Switch: react.ForwardRefExoticComponent<SwitchProps & react.RefAttributes<HTMLInputElement>>;
599
+ declare const _Switch: react.ForwardRefExoticComponent<SwitchProps & react.RefAttributes<HTMLLabelElement>>;
590
600
 
591
601
  interface TableProps extends Pick<AriaTableProps<object>, 'focusMode' | 'onRowAction' | 'onCellAction'>, Omit<TableStateProps<object>, 'showSelectionCheckboxes'> {
592
602
  variant?: string;
593
603
  size?: string;
594
604
  stretch?: boolean;
605
+ stickyHeader?: boolean;
595
606
  }
596
607
  interface RowProps extends RowProps$1<any> {
597
608
  variant?: string;
598
609
  size?: string;
599
610
  }
600
- interface ColumnProps extends Omit<ColumnProps$1<any>, 'width'>, WidthProp, Pick<JSX.IntrinsicElements['td'], 'align'> {
611
+ interface ColumnProps extends Omit<ColumnProps$1<any>, 'width'>, WidthProp {
612
+ align?: Exclude<JSX.IntrinsicElements['td']['align'], 'char'>;
601
613
  }
602
614
  declare const Table: Table;
603
615
  /**
@@ -722,4 +734,4 @@ declare const _Tabs: {
722
734
  Item: (props: TabProps) => react_jsx_runtime.JSX.Element;
723
735
  };
724
736
 
725
- export { Accordion, AccordionItem, type AccordionItemProps, type AccordionOwnItemProps, type AccordionProps, ActionMenu, Aside, type AsideProps, Aspect, type AspectProps, _Autocomplete as Autocomplete, type AutocompleteProps, Badge, type BadgeProps, Body, type BodyProps, Breakout, type BreakoutProps, _Button as Button, type ButtonProps, _Calendar as Calendar, type CalendarProps, Card, type CardProps, Center, type CenterProps, _Checkbox as Checkbox, _CheckboxGroup as CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, CloseButton, Columns, type ColumnsProps, _ComboBox as ComboBox, type ComboBoxProps, Container, type ContainerProps, type CustomCheckboxProps, _DateField as DateField, type DateFieldProps, _DatePicker as DatePicker, type DatePickerProps, _Dialog as Dialog, type DialogProps, _Divider as Divider, type DividerProps, FieldBase, type FieldBaseProps, FieldGroup, FieldGroupContext, type FieldGroupContextProps, type FieldGroupProps, Footer, type FooterProps, _Header as Header, type HeaderProps, _Headline as Headline, type HeadlineProps, Image, type ImageProps, Inline, type InlineProps, _Input as Input, type InputProps, Inset, type InsetProps, _Label as Label, type LabelProps, _Link as Link, type LinkProps, List, type ListProps, MarigoldProvider, type MarigoldProviderProps, _Menu as Menu, type MenuProps, Message, type MessageProps, _Modal as Modal, type ModalProps, _NumberField as NumberField, type NumberFieldProps, _Popover as Popover, type PopoverProps, _Radio as Radio, type RadioComponent, _RadioGroup as RadioGroup, type RadioGroupProps, type RadioProps, type RowProps, _SearchField as SearchField, type SearchFieldProps, _Select as Select, type SelectComponent, type SelectProps, _Slider as Slider, type SliderProps, Split, type SplitProps, Stack, type StackProps, _Switch as Switch, type SwitchProps, Table, type TableProps, _Tabs as Tabs, type TabsProps, _Tag as Tag, type TagProps, Text, _TextArea as TextArea, type TextAreaProps, _TextField as TextField, type TextFieldProps, type TextProps, Tiles, type TilesProps, _Tooltip as Tooltip, type TooltipProps, Underlay, type UnderlayProps, XLoader, _Calendar, useFieldGroupContext };
737
+ export { Accordion, AccordionItem, type AccordionItemProps, type AccordionOwnItemProps, type AccordionProps, ActionMenu, Aside, type AsideProps, Aspect, type AspectProps, _Autocomplete as Autocomplete, type AutocompleteProps, Badge, type BadgeProps, Body, type BodyProps, Breakout, type BreakoutProps, _Button as Button, type ButtonProps, _Calendar as Calendar, type CalendarProps, Card, type CardProps, Center, type CenterProps, _Checkbox as Checkbox, _CheckboxGroup as CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, CloseButton, Columns, type ColumnsProps, _ComboBox as ComboBox, type ComboBoxProps, Container, type ContainerProps, type CustomCheckboxProps, _DateField as DateField, type DateFieldProps, _DatePicker as DatePicker, type DatePickerProps, _Dialog as Dialog, type DialogProps, _Divider as Divider, type DividerProps, FieldBase, type FieldBaseProps, FieldGroup, FieldGroupContext, type FieldGroupContextProps, type FieldGroupProps, Footer, type FooterProps, _Header as Header, type HeaderProps, _Headline as Headline, type HeadlineProps, Image, type ImageProps, Inline, type InlineProps, _Input as Input, type InputProps, Inset, type InsetProps, _Label as Label, type LabelProps, _Link as Link, type LinkProps, List, type ListProps, MarigoldProvider, type MarigoldProviderProps, _Menu as Menu, type MenuProps, Message, type MessageProps, _Modal as Modal, type ModalProps, _NumberField as NumberField, type NumberFieldProps, OverlayContainerProvider, _Popover as Popover, type PopoverProps, _Radio as Radio, type RadioComponent, _RadioGroup as RadioGroup, type RadioGroupProps, type RadioProps, type RowProps, Scrollable, type ScrollableProps, _SearchField as SearchField, type SearchFieldProps, _Select as Select, type SelectComponent, type SelectProps, _Slider as Slider, type SliderProps, Split, type SplitProps, Stack, type StackProps, _Switch as Switch, type SwitchProps, Table, type TableProps, _Tabs as Tabs, type TabsProps, _Tag as Tag, type TagProps, Text, _TextArea as TextArea, type TextAreaProps, _TextField as TextField, type TextFieldProps, type TextProps, Tiles, type TilesProps, _Tooltip as Tooltip, type TooltipProps, Underlay, type UnderlayProps, XLoader, _Calendar, useFieldGroupContext, usePortalContainer };
package/dist/index.d.ts CHANGED
@@ -10,7 +10,6 @@ export { ThemeProvider, useTheme } from '@marigold/system';
10
10
  import { NonZeroPercentage, HtmlProps, DistributiveOmit } from '@marigold/types';
11
11
  import RAC, { ValidationResult, Key, DateValue, TagListProps } from 'react-aria-components';
12
12
  export { Form, FormProps } from 'react-aria-components';
13
- import { DateValue as DateValue$1 } from '@react-aria/calendar';
14
13
  import { AriaTableProps } from '@react-aria/table';
15
14
  import { TableStateProps, RowProps as RowProps$1, TableBody, Cell, TableHeader, ColumnProps as ColumnProps$1 } from '@react-stately/table';
16
15
  export { VisuallyHidden } from '@react-aria/visually-hidden';
@@ -56,7 +55,6 @@ interface HelpTextProps {
56
55
  variant?: string;
57
56
  size?: string;
58
57
  description?: ReactNode;
59
- error?: boolean;
60
58
  errorMessage?: ReactNode | ((v: ValidationResult) => ReactNode);
61
59
  }
62
60
 
@@ -200,7 +198,7 @@ interface CheckboxProps extends Omit<HtmlProps<'input'>, 'size' | 'type' | 'defa
200
198
  variant?: string;
201
199
  size?: string;
202
200
  }
203
- declare const _Checkbox: react.ForwardRefExoticComponent<CheckboxProps & react.RefAttributes<HTMLInputElement>>;
201
+ declare const _Checkbox: react.ForwardRefExoticComponent<CheckboxProps & react.RefAttributes<HTMLLabelElement>>;
204
202
 
205
203
  type RemovedProps$k = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly';
206
204
  interface CheckboxGroupProps extends Omit<RAC.CheckboxGroupProps, RemovedProps$k>, Pick<FieldBaseProps<'label'>, 'label' | 'description' | 'errorMessage'> {
@@ -330,7 +328,7 @@ interface DateFieldProps extends Omit<RAC.DateFieldProps<DateValue>, RemovedProp
330
328
  declare const _DateField: react.ForwardRefExoticComponent<DateFieldProps & react.RefAttributes<HTMLInputElement>>;
331
329
 
332
330
  type RemovedProps$g = 'isDisabled' | 'isReadOnly' | 'isInvalid' | 'errorMessage' | 'className' | 'style';
333
- interface CalendarProps extends Omit<RAC.CalendarProps<DateValue$1>, RemovedProps$g> {
331
+ interface CalendarProps extends Omit<RAC.CalendarProps<DateValue>, RemovedProps$g> {
334
332
  disabled?: boolean;
335
333
  readOnly?: boolean;
336
334
  variant?: string;
@@ -425,8 +423,9 @@ declare const _Menu: {
425
423
  interface ActionMenuProps extends RAC.MenuProps<object> {
426
424
  variant?: string;
427
425
  size?: string;
426
+ disabled?: boolean;
428
427
  }
429
- declare const ActionMenu: ({ variant, size, ...props }: ActionMenuProps) => react_jsx_runtime.JSX.Element;
428
+ declare const ActionMenu: ({ variant, size, disabled, ...props }: ActionMenuProps) => react_jsx_runtime.JSX.Element;
430
429
 
431
430
  declare const icons: {
432
431
  success: () => react_jsx_runtime.JSX.Element;
@@ -465,6 +464,7 @@ declare const _Modal: react.ForwardRefExoticComponent<Omit<ModalProps, "classNam
465
464
  interface PopoverProps extends Omit<RAC.PopoverProps, 'isOpen' | 'isKeyboardDismissDisabled' | 'style' | 'className'> {
466
465
  keyboardDismissDisabled?: boolean;
467
466
  open?: boolean;
467
+ container?: Element;
468
468
  }
469
469
  declare const _Popover: react.ForwardRefExoticComponent<PopoverProps & react.RefAttributes<HTMLDivElement>>;
470
470
 
@@ -478,8 +478,12 @@ interface UnderlayProps extends Omit<RAC.ModalOverlayProps, 'isOpen' | 'isDismis
478
478
  declare const Underlay: ({ size, variant, open, dismissable, keyboardDismissable, ...rest }: UnderlayProps) => react_jsx_runtime.JSX.Element;
479
479
 
480
480
  interface MarigoldProviderProps<T extends Theme> extends ThemeProviderProps<T> {
481
+ portalContainer?: string;
481
482
  }
482
- declare function MarigoldProvider<T extends Theme>({ children, theme, }: MarigoldProviderProps<T>): react_jsx_runtime.JSX.Element;
483
+ declare function MarigoldProvider<T extends Theme>({ children, theme, portalContainer, }: MarigoldProviderProps<T>): react_jsx_runtime.JSX.Element;
484
+
485
+ declare const OverlayContainerProvider: react.Provider<string | undefined>;
486
+ declare const usePortalContainer: () => HTMLElement | null;
483
487
 
484
488
  type RemovedProps$8 = 'className' | 'style' | 'isDisabled' | 'isInvalid' | 'isRequired' | 'isSelected';
485
489
  interface RadioGroupProps extends Omit<RAC.RadioGroupProps, RemovedProps$8> {
@@ -512,7 +516,7 @@ declare const _Radio: RadioComponent;
512
516
  * We need this so that TypeScripts allows us to add
513
517
  * additional properties to the component (function).
514
518
  */
515
- interface RadioComponent extends ForwardRefExoticComponent<RadioProps & RefAttributes<HTMLInputElement>> {
519
+ interface RadioComponent extends ForwardRefExoticComponent<RadioProps & RefAttributes<HTMLLabelElement>> {
516
520
  Group: typeof _RadioGroup;
517
521
  }
518
522
 
@@ -555,6 +559,12 @@ interface SelectComponent extends ForwardRefExoticComponent<SelectProps<object>
555
559
  }
556
560
  declare const _Select: SelectComponent;
557
561
 
562
+ interface ScrollableProps extends WidthProp {
563
+ children?: ReactNode;
564
+ height?: string;
565
+ }
566
+ declare const Scrollable: ({ children, width, height, ...props }: ScrollableProps) => react_jsx_runtime.JSX.Element;
567
+
558
568
  interface SliderProps<T> extends Omit<RAC.SliderProps<T>, 'isDisabled' | 'label'> {
559
569
  thumbLabels?: string[];
560
570
  width?: WidthProp['width'];
@@ -586,18 +596,20 @@ interface SwitchProps extends Omit<RAC.SwitchProps, RemovedProps$5> {
586
596
  readOnly?: RAC.SwitchProps['isReadOnly'];
587
597
  selected?: RAC.SwitchProps['isSelected'];
588
598
  }
589
- declare const _Switch: react.ForwardRefExoticComponent<SwitchProps & react.RefAttributes<HTMLInputElement>>;
599
+ declare const _Switch: react.ForwardRefExoticComponent<SwitchProps & react.RefAttributes<HTMLLabelElement>>;
590
600
 
591
601
  interface TableProps extends Pick<AriaTableProps<object>, 'focusMode' | 'onRowAction' | 'onCellAction'>, Omit<TableStateProps<object>, 'showSelectionCheckboxes'> {
592
602
  variant?: string;
593
603
  size?: string;
594
604
  stretch?: boolean;
605
+ stickyHeader?: boolean;
595
606
  }
596
607
  interface RowProps extends RowProps$1<any> {
597
608
  variant?: string;
598
609
  size?: string;
599
610
  }
600
- interface ColumnProps extends Omit<ColumnProps$1<any>, 'width'>, WidthProp, Pick<JSX.IntrinsicElements['td'], 'align'> {
611
+ interface ColumnProps extends Omit<ColumnProps$1<any>, 'width'>, WidthProp {
612
+ align?: Exclude<JSX.IntrinsicElements['td']['align'], 'char'>;
601
613
  }
602
614
  declare const Table: Table;
603
615
  /**
@@ -722,4 +734,4 @@ declare const _Tabs: {
722
734
  Item: (props: TabProps) => react_jsx_runtime.JSX.Element;
723
735
  };
724
736
 
725
- export { Accordion, AccordionItem, type AccordionItemProps, type AccordionOwnItemProps, type AccordionProps, ActionMenu, Aside, type AsideProps, Aspect, type AspectProps, _Autocomplete as Autocomplete, type AutocompleteProps, Badge, type BadgeProps, Body, type BodyProps, Breakout, type BreakoutProps, _Button as Button, type ButtonProps, _Calendar as Calendar, type CalendarProps, Card, type CardProps, Center, type CenterProps, _Checkbox as Checkbox, _CheckboxGroup as CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, CloseButton, Columns, type ColumnsProps, _ComboBox as ComboBox, type ComboBoxProps, Container, type ContainerProps, type CustomCheckboxProps, _DateField as DateField, type DateFieldProps, _DatePicker as DatePicker, type DatePickerProps, _Dialog as Dialog, type DialogProps, _Divider as Divider, type DividerProps, FieldBase, type FieldBaseProps, FieldGroup, FieldGroupContext, type FieldGroupContextProps, type FieldGroupProps, Footer, type FooterProps, _Header as Header, type HeaderProps, _Headline as Headline, type HeadlineProps, Image, type ImageProps, Inline, type InlineProps, _Input as Input, type InputProps, Inset, type InsetProps, _Label as Label, type LabelProps, _Link as Link, type LinkProps, List, type ListProps, MarigoldProvider, type MarigoldProviderProps, _Menu as Menu, type MenuProps, Message, type MessageProps, _Modal as Modal, type ModalProps, _NumberField as NumberField, type NumberFieldProps, _Popover as Popover, type PopoverProps, _Radio as Radio, type RadioComponent, _RadioGroup as RadioGroup, type RadioGroupProps, type RadioProps, type RowProps, _SearchField as SearchField, type SearchFieldProps, _Select as Select, type SelectComponent, type SelectProps, _Slider as Slider, type SliderProps, Split, type SplitProps, Stack, type StackProps, _Switch as Switch, type SwitchProps, Table, type TableProps, _Tabs as Tabs, type TabsProps, _Tag as Tag, type TagProps, Text, _TextArea as TextArea, type TextAreaProps, _TextField as TextField, type TextFieldProps, type TextProps, Tiles, type TilesProps, _Tooltip as Tooltip, type TooltipProps, Underlay, type UnderlayProps, XLoader, _Calendar, useFieldGroupContext };
737
+ export { Accordion, AccordionItem, type AccordionItemProps, type AccordionOwnItemProps, type AccordionProps, ActionMenu, Aside, type AsideProps, Aspect, type AspectProps, _Autocomplete as Autocomplete, type AutocompleteProps, Badge, type BadgeProps, Body, type BodyProps, Breakout, type BreakoutProps, _Button as Button, type ButtonProps, _Calendar as Calendar, type CalendarProps, Card, type CardProps, Center, type CenterProps, _Checkbox as Checkbox, _CheckboxGroup as CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, CloseButton, Columns, type ColumnsProps, _ComboBox as ComboBox, type ComboBoxProps, Container, type ContainerProps, type CustomCheckboxProps, _DateField as DateField, type DateFieldProps, _DatePicker as DatePicker, type DatePickerProps, _Dialog as Dialog, type DialogProps, _Divider as Divider, type DividerProps, FieldBase, type FieldBaseProps, FieldGroup, FieldGroupContext, type FieldGroupContextProps, type FieldGroupProps, Footer, type FooterProps, _Header as Header, type HeaderProps, _Headline as Headline, type HeadlineProps, Image, type ImageProps, Inline, type InlineProps, _Input as Input, type InputProps, Inset, type InsetProps, _Label as Label, type LabelProps, _Link as Link, type LinkProps, List, type ListProps, MarigoldProvider, type MarigoldProviderProps, _Menu as Menu, type MenuProps, Message, type MessageProps, _Modal as Modal, type ModalProps, _NumberField as NumberField, type NumberFieldProps, OverlayContainerProvider, _Popover as Popover, type PopoverProps, _Radio as Radio, type RadioComponent, _RadioGroup as RadioGroup, type RadioGroupProps, type RadioProps, type RowProps, Scrollable, type ScrollableProps, _SearchField as SearchField, type SearchFieldProps, _Select as Select, type SelectComponent, type SelectProps, _Slider as Slider, type SliderProps, Split, type SplitProps, Stack, type StackProps, _Switch as Switch, type SwitchProps, Table, type TableProps, _Tabs as Tabs, type TabsProps, _Tag as Tag, type TagProps, Text, _TextArea as TextArea, type TextAreaProps, _TextField as TextField, type TextFieldProps, type TextProps, Tiles, type TilesProps, _Tooltip as Tooltip, type TooltipProps, Underlay, type UnderlayProps, XLoader, _Calendar, useFieldGroupContext, usePortalContainer };