@mindly/ui-components 5.91.14 → 5.91.16
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/cjs/index.js +4 -4
- package/dist/cjs/lib2/features/SpecialistShortInfoItemFeature/SpecialistShortInfoItemFeature.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/Video/Video.d.ts +4 -0
- package/dist/esm/index.js +4 -4
- package/dist/esm/lib2/features/SpecialistShortInfoItemFeature/SpecialistShortInfoItemFeature.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/Video/Video.d.ts +4 -0
- package/dist/index.d.ts +5 -0
- package/package.json +1 -1
|
@@ -8,6 +8,10 @@ export type VideoProps = {
|
|
|
8
8
|
preview?: string;
|
|
9
9
|
onMuteToggle?: () => void;
|
|
10
10
|
onPlay?(src: string): void;
|
|
11
|
+
children?: React.ReactNode | ((props: {
|
|
12
|
+
onClick: () => void;
|
|
13
|
+
isLoading: boolean;
|
|
14
|
+
}) => React.ReactNode);
|
|
11
15
|
};
|
|
12
16
|
export type VideoMethods = {
|
|
13
17
|
play(): void;
|
package/dist/index.d.ts
CHANGED
|
@@ -2246,6 +2246,10 @@ type VideoProps = {
|
|
|
2246
2246
|
preview?: string;
|
|
2247
2247
|
onMuteToggle?: () => void;
|
|
2248
2248
|
onPlay?(src: string): void;
|
|
2249
|
+
children?: React__default.ReactNode | ((props: {
|
|
2250
|
+
onClick: () => void;
|
|
2251
|
+
isLoading: boolean;
|
|
2252
|
+
}) => React__default.ReactNode);
|
|
2249
2253
|
};
|
|
2250
2254
|
type VideoMethods = {
|
|
2251
2255
|
play(): void;
|
|
@@ -2950,6 +2954,7 @@ type SpecialistShortInfoItemFeatureProps = {
|
|
|
2950
2954
|
isAuth?: boolean;
|
|
2951
2955
|
variantFullName?: TypographyVariantsEnum;
|
|
2952
2956
|
isFavourite?: boolean;
|
|
2957
|
+
video_link?: string;
|
|
2953
2958
|
onClickReview?(): void;
|
|
2954
2959
|
onToggleFavourite?(): void;
|
|
2955
2960
|
};
|