@cntrl-site/sdk-nextjs 1.0.7 → 1.0.8

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.
@@ -0,0 +1,5 @@
1
+ <component name="ProjectCodeStyleConfiguration">
2
+ <state>
3
+ <option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
4
+ </state>
5
+ </component>
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -50,6 +50,7 @@ const VideoItem = ({ item, sectionId, onResize }) => {
50
50
  pointer-events: none;
51
51
  overflow: hidden;
52
52
  border-style: solid;
53
+ pointer-events: auto;
53
54
  }
54
55
  .video-${item.id} {
55
56
  border-color: ${strokeColor};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cntrl-site/sdk-nextjs",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "SDK for Next.js",
5
5
  "main": "lib/index.js",
6
6
  "types": "src/index.ts",
@@ -39,7 +39,7 @@ export const VideoItem: FC<ItemProps<TVideoItem>> = ({ item, sectionId, onResize
39
39
  style={{
40
40
  ...(opacity !== undefined ? { opacity } : {}),
41
41
  ...(angle !== undefined ? { transform: `rotate(${angle}deg)` } : {}),
42
- ...(blur !== undefined ? { filter: `blur(${blur * 100}vw)` } : {}),
42
+ ...(blur !== undefined ? { filter: `blur(${blur * 100}vw)` } : {})
43
43
  }}
44
44
  >
45
45
  {hasScrollPlayback ? (
@@ -82,6 +82,7 @@ export const VideoItem: FC<ItemProps<TVideoItem>> = ({ item, sectionId, onResize
82
82
  pointer-events: none;
83
83
  overflow: hidden;
84
84
  border-style: solid;
85
+ pointer-events: auto;
85
86
  }
86
87
  .video-${item.id} {
87
88
  border-color: ${strokeColor};
Binary file