@livepeer/design-system 1.1.0 → 1.1.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/README.md +43 -3
- package/dist/components/Accordion.d.ts +4 -4
- package/dist/components/AlertDialog.d.ts +2 -1
- package/dist/components/Avatar.d.ts +1 -1
- package/dist/components/Checkbox.d.ts +1 -1
- package/dist/components/ContextMenu.d.ts +3 -3
- package/dist/components/Dialog.d.ts +1 -1
- package/dist/components/DropdownMenu.d.ts +3 -3
- package/dist/components/Heading.d.ts +1 -1
- package/dist/components/Label.d.ts +1 -1
- package/dist/components/Menu.d.ts +2 -2
- package/dist/components/Paragraph.d.ts +1 -1
- package/dist/components/Popover.d.ts +1 -1
- package/dist/components/ProgressBar.d.ts +1 -1
- package/dist/components/Radio.d.ts +1 -1
- package/dist/components/RadioCard.d.ts +1 -1
- package/dist/components/Select.d.ts +1 -1
- package/dist/components/Sheet.d.ts +1 -1
- package/dist/components/Slider.d.ts +1 -1
- package/dist/components/Switch.d.ts +1 -1
- package/dist/components/Tabs.d.ts +1 -1
- package/dist/components/VerifiedBadge.d.ts +1 -1
- package/dist/index.es.js +132 -148
- package/dist/index.js +132 -148
- package/dist/stitches.config.d.ts +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,10 +8,50 @@ Visit [https://livepeer-design-system.vercel.app/](https://livepeer-design-syste
|
|
|
8
8
|
|
|
9
9
|
## Usage
|
|
10
10
|
|
|
11
|
-
```
|
|
11
|
+
```bash
|
|
12
12
|
yarn add @livepeer/design-system
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
-
##
|
|
15
|
+
## Local development
|
|
16
|
+
|
|
17
|
+
### Running the docs site
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
yarn install
|
|
21
|
+
yarn dev # docs site at http://localhost:3000
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
### Testing changes in consumer apps
|
|
25
|
+
|
|
26
|
+
The design system is consumed by apps such as the [Livepeer Explorer](https://github.com/livepeer/explorer). Use [yalc](https://github.com/wclr/yalc) to test local changes against one or more consumers before publishing — it copies files into each consumer's `node_modules` rather than symlinking, which avoids the duplicate React instance / "Invalid hook call" errors you get from `pnpm link` or `yarn link`.
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
# one-time install
|
|
30
|
+
npm i -g yalc
|
|
31
|
+
|
|
32
|
+
# first-time publish from design-system (populates ~/.yalc/packages)
|
|
33
|
+
yarn ds:build
|
|
34
|
+
yalc publish
|
|
35
|
+
|
|
36
|
+
# one-time, in each consumer app
|
|
37
|
+
yalc add @livepeer/design-system
|
|
38
|
+
pnpm install # or yarn install
|
|
39
|
+
|
|
40
|
+
# in design-system, after each change
|
|
41
|
+
yarn ds:build && yalc push
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
`yalc publish` puts the package in your local yalc store so consumers can `yalc add` it. `yalc push` rebuilds the store entry *and* propagates the new build to every consumer that has already added it. To unlink: run `yalc remove @livepeer/design-system` in each consumer and restore the original dependency version.
|
|
45
|
+
|
|
46
|
+
For a faster dev loop, run rollup in watch mode and push manually when you want to test:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
# terminal 1: rebuild on save
|
|
50
|
+
rollup -c -w
|
|
51
|
+
|
|
52
|
+
# terminal 2: sync to consumers
|
|
53
|
+
yalc push
|
|
54
|
+
```
|
|
16
55
|
|
|
17
|
-
|
|
56
|
+
> [!TIP]
|
|
57
|
+
> Next.js sometimes ignores changes inside `node_modules`. If HMR doesn't fire after `yalc push`, touch a source file in the consumer app or restart its dev server.
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import type { CSS } from "../stitches.config";
|
|
3
3
|
import * as AccordionPrimitive from "@radix-ui/react-accordion";
|
|
4
|
-
export declare const Accordion: React.ForwardRefExoticComponent<(
|
|
4
|
+
export declare const Accordion: React.ForwardRefExoticComponent<(Omit<AccordionPrimitive.AccordionSingleProps & React.RefAttributes<HTMLDivElement> & {
|
|
5
5
|
css?: CSS | undefined;
|
|
6
|
-
}, "
|
|
6
|
+
}, "ref"> | Omit<AccordionPrimitive.AccordionMultipleProps & React.RefAttributes<HTMLDivElement> & {
|
|
7
7
|
css?: CSS | undefined;
|
|
8
|
-
}, "
|
|
8
|
+
}, "ref">) & React.RefAttributes<HTMLDivElement>>;
|
|
9
9
|
declare type AccordionTriggerPrimitiveProps = React.ComponentProps<typeof AccordionPrimitive.Trigger>;
|
|
10
10
|
declare type AccordionTriggerProps = AccordionTriggerPrimitiveProps & {
|
|
11
11
|
css?: CSS;
|
|
12
12
|
};
|
|
13
|
-
export declare const AccordionTrigger: React.ForwardRefExoticComponent<
|
|
13
|
+
export declare const AccordionTrigger: React.ForwardRefExoticComponent<Omit<AccordionTriggerProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
14
14
|
export declare const AccordionItem: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<AccordionPrimitive.AccordionItemProps & React.RefAttributes<HTMLDivElement>>, {}, {
|
|
15
15
|
bp1: "(min-width: 520px)";
|
|
16
16
|
bp2: "(min-width: 900px)";
|
|
@@ -11,5 +11,6 @@ declare const AlertDialogTitle: React.ForwardRefExoticComponent<AlertDialogPrimi
|
|
|
11
11
|
declare const AlertDialogDescription: React.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>>;
|
|
12
12
|
declare const AlertDialogAction: React.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogActionProps & React.RefAttributes<HTMLButtonElement>>;
|
|
13
13
|
declare const AlertDialogCancel: React.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogCancelProps & React.RefAttributes<HTMLButtonElement>>;
|
|
14
|
+
declare const AlertDialogOverlay: React.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogOverlayProps & React.RefAttributes<HTMLDivElement>>;
|
|
14
15
|
declare const AlertDialogTrigger: React.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
15
|
-
export { AlertDialogTrigger, AlertDialogTitle, AlertDialogDescription, AlertDialogAction, AlertDialogCancel, };
|
|
16
|
+
export { AlertDialogTrigger, AlertDialogTitle, AlertDialogDescription, AlertDialogAction, AlertDialogCancel, AlertDialogOverlay, };
|
|
@@ -2266,5 +2266,5 @@ declare type AvatarOwnProps = AvatarPrimitiveProps & AvatarVariants & {
|
|
|
2266
2266
|
fallback?: React.ReactNode;
|
|
2267
2267
|
status?: StatusColors["variant"];
|
|
2268
2268
|
};
|
|
2269
|
-
export declare const Avatar: React.ForwardRefExoticComponent<
|
|
2269
|
+
export declare const Avatar: React.ForwardRefExoticComponent<Omit<AvatarOwnProps, "ref"> & React.RefAttributes<HTMLSpanElement>>;
|
|
2270
2270
|
export {};
|
|
@@ -757,5 +757,5 @@ declare type CheckboxVariants = VariantProps<typeof StyledCheckbox>;
|
|
|
757
757
|
declare type CheckboxProps = CheckboxPrimitiveProps & CheckboxVariants & {
|
|
758
758
|
css?: CSS;
|
|
759
759
|
};
|
|
760
|
-
export declare const Checkbox: React.ForwardRefExoticComponent<
|
|
760
|
+
export declare const Checkbox: React.ForwardRefExoticComponent<Omit<CheckboxProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
761
761
|
export {};
|
|
@@ -7,7 +7,7 @@ declare type ContextMenuContentPrimitiveProps = React.ComponentProps<typeof Cont
|
|
|
7
7
|
declare type ContextMenuContentProps = ContextMenuContentPrimitiveProps & {
|
|
8
8
|
css?: CSS;
|
|
9
9
|
};
|
|
10
|
-
declare const ContextMenuContent: React.ForwardRefExoticComponent<
|
|
10
|
+
declare const ContextMenuContent: React.ForwardRefExoticComponent<Omit<ContextMenuContentProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
11
11
|
declare const ContextMenuItem: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuItemProps & React.RefAttributes<HTMLDivElement>>, {}, {
|
|
12
12
|
bp1: "(min-width: 520px)";
|
|
13
13
|
bp2: "(min-width: 900px)";
|
|
@@ -3008,7 +3008,7 @@ declare type ContextMenuCheckboxItemPrimitiveProps = React.ComponentProps<typeof
|
|
|
3008
3008
|
declare type ContextMenuCheckboxItemProps = ContextMenuCheckboxItemPrimitiveProps & {
|
|
3009
3009
|
css?: CSS;
|
|
3010
3010
|
};
|
|
3011
|
-
declare const ContextMenuCheckboxItem: React.ForwardRefExoticComponent<
|
|
3011
|
+
declare const ContextMenuCheckboxItem: React.ForwardRefExoticComponent<Omit<ContextMenuCheckboxItemProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
3012
3012
|
declare const ContextMenuRadioGroup: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuRadioGroupProps & React.RefAttributes<HTMLDivElement>>, {}, {
|
|
3013
3013
|
bp1: "(min-width: 520px)";
|
|
3014
3014
|
bp2: "(min-width: 900px)";
|
|
@@ -3762,5 +3762,5 @@ declare type ContextMenuRadioItemPrimitiveProps = React.ComponentProps<typeof Co
|
|
|
3762
3762
|
declare type ContextMenuRadioItemProps = ContextMenuRadioItemPrimitiveProps & {
|
|
3763
3763
|
css?: CSS;
|
|
3764
3764
|
};
|
|
3765
|
-
declare const ContextMenuRadioItem: React.ForwardRefExoticComponent<
|
|
3765
|
+
declare const ContextMenuRadioItem: React.ForwardRefExoticComponent<Omit<ContextMenuRadioItemProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
3766
3766
|
export { ContextMenu, ContextMenuTrigger, ContextMenuContent, ContextMenuItem, ContextMenuGroup, ContextMenuLabel, ContextMenuSeparator, ContextMenuCheckboxItem, ContextMenuRadioGroup, ContextMenuRadioItem, };
|
|
@@ -10,7 +10,7 @@ declare type DialogContentProps = DialogContentPrimitiveProps & {
|
|
|
10
10
|
css?: CSS;
|
|
11
11
|
animation?: "scale" | "fade";
|
|
12
12
|
};
|
|
13
|
-
export declare const DialogContent: React.ForwardRefExoticComponent<
|
|
13
|
+
export declare const DialogContent: React.ForwardRefExoticComponent<Omit<DialogContentProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
14
14
|
export declare const DialogTrigger: React.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
15
15
|
export declare const DialogTitle: React.ForwardRefExoticComponent<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>>;
|
|
16
16
|
export declare const DialogDescription: React.ForwardRefExoticComponent<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>>;
|
|
@@ -7,7 +7,7 @@ declare type DropdownMenuContentPrimitiveProps = React.ComponentProps<typeof Dro
|
|
|
7
7
|
declare type DropdownMenuContentProps = DropdownMenuContentPrimitiveProps & {
|
|
8
8
|
css?: CSS;
|
|
9
9
|
};
|
|
10
|
-
declare const DropdownMenuContent: React.ForwardRefExoticComponent<
|
|
10
|
+
declare const DropdownMenuContent: React.ForwardRefExoticComponent<Omit<DropdownMenuContentProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
11
11
|
declare const DropdownMenuGroup: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React.RefAttributes<HTMLDivElement>>, {}, {
|
|
12
12
|
bp1: "(min-width: 520px)";
|
|
13
13
|
bp2: "(min-width: 900px)";
|
|
@@ -4511,7 +4511,7 @@ declare const DropdownMenuItem: import("@stitches/react/types/styled-component")
|
|
|
4511
4511
|
};
|
|
4512
4512
|
};
|
|
4513
4513
|
}>>;
|
|
4514
|
-
declare const DropdownMenuRadioItem: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<
|
|
4514
|
+
declare const DropdownMenuRadioItem: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<Omit<DialogMenuRadioItemProps, "ref"> & React.RefAttributes<HTMLDivElement>>, {
|
|
4515
4515
|
color?: "gray" | "tomato" | "red" | "crimson" | "pink" | "plum" | "purple" | "violet" | "indigo" | "blue" | "sky" | "cyan" | "teal" | "mint" | "green" | "grass" | "lime" | "yellow" | "amber" | "orange" | "brown" | "primary" | undefined;
|
|
4516
4516
|
}, {
|
|
4517
4517
|
bp1: "(min-width: 520px)";
|
|
@@ -5262,7 +5262,7 @@ declare const DropdownMenuRadioItem: import("@stitches/react/types/styled-compon
|
|
|
5262
5262
|
};
|
|
5263
5263
|
};
|
|
5264
5264
|
}>>;
|
|
5265
|
-
declare const DropdownMenuCheckboxItem: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<
|
|
5265
|
+
declare const DropdownMenuCheckboxItem: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<Omit<DialogMenuCheckboxItemProps, "ref"> & React.RefAttributes<HTMLDivElement>>, {
|
|
5266
5266
|
color?: "gray" | "tomato" | "red" | "crimson" | "pink" | "plum" | "purple" | "violet" | "indigo" | "blue" | "sky" | "cyan" | "teal" | "mint" | "green" | "grass" | "lime" | "yellow" | "amber" | "orange" | "brown" | "primary" | undefined;
|
|
5267
5267
|
}, {
|
|
5268
5268
|
bp1: "(min-width: 520px)";
|
|
@@ -10,5 +10,5 @@ declare type HeadingProps = React.ComponentProps<typeof DEFAULT_TAG> & HeadingVa
|
|
|
10
10
|
css?: CSS;
|
|
11
11
|
as?: any;
|
|
12
12
|
};
|
|
13
|
-
export declare const Heading: React.ForwardRefExoticComponent<
|
|
13
|
+
export declare const Heading: React.ForwardRefExoticComponent<Omit<HeadingProps, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
|
|
14
14
|
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import * as LabelPrimitive from "@radix-ui/react-label";
|
|
3
|
-
export declare const Label: import("@stitches/react/types/styled-component").StyledComponent<import("react").ForwardRefExoticComponent<LabelPrimitive.LabelProps & import("react").RefAttributes<
|
|
3
|
+
export declare const Label: import("@stitches/react/types/styled-component").StyledComponent<import("react").ForwardRefExoticComponent<LabelPrimitive.LabelProps & import("react").RefAttributes<HTMLLabelElement>>, {
|
|
4
4
|
size?: number | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | undefined;
|
|
5
5
|
variant?: "red" | "crimson" | "pink" | "purple" | "violet" | "indigo" | "blue" | "cyan" | "teal" | "green" | "lime" | "yellow" | "orange" | "gold" | "bronze" | "gray" | "primary" | "neutral" | "contrast" | undefined;
|
|
6
6
|
gradient?: boolean | "true" | undefined;
|
|
@@ -8242,12 +8242,12 @@ declare type MenuRadioItemPrimitiveProps = React.ComponentProps<typeof MenuPrimi
|
|
|
8242
8242
|
declare type MenuRadioItemProps = MenuRadioItemPrimitiveProps & {
|
|
8243
8243
|
css?: CSS;
|
|
8244
8244
|
};
|
|
8245
|
-
export declare const MenuRadioItem: React.ForwardRefExoticComponent<
|
|
8245
|
+
export declare const MenuRadioItem: React.ForwardRefExoticComponent<Omit<MenuRadioItemProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
8246
8246
|
declare type MenuCheckboxItemPrimitiveProps = React.ComponentProps<typeof MenuPrimitive.CheckboxItem>;
|
|
8247
8247
|
declare type MenuCheckboxItemProps = MenuCheckboxItemPrimitiveProps & {
|
|
8248
8248
|
css?: CSS;
|
|
8249
8249
|
};
|
|
8250
|
-
export declare const MenuCheckboxItem: React.ForwardRefExoticComponent<
|
|
8250
|
+
export declare const MenuCheckboxItem: React.ForwardRefExoticComponent<Omit<MenuCheckboxItemProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
8251
8251
|
export declare const MenuLabel: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<MenuPrimitive.MenuLabelProps & React.RefAttributes<HTMLDivElement>>, {}, {
|
|
8252
8252
|
bp1: "(min-width: 520px)";
|
|
8253
8253
|
bp2: "(min-width: 900px)";
|
|
@@ -10,5 +10,5 @@ declare type ParagraphProps = React.ComponentProps<typeof DEFAULT_TAG> & Paragra
|
|
|
10
10
|
css?: CSS;
|
|
11
11
|
as?: any;
|
|
12
12
|
};
|
|
13
|
-
export declare const Paragraph: React.ForwardRefExoticComponent<
|
|
13
|
+
export declare const Paragraph: React.ForwardRefExoticComponent<Omit<ParagraphProps, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
|
|
14
14
|
export {};
|
|
@@ -8,6 +8,6 @@ declare type PopoverContentProps = PopoverContentPrimitiveProps & {
|
|
|
8
8
|
css?: CSS;
|
|
9
9
|
hideArrow?: boolean;
|
|
10
10
|
};
|
|
11
|
-
declare const PopoverContent: React.ForwardRefExoticComponent<
|
|
11
|
+
declare const PopoverContent: React.ForwardRefExoticComponent<Omit<PopoverContentProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
12
12
|
declare const PopoverClose: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverCloseProps & React.RefAttributes<HTMLButtonElement>>;
|
|
13
13
|
export { Popover, PopoverTrigger, PopoverContent, PopoverClose };
|
|
@@ -757,5 +757,5 @@ declare type ProgressBarPrimitiveProps = React.ComponentProps<typeof ProgressPri
|
|
|
757
757
|
declare type ProgressBarProps = ProgressBarPrimitiveProps & ProgressBarVariants & {
|
|
758
758
|
css?: CSS;
|
|
759
759
|
};
|
|
760
|
-
export declare const ProgressBar: React.ForwardRefExoticComponent<
|
|
760
|
+
export declare const ProgressBar: React.ForwardRefExoticComponent<Omit<ProgressBarProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
761
761
|
export {};
|
|
@@ -1506,5 +1506,5 @@ declare type RadioGroupItemPrimitiveProps = React.ComponentProps<typeof RadioGro
|
|
|
1506
1506
|
declare type RadioProps = RadioGroupItemPrimitiveProps & RadioVariants & {
|
|
1507
1507
|
css?: CSS;
|
|
1508
1508
|
};
|
|
1509
|
-
export declare const Radio: React.ForwardRefExoticComponent<
|
|
1509
|
+
export declare const Radio: React.ForwardRefExoticComponent<Omit<RadioProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
1510
1510
|
export {};
|
|
@@ -754,5 +754,5 @@ declare type RadioGroupItemPrimitiveProps = React.ComponentProps<typeof RadioGro
|
|
|
754
754
|
declare type RadioCardProps = RadioGroupItemPrimitiveProps & {
|
|
755
755
|
css?: CSS;
|
|
756
756
|
};
|
|
757
|
-
export declare const RadioCard: React.ForwardRefExoticComponent<
|
|
757
|
+
export declare const RadioCard: React.ForwardRefExoticComponent<Omit<RadioCardProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
758
758
|
export {};
|
|
@@ -752,7 +752,7 @@ declare const StyledSelect: import("@stitches/react/types/styled-component").Sty
|
|
|
752
752
|
declare type SelectProps = React.ComponentProps<typeof StyledSelect> & {
|
|
753
753
|
css?: CSS;
|
|
754
754
|
};
|
|
755
|
-
export declare const Select: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<
|
|
755
|
+
export declare const Select: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<Omit<SelectProps, "ref"> & React.RefAttributes<HTMLSelectElement>>, {}, {
|
|
756
756
|
bp1: "(min-width: 520px)";
|
|
757
757
|
bp2: "(min-width: 900px)";
|
|
758
758
|
bp3: "(min-width: 1200px)";
|
|
@@ -759,7 +759,7 @@ declare type DialogContentPrimitiveProps = React.ComponentProps<typeof DialogPri
|
|
|
759
759
|
declare type SheetContentProps = DialogContentPrimitiveProps & SheetContentVariants & {
|
|
760
760
|
css?: CSS;
|
|
761
761
|
};
|
|
762
|
-
declare const SheetContent: React.ForwardRefExoticComponent<
|
|
762
|
+
declare const SheetContent: React.ForwardRefExoticComponent<Omit<SheetContentProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
763
763
|
declare const SheetClose: React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
|
|
764
764
|
declare const SheetTitle: React.ForwardRefExoticComponent<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>>;
|
|
765
765
|
declare const SheetDescription: React.ForwardRefExoticComponent<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>>;
|