@mvr-ui/components 1.0.25 → 1.0.27
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/page.d.mts +1 -2
- package/dist/page.d.ts +1 -2
- package/package.json +1 -1
package/dist/page.d.mts
CHANGED
|
@@ -47,8 +47,7 @@ interface CardProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
|
47
47
|
children?: React__default.ReactNode;
|
|
48
48
|
overrideClassName?: boolean;
|
|
49
49
|
}
|
|
50
|
-
|
|
51
|
-
type CardComponent = typeof CardRoot & {
|
|
50
|
+
type CardComponent = React__default.ForwardRefExoticComponent<CardProps & React__default.RefAttributes<HTMLDivElement>> & {
|
|
52
51
|
Header: typeof CardHeader;
|
|
53
52
|
Title: typeof CardTitle;
|
|
54
53
|
Description: typeof CardDescription;
|
package/dist/page.d.ts
CHANGED
|
@@ -47,8 +47,7 @@ interface CardProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
|
47
47
|
children?: React__default.ReactNode;
|
|
48
48
|
overrideClassName?: boolean;
|
|
49
49
|
}
|
|
50
|
-
|
|
51
|
-
type CardComponent = typeof CardRoot & {
|
|
50
|
+
type CardComponent = React__default.ForwardRefExoticComponent<CardProps & React__default.RefAttributes<HTMLDivElement>> & {
|
|
52
51
|
Header: typeof CardHeader;
|
|
53
52
|
Title: typeof CardTitle;
|
|
54
53
|
Description: typeof CardDescription;
|