@obosbbl/grunnmuren-react 3.3.5 → 3.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/__stories__/form-validation.stories.cjs +71 -57
- package/dist/__stories__/form-validation.stories.js +72 -58
- package/dist/__stories__/layout.stories.cjs +7 -0
- package/dist/__stories__/layout.stories.js +7 -0
- package/dist/index.d.mts +101 -25
- package/dist/index.mjs +541 -342
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DisclosureProps as DisclosureProps$1, ButtonProps as ButtonProps$1, LinkProps as LinkProps$1,
|
|
1
|
+
import { DisclosureProps as DisclosureProps$1, ButtonProps as ButtonProps$1, LinkProps as LinkProps$1, BreadcrumbProps as BreadcrumbProps$1, BreadcrumbsProps as BreadcrumbsProps$1, ContextValue, CheckboxProps as CheckboxProps$1, CheckboxGroupProps as CheckboxGroupProps$1, HeadingProps as HeadingProps$1, ListBoxItemProps, ListBoxSectionProps, ComboBoxProps, FileTriggerProps as FileTriggerProps$1, RouterProvider, TextProps, LabelProps, DialogProps as DialogProps$1, DialogTriggerProps as DialogTriggerProps$1, ModalOverlayProps as ModalOverlayProps$1, NumberFieldProps as NumberFieldProps$1, RadioProps as RadioProps$1, RadioGroupProps as RadioGroupProps$1, SelectProps as SelectProps$1, ColumnResizerProps, TableProps as TableProps$1, TableBodyProps as TableBodyProps$1, CellProps, ColumnProps, ResizableTableContainerProps, TableHeaderProps as TableHeaderProps$1, RowProps, TabProps as TabProps$1, TabListProps as TabListProps$1, TabPanelProps as TabPanelProps$1, TabsProps as TabsProps$1, TagGroupProps as TagGroupProps$1, TagListProps as TagListProps$1, TagProps as TagProps$1, TextFieldProps as TextFieldProps$1 } from 'react-aria-components';
|
|
2
2
|
export { ListBoxItemProps as ComboboxItemProps, DisclosureGroup, DisclosureGroupProps, Form, Group, LabelProps, ListBoxItemProps as SelectItemProps } from 'react-aria-components';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
import * as react from 'react';
|
|
@@ -6,6 +6,7 @@ import { RefAttributes, HTMLAttributes, HTMLProps, ComponentProps, Ref, ReactNod
|
|
|
6
6
|
import * as cva from 'cva';
|
|
7
7
|
import { VariantProps } from 'cva';
|
|
8
8
|
import { DisclosureState } from 'react-stately';
|
|
9
|
+
import { EmblaViewportRefType } from 'embla-carousel-react';
|
|
9
10
|
import { DateFormatterOptions } from 'react-aria';
|
|
10
11
|
import { FormValidationProps } from '@react-stately/form';
|
|
11
12
|
|
|
@@ -95,19 +96,12 @@ declare const Alertbox: ({ children, role, className, icon, variant, isDismissab
|
|
|
95
96
|
type AvatarProps = ComponentProps<'img'>;
|
|
96
97
|
declare const Avatar: ({ src, alt, className, onError, loading, ...rest }: AvatarProps) => react_jsx_runtime.JSX.Element;
|
|
97
98
|
|
|
98
|
-
type LinkProps = LinkProps$1 & React.RefAttributes<HTMLAnchorElement> & {
|
|
99
|
-
/** @private Used internally for slotted components */
|
|
100
|
-
_innerWrapper?: (props: LinkProps$1) => LinkProps['children'];
|
|
101
|
-
};
|
|
102
|
-
declare const _LinkContext: react.Context<ContextValue<Partial<LinkProps>, HTMLAnchorElement>>;
|
|
103
|
-
declare const Link: ({ ref: _ref, ..._props }: LinkProps) => react_jsx_runtime.JSX.Element;
|
|
104
|
-
|
|
105
99
|
type ButtonOrLinkProps$1 = {
|
|
106
100
|
children?: React.ReactNode;
|
|
107
101
|
/** Additional CSS className for the element. */
|
|
108
102
|
className?: string;
|
|
109
103
|
/** Determines whether to use an anchor or a button for the Backlink */
|
|
110
|
-
href?: LinkProps['href'];
|
|
104
|
+
href?: LinkProps$1['href'];
|
|
111
105
|
/** To add a permanent underline on the link (not only on hover)
|
|
112
106
|
* @default false
|
|
113
107
|
*/
|
|
@@ -115,7 +109,7 @@ type ButtonOrLinkProps$1 = {
|
|
|
115
109
|
/** Ref to the element. */
|
|
116
110
|
ref?: Ref<HTMLAnchorElement | HTMLButtonElement>;
|
|
117
111
|
};
|
|
118
|
-
type BacklinkProps = (ButtonProps$1 | LinkProps) & ButtonOrLinkProps$1;
|
|
112
|
+
type BacklinkProps = (ButtonProps$1 | LinkProps$1) & ButtonOrLinkProps$1;
|
|
119
113
|
declare function Backlink(props: BacklinkProps): react_jsx_runtime.JSX.Element;
|
|
120
114
|
|
|
121
115
|
type BadgeProps = VariantProps<typeof badgeVariants> & {
|
|
@@ -137,6 +131,34 @@ declare const badgeVariants: (props?: ({
|
|
|
137
131
|
})) | undefined) => string;
|
|
138
132
|
declare function Badge(props: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
139
133
|
|
|
134
|
+
declare const linkVariants: (props?: (((VariantProps<(props?: ({
|
|
135
|
+
animateIcon?: "right" | "left" | "down" | "up" | "up-right" | undefined;
|
|
136
|
+
} & ({
|
|
137
|
+
class?: cva.ClassValue;
|
|
138
|
+
className?: never;
|
|
139
|
+
} | {
|
|
140
|
+
class?: never;
|
|
141
|
+
className?: cva.ClassValue;
|
|
142
|
+
})) | undefined) => string> & VariantProps<(props?: ({
|
|
143
|
+
class?: cva.ClassValue;
|
|
144
|
+
className?: never;
|
|
145
|
+
} | {
|
|
146
|
+
class?: never;
|
|
147
|
+
className?: cva.ClassValue;
|
|
148
|
+
}) | undefined) => string>) | undefined) & ({
|
|
149
|
+
class?: cva.ClassValue;
|
|
150
|
+
className?: never;
|
|
151
|
+
} | {
|
|
152
|
+
class?: never;
|
|
153
|
+
className?: cva.ClassValue;
|
|
154
|
+
})) | undefined) => string;
|
|
155
|
+
type LinkProps = VariantProps<typeof linkVariants> & LinkProps$1 & React.RefAttributes<HTMLAnchorElement> & {
|
|
156
|
+
children?: React.ReactNode;
|
|
157
|
+
/** @private Internal use */
|
|
158
|
+
'~iconRight'?: React.ReactNode;
|
|
159
|
+
};
|
|
160
|
+
declare const Link: ({ animateIcon, children, className, "~iconRight": iconRight, ...props }: LinkProps) => react_jsx_runtime.JSX.Element;
|
|
161
|
+
|
|
140
162
|
type BreadcrumbProps = {
|
|
141
163
|
/** Additional CSS className for the element. */
|
|
142
164
|
className?: string;
|
|
@@ -163,7 +185,15 @@ declare function Breadcrumbs(props: BreadcrumbsProps): react_jsx_runtime.JSX.Ele
|
|
|
163
185
|
/**
|
|
164
186
|
* Figma: https://www.figma.com/file/9OvSg0ZXI5E1eQYi7AWiWn/Grunnmuren-2.0-%E2%94%82-Designsystem?node-id=30%3A2574&mode=dev
|
|
165
187
|
*/
|
|
166
|
-
declare const buttonVariants: (props?: ({
|
|
188
|
+
declare const buttonVariants: (props?: (((VariantProps<(props?: ({
|
|
189
|
+
animateIcon?: "right" | "left" | "down" | "up" | "up-right" | undefined;
|
|
190
|
+
} & ({
|
|
191
|
+
class?: cva.ClassValue;
|
|
192
|
+
className?: never;
|
|
193
|
+
} | {
|
|
194
|
+
class?: never;
|
|
195
|
+
className?: cva.ClassValue;
|
|
196
|
+
})) | undefined) => string> & VariantProps<(props?: ({
|
|
167
197
|
variant?: "primary" | "secondary" | "tertiary" | undefined;
|
|
168
198
|
color?: "blue" | "mint" | "white" | undefined;
|
|
169
199
|
isIconOnly?: boolean | undefined;
|
|
@@ -174,6 +204,12 @@ declare const buttonVariants: (props?: ({
|
|
|
174
204
|
} | {
|
|
175
205
|
class?: never;
|
|
176
206
|
className?: cva.ClassValue;
|
|
207
|
+
})) | undefined) => string>) | undefined) & ({
|
|
208
|
+
class?: cva.ClassValue;
|
|
209
|
+
className?: never;
|
|
210
|
+
} | {
|
|
211
|
+
class?: never;
|
|
212
|
+
className?: cva.ClassValue;
|
|
177
213
|
})) | undefined) => string;
|
|
178
214
|
type ButtonOrLinkProps = VariantProps<typeof buttonVariants> & {
|
|
179
215
|
children?: React.ReactNode;
|
|
@@ -253,6 +289,15 @@ type CarouselProps = Omit<HTMLProps<HTMLDivElement>, 'onChange' | 'onSelect'> &
|
|
|
253
289
|
scrollGestures?: boolean;
|
|
254
290
|
};
|
|
255
291
|
declare const Carousel: ({ autoPlayDelay, align, children, initialIndex, orientation, onSelect, onSettled, loop, scrollGestures, ref, ...rest }: CarouselProps) => react_jsx_runtime.JSX.Element;
|
|
292
|
+
type CarouselContextValue = {
|
|
293
|
+
slidesInView: number[];
|
|
294
|
+
orientation: 'horizontal' | 'vertical';
|
|
295
|
+
/**
|
|
296
|
+
* @private
|
|
297
|
+
*/
|
|
298
|
+
'~emblaRef': EmblaViewportRefType | null;
|
|
299
|
+
};
|
|
300
|
+
declare const CarouselContext: react.Context<CarouselContextValue>;
|
|
256
301
|
type CarouselItemsContainer = HTMLProps<HTMLDivElement> & {
|
|
257
302
|
children: React.ReactNode;
|
|
258
303
|
};
|
|
@@ -274,7 +319,7 @@ declare const CarouselControls: ({ children, className, ...rest }: CarouselContr
|
|
|
274
319
|
type CarouselButtonProps = ButtonProps & {
|
|
275
320
|
slot: 'next' | 'prev';
|
|
276
321
|
};
|
|
277
|
-
declare const CarouselButton: ({ className, isIconOnly,
|
|
322
|
+
declare const CarouselButton: ({ className, isIconOnly, slot, ...rest }: CarouselButtonProps) => react_jsx_runtime.JSX.Element;
|
|
278
323
|
type CarouselItemProps = HTMLProps<HTMLDivElement> & {
|
|
279
324
|
/** The component/components to display as the <CarouselItem/>. */
|
|
280
325
|
children: React.ReactNode;
|
|
@@ -457,6 +502,10 @@ declare function GrunnmurenProvider({ children, locale, navigate, useHref, }: Gr
|
|
|
457
502
|
type HeroProps = HTMLProps<HTMLDivElement> & VariantProps<typeof variants> & {
|
|
458
503
|
children: React.ReactNode;
|
|
459
504
|
};
|
|
505
|
+
type HeroContextValue = {
|
|
506
|
+
variant: HeroProps['variant'];
|
|
507
|
+
};
|
|
508
|
+
declare const HeroContext: react.Context<HeroContextValue | null>;
|
|
460
509
|
declare const variants: (props?: ({
|
|
461
510
|
variant?: "standard" | "full-bleed" | "two-column" | undefined;
|
|
462
511
|
} & ({
|
|
@@ -476,18 +525,27 @@ declare function ErrorMessage(props: ErrorMessageProps): react_jsx_runtime.JSX.E
|
|
|
476
525
|
|
|
477
526
|
declare function Label(props: LabelProps): react_jsx_runtime.JSX.Element;
|
|
478
527
|
|
|
479
|
-
|
|
528
|
+
declare const linkListContainerVariants: (props?: ({
|
|
529
|
+
layout?: "stack" | "grid" | undefined;
|
|
530
|
+
} & ({
|
|
531
|
+
class?: cva.ClassValue;
|
|
532
|
+
className?: never;
|
|
533
|
+
} | {
|
|
534
|
+
class?: never;
|
|
535
|
+
className?: cva.ClassValue;
|
|
536
|
+
})) | undefined) => string;
|
|
537
|
+
type LinkListContainerProps = VariantProps<typeof linkListContainerVariants> & React.HTMLProps<HTMLDivElement> & {
|
|
480
538
|
children: JSX.Element | JSX.Element[];
|
|
481
539
|
};
|
|
482
|
-
declare const LinkListContainer: ({ className, ...
|
|
540
|
+
declare const LinkListContainer: ({ className, layout, ...props }: LinkListContainerProps) => react_jsx_runtime.JSX.Element;
|
|
483
541
|
type LinkListProps = React.HTMLProps<HTMLUListElement> & {
|
|
484
542
|
children: JSX.Element | JSX.Element[];
|
|
485
543
|
};
|
|
486
|
-
declare const LinkList: (
|
|
544
|
+
declare const LinkList: ({ className, ...restProps }: LinkListProps) => react_jsx_runtime.JSX.Element;
|
|
487
545
|
type LinkListItemProps = React.HTMLProps<HTMLLIElement> & {
|
|
488
546
|
children: ReactNode;
|
|
489
547
|
};
|
|
490
|
-
declare const LinkListItem: (props: LinkListItemProps) => react_jsx_runtime.JSX.Element;
|
|
548
|
+
declare const LinkListItem: ({ children, className, ...props }: LinkListItemProps) => react_jsx_runtime.JSX.Element;
|
|
491
549
|
|
|
492
550
|
type DialogTriggerProps = DialogTriggerProps$1;
|
|
493
551
|
declare const DialogTrigger: (props: DialogTriggerProps) => react_jsx_runtime.JSX.Element;
|
|
@@ -539,13 +597,6 @@ type NumberFieldProps = {
|
|
|
539
597
|
} & Omit<NumberFieldProps$1, 'className' | 'isReadOnly' | 'isDisabled' | 'children' | 'style' | 'hideStepper'>;
|
|
540
598
|
declare function NumberField(props: NumberFieldProps): react_jsx_runtime.JSX.Element;
|
|
541
599
|
|
|
542
|
-
type ProgressBarProps = ProgressBarProps$1;
|
|
543
|
-
type ProgressBarValueTextProps = Omit<HTMLProps<HTMLSpanElement>, 'children'> & {
|
|
544
|
-
className?: string;
|
|
545
|
-
};
|
|
546
|
-
declare const ProgressBarValueText: ({ className, ...restProps }: ProgressBarValueTextProps) => react_jsx_runtime.JSX.Element;
|
|
547
|
-
declare const ProgressBar: ({ children, className, ...restProps }: ProgressBarProps) => react_jsx_runtime.JSX.Element;
|
|
548
|
-
|
|
549
600
|
type RadioProps = {
|
|
550
601
|
children: React.ReactNode;
|
|
551
602
|
/** Additional CSS className for the element. */
|
|
@@ -595,6 +646,31 @@ type SelectProps<T extends object> = {
|
|
|
595
646
|
} & Omit<SelectProps$1<T>, 'className' | 'isReadOnly' | 'isDisabled' | 'children' | 'style'>;
|
|
596
647
|
declare function Select<T extends object>(props: SelectProps<T>): react_jsx_runtime.JSX.Element;
|
|
597
648
|
|
|
649
|
+
type StepperProps = HTMLAttributes<HTMLDivElement> & {
|
|
650
|
+
children: React.ReactNode;
|
|
651
|
+
/** The active step, zero indexed. */
|
|
652
|
+
activeStep: number;
|
|
653
|
+
/** Handler that is called when the step changes. */
|
|
654
|
+
onStepChange?: (step: number) => void;
|
|
655
|
+
};
|
|
656
|
+
declare const Stepper: ({ children, activeStep, onStepChange, ...restProps }: StepperProps) => react_jsx_runtime.JSX.Element;
|
|
657
|
+
type StepProps = HTMLProps<HTMLLIElement> & {
|
|
658
|
+
/**
|
|
659
|
+
* The state fo the step, whether the step is completed or not.
|
|
660
|
+
*/
|
|
661
|
+
state?: 'completed';
|
|
662
|
+
/**
|
|
663
|
+
* Whether the step is disabled.
|
|
664
|
+
* @default false
|
|
665
|
+
*/
|
|
666
|
+
isDisabled?: boolean;
|
|
667
|
+
/** The current progress of the step, between 0 and 100. */
|
|
668
|
+
progress?: number;
|
|
669
|
+
/** @private */
|
|
670
|
+
'~stepIndex'?: number;
|
|
671
|
+
};
|
|
672
|
+
declare const Step: ({ isDisabled, state, children, "~stepIndex": stepIndex, progress, ...restProps }: StepProps) => react_jsx_runtime.JSX.Element;
|
|
673
|
+
|
|
598
674
|
type TableProps = Omit<TableProps$1, 'aria-label' | 'aria-labelledby'> & RefAttributes<HTMLTableElement> & {
|
|
599
675
|
/**
|
|
600
676
|
* Visual variant of the table
|
|
@@ -793,5 +869,5 @@ type VideoLoopProps = {
|
|
|
793
869
|
};
|
|
794
870
|
declare const VideoLoop: ({ src, format, alt, className }: VideoLoopProps) => react_jsx_runtime.JSX.Element;
|
|
795
871
|
|
|
796
|
-
export { Accordion, AccordionItem, Alertbox, Avatar, Backlink, Badge, Breadcrumb, Breadcrumbs, Button, ButtonContext, Caption, Card, CardLink, Checkbox, CheckboxGroup, Combobox, ListBoxHeader as ComboboxHeader, ListBoxItem as ComboboxItem, ListBoxSection as ComboboxSection, Content, ContentContext, DateFormatter, Description, Disclosure, DisclosureButton, DisclosurePanel, DisclosureStateContext, ErrorMessage, Footer, GrunnmurenProvider, Heading, HeadingContext, Label, LinkList, LinkListContainer, LinkListItem, Media, MediaContext, NumberField, Radio, RadioGroup, Select, ListBoxHeader as SelectHeader, ListBoxItem as SelectItem, ListBoxSection as SelectSection, Tag, TagGroup, TagList, TextArea, TextField, Carousel as UNSAFE_Carousel, CarouselButton as UNSAFE_CarouselButton, CarouselControls as UNSAFE_CarouselControls, CarouselItem as UNSAFE_CarouselItem, CarouselItems as UNSAFE_CarouselItems, CarouselItemsContainer as UNSAFE_CarouselItemsContainer, CarouselItemsContainer as UNSAFE_CarouselItemsContainerProps, Dialog as UNSAFE_Dialog, DialogTrigger as UNSAFE_DialogTrigger, FileUpload as UNSAFE_FileUpload, Hero as UNSAFE_Hero, Link as UNSAFE_Link, Modal as UNSAFE_Modal,
|
|
797
|
-
export type { AccordionItemProps, AccordionProps, Props as AlertboxProps, AvatarProps, BacklinkProps, BadgeProps, BreadcrumbProps, BreadcrumbsProps, ButtonProps, CaptionProps, CardLinkProps, CardProps, CheckboxGroupProps, CheckboxProps, ComboboxProps, ContentProps, DateFormatterProps, DescriptionProps, DisclosureButtonProps, DisclosurePanelProps, DisclosureProps, ErrorMessageProps, FooterProps, GrunnmurenProviderProps, HeadingProps, LinkListContainerProps, LinkListItemProps, LinkListProps, Locale, MediaProps, NumberFieldProps, RadioGroupProps, RadioProps, SelectProps, TagGroupProps, TagListProps, TagProps, TextAreaProps, TextFieldProps, CarouselButtonProps as UNSAFE_CarouselButtonProps, CarouselControlsProps as UNSAFE_CarouselControlsProps, CarouselItemProps as UNSAFE_CarouselItemProps, CarouselItemsProps as UNSAFE_CarouselItemsProps, CarouselProps as UNSAFE_CarouselProps, DialogProps as UNSAFE_DialogProps, DialogTriggerProps as UNSAFE_DialogTriggerProps, FileUploadProps as UNSAFE_FileUploadProps, HeroProps as UNSAFE_HeroProps, LinkProps as UNSAFE_LinkProps, ModalProps as UNSAFE_ModalProps,
|
|
872
|
+
export { Accordion, AccordionItem, Alertbox, Avatar, Backlink, Badge, Breadcrumb, Breadcrumbs, Button, ButtonContext, Caption, Card, CardLink, Checkbox, CheckboxGroup, Combobox, ListBoxHeader as ComboboxHeader, ListBoxItem as ComboboxItem, ListBoxSection as ComboboxSection, Content, ContentContext, DateFormatter, Description, Disclosure, DisclosureButton, DisclosurePanel, DisclosureStateContext, ErrorMessage, Footer, GrunnmurenProvider, Heading, HeadingContext, Label, LinkList, LinkListContainer, LinkListItem, Media, MediaContext, NumberField, Radio, RadioGroup, Select, ListBoxHeader as SelectHeader, ListBoxItem as SelectItem, ListBoxSection as SelectSection, Tag, TagGroup, TagList, TextArea, TextField, Carousel as UNSAFE_Carousel, CarouselButton as UNSAFE_CarouselButton, CarouselContext as UNSAFE_CarouselContext, CarouselControls as UNSAFE_CarouselControls, CarouselItem as UNSAFE_CarouselItem, CarouselItems as UNSAFE_CarouselItems, CarouselItemsContainer as UNSAFE_CarouselItemsContainer, CarouselItemsContainer as UNSAFE_CarouselItemsContainerProps, Dialog as UNSAFE_Dialog, DialogTrigger as UNSAFE_DialogTrigger, FileUpload as UNSAFE_FileUpload, Hero as UNSAFE_Hero, HeroContext as UNSAFE_HeroContext, Link as UNSAFE_Link, Modal as UNSAFE_Modal, Step as UNSAFE_Step, Stepper as UNSAFE_Stepper, Tab as UNSAFE_Tab, TabList as UNSAFE_TabList, TabPanel as UNSAFE_TabPanel, Table as UNSAFE_Table, TableBody as UNSAFE_TableBody, TableCell as UNSAFE_TableCell, TableColumn as UNSAFE_TableColumn, TableColumnResizer as UNSAFE_TableColumnResizer, TableContainer as UNSAFE_TableContainer, TableHeader as UNSAFE_TableHeader, TableRow as UNSAFE_TableRow, Tabs as UNSAFE_Tabs, VideoLoop, _useLocale as useLocale };
|
|
873
|
+
export type { AccordionItemProps, AccordionProps, Props as AlertboxProps, AvatarProps, BacklinkProps, BadgeProps, BreadcrumbProps, BreadcrumbsProps, ButtonProps, CaptionProps, CardLinkProps, CardProps, CheckboxGroupProps, CheckboxProps, ComboboxProps, ContentProps, DateFormatterProps, DescriptionProps, DisclosureButtonProps, DisclosurePanelProps, DisclosureProps, ErrorMessageProps, FooterProps, GrunnmurenProviderProps, HeadingProps, LinkListContainerProps, LinkListItemProps, LinkListProps, Locale, MediaProps, NumberFieldProps, RadioGroupProps, RadioProps, SelectProps, TagGroupProps, TagListProps, TagProps, TextAreaProps, TextFieldProps, CarouselButtonProps as UNSAFE_CarouselButtonProps, CarouselContextValue as UNSAFE_CarouselContextValue, CarouselControlsProps as UNSAFE_CarouselControlsProps, CarouselItemProps as UNSAFE_CarouselItemProps, CarouselItemsProps as UNSAFE_CarouselItemsProps, CarouselProps as UNSAFE_CarouselProps, DialogProps as UNSAFE_DialogProps, DialogTriggerProps as UNSAFE_DialogTriggerProps, FileUploadProps as UNSAFE_FileUploadProps, HeroContextValue as UNSAFE_HeroContextValue, HeroProps as UNSAFE_HeroProps, LinkProps as UNSAFE_LinkProps, ModalProps as UNSAFE_ModalProps, StepProps as UNSAFE_StepProps, StepperProps as UNSAFE_StepperProps, TabListProps as UNSAFE_TabListProps, TabPanelProps as UNSAFE_TabPanelProps, TabProps as UNSAFE_TabProps, TableBodyProps as UNSAFE_TableBodyProps, TableCellProps as UNSAFE_TableCellProps, TableColumnProps as UNSAFE_TableColumnProps, TableColumnResizerProps as UNSAFE_TableColumnResizerProps, TableContainerProps as UNSAFE_TableContainerProps, TableHeaderProps as UNSAFE_TableHeaderProps, TableProps as UNSAFE_TableProps, TableRowProps as UNSAFE_TableRowProps, TabsProps as UNSAFE_TabsProps };
|