@marigold/components 6.11.0 → 7.0.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 +123 -111
- package/dist/index.d.ts +123 -111
- package/dist/index.js +1327 -1736
- package/dist/index.mjs +1254 -1662
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -1,25 +1,19 @@
|
|
|
1
1
|
export { useAsyncList, useListData } from '@react-stately/data';
|
|
2
2
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
3
|
import * as react from 'react';
|
|
4
|
-
import react__default, { ReactElement, ReactNode,
|
|
4
|
+
import react__default, { ReactElement, ReactNode, ElementType, ForwardRefExoticComponent, RefAttributes, HTMLAttributes, RefObject, Key as Key$1 } from 'react';
|
|
5
5
|
import { AriaAccordionProps } from '@react-aria/accordion';
|
|
6
|
-
import
|
|
7
|
-
import { ItemElement, ItemProps, Node, CollectionElement, StyleProps } from '@react-types/shared';
|
|
6
|
+
import { ItemElement, ItemProps, Node, StyleProps } from '@react-types/shared';
|
|
8
7
|
import { TreeState } from '@react-stately/tree';
|
|
9
8
|
import { GapSpaceProp, AspectProp, WidthProp, AlignmentProp, alignment, PaddingSpaceProp, PaddingSpacePropX, PaddingSpacePropY, PaddingRightProp, PaddingLeftProp, PaddingBottomProp, PaddingTopProp, PlaceItemsProp, GridColumn, GridColsAlignProp, TextAlignProp, StateAttrProps, ObjectFitProp, ObjectPositionProp, Theme, ThemeProviderProps, FontSizeProp, FontWeightProp, FontStyleProp, CursorProp, SVGProps } from '@marigold/system';
|
|
10
9
|
export { ThemeProvider, useTheme } from '@marigold/system';
|
|
11
10
|
import { NonZeroPercentage, HtmlProps } from '@marigold/types';
|
|
12
|
-
import {
|
|
13
|
-
import { ComboBoxProps as ComboBoxProps$1 } from '@react-types/combobox';
|
|
14
|
-
import RAC, { ValidationResult, TagListProps } from 'react-aria-components';
|
|
11
|
+
import RAC, { ValidationResult, Key, TagListProps } from 'react-aria-components';
|
|
15
12
|
import { DateValue, CalendarDate } from '@internationalized/date';
|
|
16
13
|
import { AriaDateFieldProps, AriaDatePickerProps } from '@react-aria/datepicker';
|
|
17
|
-
import {
|
|
18
|
-
import { CalendarState } from '@react-stately/calendar';
|
|
14
|
+
import { DateValue as DateValue$1 } from '@react-aria/calendar';
|
|
19
15
|
import { OverlayProps as OverlayProps$1, AriaPopoverProps, AriaModalOverlayProps } from '@react-aria/overlays';
|
|
20
16
|
import { OverlayTriggerState } from '@react-stately/overlays';
|
|
21
|
-
import { Item, Section } from '@react-stately/collections';
|
|
22
|
-
import { AriaSelectProps } from '@react-types/select';
|
|
23
17
|
import { AriaTableProps } from '@react-aria/table';
|
|
24
18
|
import { TableStateProps, RowProps as RowProps$1, TableBody, Cell, TableHeader, ColumnProps as ColumnProps$1 } from '@react-stately/table';
|
|
25
19
|
export { VisuallyHidden } from '@react-aria/visually-hidden';
|
|
@@ -61,17 +55,51 @@ interface AspectProps extends Omit<HtmlProps<'div'>, 'className'>, AspectProp {
|
|
|
61
55
|
}
|
|
62
56
|
declare const Aspect: ({ ratio, maxWidth, children, }: AspectProps) => react_jsx_runtime.JSX.Element;
|
|
63
57
|
|
|
64
|
-
interface
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
58
|
+
interface HelpTextProps {
|
|
59
|
+
variant?: string;
|
|
60
|
+
size?: string;
|
|
61
|
+
description?: ReactNode;
|
|
68
62
|
error?: boolean;
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
63
|
+
errorMessage?: ReactNode | ((v: ValidationResult) => ReactNode);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
interface FieldBaseProps$1<T extends ElementType> extends WidthProp, Pick<HelpTextProps, 'description' | 'errorMessage'> {
|
|
67
|
+
as?: T;
|
|
68
|
+
label?: ReactNode;
|
|
69
|
+
variant?: string;
|
|
70
|
+
size?: string;
|
|
71
|
+
children?: ReactNode;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
interface ListBoxItemProps extends Omit<RAC.ListBoxItemProps, 'style' | 'className'> {
|
|
75
|
+
}
|
|
76
|
+
declare const _ListBoxItem: (props: ListBoxItemProps) => react_jsx_runtime.JSX.Element;
|
|
77
|
+
|
|
78
|
+
interface SectionProps extends Omit<RAC.SectionProps<object>, 'className' | 'style'> {
|
|
79
|
+
}
|
|
80
|
+
declare const _Section: (props: SectionProps) => react_jsx_runtime.JSX.Element;
|
|
81
|
+
|
|
82
|
+
interface ListBoxProps extends Omit<RAC.ListBoxProps<object>, 'className' | 'style'> {
|
|
83
|
+
variant?: string;
|
|
84
|
+
size?: string;
|
|
85
|
+
}
|
|
86
|
+
interface ListBoxComponent extends ForwardRefExoticComponent<ListBoxProps & RefAttributes<HTMLUListElement>> {
|
|
87
|
+
Item: typeof _ListBoxItem;
|
|
88
|
+
Section: typeof _Section;
|
|
89
|
+
}
|
|
90
|
+
declare const _ListBox: ListBoxComponent;
|
|
91
|
+
|
|
92
|
+
type RemovedProps$l = 'className' | 'style' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'inputValue' | 'onInputChange' | 'defaultValue' | 'validate' | 'validationState';
|
|
93
|
+
interface AutocompleteProps extends Omit<RAC.ComboBoxProps<object>, RemovedProps$l>, Pick<FieldBaseProps$1<'label'>, 'width' | 'label' | 'description' | 'errorMessage'> {
|
|
94
|
+
defaultValue?: RAC.ComboBoxProps<object>['defaultInputValue'];
|
|
95
|
+
value?: RAC.ComboBoxProps<object>['inputValue'];
|
|
96
|
+
onChange?: RAC.ComboBoxProps<object>['onInputChange'];
|
|
97
|
+
disabled?: RAC.ComboBoxProps<object>['isDisabled'];
|
|
98
|
+
required?: RAC.ComboBoxProps<object>['isRequired'];
|
|
99
|
+
error?: RAC.ComboBoxProps<object>['isInvalid'];
|
|
100
|
+
readOnly?: RAC.ComboBoxProps<object>['isReadOnly'];
|
|
101
|
+
variant?: string;
|
|
102
|
+
size?: string;
|
|
75
103
|
/**
|
|
76
104
|
* Handler that is called when the SearchAutocomplete is submitted.
|
|
77
105
|
*
|
|
@@ -81,32 +109,30 @@ interface AutocompleteProps extends Omit<SearchAutocompleteProps<object>, 'isDis
|
|
|
81
109
|
* A `value` will be passed if the submission is a custom value (e.g. a user
|
|
82
110
|
* types then presses enter). If the input is a selected item, `value` will be `null`.
|
|
83
111
|
*/
|
|
84
|
-
onSubmit?: (
|
|
85
|
-
variant?: string;
|
|
86
|
-
size?: string;
|
|
87
|
-
width?: WidthProp['width'];
|
|
112
|
+
onSubmit?: (value: string | number | null, key: Key | null) => void;
|
|
88
113
|
}
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
114
|
+
interface AutocompleteComponent extends ForwardRefExoticComponent<AutocompleteProps & RefAttributes<HTMLInputElement>> {
|
|
115
|
+
Item: typeof _ListBox.Item;
|
|
116
|
+
}
|
|
117
|
+
declare const _Autocomplete: AutocompleteComponent;
|
|
93
118
|
|
|
94
|
-
|
|
119
|
+
type RemovedProps$k = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly' | 'defaultInputValue' | 'inputValue' | 'onInputChange';
|
|
120
|
+
interface ComboBoxProps extends Omit<RAC.ComboBoxProps<any>, RemovedProps$k>, Pick<FieldBaseProps$1<'label'>, 'width' | 'label' | 'description' | 'errorMessage'> {
|
|
95
121
|
variant?: string;
|
|
96
122
|
size?: string;
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
123
|
+
disabled?: RAC.ComboBoxProps<any>['isDisabled'];
|
|
124
|
+
required?: RAC.ComboBoxProps<any>['isRequired'];
|
|
125
|
+
readOnly?: RAC.ComboBoxProps<any>['isReadOnly'];
|
|
126
|
+
error?: RAC.ComboBoxProps<any>['isInvalid'];
|
|
127
|
+
defaultValue?: RAC.ComboBoxProps<any>['defaultInputValue'];
|
|
128
|
+
value?: RAC.ComboBoxProps<any>['inputValue'];
|
|
129
|
+
onChange?: RAC.ComboBoxProps<any>['onInputChange'];
|
|
130
|
+
children: ReactNode | ((item: any) => ReactNode);
|
|
105
131
|
}
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
132
|
+
interface ComboBoxComponent extends ForwardRefExoticComponent<ComboBoxProps & RefAttributes<HTMLInputElement>> {
|
|
133
|
+
Item: typeof _ListBox.Item;
|
|
134
|
+
}
|
|
135
|
+
declare const _ComboBox: ComboBoxComponent;
|
|
110
136
|
|
|
111
137
|
interface BadgeProps extends Omit<HtmlProps<'div'>, 'className'> {
|
|
112
138
|
children?: React.ReactNode;
|
|
@@ -130,8 +156,8 @@ interface BodyProps extends Omit<HtmlProps<'section'>, 'className'> {
|
|
|
130
156
|
}
|
|
131
157
|
declare const Body: ({ children, variant, size, ...props }: BodyProps) => react_jsx_runtime.JSX.Element;
|
|
132
158
|
|
|
133
|
-
type RemovedProps$
|
|
134
|
-
interface ButtonProps extends Omit<RAC.ButtonProps, RemovedProps$
|
|
159
|
+
type RemovedProps$j = 'isDisabled';
|
|
160
|
+
interface ButtonProps extends Omit<RAC.ButtonProps, RemovedProps$j> {
|
|
135
161
|
variant?: string;
|
|
136
162
|
size?: string;
|
|
137
163
|
fullWidth?: boolean;
|
|
@@ -166,24 +192,8 @@ interface CheckboxProps extends Omit<HtmlProps<'input'>, 'size' | 'type' | 'defa
|
|
|
166
192
|
}
|
|
167
193
|
declare const _Checkbox: react.ForwardRefExoticComponent<CheckboxProps & react.RefAttributes<HTMLInputElement>>;
|
|
168
194
|
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
size?: string;
|
|
172
|
-
description?: ReactNode;
|
|
173
|
-
error?: boolean;
|
|
174
|
-
errorMessage?: ReactNode | ((v: ValidationResult) => ReactNode);
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
interface FieldBaseProps$1<T extends ElementType> extends WidthProp, Pick<HelpTextProps, 'description' | 'errorMessage'> {
|
|
178
|
-
as?: T;
|
|
179
|
-
label?: ReactNode;
|
|
180
|
-
variant?: string;
|
|
181
|
-
size?: string;
|
|
182
|
-
children?: ReactNode;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
type RemovedProps$d = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly';
|
|
186
|
-
interface CheckboxGroupProps extends Omit<RAC.CheckboxGroupProps, RemovedProps$d>, Pick<FieldBaseProps$1<'label'>, 'label' | 'description' | 'errorMessage'> {
|
|
195
|
+
type RemovedProps$i = 'className' | 'style' | 'children' | 'isDisabled' | 'isRequired' | 'isInvalid' | 'isReadOnly';
|
|
196
|
+
interface CheckboxGroupProps extends Omit<RAC.CheckboxGroupProps, RemovedProps$i>, Pick<FieldBaseProps$1<'label'>, 'label' | 'description' | 'errorMessage'> {
|
|
187
197
|
children?: ReactNode;
|
|
188
198
|
variant?: string;
|
|
189
199
|
size?: string;
|
|
@@ -229,8 +239,8 @@ interface DialogTriggerProps extends Omit<RAC.DialogTriggerProps, 'isOpen'> {
|
|
|
229
239
|
isNonModal?: boolean;
|
|
230
240
|
}
|
|
231
241
|
|
|
232
|
-
type RemovedProps$
|
|
233
|
-
interface HeadlineProps extends Omit<RAC.HeadingProps, RemovedProps$
|
|
242
|
+
type RemovedProps$h = 'className' | 'level';
|
|
243
|
+
interface HeadlineProps extends Omit<RAC.HeadingProps, RemovedProps$h>, TextAlignProp {
|
|
234
244
|
color?: string;
|
|
235
245
|
variant?: string;
|
|
236
246
|
size?: string;
|
|
@@ -257,8 +267,8 @@ interface DividerProps extends RAC.SeparatorProps {
|
|
|
257
267
|
}
|
|
258
268
|
declare const _Divider: ({ variant, ...props }: DividerProps) => react_jsx_runtime.JSX.Element;
|
|
259
269
|
|
|
260
|
-
type RemovedProps$
|
|
261
|
-
interface LabelProps extends Omit<RAC.LabelProps, RemovedProps$
|
|
270
|
+
type RemovedProps$g = 'className';
|
|
271
|
+
interface LabelProps extends Omit<RAC.LabelProps, RemovedProps$g> {
|
|
262
272
|
size?: string;
|
|
263
273
|
variant?: string;
|
|
264
274
|
}
|
|
@@ -320,15 +330,15 @@ interface InlineProps extends AlignmentProp, GapSpaceProp {
|
|
|
320
330
|
}
|
|
321
331
|
declare const Inline: ({ space, orientation, alignX, alignY, children, ...props }: InlineProps) => react_jsx_runtime.JSX.Element;
|
|
322
332
|
|
|
323
|
-
|
|
333
|
+
type RemovedProps$f = 'className' | 'style' | 'size';
|
|
334
|
+
interface InputProps extends Omit<RAC.InputProps, RemovedProps$f> {
|
|
324
335
|
icon?: ReactElement;
|
|
325
336
|
action?: ReactElement;
|
|
326
337
|
variant?: string;
|
|
327
338
|
size?: string;
|
|
339
|
+
className?: string;
|
|
328
340
|
}
|
|
329
|
-
|
|
330
|
-
}
|
|
331
|
-
declare const Input: react.ForwardRefExoticComponent<InputOwnProps & react.RefAttributes<HTMLInputElement>>;
|
|
341
|
+
declare const _Input: react.ForwardRefExoticComponent<InputProps & react.RefAttributes<HTMLInputElement>>;
|
|
332
342
|
|
|
333
343
|
interface DateFieldProps extends Omit<AriaDateFieldProps<DateValue>, 'isDisabled' | 'isReadOnly' | 'isRequired'> {
|
|
334
344
|
onChange?: (value: DateValue) => void;
|
|
@@ -349,23 +359,15 @@ interface DateFieldProps extends Omit<AriaDateFieldProps<DateValue>, 'isDisabled
|
|
|
349
359
|
}
|
|
350
360
|
declare const DateField: ({ disabled, readOnly, required, error, errorMessage, errorMessageProps, variant, size, action, isPressed, triggerRef, width, ...res }: DateFieldProps) => react_jsx_runtime.JSX.Element;
|
|
351
361
|
|
|
352
|
-
|
|
362
|
+
type RemovedProps$e = 'isDisabled' | 'isReadOnly' | 'isInvalid' | 'errorMessage' | 'className' | 'style';
|
|
363
|
+
interface CalendarProps extends Omit<RAC.CalendarProps<DateValue$1>, RemovedProps$e> {
|
|
353
364
|
disabled?: boolean;
|
|
354
365
|
readOnly?: boolean;
|
|
355
366
|
variant?: string;
|
|
356
367
|
size?: string;
|
|
368
|
+
width?: WidthProp['width'];
|
|
357
369
|
}
|
|
358
|
-
declare const
|
|
359
|
-
|
|
360
|
-
interface CalendarCellProps extends AriaCalendarCellProps {
|
|
361
|
-
state: CalendarState;
|
|
362
|
-
}
|
|
363
|
-
declare const CalendarCell: (props: CalendarCellProps) => react_jsx_runtime.JSX.Element;
|
|
364
|
-
|
|
365
|
-
interface CalendarGridProps extends AriaCalendarGridProps {
|
|
366
|
-
state: CalendarState;
|
|
367
|
-
}
|
|
368
|
-
declare const CalendarGrid: ({ state, ...props }: CalendarGridProps) => react_jsx_runtime.JSX.Element;
|
|
370
|
+
declare const _Calendar: ({ disabled, readOnly, size, variant, ...rest }: CalendarProps) => react_jsx_runtime.JSX.Element;
|
|
369
371
|
|
|
370
372
|
interface DatePickerProps extends Omit<AriaDatePickerProps<CalendarDate>, 'isDisabled' | 'isRequired' | 'isReadOnly' | 'isOpen'> {
|
|
371
373
|
disabled?: boolean;
|
|
@@ -393,8 +395,8 @@ type InsetProps = {
|
|
|
393
395
|
};
|
|
394
396
|
declare const Inset: ({ space, spaceX, spaceY, children }: InsetProps) => react_jsx_runtime.JSX.Element;
|
|
395
397
|
|
|
396
|
-
type RemovedProps$
|
|
397
|
-
interface LinkProps extends Omit<RAC.LinkProps, RemovedProps$
|
|
398
|
+
type RemovedProps$d = 'className' | 'isDisabled';
|
|
399
|
+
interface LinkProps extends Omit<RAC.LinkProps, RemovedProps$d> {
|
|
398
400
|
variant?: string;
|
|
399
401
|
size?: string;
|
|
400
402
|
disabled?: RAC.LinkProps['isDisabled'];
|
|
@@ -416,29 +418,37 @@ declare const List: {
|
|
|
416
418
|
Item: ({ children, ...props }: ListItemProps) => react_jsx_runtime.JSX.Element;
|
|
417
419
|
};
|
|
418
420
|
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
onOpenChange?: (isOpen: boolean) => void;
|
|
421
|
+
type RemovedProps$c = 'className' | 'style' | 'children';
|
|
422
|
+
interface MenuSectionProps extends Omit<RAC.SectionProps<object>, RemovedProps$c> {
|
|
423
|
+
title?: string;
|
|
424
|
+
children: ReactNode;
|
|
424
425
|
}
|
|
425
426
|
|
|
426
|
-
|
|
427
|
-
|
|
427
|
+
type RemovedProps$b = 'style' | 'className';
|
|
428
|
+
interface MenuItemProps extends Omit<RAC.MenuItemProps, RemovedProps$b> {
|
|
429
|
+
onAction?: (key: Key$1) => void;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
type RemovedProps$a = 'isOpen' | 'className' | 'style' | 'children';
|
|
433
|
+
interface MenuProps extends Omit<RAC.MenuTriggerProps, RemovedProps$a>, Omit<RAC.MenuProps<object>, RemovedProps$a> {
|
|
434
|
+
open?: RAC.MenuTriggerProps['isOpen'];
|
|
435
|
+
label?: ReactNode;
|
|
428
436
|
variant?: string;
|
|
429
437
|
size?: string;
|
|
430
|
-
onAction?: (key: Key) => void;
|
|
438
|
+
onAction?: (key: Key$1) => void;
|
|
439
|
+
children?: ReactNode;
|
|
431
440
|
}
|
|
432
|
-
declare const
|
|
433
|
-
({ variant, size, ...props }: MenuProps): react_jsx_runtime.JSX.Element;
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
Section: <T_1>(props: _react_types_shared.SectionProps<T_1>) => react.JSX.Element;
|
|
441
|
+
declare const _Menu: {
|
|
442
|
+
({ children, label, variant, size, open, ...props }: MenuProps): react_jsx_runtime.JSX.Element;
|
|
443
|
+
Item: ({ children, ...props }: MenuItemProps) => react_jsx_runtime.JSX.Element;
|
|
444
|
+
Section: ({ children, title, ...props }: MenuSectionProps) => react_jsx_runtime.JSX.Element;
|
|
437
445
|
};
|
|
438
446
|
|
|
439
|
-
interface ActionMenuProps extends MenuProps {
|
|
447
|
+
interface ActionMenuProps extends RAC.MenuProps<object> {
|
|
448
|
+
variant?: string;
|
|
449
|
+
size?: string;
|
|
440
450
|
}
|
|
441
|
-
declare const ActionMenu: (props: ActionMenuProps) => react_jsx_runtime.JSX.Element;
|
|
451
|
+
declare const ActionMenu: ({ variant, size, ...props }: ActionMenuProps) => react_jsx_runtime.JSX.Element;
|
|
442
452
|
|
|
443
453
|
declare const icons: {
|
|
444
454
|
success: () => react_jsx_runtime.JSX.Element;
|
|
@@ -562,25 +572,27 @@ interface SearchFieldProps extends Omit<RAC.SearchFieldProps, RemovedProps$6>, P
|
|
|
562
572
|
}
|
|
563
573
|
declare const _SearchField: react.ForwardRefExoticComponent<SearchFieldProps & react.RefAttributes<HTMLInputElement>>;
|
|
564
574
|
|
|
565
|
-
|
|
575
|
+
type RemoveProps = 'children' | 'isInvalid' | 'isDisabled' | 'isOpen' | 'isRequired' | 'style' | 'className' | 'onSelectionChange';
|
|
576
|
+
interface SelectProps<T extends object> extends Omit<RAC.SelectProps<T>, RemoveProps> {
|
|
577
|
+
label?: string;
|
|
578
|
+
description?: string;
|
|
579
|
+
errorMessage?: string | ((validation: ValidationResult) => string);
|
|
580
|
+
items?: Iterable<T>;
|
|
581
|
+
children: React.ReactNode | ((item: T) => React.ReactNode);
|
|
566
582
|
variant?: string;
|
|
567
583
|
size?: string;
|
|
568
584
|
width?: WidthProp['width'];
|
|
569
|
-
open?: boolean;
|
|
570
|
-
disabled?: boolean;
|
|
571
585
|
required?: boolean;
|
|
586
|
+
disabled?: boolean;
|
|
587
|
+
open?: boolean;
|
|
572
588
|
error?: boolean;
|
|
573
|
-
onChange?:
|
|
589
|
+
onChange?: RAC.SelectProps<object>['onSelectionChange'];
|
|
574
590
|
}
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
* additional properties to the component (function).
|
|
579
|
-
*/
|
|
580
|
-
interface SelectComponent extends ForwardRefExoticComponent<SelectProps & RefAttributes<HTMLButtonElement>> {
|
|
581
|
-
Option: typeof Item;
|
|
582
|
-
Section: typeof Section;
|
|
591
|
+
interface SelectComponent extends ForwardRefExoticComponent<SelectProps<object> & RefAttributes<HTMLDivElement>> {
|
|
592
|
+
Option: typeof _ListBox.Item;
|
|
593
|
+
Section: typeof _ListBox.Section;
|
|
583
594
|
}
|
|
595
|
+
declare const _Select: SelectComponent;
|
|
584
596
|
|
|
585
597
|
interface SliderProps<T> extends Omit<RAC.SliderProps<T>, 'isDisabled' | 'label'> {
|
|
586
598
|
thumbLabels?: string[];
|
|
@@ -747,4 +759,4 @@ declare const _Tabs: {
|
|
|
747
759
|
Item: (props: TabProps) => react_jsx_runtime.JSX.Element;
|
|
748
760
|
};
|
|
749
761
|
|
|
750
|
-
export { Accordion, AccordionItem, AccordionItemProps, AccordionOwnItemProps, AccordionProps, ActionMenu, Aside, AsideProps, Aspect, AspectProps, Autocomplete, AutocompleteProps, Badge, BadgeProps, Body, BodyProps, Breakout, BreakoutProps, _Button as Button, ButtonProps,
|
|
762
|
+
export { Accordion, AccordionItem, AccordionItemProps, AccordionOwnItemProps, AccordionProps, ActionMenu, Aside, AsideProps, Aspect, AspectProps, _Autocomplete as Autocomplete, AutocompleteProps, Badge, BadgeProps, Body, BodyProps, Breakout, BreakoutProps, _Button as Button, ButtonProps, _Calendar as Calendar, CalendarProps, Card, CardProps, Center, CenterProps, _Checkbox as Checkbox, _CheckboxGroup as CheckboxGroup, CheckboxGroupProps, CheckboxProps, CloseButton, Columns, ColumnsProps, _ComboBox as ComboBox, ComboBoxProps, Container, ContainerProps, CustomCheckboxProps, DateField, DateFieldProps, DatePicker, DatePickerProps, _Dialog as Dialog, DialogProps, _Divider as Divider, DividerProps, FieldBase, FieldBaseProps, FieldGroup, FieldGroupContext, FieldGroupContextProps, FieldGroupProps, Footer, FooterProps, _Header as Header, HeaderProps, _Headline as Headline, HeadlineProps, Image, ImageProps, Inline, InlineProps, _Input as Input, InputProps, Inset, InsetProps, _Label as Label, LabelProps, _Link as Link, LinkProps, List, ListProps, MarigoldProvider, MarigoldProviderProps, _Menu as Menu, MenuProps, Message, MessageProps, _Modal as Modal, ModalProps, _NumberField as NumberField, NumberFieldProps, Overlay, OverlayProps, Popover, PopoverProps, _Radio as Radio, RadioComponent, _RadioGroup as RadioGroup, RadioGroupProps, RadioProps, RowProps, _SearchField as SearchField, SearchFieldProps, _Select as Select, SelectComponent, SelectProps, _Slider as Slider, SliderProps, Split, SplitProps, Stack, StackProps, _Switch as Switch, SwitchProps, Table, TableProps, _Tabs as Tabs, TabsProps, _Tag as Tag, TagProps, Text, _TextArea as TextArea, TextAreaProps, _TextField as TextField, TextFieldProps, TextProps, Tiles, TilesProps, _Tooltip as Tooltip, TooltipProps, Tray, TrayProps, TrayWrapper, Underlay, UnderlayProps, XLoader, _Calendar, useFieldGroupContext };
|