@marigold/components 11.4.1 → 12.0.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.ts CHANGED
@@ -1,14 +1,15 @@
1
1
  import { Orientation, RefObject, AriaLabelingProps as AriaLabelingProps$1 } from '@react-types/shared';
2
2
  export { Selection } from '@react-types/shared';
3
3
  export { useAsyncList, useListData } from '@react-stately/data';
4
+ import { GapSpaceProp, AspectProp, WidthProp, PaddingSpaceProp, PaddingRightProp, PaddingLeftProp, PaddingBottomProp, PaddingTopProp, PaddingSpacePropX, PaddingSpacePropY, PlaceItemsProp, MaxWidthProp, HeightProp, TextAlignProp, ObjectFitProp, ObjectPositionProp, alignment, Theme, ThemeProviderProps, FontSizeProp, FontWeightProp, FontStyleProp, CursorProp } from '@marigold/system';
5
+ export { DateFormat, NumericFormat, ThemeProvider, useTheme } from '@marigold/system';
4
6
  import * as react_jsx_runtime from 'react/jsx-runtime';
5
- import RAC, { ValidationResult, Key, DateValue, SlotProps, TagListProps, ProgressBarProps } from 'react-aria-components';
6
- export { Form, FormProps, RouterProvider } from 'react-aria-components';
7
+ import RAC, { ValidationResult, Key, DialogProps as DialogProps$1, DateValue, SlotProps, TagListProps, ProgressBarProps } from 'react-aria-components';
8
+ export { RouterProvider } from 'react-aria-components';
7
9
  import * as react from 'react';
8
10
  import react__default, { ReactNode, ReactElement, ElementType, ComponentPropsWithRef, ForwardRefExoticComponent, RefAttributes, Key as Key$1, CSSProperties, Dispatch, SetStateAction, JSX } from 'react';
9
- import { GapSpaceProp, AspectProp, WidthProp, PaddingSpaceProp, PaddingRightProp, PaddingLeftProp, PaddingBottomProp, PaddingTopProp, PaddingSpacePropX, PaddingSpacePropY, PlaceItemsProp, HeightProp, TextAlignProp, ObjectFitProp, ObjectPositionProp, alignment, Theme, ThemeProviderProps, FontSizeProp, FontWeightProp, FontStyleProp, CursorProp } from '@marigold/system';
10
- export { ThemeProvider, useTheme } from '@marigold/system';
11
11
  import { AriaRegionProps, NonZeroPercentage, DistributiveOmit, HtmlProps, AriaLabelingProps } from '@marigold/types';
12
+ import { AriaLandmarkRole } from '@react-aria/landmark';
12
13
  import { Props } from 'react-select';
13
14
  import { OverlayTriggerState, OverlayTriggerProps } from 'react-stately';
14
15
  export { I18nProvider } from '@react-aria/i18n';
@@ -126,8 +127,7 @@ interface FieldGroupProps {
126
127
  }
127
128
  declare const FieldGroup: ({ labelWidth, children }: FieldGroupProps) => react_jsx_runtime.JSX.Element;
128
129
 
129
- interface ListBoxItemProps extends Omit<RAC.ListBoxItemProps, 'style' | 'className'> {
130
- }
130
+ type ListBoxItemProps = Omit<RAC.ListBoxItemProps, 'style' | 'className'>;
131
131
  declare const _ListBoxItem: ({ ...props }: ListBoxItemProps) => react_jsx_runtime.JSX.Element;
132
132
 
133
133
  interface SectionProps extends Omit<RAC.SectionProps<object>, 'className' | 'style' | 'children'> {
@@ -402,8 +402,10 @@ interface CheckboxGroupProps extends Omit<RAC.CheckboxGroupProps, RemovedProps$m
402
402
  }
403
403
  declare const _CheckboxGroup: ({ children, variant, size, required, disabled, readOnly, error, width, orientation, ...rest }: CheckboxGroupProps) => react_jsx_runtime.JSX.Element;
404
404
 
405
- type RemovedProps$l = 'className' | 'style' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'isSelected' | 'isIndeterminate' | 'defaultSelected';
405
+ type RemovedProps$l = 'children' | 'className' | 'style' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'isSelected' | 'isIndeterminate' | 'defaultSelected';
406
406
  interface CheckboxProps extends Omit<RAC.CheckboxProps, RemovedProps$l> {
407
+ variant?: string;
408
+ size?: string;
407
409
  /**
408
410
  * Whether the element should be checked (controlled).
409
411
  */
@@ -437,12 +439,11 @@ interface CheckboxProps extends Omit<RAC.CheckboxProps, RemovedProps$l> {
437
439
  * @default false
438
440
  */
439
441
  error?: boolean;
440
- variant?: string;
441
- size?: string;
442
442
  /**
443
- * Children of the component.
443
+ * Set the label of the checkbox.
444
+ *
444
445
  */
445
- children?: ReactNode;
446
+ label?: ReactNode;
446
447
  }
447
448
  interface CheckboxComponent extends ForwardRefExoticComponent<CheckboxProps & RefAttributes<HTMLLabelElement>> {
448
449
  /**
@@ -543,8 +544,17 @@ interface ModalProps$1 extends RAC.ModalOverlayProps {
543
544
  }
544
545
  interface DialogTriggerProps extends Omit<RAC.DialogTriggerProps, 'isOpen'>, Omit<ModalProps$1, RemovedProps$k> {
545
546
  }
546
- declare const _DialogTrigger: ({ open, dismissable, keyboardDismissable, size, ...rest }: DialogTriggerProps) => ReactNode;
547
+ declare const _DialogTrigger: ({ open, dismissable, keyboardDismissable, ...rest }: DialogTriggerProps) => ReactNode;
547
548
 
549
+ interface DialogComponent extends ForwardRefExoticComponent<DialogProps & RefAttributes<HTMLInputElement>> {
550
+ /**
551
+ * Options for the Combobox.
552
+ */
553
+ Trigger: typeof _DialogTrigger;
554
+ Title: typeof DialogTitle;
555
+ Content: typeof DialogContent;
556
+ Actions: typeof DialogActions;
557
+ }
548
558
  interface DialogProps extends Omit<RAC.DialogProps, 'className' | 'style'> {
549
559
  variant?: string;
550
560
  size?: string;
@@ -553,14 +563,18 @@ interface DialogProps extends Omit<RAC.DialogProps, 'className' | 'style'> {
553
563
  */
554
564
  closeButton?: boolean;
555
565
  }
556
- interface DialogComponent extends ForwardRefExoticComponent<DialogProps & RefAttributes<HTMLInputElement>> {
566
+ interface DialogProps extends Omit<RAC.DialogProps, 'className' | 'style'> {
567
+ variant?: string;
568
+ size?: string;
557
569
  /**
558
- * Options for the Combobox.
570
+ * Show the close button.
559
571
  */
560
- Trigger: typeof _DialogTrigger;
561
- Title: typeof DialogTitle;
562
- Content: typeof DialogContent;
563
- Actions: typeof DialogActions;
572
+ closeButton?: boolean;
573
+ /**
574
+ * If `true`, the dialog will be non-modal, meaning it will not block interaction with the background content.
575
+ * @default false
576
+ */
577
+ isNonModal?: boolean;
564
578
  }
565
579
  declare const _Dialog: DialogComponent;
566
580
 
@@ -569,6 +583,78 @@ interface DividerProps extends RAC.SeparatorProps {
569
583
  }
570
584
  declare const _Divider: ({ variant, ...props }: DividerProps) => react_jsx_runtime.JSX.Element;
571
585
 
586
+ interface DrawerContentProps {
587
+ variant?: string;
588
+ size?: string;
589
+ /**
590
+ * Children of the component.
591
+ */
592
+ children?: ReactNode;
593
+ }
594
+
595
+ interface DrawerTitleProps {
596
+ variant?: string;
597
+ size?: string;
598
+ /**
599
+ * Children of the component.
600
+ */
601
+ children?: React.ReactNode;
602
+ }
603
+
604
+ interface DrawerTriggerProps extends Omit<RAC.DialogTriggerProps, 'isOpen'> {
605
+ /**
606
+ * Whether the overlay is open by default (controlled).
607
+ * @default false
608
+ */
609
+ open?: boolean;
610
+ }
611
+
612
+ interface DrawerActions {
613
+ variant?: string;
614
+ size?: string;
615
+ /**
616
+ * Children of the component.
617
+ */
618
+ children?: ReactNode;
619
+ }
620
+ declare const DrawerActions: ({ variant, size, children }: DrawerActions) => react_jsx_runtime.JSX.Element;
621
+
622
+ interface DrawerProps extends Omit<DialogProps$1, 'className' | 'style' | 'isOpen' | 'role'> {
623
+ variant?: string;
624
+ size?: string;
625
+ /**
626
+ * Whether the overlay is open by default (controlled).
627
+ * @default undefined
628
+ */
629
+ open?: boolean;
630
+ /**
631
+ * Whether pressing the escape key closes the modal.
632
+ * @default true
633
+ */
634
+ keyboardDismissable?: boolean;
635
+ /**
636
+ * Show the close button.
637
+ */
638
+ closeButton?: boolean;
639
+ /**
640
+ * The `role` property sets the ARIA landmark role for this component,
641
+ * enhancing accessibility by clarifying its purpose to assistive technologies.
642
+ *
643
+ * Only ARIA landmark roles (e.g., "complementary", "search", "banner", "navigation")
644
+ * can be used to ensure proper semantic context. Defaults to `"complementary"`
645
+ * for secondary content (e.g., filters, sidebar) that supports the main content.
646
+ * @default "complementary"
647
+ */
648
+ role?: Exclude<AriaLandmarkRole, 'main'>;
649
+ }
650
+ declare const Drawer: {
651
+ ({ children, variant, size, open, keyboardDismissable, closeButton, role, ...props }: DrawerProps): react_jsx_runtime.JSX.Element;
652
+ Trigger: ({ open, children, ...props }: DrawerTriggerProps) => react_jsx_runtime.JSX.Element;
653
+ Title: ({ variant, size, children }: DrawerTitleProps) => react_jsx_runtime.JSX.Element;
654
+ Content: ({ variant, size, children, }: DrawerContentProps) => react_jsx_runtime.JSX.Element;
655
+ Actions: ({ variant, size, children }: DrawerActions) => react_jsx_runtime.JSX.Element;
656
+ };
657
+
572
658
  interface FooterProps extends Omit<HtmlProps<'footer'>, 'className'> {
573
659
  /**
574
660
  * The children of the component.
@@ -579,6 +665,15 @@ interface FooterProps extends Omit<HtmlProps<'footer'>, 'className'> {
579
665
  }
580
666
  declare const Footer: ({ children, variant, size, ...props }: FooterProps) => react_jsx_runtime.JSX.Element;
581
667
 
668
+ interface FormProps extends Omit<RAC.FormProps, 'className' | 'style'>, MaxWidthProp {
669
+ /**
670
+ * Removes the form's visual container so that it does not impact the layout,
671
+ * letting child elements render naturally.
672
+ */
673
+ unstyled?: boolean;
674
+ }
675
+ declare const _Form: ({ unstyled, maxWidth, ...props }: FormProps) => react_jsx_runtime.JSX.Element;
676
+
582
677
  interface GridAreaProps {
583
678
  /**
584
679
  * Name of the grid area slot.
@@ -863,8 +958,7 @@ interface MenuSectionProps extends Omit<RAC.SectionProps<object>, RemovedProps$d
863
958
  }
864
959
 
865
960
  type RemovedProps$c = 'style' | 'className';
866
- interface MenuItemProps extends Omit<RAC.MenuItemProps, RemovedProps$c> {
867
- }
961
+ type MenuItemProps = Omit<RAC.MenuItemProps, RemovedProps$c>;
868
962
 
869
963
  interface PopoverProps extends Omit<RAC.PopoverProps, 'isOpen' | 'isKeyboardDismissDisabled' | 'style' | 'className' | 'children'> {
870
964
  keyboardDismissDisabled?: boolean;
@@ -1226,14 +1320,13 @@ interface PaginationProps {
1226
1320
  */
1227
1321
  onChange?: (page: number) => void;
1228
1322
  /**
1229
- * Labels for the pagination controls.
1323
+ * Labels for the pagination controls (Previous and Next button).
1230
1324
  */
1231
1325
  controlLabels?: [string, string];
1232
1326
  }
1233
- declare const _Pagination: ({ defaultPage, page, totalItems, pageSize, onChange, controlLabels, }: PaginationProps) => react_jsx_runtime.JSX.Element;
1327
+ declare const _Pagination: ({ defaultPage, page, totalItems, pageSize, ...props }: PaginationProps) => react_jsx_runtime.JSX.Element;
1234
1328
 
1235
- interface MarigoldProviderProps<T extends Theme> extends ThemeProviderProps<T> {
1236
- }
1329
+ type MarigoldProviderProps<T extends Theme> = ThemeProviderProps<T>;
1237
1330
  declare function MarigoldProvider<T extends Theme>({ children, className, theme, }: MarigoldProviderProps<T>): react_jsx_runtime.JSX.Element;
1238
1331
 
1239
1332
  declare const OverlayContainerProvider: react.Provider<string | undefined>;
@@ -1483,7 +1576,9 @@ interface ScrollableProps extends WidthProp, AriaRegionProps {
1483
1576
  }
1484
1577
  declare const Scrollable: ({ children, width, height, ...props }: ScrollableProps) => react_jsx_runtime.JSX.Element;
1485
1578
 
1486
- interface SliderProps<T> extends Omit<RAC.SliderProps<T>, 'isDisabled' | 'orientation'>, Pick<FieldBaseProps<'label'>, 'description'> {
1579
+ interface SliderProps<T> extends Omit<RAC.SliderProps<T>, 'children' | 'isDisabled' | 'orientation'>, Pick<FieldBaseProps<'label'>, 'description'> {
1580
+ variant?: string;
1581
+ size?: string;
1487
1582
  /**
1488
1583
  * Labels for the thumbs in the slider. Also used for the name when submitting the form.
1489
1584
  */
@@ -1493,23 +1588,18 @@ interface SliderProps<T> extends Omit<RAC.SliderProps<T>, 'isDisabled' | 'orient
1493
1588
  * @default full
1494
1589
  */
1495
1590
  width?: WidthProp['width'];
1496
- variant?: string;
1497
- size?: string;
1498
1591
  /**
1499
1592
  * If `true`, the input is disabled.
1500
1593
  * @default false
1501
1594
  */
1502
1595
  disabled?: boolean;
1503
1596
  /**
1504
- * @deprecated Will be removed in the next major version. Use `label` prop instead.
1597
+ * Set the label of the slider.
1505
1598
  */
1506
- children?: ReactNode;
1507
1599
  label?: string;
1508
1600
  }
1509
- declare const _Slider: react__default.ForwardRefExoticComponent<SliderProps<number | number[]> & react__default.RefAttributes<HTMLDivElement>>;
1601
+ declare const _Slider: react.ForwardRefExoticComponent<SliderProps<number | number[]> & react.RefAttributes<HTMLDivElement>>;
1510
1602
 
1511
- interface SplitProps {
1512
- }
1513
1603
  declare const Split: () => react_jsx_runtime.JSX.Element;
1514
1604
 
1515
1605
  interface StackProps extends GapSpaceProp, AriaRegionProps {
@@ -1533,11 +1623,14 @@ interface StackProps extends GapSpaceProp, AriaRegionProps {
1533
1623
  }
1534
1624
  declare const Stack: ({ children, space, stretch, alignX, alignY, ...props }: StackProps) => react_jsx_runtime.JSX.Element;
1535
1625
 
1536
- type RemovedProps$6 = 'className' | 'isDisabled' | 'isReadOnly' | 'isSelected' | 'children' | 'slot';
1626
+ type RemovedProps$6 = 'children' | 'className' | 'isDisabled' | 'isReadOnly' | 'isSelected' | 'children' | 'slot';
1537
1627
  interface SwitchProps extends Omit<RAC.SwitchProps, RemovedProps$6> {
1538
1628
  variant?: string;
1539
1629
  size?: string;
1540
- children?: ReactNode;
1630
+ /**
1631
+ * Set the label of the switch.
1632
+ */
1633
+ label?: ReactNode;
1541
1634
  /**
1542
1635
  * Sets the width of the field. You can see allowed tokens here: https://tailwindcss.com/docs/width
1543
1636
  * @default full
@@ -1796,7 +1889,7 @@ declare const _Tooltip: {
1796
1889
  };
1797
1890
 
1798
1891
  type RemovedProps$1 = 'className' | 'style' | 'children' | 'isRequired';
1799
- interface TagGroupProps extends Omit<RAC.TagGroupProps, RemovedProps$1>, Pick<TagListProps<object>, 'items' | 'children' | 'renderEmptyState'>, Pick<FieldBaseProps<'label'>, 'label' | 'description'> {
1892
+ interface TagGroupProps extends Omit<RAC.TagGroupProps, RemovedProps$1>, Pick<TagListProps<object>, 'items' | 'children'>, Pick<FieldBaseProps<'label'>, 'label' | 'description'> {
1800
1893
  variant?: string;
1801
1894
  size?: string;
1802
1895
  /**
@@ -1805,16 +1898,15 @@ interface TagGroupProps extends Omit<RAC.TagGroupProps, RemovedProps$1>, Pick<Ta
1805
1898
  */
1806
1899
  width?: WidthProp['width'];
1807
1900
  /**
1808
- * Displays a remove button on each tag.
1809
- * @default false
1901
+ * The name of the field, used when submitting form data.
1902
+ */
1903
+ name?: string;
1904
+ /**
1905
+ * Provides content to display when there are no items in the tag list.
1810
1906
  */
1811
- allowsRemoving?: boolean;
1907
+ emptyState?: TagListProps<object>['renderEmptyState'];
1812
1908
  }
1813
1909
 
1814
- interface CloseButtonProps {
1815
- className: string;
1816
- }
1817
- declare const CloseButton: ({ className }: CloseButtonProps) => react_jsx_runtime.JSX.Element;
1818
1910
  type RemovedProps = 'className' | 'style' | 'isDisabled';
1819
1911
  interface TagProps extends Omit<RAC.TagProps, RemovedProps> {
1820
1912
  variant?: string;
@@ -1824,7 +1916,7 @@ interface TagProps extends Omit<RAC.TagProps, RemovedProps> {
1824
1916
  }
1825
1917
  declare const _Tag: {
1826
1918
  ({ variant, size, children, disabled, ...rest }: TagProps): react_jsx_runtime.JSX.Element;
1827
- Group: ({ width, items, children, renderEmptyState, variant, size, ...rest }: TagGroupProps) => react_jsx_runtime.JSX.Element;
1919
+ Group: ({ width, items, children, emptyState, variant, size, name, ...rest }: TagGroupProps) => react_jsx_runtime.JSX.Element;
1828
1920
  };
1829
1921
 
1830
1922
  interface LoaderProps extends Pick<ProgressBarProps, 'id' | 'aria-label' | 'aria-labelledby' | 'aria-describedby' | 'aria-details'> {
@@ -1845,13 +1937,11 @@ interface XLoaderProps extends LoaderProps {
1845
1937
  }
1846
1938
  declare const XLoader: ({ mode, variant, ...props }: XLoaderProps) => react_jsx_runtime.JSX.Element;
1847
1939
 
1848
- interface TabProps extends Omit<RAC.TabProps, 'className' | 'style'> {
1849
- }
1940
+ type TabProps = Omit<RAC.TabProps, 'className' | 'style'>;
1850
1941
 
1851
- interface TabPanelProps extends Omit<RAC.TabPanelProps, 'className' | 'style'> {
1852
- }
1942
+ type TabPanelProps = Omit<RAC.TabPanelProps, 'className' | 'style'>;
1853
1943
 
1854
- interface TabListProps extends Omit<RAC.TabListProps<Object>, 'className' | 'style'>, GapSpaceProp {
1944
+ interface TabListProps extends Omit<RAC.TabListProps<object>, 'className' | 'style'>, GapSpaceProp {
1855
1945
  }
1856
1946
 
1857
1947
  interface TabsProps extends Omit<RAC.TabsProps, 'className' | 'style' | 'isDisabled' | 'orientation' | 'slot'> {
@@ -1870,4 +1960,4 @@ declare const _Tabs: {
1870
1960
  Item: (props: TabProps) => react_jsx_runtime.JSX.Element;
1871
1961
  };
1872
1962
 
1873
- export { Accordion, AccordionItem, type AccordionProps, ActionMenu, type GridAreaProps as AreaProps, 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, type CheckboxComponent, _CheckboxGroup as CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, CloseButton, type ColumnProps, Columns, type ColumnsProps, _ComboBox as ComboBox, type ComboBoxProps, Container, type ContainerProps, _DateField as DateField, type DateFieldProps, _DatePicker as DatePicker, type DatePickerProps, _Dialog as Dialog, type DialogProps, type DisclosureProps, _Divider as Divider, type DividerProps, FieldBase, type FieldBaseProps, FieldGroup, FieldGroupContext, type FieldGroupContextProps, type FieldGroupProps, Footer, type FooterProps, Grid, type GridProps, _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, _Modal as Modal, type ModalProps, Multiselect, NonModal, type NonModalProps, type NonModalRenderProps, _NumberField as NumberField, type NumberFieldProps, OverlayContainerProvider, _Pagination as Pagination, type PaginationProps, _Popover as Popover, type PopoverProps, _Radio as Radio, type RadioComponent, _RadioGroup as RadioGroup, type RadioGroupProps, type RadioProps, type RemovedProps$l as RemovedProps, type RowProps, Scrollable, type ScrollableProps, _SearchField as SearchField, type SearchFieldProps, SectionMessage, type SectionMessageProps, _Select as Select, type SelectComponent, _SelectList as SelectList, type SelectListProps, 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, type TemplateValue, _Text as 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, type XLoaderProps, _Calendar, gridColsAlign, gridColumn, useFieldGroupContext, usePortalContainer };
1963
+ export { Accordion, AccordionItem, type AccordionProps, ActionMenu, type GridAreaProps as AreaProps, 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, type CheckboxComponent, _CheckboxGroup as CheckboxGroup, type CheckboxGroupProps, type CheckboxProps, type ColumnProps, Columns, type ColumnsProps, _ComboBox as ComboBox, type ComboBoxProps, Container, type ContainerProps, _DateField as DateField, type DateFieldProps, _DatePicker as DatePicker, type DatePickerProps, _Dialog as Dialog, type DialogProps, type DisclosureProps, _Divider as Divider, type DividerProps, Drawer, FieldBase, type FieldBaseProps, FieldGroup, FieldGroupContext, type FieldGroupContextProps, type FieldGroupProps, Footer, type FooterProps, _Form as Form, type FormProps, Grid, type GridProps, _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, _Modal as Modal, type ModalProps, Multiselect, NonModal, type NonModalProps, type NonModalRenderProps, _NumberField as NumberField, type NumberFieldProps, OverlayContainerProvider, _Pagination as Pagination, type PaginationProps, _Popover as Popover, type PopoverProps, _Radio as Radio, type RadioComponent, _RadioGroup as RadioGroup, type RadioGroupProps, type RadioProps, type RemovedProps$l as RemovedProps, type RowProps, Scrollable, type ScrollableProps, _SearchField as SearchField, type SearchFieldProps, SectionMessage, type SectionMessageProps, _Select as Select, type SelectComponent, _SelectList as SelectList, type SelectListProps, type SelectProps, _Slider as Slider, type SliderProps, Split, Stack, type StackProps, _Switch as Switch, type SwitchProps, Table, type TableProps, _Tabs as Tabs, type TabsProps, _Tag as Tag, type TagProps, type TemplateValue, _Text as 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, type XLoaderProps, _Calendar, gridColsAlign, gridColumn, useFieldGroupContext, usePortalContainer };