@srimandir/pitru-paksh-common 2.36.0-beta.1 → 2.36.0-beta.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.
@@ -8,6 +8,14 @@ export interface VideoPlayerProps {
8
8
  /** Enforced on both the outer container and the video/poster itself. */
9
9
  width?: string | number;
10
10
  height?: string | number;
11
+ /**
12
+ * Crops the video/poster to cover its container instead of sizing off its
13
+ * own intrinsic aspect ratio, centered on both axes — for callers that size
14
+ * this component purely via `className` (e.g. an `absolute inset-0 size-full`
15
+ * wrapper) rather than the `width`/`height` props. Implied whenever `width`
16
+ * or `height` is set.
17
+ */
18
+ fill?: boolean;
11
19
  autoPlay?: boolean;
12
20
  }
13
21
  export declare const VideoPlayer: React.ForwardRefExoticComponent<VideoPlayerProps & React.RefAttributes<HTMLDivElement>>;