@medway-ui/core 1.22.1 → 1.22.3
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 +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -436,13 +436,13 @@ interface CardNewsAuthorProps extends ComponentProps<"div"> {
|
|
|
436
436
|
name?: string;
|
|
437
437
|
role?: string;
|
|
438
438
|
}
|
|
439
|
+
interface CardNewsProps extends ComponentProps<"div">, VariantProps<typeof cardNewsVariants> {
|
|
440
|
+
isRead?: boolean;
|
|
441
|
+
}
|
|
439
442
|
declare const cardNewsVariants: (props?: ({
|
|
440
443
|
variant?: "default" | "compact" | "read" | null | undefined;
|
|
441
444
|
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
442
445
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
443
|
-
interface CardNewsProps extends ComponentProps<"div">, VariantProps<typeof cardNewsVariants> {
|
|
444
|
-
isRead?: boolean;
|
|
445
|
-
}
|
|
446
446
|
declare function CardNews({ className, isRead, variant, orientation, ...props }: CardNewsProps): react_jsx_runtime.JSX.Element;
|
|
447
447
|
declare function CardNewsBody({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
448
448
|
declare function CardNewsHeader({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -436,13 +436,13 @@ interface CardNewsAuthorProps extends ComponentProps<"div"> {
|
|
|
436
436
|
name?: string;
|
|
437
437
|
role?: string;
|
|
438
438
|
}
|
|
439
|
+
interface CardNewsProps extends ComponentProps<"div">, VariantProps<typeof cardNewsVariants> {
|
|
440
|
+
isRead?: boolean;
|
|
441
|
+
}
|
|
439
442
|
declare const cardNewsVariants: (props?: ({
|
|
440
443
|
variant?: "default" | "compact" | "read" | null | undefined;
|
|
441
444
|
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
442
445
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
443
|
-
interface CardNewsProps extends ComponentProps<"div">, VariantProps<typeof cardNewsVariants> {
|
|
444
|
-
isRead?: boolean;
|
|
445
|
-
}
|
|
446
446
|
declare function CardNews({ className, isRead, variant, orientation, ...props }: CardNewsProps): react_jsx_runtime.JSX.Element;
|
|
447
447
|
declare function CardNewsBody({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
448
448
|
declare function CardNewsHeader({ className, ...props }: ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|