@marigold/components 11.3.0 → 11.4.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 +149 -72
- package/dist/index.d.ts +149 -72
- package/dist/index.js +677 -681
- package/dist/index.mjs +593 -594
- package/package.json +8 -8
package/dist/index.d.mts
CHANGED
|
@@ -6,7 +6,7 @@ import RAC, { ValidationResult, Key, DateValue, SlotProps, TagListProps, Progres
|
|
|
6
6
|
export { Form, FormProps, RouterProvider } from 'react-aria-components';
|
|
7
7
|
import * as react from 'react';
|
|
8
8
|
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,
|
|
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
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';
|
|
@@ -16,8 +16,8 @@ import { AriaTableProps } from '@react-aria/table';
|
|
|
16
16
|
import { TableStateProps, TableBody, Cell, TableHeader, ColumnProps as ColumnProps$1, RowProps as RowProps$1 } from '@react-stately/table';
|
|
17
17
|
export { VisuallyHidden } from '@react-aria/visually-hidden';
|
|
18
18
|
|
|
19
|
-
type RemovedProps$
|
|
20
|
-
interface DisclosureProps extends Omit<RAC.DisclosureProps, RemovedProps$
|
|
19
|
+
type RemovedProps$r = 'isDisabled' | 'isExpanded';
|
|
20
|
+
interface DisclosureProps extends Omit<RAC.DisclosureProps, RemovedProps$r> {
|
|
21
21
|
/** Whether the item is disabled. */
|
|
22
22
|
disabled?: RAC.DisclosureProps['isDisabled'];
|
|
23
23
|
/** Whether the item is expanded (controlled). */
|
|
@@ -33,8 +33,8 @@ interface AccordionHeaderProps {
|
|
|
33
33
|
children?: ReactNode;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
type RemovedProps$
|
|
37
|
-
interface AccordionProps extends Omit<RAC.DisclosureGroupProps, RemovedProps$
|
|
36
|
+
type RemovedProps$q = 'isDisabled';
|
|
37
|
+
interface AccordionProps extends Omit<RAC.DisclosureGroupProps, RemovedProps$q> {
|
|
38
38
|
/** Whether all items are disabled. */
|
|
39
39
|
disabled?: RAC.DisclosureGroupProps['isDisabled'];
|
|
40
40
|
variant?: string;
|
|
@@ -152,8 +152,8 @@ interface ListBoxComponent extends ForwardRefExoticComponent<ListBoxProps & RefA
|
|
|
152
152
|
}
|
|
153
153
|
declare const _ListBox: ListBoxComponent;
|
|
154
154
|
|
|
155
|
-
type RemovedProps$
|
|
156
|
-
interface AutocompleteProps extends Omit<RAC.ComboBoxProps<object>, RemovedProps$
|
|
155
|
+
type RemovedProps$p = 'className' | 'style' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'inputValue' | 'onInputChange' | 'defaultValue' | 'validate' | 'validationState' | 'slot';
|
|
156
|
+
interface AutocompleteProps extends Omit<RAC.ComboBoxProps<object>, RemovedProps$p>, Pick<FieldBaseProps<'label'>, 'width' | 'label' | 'description' | 'errorMessage'> {
|
|
157
157
|
/**
|
|
158
158
|
* The value of the input (uncontrolled).
|
|
159
159
|
*/
|
|
@@ -220,8 +220,8 @@ interface AutocompleteComponent extends ForwardRefExoticComponent<AutocompletePr
|
|
|
220
220
|
}
|
|
221
221
|
declare const _Autocomplete: AutocompleteComponent;
|
|
222
222
|
|
|
223
|
-
type RemovedProps$
|
|
224
|
-
interface ComboBoxProps extends Omit<RAC.ComboBoxProps<any>, RemovedProps$
|
|
223
|
+
type RemovedProps$o = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'defaultInputValue' | 'inputValue' | 'onInputChange';
|
|
224
|
+
interface ComboBoxProps extends Omit<RAC.ComboBoxProps<any>, RemovedProps$o>, Pick<FieldBaseProps<'label'>, 'width' | 'label' | 'description' | 'errorMessage'> {
|
|
225
225
|
variant?: string;
|
|
226
226
|
size?: string;
|
|
227
227
|
/**
|
|
@@ -302,8 +302,8 @@ interface BodyProps extends Omit<HtmlProps<'section'>, 'className'> {
|
|
|
302
302
|
}
|
|
303
303
|
declare const Body: ({ children, variant, size, ...props }: BodyProps) => react_jsx_runtime.JSX.Element;
|
|
304
304
|
|
|
305
|
-
type RemovedProps$
|
|
306
|
-
interface ButtonProps extends Omit<RAC.ButtonProps, RemovedProps$
|
|
305
|
+
type RemovedProps$n = 'isDisabled' | 'isPending';
|
|
306
|
+
interface ButtonProps extends Omit<RAC.ButtonProps, RemovedProps$n> {
|
|
307
307
|
variant?: string;
|
|
308
308
|
size?: string;
|
|
309
309
|
/**
|
|
@@ -361,8 +361,8 @@ interface CenterProps extends GapSpaceProp, AriaRegionProps {
|
|
|
361
361
|
}
|
|
362
362
|
declare const Center: ({ maxWidth, space, children, ...props }: CenterProps) => react_jsx_runtime.JSX.Element;
|
|
363
363
|
|
|
364
|
-
type RemovedProps$
|
|
365
|
-
interface CheckboxGroupProps extends Omit<RAC.CheckboxGroupProps, RemovedProps$
|
|
364
|
+
type RemovedProps$m = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly';
|
|
365
|
+
interface CheckboxGroupProps extends Omit<RAC.CheckboxGroupProps, RemovedProps$m>, Pick<FieldBaseProps<'label'>, 'label' | 'description' | 'errorMessage'> {
|
|
366
366
|
/**
|
|
367
367
|
* The children of the component
|
|
368
368
|
*/
|
|
@@ -402,8 +402,8 @@ interface CheckboxGroupProps extends Omit<RAC.CheckboxGroupProps, RemovedProps$l
|
|
|
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$
|
|
406
|
-
interface CheckboxProps extends Omit<RAC.CheckboxProps, RemovedProps$
|
|
405
|
+
type RemovedProps$l = 'className' | 'style' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'isSelected' | 'isIndeterminate' | 'defaultSelected';
|
|
406
|
+
interface CheckboxProps extends Omit<RAC.CheckboxProps, RemovedProps$l> {
|
|
407
407
|
/**
|
|
408
408
|
* Whether the element should be checked (controlled).
|
|
409
409
|
*/
|
|
@@ -507,7 +507,7 @@ interface ContainerProps extends GapSpaceProp, AriaRegionProps {
|
|
|
507
507
|
}
|
|
508
508
|
declare const Container: ({ contentLength, align, alignItems, space, children, ...props }: ContainerProps) => react_jsx_runtime.JSX.Element;
|
|
509
509
|
|
|
510
|
-
interface
|
|
510
|
+
interface DialogActions {
|
|
511
511
|
/**
|
|
512
512
|
* Children of the component.
|
|
513
513
|
*/
|
|
@@ -515,64 +515,35 @@ interface DialogContentProps {
|
|
|
515
515
|
variant?: string;
|
|
516
516
|
size?: string;
|
|
517
517
|
}
|
|
518
|
+
declare const DialogActions: ({ variant, size, children }: DialogActions) => react_jsx_runtime.JSX.Element;
|
|
518
519
|
|
|
519
|
-
interface
|
|
520
|
-
/**
|
|
521
|
-
* Set the color of the headline.
|
|
522
|
-
*/
|
|
523
|
-
color?: string;
|
|
524
|
-
variant?: string;
|
|
525
|
-
size?: string;
|
|
526
|
-
/**
|
|
527
|
-
* Set a different level.
|
|
528
|
-
*/
|
|
529
|
-
level?: '1' | '2' | '3' | '4' | '5' | '6' | 1 | 2 | 3 | 4 | 5 | 6;
|
|
520
|
+
interface DialogContentProps {
|
|
530
521
|
/**
|
|
531
522
|
* Children of the component.
|
|
532
523
|
*/
|
|
533
524
|
children?: ReactNode;
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
*/
|
|
537
|
-
slot?: string;
|
|
525
|
+
variant?: string;
|
|
526
|
+
size?: string;
|
|
538
527
|
}
|
|
539
|
-
declare const
|
|
528
|
+
declare const DialogContent: ({ variant, size, children, }: DialogContentProps) => react_jsx_runtime.JSX.Element;
|
|
540
529
|
|
|
541
|
-
interface DialogTitleProps
|
|
530
|
+
interface DialogTitleProps {
|
|
531
|
+
children?: React.ReactNode;
|
|
542
532
|
variant?: string;
|
|
543
533
|
size?: string;
|
|
544
534
|
}
|
|
535
|
+
declare const DialogTitle: ({ variant, size, children }: DialogTitleProps) => react_jsx_runtime.JSX.Element;
|
|
545
536
|
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
* Whether the dialog is open by default (controlled).
|
|
549
|
-
* @default false
|
|
550
|
-
*/
|
|
537
|
+
type RemovedProps$k = 'children' | 'isOpen' | 'isDismissable' | 'isKeyboardDismissDisabled';
|
|
538
|
+
interface ModalProps$1 extends RAC.ModalOverlayProps {
|
|
551
539
|
open?: boolean;
|
|
552
|
-
/**
|
|
553
|
-
* Whether to close the overlay when the user interacts outside it.
|
|
554
|
-
* @default false
|
|
555
|
-
*/
|
|
556
540
|
dismissable?: boolean;
|
|
557
|
-
/**
|
|
558
|
-
* Whether pressing the escape key to close the overlay should be disabled.
|
|
559
|
-
*/
|
|
560
541
|
keyboardDismissable?: boolean;
|
|
561
|
-
/**
|
|
562
|
-
* If `true`, the dialog will be non-modal, meaning it will not block interaction with the background content.
|
|
563
|
-
*/
|
|
564
|
-
isNonModal?: boolean;
|
|
565
|
-
}
|
|
566
|
-
|
|
567
|
-
interface DialogActions {
|
|
568
|
-
/**
|
|
569
|
-
* Children of the component.
|
|
570
|
-
*/
|
|
571
|
-
children?: ReactNode;
|
|
572
|
-
variant?: string;
|
|
573
542
|
size?: string;
|
|
574
543
|
}
|
|
575
|
-
|
|
544
|
+
interface DialogTriggerProps extends Omit<RAC.DialogTriggerProps, 'isOpen'>, Omit<ModalProps$1, RemovedProps$k> {
|
|
545
|
+
}
|
|
546
|
+
declare const _DialogTrigger: ({ open, dismissable, keyboardDismissable, size, ...rest }: DialogTriggerProps) => ReactNode;
|
|
576
547
|
|
|
577
548
|
interface DialogProps extends Omit<RAC.DialogProps, 'className' | 'style'> {
|
|
578
549
|
variant?: string;
|
|
@@ -581,19 +552,17 @@ interface DialogProps extends Omit<RAC.DialogProps, 'className' | 'style'> {
|
|
|
581
552
|
* Show the close button.
|
|
582
553
|
*/
|
|
583
554
|
closeButton?: boolean;
|
|
555
|
+
}
|
|
556
|
+
interface DialogComponent extends ForwardRefExoticComponent<DialogProps & RefAttributes<HTMLInputElement>> {
|
|
584
557
|
/**
|
|
585
|
-
*
|
|
586
|
-
* @default false
|
|
558
|
+
* Options for the Combobox.
|
|
587
559
|
*/
|
|
588
|
-
|
|
560
|
+
Trigger: typeof _DialogTrigger;
|
|
561
|
+
Title: typeof DialogTitle;
|
|
562
|
+
Content: typeof DialogContent;
|
|
563
|
+
Actions: typeof DialogActions;
|
|
589
564
|
}
|
|
590
|
-
declare const _Dialog:
|
|
591
|
-
({ variant, size, closeButton, isNonModal, ...props }: DialogProps): react_jsx_runtime.JSX.Element;
|
|
592
|
-
Trigger: ({ open, dismissable, keyboardDismissable, isNonModal, ...rest }: DialogTriggerProps) => react_jsx_runtime.JSX.Element;
|
|
593
|
-
Title: ({ level, variant, size, children, }: DialogTitleProps) => react_jsx_runtime.JSX.Element;
|
|
594
|
-
Content: ({ variant, size, children, }: DialogContentProps) => react_jsx_runtime.JSX.Element;
|
|
595
|
-
Actions: ({ variant, size, children }: DialogActions) => react_jsx_runtime.JSX.Element;
|
|
596
|
-
};
|
|
565
|
+
declare const _Dialog: DialogComponent;
|
|
597
566
|
|
|
598
567
|
interface DividerProps extends RAC.SeparatorProps {
|
|
599
568
|
variant?: string;
|
|
@@ -655,6 +624,28 @@ interface HeaderProps extends Omit<RAC.HeadingProps, 'children'> {
|
|
|
655
624
|
}
|
|
656
625
|
declare const _Header: ({ variant, size, ...props }: HeaderProps) => react_jsx_runtime.JSX.Element;
|
|
657
626
|
|
|
627
|
+
interface HeadlineProps extends AriaLabelingProps, TextAlignProp {
|
|
628
|
+
/**
|
|
629
|
+
* Set the color of the headline.
|
|
630
|
+
*/
|
|
631
|
+
color?: string;
|
|
632
|
+
variant?: string;
|
|
633
|
+
size?: string;
|
|
634
|
+
/**
|
|
635
|
+
* Set a different level.
|
|
636
|
+
*/
|
|
637
|
+
level?: '1' | '2' | '3' | '4' | '5' | '6' | 1 | 2 | 3 | 4 | 5 | 6;
|
|
638
|
+
/**
|
|
639
|
+
* Children of the component.
|
|
640
|
+
*/
|
|
641
|
+
children?: ReactNode;
|
|
642
|
+
/**
|
|
643
|
+
* A slot to place the element in.
|
|
644
|
+
*/
|
|
645
|
+
slot?: string;
|
|
646
|
+
}
|
|
647
|
+
declare const _Headline: ({ variant, size, children, align, color, level, ...props }: HeadlineProps) => react_jsx_runtime.JSX.Element;
|
|
648
|
+
|
|
658
649
|
interface ImageProps extends Pick<HtmlProps<'img'>, 'src' | 'srcSet' | 'sizes' | 'slot' | 'title' | 'height' | 'width' | 'role' | 'datatype'>, ObjectFitProp, ObjectPositionProp {
|
|
659
650
|
variant?: string;
|
|
660
651
|
size?: string;
|
|
@@ -973,21 +964,107 @@ declare const SectionMessage: {
|
|
|
973
964
|
Content: ({ children, }: SectionMessageContentProps) => react_jsx_runtime.JSX.Element;
|
|
974
965
|
};
|
|
975
966
|
|
|
976
|
-
|
|
977
|
-
|
|
967
|
+
interface MultipleSelectProps extends Pick<FieldBaseProps<'label'>, 'width' | 'size' | 'variant' | 'label' | 'description' | 'errorMessage'> {
|
|
968
|
+
/**
|
|
969
|
+
* If the select should be disabled.
|
|
970
|
+
*
|
|
971
|
+
* @default false
|
|
972
|
+
*/
|
|
978
973
|
disabled?: boolean;
|
|
974
|
+
/**
|
|
975
|
+
* If the select should be required.
|
|
976
|
+
*
|
|
977
|
+
* @default false
|
|
978
|
+
*/
|
|
979
979
|
required?: boolean;
|
|
980
|
+
/**
|
|
981
|
+
* If the select should be read only.
|
|
982
|
+
*
|
|
983
|
+
* @default false
|
|
984
|
+
*/
|
|
980
985
|
readOnly?: boolean;
|
|
986
|
+
/**
|
|
987
|
+
* If the select should throw an error.
|
|
988
|
+
*
|
|
989
|
+
* @default false
|
|
990
|
+
*/
|
|
981
991
|
error?: boolean;
|
|
992
|
+
/**
|
|
993
|
+
* The items of the select.
|
|
994
|
+
*/
|
|
982
995
|
items?: Props['options'];
|
|
996
|
+
/**
|
|
997
|
+
* Set a error message for the select.
|
|
998
|
+
*/
|
|
983
999
|
errorMessage?: string | ((validation: ValidationResult) => string);
|
|
1000
|
+
/**
|
|
1001
|
+
* The placdeholder of the select when it is empty.
|
|
1002
|
+
*/
|
|
984
1003
|
placeholder?: string;
|
|
1004
|
+
/**
|
|
1005
|
+
* Items that should be selected by default (uncontrolled).
|
|
1006
|
+
*/
|
|
985
1007
|
defaultSelectedItems?: Props['defaultValue'];
|
|
1008
|
+
/**
|
|
1009
|
+
* Selected items (controlled):
|
|
1010
|
+
*/
|
|
1011
|
+
selectedItems?: Props['value'];
|
|
1012
|
+
/**
|
|
1013
|
+
* Input text that should be set by default.
|
|
1014
|
+
*/
|
|
986
1015
|
defaultValue?: Props['defaultInputValue'];
|
|
1016
|
+
/**
|
|
1017
|
+
* Handler that is called when the input changes.
|
|
1018
|
+
*/
|
|
987
1019
|
onChange?: Props['onInputChange'];
|
|
1020
|
+
/**
|
|
1021
|
+
* Handler that is called when the selection changes.
|
|
1022
|
+
*/
|
|
988
1023
|
onSelectionChange?: Props['onChange'];
|
|
1024
|
+
/** Focus the control when it is mounted */
|
|
1025
|
+
autoFocus?: Props['autoFocus'];
|
|
1026
|
+
/**
|
|
1027
|
+
* Override the built-in logic to detect whether an option is disabled
|
|
1028
|
+
* */
|
|
1029
|
+
isOptionDisabled?: Props['isOptionDisabled'];
|
|
1030
|
+
/**
|
|
1031
|
+
* Text to display when there are no options
|
|
1032
|
+
* */
|
|
1033
|
+
noOptionsMessage?: Props['noOptionsMessage'];
|
|
1034
|
+
/**
|
|
1035
|
+
* Handle blur events on the control
|
|
1036
|
+
*/
|
|
1037
|
+
onBlur?: Props['onBlur'];
|
|
1038
|
+
/**
|
|
1039
|
+
* Handle focus events on the control
|
|
1040
|
+
*/
|
|
1041
|
+
onFocus?: Props['onFocus'];
|
|
1042
|
+
/**
|
|
1043
|
+
* HTML ID of an element containing an error message related to the input*
|
|
1044
|
+
*/
|
|
1045
|
+
'aria-errormessage'?: Props['aria-errormessage'];
|
|
1046
|
+
/**
|
|
1047
|
+
* Indicate if the value entered in the field is invalid *
|
|
1048
|
+
*/
|
|
1049
|
+
'aria-invalid'?: Props['aria-invalid'];
|
|
1050
|
+
/**
|
|
1051
|
+
* Aria label (for assistive tech)
|
|
1052
|
+
*/
|
|
1053
|
+
'aria-label'?: Props['aria-label'];
|
|
1054
|
+
/**
|
|
1055
|
+
* HTML ID of an element that should be used as the label (for assistive tech)
|
|
1056
|
+
*/
|
|
1057
|
+
'aria-labelledby'?: Props['aria-labelledby'];
|
|
1058
|
+
/**
|
|
1059
|
+
* Used to set the priority with which screen reader should treat updates to live regions. The possible settings are: off, polite (default) or assertive
|
|
1060
|
+
*/
|
|
1061
|
+
'aria-live'?: Props['aria-live'];
|
|
1062
|
+
/**
|
|
1063
|
+
* Customise the messages used by the aria-live component
|
|
1064
|
+
*/
|
|
1065
|
+
ariaLiveMessages?: Props['ariaLiveMessages'];
|
|
989
1066
|
}
|
|
990
|
-
declare const Multiselect: ({ disabled, readOnly, items, defaultSelectedItems, defaultValue, error, errorMessage, size, variant, placeholder, description, onChange, onSelectionChange, ...rest }: MultipleSelectProps) => react_jsx_runtime.JSX.Element;
|
|
1067
|
+
declare const Multiselect: ({ disabled, readOnly, items, selectedItems, defaultSelectedItems, defaultValue, error, errorMessage, size, variant, placeholder, description, onChange, onSelectionChange, ...rest }: MultipleSelectProps) => react_jsx_runtime.JSX.Element;
|
|
991
1068
|
|
|
992
1069
|
type RemovedProps$a = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'size';
|
|
993
1070
|
interface NumberFieldProps extends Omit<RAC.NumberFieldProps, RemovedProps$a>, Pick<FieldBaseProps<'label'>, 'label' | 'description' | 'errorMessage'> {
|
|
@@ -1793,4 +1870,4 @@ declare const _Tabs: {
|
|
|
1793
1870
|
Item: (props: TabProps) => react_jsx_runtime.JSX.Element;
|
|
1794
1871
|
};
|
|
1795
1872
|
|
|
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$
|
|
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 };
|