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