@marigold/components 11.2.3 → 11.3.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 +87 -7
- package/dist/index.d.ts +87 -7
- package/dist/index.js +510 -356
- package/dist/index.mjs +463 -296
- package/package.json +24 -12
package/dist/index.d.mts
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
1
|
-
import { Orientation } from '@react-types/shared';
|
|
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
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
|
-
import RAC, { ValidationResult, Key, DateValue, TagListProps, ProgressBarProps } from 'react-aria-components';
|
|
5
|
+
import RAC, { ValidationResult, Key, DateValue, SlotProps, TagListProps, ProgressBarProps } from 'react-aria-components';
|
|
6
6
|
export { Form, FormProps, RouterProvider } from 'react-aria-components';
|
|
7
7
|
import * as react from 'react';
|
|
8
|
-
import react__default, { ReactNode, ReactElement, ElementType, ComponentPropsWithRef, ForwardRefExoticComponent, RefAttributes, Key as Key$1, Dispatch, SetStateAction, JSX } from 'react';
|
|
8
|
+
import react__default, { ReactNode, ReactElement, ElementType, ComponentPropsWithRef, ForwardRefExoticComponent, RefAttributes, Key as Key$1, CSSProperties, Dispatch, SetStateAction, JSX } from 'react';
|
|
9
9
|
import { GapSpaceProp, AspectProp, WidthProp, PaddingSpaceProp, PaddingRightProp, PaddingLeftProp, PaddingBottomProp, PaddingTopProp, PaddingSpacePropX, PaddingSpacePropY, PlaceItemsProp, TextAlignProp, HeightProp, ObjectFitProp, ObjectPositionProp, alignment, Theme, ThemeProviderProps, FontSizeProp, FontWeightProp, FontStyleProp, CursorProp } from '@marigold/system';
|
|
10
10
|
export { ThemeProvider, useTheme } from '@marigold/system';
|
|
11
11
|
import { AriaRegionProps, NonZeroPercentage, DistributiveOmit, HtmlProps, AriaLabelingProps } from '@marigold/types';
|
|
12
12
|
import { Props } from 'react-select';
|
|
13
|
+
import { OverlayTriggerState, OverlayTriggerProps } from 'react-stately';
|
|
13
14
|
export { I18nProvider } from '@react-aria/i18n';
|
|
14
15
|
import { AriaTableProps } from '@react-aria/table';
|
|
15
|
-
import { TableStateProps,
|
|
16
|
+
import { TableStateProps, TableBody, Cell, TableHeader, ColumnProps as ColumnProps$1, RowProps as RowProps$1 } from '@react-stately/table';
|
|
16
17
|
export { VisuallyHidden } from '@react-aria/visually-hidden';
|
|
17
18
|
|
|
18
19
|
type RemovedProps$q = 'isDisabled' | 'isExpanded';
|
|
@@ -544,7 +545,7 @@ interface DialogTitleProps extends Omit<HeadlineProps, 'slot'> {
|
|
|
544
545
|
|
|
545
546
|
interface DialogTriggerProps extends Omit<RAC.DialogTriggerProps, 'isOpen'> {
|
|
546
547
|
/**
|
|
547
|
-
*
|
|
548
|
+
* Whether the dialog is open by default (controlled).
|
|
548
549
|
* @default false
|
|
549
550
|
*/
|
|
550
551
|
open?: boolean;
|
|
@@ -1038,6 +1039,85 @@ interface ModalProps extends RAC.ModalOverlayProps {
|
|
|
1038
1039
|
}
|
|
1039
1040
|
declare const _Modal: react.ForwardRefExoticComponent<Omit<ModalProps, "className" | "isOpen" | "isDismissable" | "isKeyboardDismissDisabled"> & react.RefAttributes<HTMLDivElement>>;
|
|
1040
1041
|
|
|
1042
|
+
interface StyleRenderProps<T> {
|
|
1043
|
+
/** The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state. */
|
|
1044
|
+
className?: string | ((values: T & {
|
|
1045
|
+
defaultClassName: string | undefined;
|
|
1046
|
+
}) => string);
|
|
1047
|
+
/** The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state. */
|
|
1048
|
+
style?: CSSProperties | ((values: T & {
|
|
1049
|
+
defaultStyle: CSSProperties;
|
|
1050
|
+
}) => CSSProperties | undefined);
|
|
1051
|
+
}
|
|
1052
|
+
interface RenderProps<T> extends StyleRenderProps<T> {
|
|
1053
|
+
/** The children of the component. A function may be provided to alter the children based on component state. */
|
|
1054
|
+
children?: ReactNode | ((values: T & {
|
|
1055
|
+
defaultChildren: ReactNode | undefined;
|
|
1056
|
+
}) => ReactNode);
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
interface AriaNonModalProps {
|
|
1060
|
+
/**
|
|
1061
|
+
* The ref for the non-modal element.
|
|
1062
|
+
*/
|
|
1063
|
+
nonModalRef: RefObject<Element | null>;
|
|
1064
|
+
/**
|
|
1065
|
+
* Whether pressing the escape key closes the modal.
|
|
1066
|
+
* @default true
|
|
1067
|
+
*/
|
|
1068
|
+
keyboardDismissable?: boolean;
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
interface NonModalRenderProps {
|
|
1072
|
+
/**
|
|
1073
|
+
* Whether the popover is currently entering. Use this to apply animations.
|
|
1074
|
+
* @selector [data-entering]
|
|
1075
|
+
*/
|
|
1076
|
+
isEntering: boolean;
|
|
1077
|
+
/**
|
|
1078
|
+
* Whether the popover is currently exiting. Use this to apply animations.
|
|
1079
|
+
* @selector [data-exiting]
|
|
1080
|
+
*/
|
|
1081
|
+
isExiting: boolean;
|
|
1082
|
+
/**
|
|
1083
|
+
* State of the non-modal.
|
|
1084
|
+
*/
|
|
1085
|
+
state: OverlayTriggerState;
|
|
1086
|
+
}
|
|
1087
|
+
interface NonModalInnerProps extends AriaNonModalProps, AriaLabelingProps$1, SlotProps, RenderProps<NonModalRenderProps> {
|
|
1088
|
+
state: OverlayTriggerState;
|
|
1089
|
+
isEntering?: boolean;
|
|
1090
|
+
isExiting: boolean;
|
|
1091
|
+
}
|
|
1092
|
+
interface NonModalProps extends Omit<OverlayTriggerProps, 'isOpen'>, AriaLabelingProps$1, SlotProps, Pick<NonModalInnerProps, 'style' | 'className' | 'children'> {
|
|
1093
|
+
/**
|
|
1094
|
+
* Whether the overlay is open by default (controlled).
|
|
1095
|
+
* @default undefined
|
|
1096
|
+
*/
|
|
1097
|
+
open?: boolean;
|
|
1098
|
+
/**
|
|
1099
|
+
* Whether pressing the escape key closes the modal.
|
|
1100
|
+
* @default true
|
|
1101
|
+
*/
|
|
1102
|
+
keyboardDismissable?: boolean;
|
|
1103
|
+
/**
|
|
1104
|
+
* Whether the popover is currently performing an entry animation.
|
|
1105
|
+
* @default undefined
|
|
1106
|
+
*/
|
|
1107
|
+
isEntering?: boolean;
|
|
1108
|
+
/**
|
|
1109
|
+
* Whether the popover is currently performing an exit animation.
|
|
1110
|
+
* @default undefined
|
|
1111
|
+
*/
|
|
1112
|
+
isExiting?: boolean;
|
|
1113
|
+
/**
|
|
1114
|
+
* Ref to the overlay element.
|
|
1115
|
+
* @default undefined
|
|
1116
|
+
*/
|
|
1117
|
+
ref?: RefObject<HTMLElement | null>;
|
|
1118
|
+
}
|
|
1119
|
+
declare const NonModal: react.ForwardRefExoticComponent<Omit<NonModalProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
1120
|
+
|
|
1041
1121
|
interface UnderlayProps extends Omit<RAC.ModalOverlayProps, 'isOpen' | 'isDismissable' | 'isKeyboardDismissDisabled' | 'className'> {
|
|
1042
1122
|
variant?: string;
|
|
1043
1123
|
size?: string;
|
|
@@ -1080,7 +1160,7 @@ interface MarigoldProviderProps<T extends Theme> extends ThemeProviderProps<T> {
|
|
|
1080
1160
|
declare function MarigoldProvider<T extends Theme>({ children, className, theme, }: MarigoldProviderProps<T>): react_jsx_runtime.JSX.Element;
|
|
1081
1161
|
|
|
1082
1162
|
declare const OverlayContainerProvider: react.Provider<string | undefined>;
|
|
1083
|
-
declare const usePortalContainer: () => HTMLElement |
|
|
1163
|
+
declare const usePortalContainer: () => HTMLElement | undefined;
|
|
1084
1164
|
|
|
1085
1165
|
type RemovedProps$9 = 'className' | 'style' | 'isDisabled' | 'isInvalid' | 'isRequired' | 'isSelected';
|
|
1086
1166
|
interface RadioGroupProps extends Omit<RAC.RadioGroupProps, RemovedProps$9> {
|
|
@@ -1713,4 +1793,4 @@ declare const _Tabs: {
|
|
|
1713
1793
|
Item: (props: TabProps) => react_jsx_runtime.JSX.Element;
|
|
1714
1794
|
};
|
|
1715
1795
|
|
|
1716
|
-
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, _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$k 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 };
|
|
1796
|
+
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$k 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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
1
|
-
import { Orientation } from '@react-types/shared';
|
|
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
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
|
-
import RAC, { ValidationResult, Key, DateValue, TagListProps, ProgressBarProps } from 'react-aria-components';
|
|
5
|
+
import RAC, { ValidationResult, Key, DateValue, SlotProps, TagListProps, ProgressBarProps } from 'react-aria-components';
|
|
6
6
|
export { Form, FormProps, RouterProvider } from 'react-aria-components';
|
|
7
7
|
import * as react from 'react';
|
|
8
|
-
import react__default, { ReactNode, ReactElement, ElementType, ComponentPropsWithRef, ForwardRefExoticComponent, RefAttributes, Key as Key$1, Dispatch, SetStateAction, JSX } from 'react';
|
|
8
|
+
import react__default, { ReactNode, ReactElement, ElementType, ComponentPropsWithRef, ForwardRefExoticComponent, RefAttributes, Key as Key$1, CSSProperties, Dispatch, SetStateAction, JSX } from 'react';
|
|
9
9
|
import { GapSpaceProp, AspectProp, WidthProp, PaddingSpaceProp, PaddingRightProp, PaddingLeftProp, PaddingBottomProp, PaddingTopProp, PaddingSpacePropX, PaddingSpacePropY, PlaceItemsProp, TextAlignProp, HeightProp, ObjectFitProp, ObjectPositionProp, alignment, Theme, ThemeProviderProps, FontSizeProp, FontWeightProp, FontStyleProp, CursorProp } from '@marigold/system';
|
|
10
10
|
export { ThemeProvider, useTheme } from '@marigold/system';
|
|
11
11
|
import { AriaRegionProps, NonZeroPercentage, DistributiveOmit, HtmlProps, AriaLabelingProps } from '@marigold/types';
|
|
12
12
|
import { Props } from 'react-select';
|
|
13
|
+
import { OverlayTriggerState, OverlayTriggerProps } from 'react-stately';
|
|
13
14
|
export { I18nProvider } from '@react-aria/i18n';
|
|
14
15
|
import { AriaTableProps } from '@react-aria/table';
|
|
15
|
-
import { TableStateProps,
|
|
16
|
+
import { TableStateProps, TableBody, Cell, TableHeader, ColumnProps as ColumnProps$1, RowProps as RowProps$1 } from '@react-stately/table';
|
|
16
17
|
export { VisuallyHidden } from '@react-aria/visually-hidden';
|
|
17
18
|
|
|
18
19
|
type RemovedProps$q = 'isDisabled' | 'isExpanded';
|
|
@@ -544,7 +545,7 @@ interface DialogTitleProps extends Omit<HeadlineProps, 'slot'> {
|
|
|
544
545
|
|
|
545
546
|
interface DialogTriggerProps extends Omit<RAC.DialogTriggerProps, 'isOpen'> {
|
|
546
547
|
/**
|
|
547
|
-
*
|
|
548
|
+
* Whether the dialog is open by default (controlled).
|
|
548
549
|
* @default false
|
|
549
550
|
*/
|
|
550
551
|
open?: boolean;
|
|
@@ -1038,6 +1039,85 @@ interface ModalProps extends RAC.ModalOverlayProps {
|
|
|
1038
1039
|
}
|
|
1039
1040
|
declare const _Modal: react.ForwardRefExoticComponent<Omit<ModalProps, "className" | "isOpen" | "isDismissable" | "isKeyboardDismissDisabled"> & react.RefAttributes<HTMLDivElement>>;
|
|
1040
1041
|
|
|
1042
|
+
interface StyleRenderProps<T> {
|
|
1043
|
+
/** The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state. */
|
|
1044
|
+
className?: string | ((values: T & {
|
|
1045
|
+
defaultClassName: string | undefined;
|
|
1046
|
+
}) => string);
|
|
1047
|
+
/** The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state. */
|
|
1048
|
+
style?: CSSProperties | ((values: T & {
|
|
1049
|
+
defaultStyle: CSSProperties;
|
|
1050
|
+
}) => CSSProperties | undefined);
|
|
1051
|
+
}
|
|
1052
|
+
interface RenderProps<T> extends StyleRenderProps<T> {
|
|
1053
|
+
/** The children of the component. A function may be provided to alter the children based on component state. */
|
|
1054
|
+
children?: ReactNode | ((values: T & {
|
|
1055
|
+
defaultChildren: ReactNode | undefined;
|
|
1056
|
+
}) => ReactNode);
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
interface AriaNonModalProps {
|
|
1060
|
+
/**
|
|
1061
|
+
* The ref for the non-modal element.
|
|
1062
|
+
*/
|
|
1063
|
+
nonModalRef: RefObject<Element | null>;
|
|
1064
|
+
/**
|
|
1065
|
+
* Whether pressing the escape key closes the modal.
|
|
1066
|
+
* @default true
|
|
1067
|
+
*/
|
|
1068
|
+
keyboardDismissable?: boolean;
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
interface NonModalRenderProps {
|
|
1072
|
+
/**
|
|
1073
|
+
* Whether the popover is currently entering. Use this to apply animations.
|
|
1074
|
+
* @selector [data-entering]
|
|
1075
|
+
*/
|
|
1076
|
+
isEntering: boolean;
|
|
1077
|
+
/**
|
|
1078
|
+
* Whether the popover is currently exiting. Use this to apply animations.
|
|
1079
|
+
* @selector [data-exiting]
|
|
1080
|
+
*/
|
|
1081
|
+
isExiting: boolean;
|
|
1082
|
+
/**
|
|
1083
|
+
* State of the non-modal.
|
|
1084
|
+
*/
|
|
1085
|
+
state: OverlayTriggerState;
|
|
1086
|
+
}
|
|
1087
|
+
interface NonModalInnerProps extends AriaNonModalProps, AriaLabelingProps$1, SlotProps, RenderProps<NonModalRenderProps> {
|
|
1088
|
+
state: OverlayTriggerState;
|
|
1089
|
+
isEntering?: boolean;
|
|
1090
|
+
isExiting: boolean;
|
|
1091
|
+
}
|
|
1092
|
+
interface NonModalProps extends Omit<OverlayTriggerProps, 'isOpen'>, AriaLabelingProps$1, SlotProps, Pick<NonModalInnerProps, 'style' | 'className' | 'children'> {
|
|
1093
|
+
/**
|
|
1094
|
+
* Whether the overlay is open by default (controlled).
|
|
1095
|
+
* @default undefined
|
|
1096
|
+
*/
|
|
1097
|
+
open?: boolean;
|
|
1098
|
+
/**
|
|
1099
|
+
* Whether pressing the escape key closes the modal.
|
|
1100
|
+
* @default true
|
|
1101
|
+
*/
|
|
1102
|
+
keyboardDismissable?: boolean;
|
|
1103
|
+
/**
|
|
1104
|
+
* Whether the popover is currently performing an entry animation.
|
|
1105
|
+
* @default undefined
|
|
1106
|
+
*/
|
|
1107
|
+
isEntering?: boolean;
|
|
1108
|
+
/**
|
|
1109
|
+
* Whether the popover is currently performing an exit animation.
|
|
1110
|
+
* @default undefined
|
|
1111
|
+
*/
|
|
1112
|
+
isExiting?: boolean;
|
|
1113
|
+
/**
|
|
1114
|
+
* Ref to the overlay element.
|
|
1115
|
+
* @default undefined
|
|
1116
|
+
*/
|
|
1117
|
+
ref?: RefObject<HTMLElement | null>;
|
|
1118
|
+
}
|
|
1119
|
+
declare const NonModal: react.ForwardRefExoticComponent<Omit<NonModalProps, "ref"> & react.RefAttributes<HTMLElement>>;
|
|
1120
|
+
|
|
1041
1121
|
interface UnderlayProps extends Omit<RAC.ModalOverlayProps, 'isOpen' | 'isDismissable' | 'isKeyboardDismissDisabled' | 'className'> {
|
|
1042
1122
|
variant?: string;
|
|
1043
1123
|
size?: string;
|
|
@@ -1080,7 +1160,7 @@ interface MarigoldProviderProps<T extends Theme> extends ThemeProviderProps<T> {
|
|
|
1080
1160
|
declare function MarigoldProvider<T extends Theme>({ children, className, theme, }: MarigoldProviderProps<T>): react_jsx_runtime.JSX.Element;
|
|
1081
1161
|
|
|
1082
1162
|
declare const OverlayContainerProvider: react.Provider<string | undefined>;
|
|
1083
|
-
declare const usePortalContainer: () => HTMLElement |
|
|
1163
|
+
declare const usePortalContainer: () => HTMLElement | undefined;
|
|
1084
1164
|
|
|
1085
1165
|
type RemovedProps$9 = 'className' | 'style' | 'isDisabled' | 'isInvalid' | 'isRequired' | 'isSelected';
|
|
1086
1166
|
interface RadioGroupProps extends Omit<RAC.RadioGroupProps, RemovedProps$9> {
|
|
@@ -1713,4 +1793,4 @@ declare const _Tabs: {
|
|
|
1713
1793
|
Item: (props: TabProps) => react_jsx_runtime.JSX.Element;
|
|
1714
1794
|
};
|
|
1715
1795
|
|
|
1716
|
-
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, _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$k 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 };
|
|
1796
|
+
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$k 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 };
|