@marigold/components 10.2.1 → 11.0.1
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 +55 -75
- package/dist/index.d.ts +55 -75
- package/dist/index.js +1172 -1325
- package/dist/index.mjs +936 -1112
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -1,59 +1,49 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Orientation } 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';
|
|
6
|
+
export { Form, FormProps, RouterProvider } from 'react-aria-components';
|
|
5
7
|
import * as react from 'react';
|
|
6
|
-
import react__default, {
|
|
7
|
-
import {
|
|
8
|
-
import { TreeState } from '@react-stately/tree';
|
|
9
|
-
import { GapSpaceProp, AspectProp, WidthProp, alignment, PaddingSpaceProp, PaddingRightProp, PaddingLeftProp, PaddingBottomProp, PaddingTopProp, PaddingSpacePropX, PaddingSpacePropY, GridColsAlignProp, PlaceItemsProp, TextAlignProp, HeightProp, ObjectFitProp, ObjectPositionProp, Theme, ThemeProviderProps, FontSizeProp, FontWeightProp, FontStyleProp, CursorProp } from '@marigold/system';
|
|
8
|
+
import react__default, { ReactNode, ReactElement, ElementType, ComponentPropsWithRef, ForwardRefExoticComponent, RefAttributes, Key as Key$1, Dispatch, SetStateAction, JSX } from 'react';
|
|
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
|
-
import RAC, { ValidationResult, Key, DateValue, TagListProps, ProgressBarProps } from 'react-aria-components';
|
|
13
|
-
export { Form, FormProps, RouterProvider } from 'react-aria-components';
|
|
14
12
|
export { I18nProvider } from '@react-aria/i18n';
|
|
15
13
|
import { AriaTableProps } from '@react-aria/table';
|
|
16
14
|
import { TableStateProps, RowProps as RowProps$1, ColumnProps as ColumnProps$1, TableBody, Cell, TableHeader } from '@react-stately/table';
|
|
17
15
|
export { VisuallyHidden } from '@react-aria/visually-hidden';
|
|
18
16
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
* Sets the mode of items open at the same time.
|
|
26
|
-
* @default single
|
|
27
|
-
*/
|
|
28
|
-
selectionMode?: SelectionMode;
|
|
17
|
+
type RemovedProps$p = 'isDisabled' | 'isExpanded';
|
|
18
|
+
interface DisclosureProps extends Omit<RAC.DisclosureProps, RemovedProps$p> {
|
|
19
|
+
/** Whether the item is disabled. */
|
|
20
|
+
disabled?: RAC.DisclosureProps['isDisabled'];
|
|
21
|
+
/** Whether the item is expanded (controlled). */
|
|
22
|
+
expanded?: RAC.DisclosureProps['isExpanded'];
|
|
29
23
|
}
|
|
30
|
-
declare const
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
interface AccordionOwnItemProps<T> extends ItemProps<T> {
|
|
35
|
-
variant?: string;
|
|
36
|
-
size?: string;
|
|
37
|
-
title: string | ReactElement<any>;
|
|
24
|
+
declare const AccordionItem: ({ children, disabled, expanded, ...props }: DisclosureProps) => react_jsx_runtime.JSX.Element;
|
|
25
|
+
|
|
26
|
+
interface AccordionPanelProps {
|
|
27
|
+
children?: ReactNode;
|
|
38
28
|
}
|
|
39
29
|
|
|
40
|
-
interface
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
state: TreeState<object>;
|
|
49
|
-
/**
|
|
50
|
-
* Sets title of the accordion item which will be displayed to the button.
|
|
51
|
-
*/
|
|
52
|
-
title: string | ReactNode;
|
|
30
|
+
interface AccordionHeaderProps {
|
|
31
|
+
children?: ReactNode;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
type RemovedProps$o = 'isDisabled';
|
|
35
|
+
interface AccordionProps extends Omit<RAC.DisclosureGroupProps, RemovedProps$o> {
|
|
36
|
+
/** Whether all items are disabled. */
|
|
37
|
+
disabled?: RAC.DisclosureGroupProps['isDisabled'];
|
|
53
38
|
variant?: string;
|
|
54
39
|
size?: string;
|
|
55
40
|
}
|
|
56
|
-
declare const
|
|
41
|
+
declare const Accordion: {
|
|
42
|
+
({ children, disabled, variant, size, ...props }: AccordionProps): react_jsx_runtime.JSX.Element;
|
|
43
|
+
Header: ({ children }: AccordionHeaderProps) => react_jsx_runtime.JSX.Element;
|
|
44
|
+
Content: ({ children }: AccordionPanelProps) => react_jsx_runtime.JSX.Element;
|
|
45
|
+
Item: ({ children, disabled, expanded, ...props }: DisclosureProps) => react_jsx_runtime.JSX.Element;
|
|
46
|
+
};
|
|
57
47
|
|
|
58
48
|
interface AsideProps extends GapSpaceProp, AriaRegionProps {
|
|
59
49
|
/**
|
|
@@ -297,22 +287,8 @@ declare const Badge: ({ variant, size, children, ...props }: BadgeProps) => reac
|
|
|
297
287
|
|
|
298
288
|
interface BreakoutProps extends AriaRegionProps {
|
|
299
289
|
children?: ReactNode;
|
|
300
|
-
/**
|
|
301
|
-
* Set the height of the breakout element.
|
|
302
|
-
*/
|
|
303
|
-
height?: string;
|
|
304
|
-
/**
|
|
305
|
-
* Horizontal alignment of the items inside the breakout element.
|
|
306
|
-
* @default left
|
|
307
|
-
*/
|
|
308
|
-
alignX?: keyof typeof alignment.horizontal.alignmentX;
|
|
309
|
-
/**
|
|
310
|
-
* Vertical alignment of the items inside the breakout element.
|
|
311
|
-
* @default top
|
|
312
|
-
*/
|
|
313
|
-
alignY?: keyof typeof alignment.horizontal.alignmentY;
|
|
314
290
|
}
|
|
315
|
-
declare const Breakout: ({
|
|
291
|
+
declare const Breakout: ({ children }: BreakoutProps) => react_jsx_runtime.JSX.Element;
|
|
316
292
|
|
|
317
293
|
interface BodyProps extends Omit<HtmlProps<'section'>, 'className'> {
|
|
318
294
|
/**
|
|
@@ -495,35 +471,39 @@ interface ColumnsProps extends GapSpaceProp, AriaRegionProps {
|
|
|
495
471
|
}
|
|
496
472
|
declare const Columns: ({ space, columns, collapseAt, stretch, children, ...props }: ColumnsProps) => react_jsx_runtime.JSX.Element;
|
|
497
473
|
|
|
498
|
-
|
|
474
|
+
declare const containerTextLength: {
|
|
475
|
+
short: string;
|
|
476
|
+
default: string;
|
|
477
|
+
long: string;
|
|
478
|
+
};
|
|
479
|
+
declare const gridColsAlign: {
|
|
480
|
+
left: string;
|
|
481
|
+
center: string;
|
|
482
|
+
right: string;
|
|
483
|
+
};
|
|
484
|
+
declare const gridColumn: {
|
|
485
|
+
left: string;
|
|
486
|
+
center: string;
|
|
487
|
+
right: string;
|
|
488
|
+
};
|
|
489
|
+
interface ContainerProps extends GapSpaceProp, AriaRegionProps {
|
|
499
490
|
children?: ReactNode;
|
|
500
491
|
/**
|
|
501
|
-
*
|
|
502
|
-
* @default '
|
|
492
|
+
* Width of the container.
|
|
493
|
+
* @default 'default'
|
|
503
494
|
*/
|
|
504
|
-
|
|
505
|
-
size?: keyof typeof content | keyof typeof header;
|
|
495
|
+
contentLength?: keyof typeof containerTextLength;
|
|
506
496
|
/**
|
|
507
497
|
* Set alignment the content inside the container.
|
|
508
|
-
* @default left
|
|
498
|
+
* @default 'left'
|
|
509
499
|
*/
|
|
510
|
-
align?:
|
|
500
|
+
align?: keyof typeof gridColsAlign;
|
|
511
501
|
/**
|
|
512
502
|
* Set alignment of the items inside the container.
|
|
513
503
|
*/
|
|
514
504
|
alignItems?: PlaceItemsProp['align'];
|
|
515
505
|
}
|
|
516
|
-
declare const
|
|
517
|
-
small: string;
|
|
518
|
-
medium: string;
|
|
519
|
-
large: string;
|
|
520
|
-
};
|
|
521
|
-
declare const header: {
|
|
522
|
-
small: string;
|
|
523
|
-
medium: string;
|
|
524
|
-
large: string;
|
|
525
|
-
};
|
|
526
|
-
declare const Container: ({ contentType, size, align, alignItems, children, ...props }: ContainerProps) => react_jsx_runtime.JSX.Element;
|
|
506
|
+
declare const Container: ({ contentLength, align, alignItems, space, children, ...props }: ContainerProps) => react_jsx_runtime.JSX.Element;
|
|
527
507
|
|
|
528
508
|
interface DialogContentProps {
|
|
529
509
|
/**
|
|
@@ -1695,10 +1675,10 @@ interface LoaderProps extends Pick<ProgressBarProps, 'id' | 'aria-label' | 'aria
|
|
|
1695
1675
|
|
|
1696
1676
|
interface XLoaderProps extends LoaderProps {
|
|
1697
1677
|
/**
|
|
1698
|
-
* Show the loader in `
|
|
1678
|
+
* Show the loader in `fullscreen` to overlay and block interaction with the site or `section` to show loading for a certain area.
|
|
1699
1679
|
* @default undefined
|
|
1700
1680
|
*/
|
|
1701
|
-
mode?: '
|
|
1681
|
+
mode?: 'fullscreen' | 'section';
|
|
1702
1682
|
}
|
|
1703
1683
|
declare const XLoader: ({ mode, variant, ...props }: XLoaderProps) => react_jsx_runtime.JSX.Element;
|
|
1704
1684
|
|
|
@@ -1727,4 +1707,4 @@ declare const _Tabs: {
|
|
|
1727
1707
|
Item: (props: TabProps) => react_jsx_runtime.JSX.Element;
|
|
1728
1708
|
};
|
|
1729
1709
|
|
|
1730
|
-
export { Accordion, AccordionItem, type
|
|
1710
|
+
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, type MultiSelectItemProps, type MultiSelectProps, 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$j 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,59 +1,49 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Orientation } 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';
|
|
6
|
+
export { Form, FormProps, RouterProvider } from 'react-aria-components';
|
|
5
7
|
import * as react from 'react';
|
|
6
|
-
import react__default, {
|
|
7
|
-
import {
|
|
8
|
-
import { TreeState } from '@react-stately/tree';
|
|
9
|
-
import { GapSpaceProp, AspectProp, WidthProp, alignment, PaddingSpaceProp, PaddingRightProp, PaddingLeftProp, PaddingBottomProp, PaddingTopProp, PaddingSpacePropX, PaddingSpacePropY, GridColsAlignProp, PlaceItemsProp, TextAlignProp, HeightProp, ObjectFitProp, ObjectPositionProp, Theme, ThemeProviderProps, FontSizeProp, FontWeightProp, FontStyleProp, CursorProp } from '@marigold/system';
|
|
8
|
+
import react__default, { ReactNode, ReactElement, ElementType, ComponentPropsWithRef, ForwardRefExoticComponent, RefAttributes, Key as Key$1, Dispatch, SetStateAction, JSX } from 'react';
|
|
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
|
-
import RAC, { ValidationResult, Key, DateValue, TagListProps, ProgressBarProps } from 'react-aria-components';
|
|
13
|
-
export { Form, FormProps, RouterProvider } from 'react-aria-components';
|
|
14
12
|
export { I18nProvider } from '@react-aria/i18n';
|
|
15
13
|
import { AriaTableProps } from '@react-aria/table';
|
|
16
14
|
import { TableStateProps, RowProps as RowProps$1, ColumnProps as ColumnProps$1, TableBody, Cell, TableHeader } from '@react-stately/table';
|
|
17
15
|
export { VisuallyHidden } from '@react-aria/visually-hidden';
|
|
18
16
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
* Sets the mode of items open at the same time.
|
|
26
|
-
* @default single
|
|
27
|
-
*/
|
|
28
|
-
selectionMode?: SelectionMode;
|
|
17
|
+
type RemovedProps$p = 'isDisabled' | 'isExpanded';
|
|
18
|
+
interface DisclosureProps extends Omit<RAC.DisclosureProps, RemovedProps$p> {
|
|
19
|
+
/** Whether the item is disabled. */
|
|
20
|
+
disabled?: RAC.DisclosureProps['isDisabled'];
|
|
21
|
+
/** Whether the item is expanded (controlled). */
|
|
22
|
+
expanded?: RAC.DisclosureProps['isExpanded'];
|
|
29
23
|
}
|
|
30
|
-
declare const
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
interface AccordionOwnItemProps<T> extends ItemProps<T> {
|
|
35
|
-
variant?: string;
|
|
36
|
-
size?: string;
|
|
37
|
-
title: string | ReactElement<any>;
|
|
24
|
+
declare const AccordionItem: ({ children, disabled, expanded, ...props }: DisclosureProps) => react_jsx_runtime.JSX.Element;
|
|
25
|
+
|
|
26
|
+
interface AccordionPanelProps {
|
|
27
|
+
children?: ReactNode;
|
|
38
28
|
}
|
|
39
29
|
|
|
40
|
-
interface
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
state: TreeState<object>;
|
|
49
|
-
/**
|
|
50
|
-
* Sets title of the accordion item which will be displayed to the button.
|
|
51
|
-
*/
|
|
52
|
-
title: string | ReactNode;
|
|
30
|
+
interface AccordionHeaderProps {
|
|
31
|
+
children?: ReactNode;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
type RemovedProps$o = 'isDisabled';
|
|
35
|
+
interface AccordionProps extends Omit<RAC.DisclosureGroupProps, RemovedProps$o> {
|
|
36
|
+
/** Whether all items are disabled. */
|
|
37
|
+
disabled?: RAC.DisclosureGroupProps['isDisabled'];
|
|
53
38
|
variant?: string;
|
|
54
39
|
size?: string;
|
|
55
40
|
}
|
|
56
|
-
declare const
|
|
41
|
+
declare const Accordion: {
|
|
42
|
+
({ children, disabled, variant, size, ...props }: AccordionProps): react_jsx_runtime.JSX.Element;
|
|
43
|
+
Header: ({ children }: AccordionHeaderProps) => react_jsx_runtime.JSX.Element;
|
|
44
|
+
Content: ({ children }: AccordionPanelProps) => react_jsx_runtime.JSX.Element;
|
|
45
|
+
Item: ({ children, disabled, expanded, ...props }: DisclosureProps) => react_jsx_runtime.JSX.Element;
|
|
46
|
+
};
|
|
57
47
|
|
|
58
48
|
interface AsideProps extends GapSpaceProp, AriaRegionProps {
|
|
59
49
|
/**
|
|
@@ -297,22 +287,8 @@ declare const Badge: ({ variant, size, children, ...props }: BadgeProps) => reac
|
|
|
297
287
|
|
|
298
288
|
interface BreakoutProps extends AriaRegionProps {
|
|
299
289
|
children?: ReactNode;
|
|
300
|
-
/**
|
|
301
|
-
* Set the height of the breakout element.
|
|
302
|
-
*/
|
|
303
|
-
height?: string;
|
|
304
|
-
/**
|
|
305
|
-
* Horizontal alignment of the items inside the breakout element.
|
|
306
|
-
* @default left
|
|
307
|
-
*/
|
|
308
|
-
alignX?: keyof typeof alignment.horizontal.alignmentX;
|
|
309
|
-
/**
|
|
310
|
-
* Vertical alignment of the items inside the breakout element.
|
|
311
|
-
* @default top
|
|
312
|
-
*/
|
|
313
|
-
alignY?: keyof typeof alignment.horizontal.alignmentY;
|
|
314
290
|
}
|
|
315
|
-
declare const Breakout: ({
|
|
291
|
+
declare const Breakout: ({ children }: BreakoutProps) => react_jsx_runtime.JSX.Element;
|
|
316
292
|
|
|
317
293
|
interface BodyProps extends Omit<HtmlProps<'section'>, 'className'> {
|
|
318
294
|
/**
|
|
@@ -495,35 +471,39 @@ interface ColumnsProps extends GapSpaceProp, AriaRegionProps {
|
|
|
495
471
|
}
|
|
496
472
|
declare const Columns: ({ space, columns, collapseAt, stretch, children, ...props }: ColumnsProps) => react_jsx_runtime.JSX.Element;
|
|
497
473
|
|
|
498
|
-
|
|
474
|
+
declare const containerTextLength: {
|
|
475
|
+
short: string;
|
|
476
|
+
default: string;
|
|
477
|
+
long: string;
|
|
478
|
+
};
|
|
479
|
+
declare const gridColsAlign: {
|
|
480
|
+
left: string;
|
|
481
|
+
center: string;
|
|
482
|
+
right: string;
|
|
483
|
+
};
|
|
484
|
+
declare const gridColumn: {
|
|
485
|
+
left: string;
|
|
486
|
+
center: string;
|
|
487
|
+
right: string;
|
|
488
|
+
};
|
|
489
|
+
interface ContainerProps extends GapSpaceProp, AriaRegionProps {
|
|
499
490
|
children?: ReactNode;
|
|
500
491
|
/**
|
|
501
|
-
*
|
|
502
|
-
* @default '
|
|
492
|
+
* Width of the container.
|
|
493
|
+
* @default 'default'
|
|
503
494
|
*/
|
|
504
|
-
|
|
505
|
-
size?: keyof typeof content | keyof typeof header;
|
|
495
|
+
contentLength?: keyof typeof containerTextLength;
|
|
506
496
|
/**
|
|
507
497
|
* Set alignment the content inside the container.
|
|
508
|
-
* @default left
|
|
498
|
+
* @default 'left'
|
|
509
499
|
*/
|
|
510
|
-
align?:
|
|
500
|
+
align?: keyof typeof gridColsAlign;
|
|
511
501
|
/**
|
|
512
502
|
* Set alignment of the items inside the container.
|
|
513
503
|
*/
|
|
514
504
|
alignItems?: PlaceItemsProp['align'];
|
|
515
505
|
}
|
|
516
|
-
declare const
|
|
517
|
-
small: string;
|
|
518
|
-
medium: string;
|
|
519
|
-
large: string;
|
|
520
|
-
};
|
|
521
|
-
declare const header: {
|
|
522
|
-
small: string;
|
|
523
|
-
medium: string;
|
|
524
|
-
large: string;
|
|
525
|
-
};
|
|
526
|
-
declare const Container: ({ contentType, size, align, alignItems, children, ...props }: ContainerProps) => react_jsx_runtime.JSX.Element;
|
|
506
|
+
declare const Container: ({ contentLength, align, alignItems, space, children, ...props }: ContainerProps) => react_jsx_runtime.JSX.Element;
|
|
527
507
|
|
|
528
508
|
interface DialogContentProps {
|
|
529
509
|
/**
|
|
@@ -1695,10 +1675,10 @@ interface LoaderProps extends Pick<ProgressBarProps, 'id' | 'aria-label' | 'aria
|
|
|
1695
1675
|
|
|
1696
1676
|
interface XLoaderProps extends LoaderProps {
|
|
1697
1677
|
/**
|
|
1698
|
-
* Show the loader in `
|
|
1678
|
+
* Show the loader in `fullscreen` to overlay and block interaction with the site or `section` to show loading for a certain area.
|
|
1699
1679
|
* @default undefined
|
|
1700
1680
|
*/
|
|
1701
|
-
mode?: '
|
|
1681
|
+
mode?: 'fullscreen' | 'section';
|
|
1702
1682
|
}
|
|
1703
1683
|
declare const XLoader: ({ mode, variant, ...props }: XLoaderProps) => react_jsx_runtime.JSX.Element;
|
|
1704
1684
|
|
|
@@ -1727,4 +1707,4 @@ declare const _Tabs: {
|
|
|
1727
1707
|
Item: (props: TabProps) => react_jsx_runtime.JSX.Element;
|
|
1728
1708
|
};
|
|
1729
1709
|
|
|
1730
|
-
export { Accordion, AccordionItem, type
|
|
1710
|
+
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, type MultiSelectItemProps, type MultiSelectProps, 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$j 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 };
|