@cntrl-site/sdk-nextjs 1.6.1 → 1.6.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.
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<component name="InspectionProjectProfileManager">
|
|
2
|
+
<profile version="1.0">
|
|
3
|
+
<option name="myName" value="Project Default" />
|
|
4
|
+
<inspection_tool class="HtmlUnknownAttribute" enabled="true" level="WARNING" enabled_by_default="true">
|
|
5
|
+
<option name="myValues">
|
|
6
|
+
<value>
|
|
7
|
+
<list size="1">
|
|
8
|
+
<item index="0" class="java.lang.String" itemvalue="jsx" />
|
|
9
|
+
</list>
|
|
10
|
+
</value>
|
|
11
|
+
</option>
|
|
12
|
+
<option name="myCustomValuesEnabled" value="true" />
|
|
13
|
+
</inspection_tool>
|
|
14
|
+
</profile>
|
|
15
|
+
</component>
|
|
@@ -96,10 +96,8 @@ const VideoItem = ({ item, sectionId, onResize, interactionCtrl, onVisibilityCha
|
|
|
96
96
|
box-sizing: border-box;
|
|
97
97
|
opacity: 1;
|
|
98
98
|
object-fit: cover;
|
|
99
|
-
pointer-events: none;
|
|
100
99
|
overflow: hidden;
|
|
101
100
|
border-style: solid;
|
|
102
|
-
pointer-events: auto;
|
|
103
101
|
}
|
|
104
102
|
.video-${item.id} {
|
|
105
103
|
border-color: ${itemStrokeColor};
|
package/package.json
CHANGED
|
@@ -155,10 +155,8 @@ export const VideoItem: FC<ItemProps<TVideoItem>> = ({ item, sectionId, onResize
|
|
|
155
155
|
box-sizing: border-box;
|
|
156
156
|
opacity: 1;
|
|
157
157
|
object-fit: cover;
|
|
158
|
-
pointer-events: none;
|
|
159
158
|
overflow: hidden;
|
|
160
159
|
border-style: solid;
|
|
161
|
-
pointer-events: auto;
|
|
162
160
|
}
|
|
163
161
|
.video-${item.id} {
|
|
164
162
|
border-color: ${itemStrokeColor};
|