@marigold/components 11.2.0 → 11.2.2
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 +72 -67
- package/dist/index.d.ts +72 -67
- package/dist/index.js +7573 -1163
- package/dist/index.mjs +7513 -1079
- package/package.json +21 -21
package/dist/index.d.mts
CHANGED
|
@@ -9,13 +9,14 @@ import react__default, { ReactNode, ReactElement, ElementType, ComponentPropsWit
|
|
|
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
|
+
import { Props } from 'react-select';
|
|
12
13
|
export { I18nProvider } from '@react-aria/i18n';
|
|
13
14
|
import { AriaTableProps } from '@react-aria/table';
|
|
14
15
|
import { TableStateProps, RowProps as RowProps$1, ColumnProps as ColumnProps$1, TableBody, Cell, TableHeader } from '@react-stately/table';
|
|
15
16
|
export { VisuallyHidden } from '@react-aria/visually-hidden';
|
|
16
17
|
|
|
17
|
-
type RemovedProps$
|
|
18
|
-
interface DisclosureProps extends Omit<RAC.DisclosureProps, RemovedProps$
|
|
18
|
+
type RemovedProps$q = 'isDisabled' | 'isExpanded';
|
|
19
|
+
interface DisclosureProps extends Omit<RAC.DisclosureProps, RemovedProps$q> {
|
|
19
20
|
/** Whether the item is disabled. */
|
|
20
21
|
disabled?: RAC.DisclosureProps['isDisabled'];
|
|
21
22
|
/** Whether the item is expanded (controlled). */
|
|
@@ -31,8 +32,8 @@ interface AccordionHeaderProps {
|
|
|
31
32
|
children?: ReactNode;
|
|
32
33
|
}
|
|
33
34
|
|
|
34
|
-
type RemovedProps$
|
|
35
|
-
interface AccordionProps extends Omit<RAC.DisclosureGroupProps, RemovedProps$
|
|
35
|
+
type RemovedProps$p = 'isDisabled';
|
|
36
|
+
interface AccordionProps extends Omit<RAC.DisclosureGroupProps, RemovedProps$p> {
|
|
36
37
|
/** Whether all items are disabled. */
|
|
37
38
|
disabled?: RAC.DisclosureGroupProps['isDisabled'];
|
|
38
39
|
variant?: string;
|
|
@@ -150,8 +151,8 @@ interface ListBoxComponent extends ForwardRefExoticComponent<ListBoxProps & RefA
|
|
|
150
151
|
}
|
|
151
152
|
declare const _ListBox: ListBoxComponent;
|
|
152
153
|
|
|
153
|
-
type RemovedProps$
|
|
154
|
-
interface AutocompleteProps extends Omit<RAC.ComboBoxProps<object>, RemovedProps$
|
|
154
|
+
type RemovedProps$o = 'className' | 'style' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'inputValue' | 'onInputChange' | 'defaultValue' | 'validate' | 'validationState' | 'slot';
|
|
155
|
+
interface AutocompleteProps extends Omit<RAC.ComboBoxProps<object>, RemovedProps$o>, Pick<FieldBaseProps<'label'>, 'width' | 'label' | 'description' | 'errorMessage'> {
|
|
155
156
|
/**
|
|
156
157
|
* The value of the input (uncontrolled).
|
|
157
158
|
*/
|
|
@@ -218,8 +219,8 @@ interface AutocompleteComponent extends ForwardRefExoticComponent<AutocompletePr
|
|
|
218
219
|
}
|
|
219
220
|
declare const _Autocomplete: AutocompleteComponent;
|
|
220
221
|
|
|
221
|
-
type RemovedProps$
|
|
222
|
-
interface ComboBoxProps extends Omit<RAC.ComboBoxProps<any>, RemovedProps$
|
|
222
|
+
type RemovedProps$n = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'defaultInputValue' | 'inputValue' | 'onInputChange';
|
|
223
|
+
interface ComboBoxProps extends Omit<RAC.ComboBoxProps<any>, RemovedProps$n>, Pick<FieldBaseProps<'label'>, 'width' | 'label' | 'description' | 'errorMessage'> {
|
|
223
224
|
variant?: string;
|
|
224
225
|
size?: string;
|
|
225
226
|
/**
|
|
@@ -300,8 +301,8 @@ interface BodyProps extends Omit<HtmlProps<'section'>, 'className'> {
|
|
|
300
301
|
}
|
|
301
302
|
declare const Body: ({ children, variant, size, ...props }: BodyProps) => react_jsx_runtime.JSX.Element;
|
|
302
303
|
|
|
303
|
-
type RemovedProps$
|
|
304
|
-
interface ButtonProps extends Omit<RAC.ButtonProps, RemovedProps$
|
|
304
|
+
type RemovedProps$m = 'isDisabled' | 'isPending';
|
|
305
|
+
interface ButtonProps extends Omit<RAC.ButtonProps, RemovedProps$m> {
|
|
305
306
|
variant?: string;
|
|
306
307
|
size?: string;
|
|
307
308
|
/**
|
|
@@ -359,8 +360,8 @@ interface CenterProps extends GapSpaceProp, AriaRegionProps {
|
|
|
359
360
|
}
|
|
360
361
|
declare const Center: ({ maxWidth, space, children, ...props }: CenterProps) => react_jsx_runtime.JSX.Element;
|
|
361
362
|
|
|
362
|
-
type RemovedProps$
|
|
363
|
-
interface CheckboxGroupProps extends Omit<RAC.CheckboxGroupProps, RemovedProps$
|
|
363
|
+
type RemovedProps$l = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly';
|
|
364
|
+
interface CheckboxGroupProps extends Omit<RAC.CheckboxGroupProps, RemovedProps$l>, Pick<FieldBaseProps<'label'>, 'label' | 'description' | 'errorMessage'> {
|
|
364
365
|
/**
|
|
365
366
|
* The children of the component
|
|
366
367
|
*/
|
|
@@ -400,8 +401,8 @@ interface CheckboxGroupProps extends Omit<RAC.CheckboxGroupProps, RemovedProps$k
|
|
|
400
401
|
}
|
|
401
402
|
declare const _CheckboxGroup: ({ children, variant, size, required, disabled, readOnly, error, width, orientation, ...rest }: CheckboxGroupProps) => react_jsx_runtime.JSX.Element;
|
|
402
403
|
|
|
403
|
-
type RemovedProps$
|
|
404
|
-
interface CheckboxProps extends Omit<RAC.CheckboxProps, RemovedProps$
|
|
404
|
+
type RemovedProps$k = 'className' | 'style' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'isSelected' | 'isIndeterminate' | 'defaultSelected';
|
|
405
|
+
interface CheckboxProps extends Omit<RAC.CheckboxProps, RemovedProps$k> {
|
|
405
406
|
/**
|
|
406
407
|
* Whether the element should be checked (controlled).
|
|
407
408
|
*/
|
|
@@ -683,8 +684,8 @@ interface InlineProps extends GapSpaceProp, AriaRegionProps {
|
|
|
683
684
|
}
|
|
684
685
|
declare const Inline: ({ space, alignX, alignY, children, ...props }: InlineProps) => react_jsx_runtime.JSX.Element;
|
|
685
686
|
|
|
686
|
-
type RemovedProps$
|
|
687
|
-
interface InputProps extends Omit<RAC.InputProps, RemovedProps$
|
|
687
|
+
type RemovedProps$j = 'className' | 'style' | 'size';
|
|
688
|
+
interface InputProps extends Omit<RAC.InputProps, RemovedProps$j> {
|
|
688
689
|
icon?: ReactElement<any>;
|
|
689
690
|
action?: ReactElement<any>;
|
|
690
691
|
variant?: string;
|
|
@@ -693,8 +694,8 @@ interface InputProps extends Omit<RAC.InputProps, RemovedProps$i> {
|
|
|
693
694
|
}
|
|
694
695
|
declare const _Input: react.ForwardRefExoticComponent<InputProps & react.RefAttributes<HTMLInputElement>>;
|
|
695
696
|
|
|
696
|
-
type RemovedProps$
|
|
697
|
-
interface DateFieldProps extends Omit<RAC.DateFieldProps<DateValue>, RemovedProps$
|
|
697
|
+
type RemovedProps$i = 'className' | 'isRequired' | 'isDisabled' | 'isInvalid' | 'isReadOnly' | 'label' | 'children' | 'style';
|
|
698
|
+
interface DateFieldProps extends Omit<RAC.DateFieldProps<DateValue>, RemovedProps$i>, Pick<FieldBaseProps<'label'>, 'label' | 'description' | 'errorMessage'> {
|
|
698
699
|
variant?: string;
|
|
699
700
|
size?: string;
|
|
700
701
|
/**
|
|
@@ -729,8 +730,8 @@ interface DateFieldProps extends Omit<RAC.DateFieldProps<DateValue>, RemovedProp
|
|
|
729
730
|
}
|
|
730
731
|
declare const _DateField: react.ForwardRefExoticComponent<DateFieldProps & react.RefAttributes<HTMLInputElement>>;
|
|
731
732
|
|
|
732
|
-
type RemovedProps$
|
|
733
|
-
interface CalendarProps extends Omit<RAC.CalendarProps<DateValue>, RemovedProps$
|
|
733
|
+
type RemovedProps$h = 'visibleDuration' | 'pageBehavior' | 'isDateUnavailable' | 'isDisabled' | 'isReadOnly' | 'isInvalid' | 'errorMessage' | 'className' | 'style';
|
|
734
|
+
interface CalendarProps extends Omit<RAC.CalendarProps<DateValue>, RemovedProps$h> {
|
|
734
735
|
/**
|
|
735
736
|
* Disables the Calendar.
|
|
736
737
|
* @default false
|
|
@@ -754,8 +755,8 @@ interface CalendarProps extends Omit<RAC.CalendarProps<DateValue>, RemovedProps$
|
|
|
754
755
|
}
|
|
755
756
|
declare const _Calendar: ({ disabled, readOnly, size, variant, dateUnavailable, ...rest }: CalendarProps) => react_jsx_runtime.JSX.Element;
|
|
756
757
|
|
|
757
|
-
type RemovedProps$
|
|
758
|
-
interface DatePickerProps extends Omit<RAC.DatePickerProps<DateValue>, RemovedProps$
|
|
758
|
+
type RemovedProps$g = 'isDisabled' | 'isDateUnavailable' | 'isReadOnly' | 'isRequired' | 'isInvalid' | 'style' | 'className' | 'isOpen';
|
|
759
|
+
interface DatePickerProps extends Omit<RAC.DatePickerProps<DateValue>, RemovedProps$g>, Pick<FieldBaseProps<'label'>, 'label' | 'description' | 'errorMessage'> {
|
|
759
760
|
/**
|
|
760
761
|
* Callback that is called for each date of the calendar. If it returns true, then the date is unavailable.
|
|
761
762
|
*/
|
|
@@ -819,15 +820,15 @@ type InsetProps = (AriaRegionProps & {
|
|
|
819
820
|
});
|
|
820
821
|
declare const Inset: ({ space, spaceX, spaceY, children }: InsetProps) => react_jsx_runtime.JSX.Element;
|
|
821
822
|
|
|
822
|
-
type RemovedProps$
|
|
823
|
-
interface LabelProps extends Omit<RAC.LabelProps, RemovedProps$
|
|
823
|
+
type RemovedProps$f = 'className';
|
|
824
|
+
interface LabelProps extends Omit<RAC.LabelProps, RemovedProps$f> {
|
|
824
825
|
size?: string;
|
|
825
826
|
variant?: string;
|
|
826
827
|
}
|
|
827
828
|
declare const _Label: ({ size, variant, children, ...props }: LabelProps) => react_jsx_runtime.JSX.Element;
|
|
828
829
|
|
|
829
|
-
type RemovedProps$
|
|
830
|
-
interface LinkProps extends Omit<RAC.LinkProps, RemovedProps$
|
|
830
|
+
type RemovedProps$e = 'className' | 'isDisabled' | 'slot';
|
|
831
|
+
interface LinkProps extends Omit<RAC.LinkProps, RemovedProps$e> {
|
|
831
832
|
variant?: string;
|
|
832
833
|
size?: string;
|
|
833
834
|
/**
|
|
@@ -863,14 +864,14 @@ declare const List: {
|
|
|
863
864
|
Item: ({ children, ...props }: ListItemProps) => react_jsx_runtime.JSX.Element;
|
|
864
865
|
};
|
|
865
866
|
|
|
866
|
-
type RemovedProps$
|
|
867
|
-
interface MenuSectionProps extends Omit<RAC.SectionProps<object>, RemovedProps$
|
|
867
|
+
type RemovedProps$d = 'className' | 'style' | 'children';
|
|
868
|
+
interface MenuSectionProps extends Omit<RAC.SectionProps<object>, RemovedProps$d> {
|
|
868
869
|
title?: string;
|
|
869
870
|
children: ReactNode;
|
|
870
871
|
}
|
|
871
872
|
|
|
872
|
-
type RemovedProps$
|
|
873
|
-
interface MenuItemProps extends Omit<RAC.MenuItemProps, RemovedProps$
|
|
873
|
+
type RemovedProps$c = 'style' | 'className';
|
|
874
|
+
interface MenuItemProps extends Omit<RAC.MenuItemProps, RemovedProps$c> {
|
|
874
875
|
}
|
|
875
876
|
|
|
876
877
|
interface PopoverProps extends Omit<RAC.PopoverProps, 'isOpen' | 'isKeyboardDismissDisabled' | 'style' | 'className' | 'children'> {
|
|
@@ -881,8 +882,8 @@ interface PopoverProps extends Omit<RAC.PopoverProps, 'isOpen' | 'isKeyboardDism
|
|
|
881
882
|
}
|
|
882
883
|
declare const _Popover: react.ForwardRefExoticComponent<PopoverProps & react.RefAttributes<HTMLDivElement>>;
|
|
883
884
|
|
|
884
|
-
type RemovedProps$
|
|
885
|
-
interface MenuProps extends Omit<RAC.MenuTriggerProps, RemovedProps$
|
|
885
|
+
type RemovedProps$b = 'isOpen' | 'className' | 'style' | 'children';
|
|
886
|
+
interface MenuProps extends Omit<RAC.MenuTriggerProps, RemovedProps$b>, Omit<RAC.MenuProps<object>, RemovedProps$b> {
|
|
886
887
|
/**
|
|
887
888
|
* Whether the menu is open.
|
|
888
889
|
* @default false
|
|
@@ -971,22 +972,24 @@ declare const SectionMessage: {
|
|
|
971
972
|
Content: ({ children, }: SectionMessageContentProps) => react_jsx_runtime.JSX.Element;
|
|
972
973
|
};
|
|
973
974
|
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
975
|
+
type PickedProps = 'autoFocus' | 'isOptionDisabled' | 'noOptionsMessage' | 'onBlur' | 'onFocus' | 'aria-errormessage' | 'aria-invalid' | 'aria-label' | 'aria-labelledby' | 'aria-live' | 'ariaLiveMessages';
|
|
976
|
+
interface MultipleSelectProps extends Pick<FieldBaseProps<'label'>, 'width' | 'size' | 'variant' | 'label' | 'description' | 'errorMessage'>, Pick<Props, PickedProps> {
|
|
977
|
+
disabled?: boolean;
|
|
978
|
+
required?: boolean;
|
|
979
|
+
readOnly?: boolean;
|
|
980
|
+
error?: boolean;
|
|
981
|
+
items?: Props['options'];
|
|
982
|
+
errorMessage?: string | ((validation: ValidationResult) => string);
|
|
983
|
+
placeholder?: string;
|
|
984
|
+
defaultSelectedItems?: Props['defaultValue'];
|
|
985
|
+
defaultValue?: Props['defaultInputValue'];
|
|
986
|
+
onChange?: Props['onInputChange'];
|
|
987
|
+
onSelectionChange?: Props['onChange'];
|
|
982
988
|
}
|
|
983
|
-
declare const Multiselect: {
|
|
984
|
-
({ label, children, ...props }: MultiSelectProps): react_jsx_runtime.JSX.Element;
|
|
985
|
-
Item: (_: MultiSelectItemProps) => null;
|
|
986
|
-
};
|
|
989
|
+
declare const Multiselect: ({ disabled, readOnly, items, defaultSelectedItems, defaultValue, error, errorMessage, size, variant, placeholder, description, onChange, onSelectionChange, ...rest }: MultipleSelectProps) => react_jsx_runtime.JSX.Element;
|
|
987
990
|
|
|
988
|
-
type RemovedProps$
|
|
989
|
-
interface NumberFieldProps extends Omit<RAC.NumberFieldProps, RemovedProps$
|
|
991
|
+
type RemovedProps$a = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'size';
|
|
992
|
+
interface NumberFieldProps extends Omit<RAC.NumberFieldProps, RemovedProps$a>, Pick<FieldBaseProps<'label'>, 'label' | 'description' | 'errorMessage'> {
|
|
990
993
|
variant?: string;
|
|
991
994
|
size?: string;
|
|
992
995
|
/**
|
|
@@ -1079,8 +1082,8 @@ declare function MarigoldProvider<T extends Theme>({ children, className, theme,
|
|
|
1079
1082
|
declare const OverlayContainerProvider: react.Provider<string | undefined>;
|
|
1080
1083
|
declare const usePortalContainer: () => HTMLElement | null;
|
|
1081
1084
|
|
|
1082
|
-
type RemovedProps$
|
|
1083
|
-
interface RadioGroupProps extends Omit<RAC.RadioGroupProps, RemovedProps$
|
|
1085
|
+
type RemovedProps$9 = 'className' | 'style' | 'isDisabled' | 'isInvalid' | 'isRequired' | 'isSelected';
|
|
1086
|
+
interface RadioGroupProps extends Omit<RAC.RadioGroupProps, RemovedProps$9> {
|
|
1084
1087
|
variant?: string;
|
|
1085
1088
|
size?: string;
|
|
1086
1089
|
/**
|
|
@@ -1139,8 +1142,8 @@ interface RadioGroupProps extends Omit<RAC.RadioGroupProps, RemovedProps$8> {
|
|
|
1139
1142
|
}
|
|
1140
1143
|
declare const _RadioGroup: ({ variant, size, label, error, disabled, required, readOnly, description, errorMessage, orientation, children, width, ...rest }: RadioGroupProps) => react_jsx_runtime.JSX.Element;
|
|
1141
1144
|
|
|
1142
|
-
type RemovedProps$
|
|
1143
|
-
interface RadioProps extends Omit<RAC.RadioProps, RemovedProps$
|
|
1145
|
+
type RemovedProps$8 = 'className' | 'style' | 'children' | 'isDisabled';
|
|
1146
|
+
interface RadioProps extends Omit<RAC.RadioProps, RemovedProps$8> {
|
|
1144
1147
|
variant?: string;
|
|
1145
1148
|
size?: string;
|
|
1146
1149
|
/**
|
|
@@ -1165,8 +1168,8 @@ interface RadioComponent extends ForwardRefExoticComponent<RadioProps & RefAttri
|
|
|
1165
1168
|
Group: typeof _RadioGroup;
|
|
1166
1169
|
}
|
|
1167
1170
|
|
|
1168
|
-
type RemovedProps$
|
|
1169
|
-
interface SearchFieldProps extends Omit<RAC.SearchFieldProps, RemovedProps$
|
|
1171
|
+
type RemovedProps$7 = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'value' | 'defaultValue';
|
|
1172
|
+
interface SearchFieldProps extends Omit<RAC.SearchFieldProps, RemovedProps$7>, Pick<FieldBaseProps<'label'>, 'label' | 'description' | 'errorMessage'> {
|
|
1170
1173
|
/**
|
|
1171
1174
|
* Action element to display in the search field.
|
|
1172
1175
|
*/
|
|
@@ -1373,8 +1376,8 @@ interface StackProps extends GapSpaceProp, AriaRegionProps {
|
|
|
1373
1376
|
}
|
|
1374
1377
|
declare const Stack: ({ children, space, stretch, alignX, alignY, ...props }: StackProps) => react_jsx_runtime.JSX.Element;
|
|
1375
1378
|
|
|
1376
|
-
type RemovedProps$
|
|
1377
|
-
interface SwitchProps extends Omit<RAC.SwitchProps, RemovedProps$
|
|
1379
|
+
type RemovedProps$6 = 'className' | 'isDisabled' | 'isReadOnly' | 'isSelected' | 'children' | 'slot';
|
|
1380
|
+
interface SwitchProps extends Omit<RAC.SwitchProps, RemovedProps$6> {
|
|
1378
1381
|
variant?: string;
|
|
1379
1382
|
size?: string;
|
|
1380
1383
|
children?: ReactNode;
|
|
@@ -1469,8 +1472,8 @@ interface TextProps extends AriaLabelingProps, Omit<RAC.TextProps, 'elementType'
|
|
|
1469
1472
|
}
|
|
1470
1473
|
declare const _Text: ({ variant, size, color, align, cursor, weight, fontSize, fontStyle, children, as, ...props }: TextProps) => react_jsx_runtime.JSX.Element;
|
|
1471
1474
|
|
|
1472
|
-
type RemovedProps$
|
|
1473
|
-
interface TextAreaProps extends Omit<RAC.TextFieldProps, RemovedProps$
|
|
1475
|
+
type RemovedProps$5 = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'value' | 'defaultValue';
|
|
1476
|
+
interface TextAreaProps extends Omit<RAC.TextFieldProps, RemovedProps$5>, Pick<RAC.TextAreaProps, 'rows'>, Pick<FieldBaseProps<'label'>, 'label' | 'description' | 'errorMessage'> {
|
|
1474
1477
|
variant?: string;
|
|
1475
1478
|
size?: string;
|
|
1476
1479
|
/**
|
|
@@ -1521,8 +1524,8 @@ interface TextAreaProps extends Omit<RAC.TextFieldProps, RemovedProps$4>, Pick<R
|
|
|
1521
1524
|
}
|
|
1522
1525
|
declare const _TextArea: react.ForwardRefExoticComponent<TextAreaProps & react.RefAttributes<HTMLTextAreaElement>>;
|
|
1523
1526
|
|
|
1524
|
-
type RemovedProps$
|
|
1525
|
-
interface TextFieldProps extends Omit<RAC.TextFieldProps, RemovedProps$
|
|
1527
|
+
type RemovedProps$4 = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'value' | 'defaultValue' | 'slot';
|
|
1528
|
+
interface TextFieldProps extends Omit<RAC.TextFieldProps, RemovedProps$4>, Pick<FieldBaseProps<'label'>, 'label' | 'description' | 'errorMessage'> {
|
|
1526
1529
|
variant?: string;
|
|
1527
1530
|
size?: string;
|
|
1528
1531
|
/**
|
|
@@ -1601,8 +1604,8 @@ interface TilesProps extends GapSpaceProp, AriaRegionProps {
|
|
|
1601
1604
|
}
|
|
1602
1605
|
declare const Tiles: ({ space, stretch, equalHeight, tilesWidth, children, ...props }: TilesProps) => react_jsx_runtime.JSX.Element;
|
|
1603
1606
|
|
|
1604
|
-
type RemovedProps$
|
|
1605
|
-
interface TooltipTriggerProps extends Omit<RAC.TooltipTriggerComponentProps, RemovedProps$
|
|
1607
|
+
type RemovedProps$3 = 'isDisabled' | 'isOpen' | 'children';
|
|
1608
|
+
interface TooltipTriggerProps extends Omit<RAC.TooltipTriggerComponentProps, RemovedProps$3> {
|
|
1606
1609
|
/**
|
|
1607
1610
|
* The children of the component.
|
|
1608
1611
|
*/
|
|
@@ -1617,8 +1620,8 @@ interface TooltipTriggerProps extends Omit<RAC.TooltipTriggerComponentProps, Rem
|
|
|
1617
1620
|
open?: boolean;
|
|
1618
1621
|
}
|
|
1619
1622
|
|
|
1620
|
-
type RemovedProps$
|
|
1621
|
-
interface TooltipProps extends Omit<RAC.TooltipProps, RemovedProps$
|
|
1623
|
+
type RemovedProps$2 = 'className' | 'isOpen' | 'style';
|
|
1624
|
+
interface TooltipProps extends Omit<RAC.TooltipProps, RemovedProps$2> {
|
|
1622
1625
|
/**
|
|
1623
1626
|
* The children of the component.
|
|
1624
1627
|
*/
|
|
@@ -1635,8 +1638,8 @@ declare const _Tooltip: {
|
|
|
1635
1638
|
Trigger: ({ delay, children, disabled, open, ...rest }: TooltipTriggerProps) => react_jsx_runtime.JSX.Element;
|
|
1636
1639
|
};
|
|
1637
1640
|
|
|
1638
|
-
type RemovedProps = 'className' | 'style' | 'children' | 'isRequired';
|
|
1639
|
-
interface TagGroupProps extends Omit<RAC.TagGroupProps, RemovedProps>, Pick<TagListProps<object>, 'items' | 'children' | 'renderEmptyState'>, Pick<FieldBaseProps<'label'>, 'label' | 'description'> {
|
|
1641
|
+
type RemovedProps$1 = 'className' | 'style' | 'children' | 'isRequired';
|
|
1642
|
+
interface TagGroupProps extends Omit<RAC.TagGroupProps, RemovedProps$1>, Pick<TagListProps<object>, 'items' | 'children' | 'renderEmptyState'>, Pick<FieldBaseProps<'label'>, 'label' | 'description'> {
|
|
1640
1643
|
variant?: string;
|
|
1641
1644
|
size?: string;
|
|
1642
1645
|
/**
|
|
@@ -1655,13 +1658,15 @@ interface CloseButtonProps {
|
|
|
1655
1658
|
className: string;
|
|
1656
1659
|
}
|
|
1657
1660
|
declare const CloseButton: ({ className }: CloseButtonProps) => react_jsx_runtime.JSX.Element;
|
|
1658
|
-
|
|
1661
|
+
type RemovedProps = 'className' | 'style' | 'isDisabled';
|
|
1662
|
+
interface TagProps extends Omit<RAC.TagProps, RemovedProps> {
|
|
1659
1663
|
variant?: string;
|
|
1660
1664
|
size?: string;
|
|
1661
1665
|
children?: ReactNode;
|
|
1666
|
+
disabled?: boolean;
|
|
1662
1667
|
}
|
|
1663
1668
|
declare const _Tag: {
|
|
1664
|
-
({ variant, size, children, ...
|
|
1669
|
+
({ variant, size, children, disabled, ...rest }: TagProps): react_jsx_runtime.JSX.Element;
|
|
1665
1670
|
Group: ({ width, items, children, renderEmptyState, variant, size, ...rest }: TagGroupProps) => react_jsx_runtime.JSX.Element;
|
|
1666
1671
|
};
|
|
1667
1672
|
|
|
@@ -1708,4 +1713,4 @@ declare const _Tabs: {
|
|
|
1708
1713
|
Item: (props: TabProps) => react_jsx_runtime.JSX.Element;
|
|
1709
1714
|
};
|
|
1710
1715
|
|
|
1711
|
-
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,
|
|
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 };
|