@snapcall/design-system 1.21.1 → 1.21.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/components/MediaCard/index.d.mts +5 -1
- package/dist/components/MediaCard/index.d.ts +5 -1
- package/dist/components/MediaCard/index.js +20 -14
- package/dist/components/MediaCard/index.mjs +20 -14
- package/dist/icons/index.mjs +1224 -1224
- package/dist/index.d.mts +5 -1
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -612,9 +612,13 @@ type MediaCardProps = {
|
|
|
612
612
|
moderationStatus?: 'processing' | 'flagged' | 'safe' | null;
|
|
613
613
|
isLoading?: boolean;
|
|
614
614
|
size: 'small' | 'medium' | 'large';
|
|
615
|
+
author?: {
|
|
616
|
+
name: string;
|
|
617
|
+
image?: JSX.Element;
|
|
618
|
+
};
|
|
615
619
|
} & HTMLAttributes<HTMLDivElement>;
|
|
616
620
|
declare const MediaCard: {
|
|
617
|
-
({ title, description, duration, type, image, action, actionBehavior, isLoading, size, className, ...otherProps }: MediaCardProps): react_jsx_runtime.JSX.Element;
|
|
621
|
+
({ title, description, duration, type, image, action, actionBehavior, isLoading, size, author, className, ...otherProps }: MediaCardProps): react_jsx_runtime.JSX.Element;
|
|
618
622
|
displayName: string;
|
|
619
623
|
};
|
|
620
624
|
|
package/dist/index.d.ts
CHANGED
|
@@ -612,9 +612,13 @@ type MediaCardProps = {
|
|
|
612
612
|
moderationStatus?: 'processing' | 'flagged' | 'safe' | null;
|
|
613
613
|
isLoading?: boolean;
|
|
614
614
|
size: 'small' | 'medium' | 'large';
|
|
615
|
+
author?: {
|
|
616
|
+
name: string;
|
|
617
|
+
image?: JSX.Element;
|
|
618
|
+
};
|
|
615
619
|
} & HTMLAttributes<HTMLDivElement>;
|
|
616
620
|
declare const MediaCard: {
|
|
617
|
-
({ title, description, duration, type, image, action, actionBehavior, isLoading, size, className, ...otherProps }: MediaCardProps): react_jsx_runtime.JSX.Element;
|
|
621
|
+
({ title, description, duration, type, image, action, actionBehavior, isLoading, size, author, className, ...otherProps }: MediaCardProps): react_jsx_runtime.JSX.Element;
|
|
618
622
|
displayName: string;
|
|
619
623
|
};
|
|
620
624
|
|