@zync/zync-screnplay-player 0.1.205 → 0.1.207

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.
Files changed (32) hide show
  1. package/dist/bundle.js +1 -1
  2. package/dist/screenplay/RemotionRenderer/RemotionRenderer.js +18 -14
  3. package/dist/screenplay/RemotionRenderer/components/LottieAnimationGlobal.js +21 -21
  4. package/dist/screenplay/RemotionRenderer/components/layouts/DynamicTriangle.js +36 -6
  5. package/dist/screenplay/RemotionRenderer/components/layouts/Handoff.js +20 -7
  6. package/dist/screenplay/RemotionRenderer/components/layouts/IntroVideo.js +45 -8
  7. package/dist/screenplay/RemotionRenderer/components/layouts/Keyword.js +42 -9
  8. package/dist/screenplay/RemotionRenderer/components/layouts/KeywordStudioBackdrop.js +47 -10
  9. package/dist/screenplay/RemotionRenderer/components/layouts/MotionStill.js +42 -9
  10. package/dist/screenplay/RemotionRenderer/components/layouts/MotionStillStudioBackdrop.js +46 -9
  11. package/dist/screenplay/RemotionRenderer/components/layouts/SimpleFrame.js +21 -12
  12. package/dist/screenplay/RemotionRenderer/components/layouts/TextWithVideo.js +41 -8
  13. package/dist/screenplay/RemotionRenderer/components/utils/FaceCenteredVideo.js +50 -50
  14. package/dist/screenplay/RemotionRenderer/components/utils/PausableImg.js +4 -4
  15. package/dist/screenplay/RemotionRenderer/components/utils/README.md +80 -80
  16. package/dist/screenplay/RemotionRenderer/components/utils/StretchTextDemo.js +3 -3
  17. package/dist/screenplay/RemotionRenderer/helpers/convertToSeconds.js +8 -8
  18. package/dist/screenplay/RemotionRenderer/helpers/faceBasedVideoStyles.js +4 -4
  19. package/dist/screenplay/RemotionRenderer/helpers/faceCenteredVideoTransforms.js +46 -46
  20. package/dist/screenplay/RemotionRenderer/hooks/useOrientationBased.js +7 -3
  21. package/dist/screenplay/RemotionRenderer/main/lib/layouts/DefaultLayout.js +2 -1
  22. package/dist/screenplay/RemotionRenderer/main/lib/layouts/DynamicTriangleLayout.js +3 -2
  23. package/dist/screenplay/RemotionRenderer/main/lib/layouts/HandoffLayout.js +3 -2
  24. package/dist/screenplay/RemotionRenderer/main/lib/layouts/IntroVideoLayout.js +3 -1
  25. package/dist/screenplay/RemotionRenderer/main/lib/layouts/KeywordLayout.js +3 -2
  26. package/dist/screenplay/RemotionRenderer/main/lib/layouts/MotionStillLayout.js +3 -2
  27. package/dist/screenplay/RemotionRenderer/main/lib/layouts/TextWithVideoLayout.js +3 -2
  28. package/dist/screenplay/RemotionRenderer/main/screenplaySchema.js +51 -51
  29. package/dist/screenplay/RemotionRenderer/registeredComponents.js +2 -2
  30. package/dist/screenplay/RemotionRenderer/theme/themes/default/HandoffNametag.js +9 -2
  31. package/dist/screenplay/RemotionRenderer/tracks/LayoutVideoTrack.js +20 -20
  32. package/package.json +47 -47
@@ -44,8 +44,8 @@ import { DynamicTriangle } from "./components/layouts/DynamicTriangle";
44
44
  import { KeywordStudioBackdrop } from "./components/layouts/KeywordStudioBackdrop";
45
45
  import { MotionStillGreenScreenV2 } from "./components/layouts/MotionStillGreenScreenV2";
46
46
 
47
- /** Update this so that Remotion knows which component to render when it is passed via screenplay. Ex. "title" will have rendered "Title" component
48
- * Here we are mapping directly types and component names. Types are snake_case and components PascalCase.
47
+ /** Update this so that Remotion knows which component to render when it is passed via screenplay. Ex. "title" will have rendered "Title" component
48
+ * Here we are mapping directly types and component names. Types are snake_case and components PascalCase.
49
49
  * */
50
50
  export var RegisteredComponents = {
51
51
  // Layouts
@@ -165,7 +165,9 @@ export var HandoffNametag = function HandoffNametag(_ref4) {
165
165
  _ref4$handoffNametagV = _ref4.handoffNametagVariant,
166
166
  handoffNametagVariant = _ref4$handoffNametagV === void 0 ? HANDOFF_NAMETAG_VARIANTS.BOXED : _ref4$handoffNametagV,
167
167
  _ref4$useSquareInLand = _ref4.useSquareInLandscapeFirstVideo,
168
- useSquareInLandscapeFirstVideo = _ref4$useSquareInLand === void 0 ? false : _ref4$useSquareInLand;
168
+ useSquareInLandscapeFirstVideo = _ref4$useSquareInLand === void 0 ? false : _ref4$useSquareInLand,
169
+ _ref4$useSquareInLand2 = _ref4.useSquareInLandscapeSecondVideo,
170
+ useSquareInLandscapeSecondVideo = _ref4$useSquareInLand2 === void 0 ? false : _ref4$useSquareInLand2;
169
171
  var videoConfig = useVideoConfig();
170
172
  var fps = videoConfig.fps,
171
173
  width = videoConfig.width,
@@ -271,6 +273,10 @@ export var HandoffNametag = function HandoffNametag(_ref4) {
271
273
  var holdCenteredFrames = 3.2 * fps;
272
274
  var slideLeftFrames = 0.5 * fps;
273
275
  var containerLeftPosition = shouldShiftFirstLeftInLandscape ? interpolate(frame, [0, holdCenteredFrames, holdCenteredFrames + slideLeftFrames], [initialStartLeft, initialStartLeft, baseContainerLeft], DEFAULT_TIME_INTERPOLATE_OPTIONS) : baseContainerLeft;
276
+ var shouldShiftSecondLeftInLandscape = Boolean(useSquareInLandscapeSecondVideo) && outputOrientation === "landscape" && (alignment === null || alignment === void 0 ? void 0 : alignment.startsWith("second"));
277
+ var secondSlideStartFrames = 2.5 * fps;
278
+ var secondSlideDistance = -380;
279
+ var secondContainerTranslateX = shouldShiftSecondLeftInLandscape ? interpolate(frame, [0, secondSlideStartFrames, secondSlideStartFrames + slideLeftFrames], [0, 0, secondSlideDistance], DEFAULT_TIME_INTERPOLATE_OPTIONS) : 0;
274
280
  var _getTypewriterState = getTypewriterState({
275
281
  frame: frame,
276
282
  fps: fps,
@@ -314,7 +320,8 @@ export var HandoffNametag = function HandoffNametag(_ref4) {
314
320
  display: "flex",
315
321
  flexDirection: "column",
316
322
  alignItems: contentAlignItems,
317
- maxWidth: textContainerWidth
323
+ maxWidth: textContainerWidth,
324
+ transform: "translateX(".concat(secondContainerTranslateX, "px)")
318
325
  }
319
326
  }, isHighlightVariant ? /*#__PURE__*/React.createElement("div", {
320
327
  style: {
@@ -23,26 +23,26 @@ var transitionThemes = {
23
23
  }
24
24
  };
25
25
 
26
- /*
27
- const UseMotionBlur = ({ children, componentName }) => {
28
- const {
29
- props: {
30
- output: { theme = "default" } = {
31
- theme: window.screenplayProps.output.theme,
32
- },
33
- },
34
- } = useVideoConfig();
35
-
36
- if (motionBlurComponents[componentName] && motionBlurThemes[theme]) {
37
- return (
38
- <CameraMotionBlur shutterAngle={180} samples={5}>
39
- {children}
40
- </CameraMotionBlur>
41
- );
42
- }
43
-
44
- return children;
45
- };
26
+ /*
27
+ const UseMotionBlur = ({ children, componentName }) => {
28
+ const {
29
+ props: {
30
+ output: { theme = "default" } = {
31
+ theme: window.screenplayProps.output.theme,
32
+ },
33
+ },
34
+ } = useVideoConfig();
35
+
36
+ if (motionBlurComponents[componentName] && motionBlurThemes[theme]) {
37
+ return (
38
+ <CameraMotionBlur shutterAngle={180} samples={5}>
39
+ {children}
40
+ </CameraMotionBlur>
41
+ );
42
+ }
43
+
44
+ return children;
45
+ };
46
46
  */
47
47
 
48
48
  var NestedEffects = function NestedEffects(_ref) {
package/package.json CHANGED
@@ -1,47 +1,47 @@
1
- {
2
- "name": "@zync/zync-screnplay-player",
3
- "version": "0.1.205",
4
- "files": [
5
- "dist"
6
- ],
7
- "main": "dist/bundle.js",
8
- "module": "dist/index.js",
9
- "exports": {
10
- "import": "./dist/index.js",
11
- "require": "./dist/bundle.js"
12
- },
13
- "scripts": {
14
- "clean": "rimraf dist",
15
- "build": "npm run clean && babel src --out-dir dist --extensions \".ts,.tsx,.js,.jsx\" --copy-files && webpack",
16
- "publish-lib": "npm run build && npm publish --access public"
17
- },
18
- "dependencies": {
19
- "@remotion/google-fonts": "4.0.208",
20
- "@remotion/lottie": "4.0.208",
21
- "@remotion/motion-blur": "4.0.208",
22
- "@remotion/player": "4.0.208",
23
- "@remotion/transitions": "4.0.208",
24
- "remotion": "4.0.208"
25
- },
26
- "peerDependencies": {
27
- "react": "16.14.0",
28
- "react-dom": "16.14.0"
29
- },
30
- "devDependencies": {
31
- "@babel/cli": "7.21.5",
32
- "@babel/core": "7.21.5",
33
- "@babel/preset-env": "7.21.5",
34
- "@babel/preset-react": "7.18.6",
35
- "@babel/preset-typescript": "^7.26.0",
36
- "babel-loader": "^9.2.1",
37
- "terser-webpack-plugin": "^5.3.11",
38
- "ts-loader": "^9.5.2",
39
- "typescript": "^5.7.3",
40
- "webpack": "^5.97.1",
41
- "webpack-cli": "^6.0.1",
42
- "rimraf": "^5.0.7"
43
- },
44
- "browser": {
45
- "fs": false
46
- }
47
- }
1
+ {
2
+ "name": "@zync/zync-screnplay-player",
3
+ "version": "0.1.207",
4
+ "files": [
5
+ "dist"
6
+ ],
7
+ "main": "dist/bundle.js",
8
+ "module": "dist/index.js",
9
+ "exports": {
10
+ "import": "./dist/index.js",
11
+ "require": "./dist/bundle.js"
12
+ },
13
+ "scripts": {
14
+ "clean": "rimraf dist",
15
+ "build": "npm run clean && babel src --out-dir dist --extensions \".ts,.tsx,.js,.jsx\" --copy-files && webpack",
16
+ "publish-lib": "npm run build && npm publish --access public"
17
+ },
18
+ "dependencies": {
19
+ "@remotion/google-fonts": "4.0.208",
20
+ "@remotion/lottie": "4.0.208",
21
+ "@remotion/motion-blur": "4.0.208",
22
+ "@remotion/player": "4.0.208",
23
+ "@remotion/transitions": "4.0.208",
24
+ "remotion": "4.0.208"
25
+ },
26
+ "peerDependencies": {
27
+ "react": "16.14.0",
28
+ "react-dom": "16.14.0"
29
+ },
30
+ "devDependencies": {
31
+ "@babel/cli": "7.21.5",
32
+ "@babel/core": "7.21.5",
33
+ "@babel/preset-env": "7.21.5",
34
+ "@babel/preset-react": "7.18.6",
35
+ "@babel/preset-typescript": "^7.26.0",
36
+ "babel-loader": "^9.2.1",
37
+ "terser-webpack-plugin": "^5.3.11",
38
+ "ts-loader": "^9.5.2",
39
+ "typescript": "^5.7.3",
40
+ "webpack": "^5.97.1",
41
+ "webpack-cli": "^6.0.1",
42
+ "rimraf": "^5.0.7"
43
+ },
44
+ "browser": {
45
+ "fs": false
46
+ }
47
+ }