Commit 9de91ec 1 parent eeb0425 commit 9de91ec Copy full SHA for 9de91ec
File tree 4 files changed +26
-27
lines changed
4 files changed +26
-27
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @api.stream/studio-kit" ,
3
- "version" : " 3.0.36 " ,
3
+ "version" : " 3.0.37 " ,
4
4
"description" : " Client SDK for building studio experiences with API.stream" ,
5
5
"license" : " MIT" ,
6
6
"private" : false ,
Original file line number Diff line number Diff line change @@ -27,9 +27,9 @@ const OfflineIcon = () => (
27
27
y2 = "200"
28
28
fill = "none"
29
29
stroke = "currentColor"
30
- stroke-linecap = "round"
31
- stroke-linejoin = "round"
32
- stroke-width = "16"
30
+ strokeLinecap = "round"
31
+ strokeLinejoin = "round"
32
+ strokeWidth = "16"
33
33
/>
34
34
< line
35
35
x1 = "40"
@@ -38,9 +38,9 @@ const OfflineIcon = () => (
38
38
y2 = "200"
39
39
fill = "none"
40
40
stroke = "currentColor"
41
- stroke-linecap = "round"
42
- stroke-linejoin = "round"
43
- stroke-width = "16"
41
+ strokeLinecap = "round"
42
+ strokeLinejoin = "round"
43
+ strokeWidth = "16"
44
44
/>
45
45
< line
46
46
x1 = "48"
@@ -49,9 +49,9 @@ const OfflineIcon = () => (
49
49
y2 = "216"
50
50
fill = "none"
51
51
stroke = "currentColor"
52
- stroke-linecap = "round"
53
- stroke-linejoin = "round"
54
- stroke-width = "16"
52
+ strokeLinecap = "round"
53
+ strokeLinejoin = "round"
54
+ strokeWidth = "16"
55
55
/>
56
56
< line
57
57
x1 = "160"
@@ -60,9 +60,9 @@ const OfflineIcon = () => (
60
60
y2 = "200"
61
61
fill = "none"
62
62
stroke = "currentColor"
63
- stroke-linecap = "round"
64
- stroke-linejoin = "round"
65
- stroke-width = "16"
63
+ strokeLinecap = "round"
64
+ strokeLinejoin = "round"
65
+ strokeWidth = "16"
66
66
/>
67
67
< line
68
68
x1 = "160"
@@ -71,9 +71,9 @@ const OfflineIcon = () => (
71
71
y2 = "115.63"
72
72
fill = "none"
73
73
stroke = "currentColor"
74
- stroke-linecap = "round"
75
- stroke-linejoin = "round"
76
- stroke-width = "16"
74
+ strokeLinecap = "round"
75
+ strokeLinejoin = "round"
76
+ strokeWidth = "16"
77
77
/>
78
78
< line
79
79
x1 = "200"
@@ -82,9 +82,9 @@ const OfflineIcon = () => (
82
82
y2 = "159.63"
83
83
fill = "none"
84
84
stroke = "currentColor"
85
- stroke-linecap = "round"
86
- stroke-linejoin = "round"
87
- stroke-width = "16"
85
+ strokeLinecap = "round"
86
+ strokeLinejoin = "round"
87
+ strokeWidth = "16"
88
88
/>
89
89
< line
90
90
x1 = "120"
@@ -93,9 +93,9 @@ const OfflineIcon = () => (
93
93
y2 = "200"
94
94
fill = "none"
95
95
stroke = "currentColor"
96
- stroke-linecap = "round"
97
- stroke-linejoin = "round"
98
- stroke-width = "16"
96
+ strokeLinecap = "round"
97
+ strokeLinejoin = "round"
98
+ strokeWidth = "16"
99
99
/>
100
100
</ svg >
101
101
)
Original file line number Diff line number Diff line change @@ -743,7 +743,7 @@ export const commands = (_project: ScenelessProject) => {
743
743
return content . props . layout
744
744
} ,
745
745
getBanners ( ) {
746
- return ( getProject ( _project . id ) . props ?. banners || [ ] ) as Banner [ ]
746
+ return ( getProject ( _project . id ) ? .props ?. banners || [ ] ) as Banner [ ]
747
747
} ,
748
748
getParticipants ( ) {
749
749
return content . children . concat ( audioContainer . children ) . filter ( ( node ) => {
@@ -1267,7 +1267,6 @@ export const commands = (_project: ScenelessProject) => {
1267
1267
1268
1268
const extendedDefaultStyles = {
1269
1269
...defaultStyles [ 'alert' ] ,
1270
- ...( foregroundVideoContainer ?. children . length && { opacity : 0 } ) ,
1271
1270
}
1272
1271
1273
1272
const { x : rootWidth } = root . props . size
@@ -2184,7 +2183,7 @@ export const commands = (_project: ScenelessProject) => {
2184
2183
} )
2185
2184
} ,
2186
2185
getProp ( prop ) {
2187
- return getProject ( _project . id ) . props [ prop ]
2186
+ return getProject ( _project . id ) ? .props [ prop ]
2188
2187
} ,
2189
2188
setProp ( prop , val ) {
2190
2189
return Command . updateProjectProps ( {
You can’t perform that action at this time.
0 commit comments