@stream-io/video-react-sdk 0.0.1-alpha.32 → 0.0.1-alpha.34

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 (81) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist/css/styles.css +134 -145
  3. package/dist/css/styles.css.map +1 -1
  4. package/dist/src/components/Button/CompositeButton.js +2 -4
  5. package/dist/src/components/Button/CompositeButton.js.map +1 -1
  6. package/dist/src/components/StreamCall/CallParticipantsScreenView.js +3 -3
  7. package/dist/src/components/StreamCall/CallParticipantsScreenView.js.map +1 -1
  8. package/dist/src/components/StreamCall/CallParticipantsView.js +2 -3
  9. package/dist/src/components/StreamCall/CallParticipantsView.js.map +1 -1
  10. package/dist/src/core/components/CallLayout/PaginatedGridLayout.d.ts +3 -7
  11. package/dist/src/core/components/CallLayout/PaginatedGridLayout.js +7 -11
  12. package/dist/src/core/components/CallLayout/PaginatedGridLayout.js.map +1 -1
  13. package/dist/src/core/components/CallLayout/SpeakerLayout.d.ts +6 -1
  14. package/dist/src/core/components/CallLayout/SpeakerLayout.js +5 -3
  15. package/dist/src/core/components/CallLayout/SpeakerLayout.js.map +1 -1
  16. package/dist/src/core/components/ParticipantView/DefaultParticipantViewUI.d.ts +20 -0
  17. package/dist/src/core/components/ParticipantView/DefaultParticipantViewUI.js +33 -0
  18. package/dist/src/core/components/ParticipantView/DefaultParticipantViewUI.js.map +1 -0
  19. package/dist/src/core/components/ParticipantView/ParticipantView.d.ts +82 -0
  20. package/dist/src/core/components/ParticipantView/ParticipantView.js +28 -0
  21. package/dist/src/core/components/ParticipantView/ParticipantView.js.map +1 -0
  22. package/dist/src/core/components/ParticipantView/index.d.ts +2 -0
  23. package/dist/src/core/components/ParticipantView/index.js +3 -0
  24. package/dist/src/core/components/ParticipantView/index.js.map +1 -0
  25. package/dist/src/core/components/Video/BaseVideo.d.ts +3 -3
  26. package/dist/src/core/components/Video/BaseVideo.js +6 -12
  27. package/dist/src/core/components/Video/BaseVideo.js.map +1 -1
  28. package/dist/src/core/components/Video/Video.d.ts +8 -6
  29. package/dist/src/core/components/Video/Video.js +27 -25
  30. package/dist/src/core/components/Video/Video.js.map +1 -1
  31. package/dist/src/core/components/Video/VideoPlaceholder.d.ts +3 -3
  32. package/dist/src/core/components/Video/VideoPlaceholder.js +2 -5
  33. package/dist/src/core/components/Video/VideoPlaceholder.js.map +1 -1
  34. package/dist/src/core/components/index.d.ts +2 -2
  35. package/dist/src/core/components/index.js +1 -1
  36. package/dist/src/core/components/index.js.map +1 -1
  37. package/dist/src/core/hooks/index.d.ts +1 -0
  38. package/dist/src/core/hooks/index.js +1 -0
  39. package/dist/src/core/hooks/index.js.map +1 -1
  40. package/dist/src/core/hooks/useTrackElementVisibility.d.ts +6 -0
  41. package/dist/src/core/hooks/useTrackElementVisibility.js +24 -0
  42. package/dist/src/core/hooks/useTrackElementVisibility.js.map +1 -0
  43. package/dist/src/utilities/applyElementRef.d.ts +2 -0
  44. package/dist/src/utilities/applyElementRef.js +8 -0
  45. package/dist/src/utilities/applyElementRef.js.map +1 -0
  46. package/dist/src/utilities/chunk.d.ts +1 -0
  47. package/dist/src/utilities/chunk.js +5 -0
  48. package/dist/src/utilities/chunk.js.map +1 -0
  49. package/dist/src/utilities/index.d.ts +3 -0
  50. package/dist/src/utilities/index.js +4 -0
  51. package/dist/src/utilities/index.js.map +1 -0
  52. package/dist/src/utilities/isComponentType.d.ts +2 -0
  53. package/dist/src/utilities/isComponentType.js +7 -0
  54. package/dist/src/utilities/isComponentType.js.map +1 -0
  55. package/package.json +5 -5
  56. package/src/components/Button/CompositeButton.tsx +4 -13
  57. package/src/components/StreamCall/CallParticipantsScreenView.tsx +3 -4
  58. package/src/components/StreamCall/CallParticipantsView.tsx +3 -4
  59. package/src/core/components/CallLayout/PaginatedGridLayout.tsx +21 -40
  60. package/src/core/components/CallLayout/SpeakerLayout.tsx +46 -19
  61. package/src/core/components/ParticipantView/DefaultParticipantViewUI.tsx +165 -0
  62. package/src/core/components/ParticipantView/ParticipantView.tsx +136 -0
  63. package/src/core/components/ParticipantView/index.ts +2 -0
  64. package/src/core/components/Video/BaseVideo.tsx +9 -24
  65. package/src/core/components/Video/Video.tsx +55 -44
  66. package/src/core/components/Video/VideoPlaceholder.tsx +7 -11
  67. package/src/core/components/index.ts +2 -2
  68. package/src/core/hooks/index.ts +1 -0
  69. package/src/core/hooks/useTrackElementVisibility.ts +41 -0
  70. package/src/utilities/applyElementRef.ts +12 -0
  71. package/src/utilities/chunk.ts +8 -0
  72. package/src/utilities/index.ts +3 -0
  73. package/src/utilities/isComponentType.ts +9 -0
  74. package/dist/src/core/components/ParticipantBox/ParticipantBox.d.ts +0 -48
  75. package/dist/src/core/components/ParticipantBox/ParticipantBox.js +0 -58
  76. package/dist/src/core/components/ParticipantBox/ParticipantBox.js.map +0 -1
  77. package/dist/src/core/components/ParticipantBox/index.d.ts +0 -1
  78. package/dist/src/core/components/ParticipantBox/index.js +0 -2
  79. package/dist/src/core/components/ParticipantBox/index.js.map +0 -1
  80. package/src/core/components/ParticipantBox/ParticipantBox.tsx +0 -248
  81. package/src/core/components/ParticipantBox/index.ts +0 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [0.0.1-alpha.34](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.0.1-alpha.33...@stream-io/video-react-sdk-0.0.1-alpha.34) (2023-05-15)
6
+
7
+
8
+
9
+ ## [0.0.1-alpha.33](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.0.1-alpha.32...@stream-io/video-react-sdk-0.0.1-alpha.33) (2023-05-15)
10
+
11
+
12
+
5
13
  ## [0.0.1-alpha.32](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.0.1-alpha.31...@stream-io/video-react-sdk-0.0.1-alpha.32) (2023-05-15)
6
14
 
7
15
 
@@ -591,17 +591,7 @@
591
591
  width: 0.8rem;
592
592
  height: 0.8rem;
593
593
  }
594
- .str-video__call-participants-screen-view .str-video__screen-share {
595
- min-height: 0;
596
- object-fit: contain;
597
- }
598
- .str-video__call-participants-screen-view .str-video__video--wide {
599
- width: 100%;
600
- height: 100%;
601
- }
602
- .str-video__call-participants-screen-view .str-video__video--tall {
603
- height: 100%;
604
- width: 100%;
594
+ .str-video__call-participants-screen-view .str-video__video--screen-share {
605
595
  object-fit: contain;
606
596
  }
607
597
 
@@ -1719,6 +1709,8 @@
1719
1709
  opacity: 1;
1720
1710
  }
1721
1711
  .str-video__reaction .str-video__reaction__emoji {
1712
+ display: flex;
1713
+ line-height: 1;
1722
1714
  font-size: 2.5rem;
1723
1715
  }
1724
1716
 
@@ -1899,15 +1891,53 @@
1899
1891
  box-shadow: none;
1900
1892
  }
1901
1893
 
1902
- .str-video__video--wide {
1894
+ .str-video__video {
1895
+ object-fit: cover;
1903
1896
  width: 100%;
1904
- height: auto;
1897
+ height: 100%;
1898
+ border-radius: inherit;
1905
1899
  }
1906
-
1907
1900
  .str-video__video--tall {
1901
+ object-fit: contain;
1902
+ }
1903
+ .str-video__video--mirror {
1904
+ transform: scaleX(-1);
1905
+ }
1906
+
1907
+ .str-video__video-placeholder {
1908
+ aspect-ratio: 4/3;
1908
1909
  height: 100%;
1909
- width: auto;
1910
- object-fit: contain !important;
1910
+ width: 100%;
1911
+ display: flex;
1912
+ align-items: center;
1913
+ justify-content: center;
1914
+ }
1915
+ .str-video__video-placeholder .str-video__video-placeholder__avatar {
1916
+ width: 100px;
1917
+ height: 100px;
1918
+ object-fit: cover;
1919
+ }
1920
+ .str-video__video-placeholder .str-video__video-placeholder__initials-fallback {
1921
+ display: flex;
1922
+ justify-content: center;
1923
+ align-items: center;
1924
+ width: 100px;
1925
+ height: 100px;
1926
+ }
1927
+
1928
+ .str-video__video-placeholder {
1929
+ background: var(--str-video__background-color5);
1930
+ border-radius: inherit;
1931
+ }
1932
+ .str-video__video-placeholder .str-video__video-placeholder__avatar {
1933
+ border-radius: var(--str-video__border-radius-circle);
1934
+ }
1935
+ .str-video__video-placeholder .str-video__video-placeholder__initials-fallback {
1936
+ background-color: var(--str-video__primary-color);
1937
+ border-radius: var(--str-video__border-radius-circle);
1938
+ font-size: 32px;
1939
+ font-weight: 600;
1940
+ text-transform: uppercase;
1911
1941
  }
1912
1942
 
1913
1943
  .str-video__video-preview-container {
@@ -1917,21 +1947,20 @@
1917
1947
  width: 500px;
1918
1948
  height: 375px;
1919
1949
  }
1950
+ .str-video__video-preview-container .str-video__video-preview {
1951
+ object-fit: cover;
1952
+ width: 100%;
1953
+ height: 100%;
1954
+ }
1920
1955
  .str-video__video-preview-container .str-video__loading-indicator__icon {
1921
1956
  height: 3rem;
1922
1957
  width: 3rem;
1923
1958
  mask-size: 3rem;
1924
1959
  }
1925
-
1926
- .str-video__base-video {
1927
- object-fit: cover;
1928
- width: 100%;
1929
- height: 100%;
1930
- }
1931
- .str-video__base-video.str-video__remote-video--mirror, .str-video__base-video.str-video__video-preview--mirror {
1960
+ .str-video__video-preview-container .str-video__video-preview--mirror {
1932
1961
  transform: scaleX(-1);
1933
1962
  }
1934
- .str-video__base-video.str-video__video-preview--loading {
1963
+ .str-video__video-preview-container .str-video__video-preview--loading {
1935
1964
  display: none;
1936
1965
  }
1937
1966
 
@@ -1939,17 +1968,25 @@
1939
1968
  /* The font color applied inside the component */
1940
1969
  --str-video__video-preview-container--color: var(--str-video__text-color1);
1941
1970
  /* The background color of the component */
1942
- --str-video__video-preview-container--background-color: var(--str-video__background-color5);
1971
+ --str-video__video-preview-container--background-color: var(
1972
+ --str-video__background-color5
1973
+ );
1943
1974
  /* The border radius used for the borders of the component */
1944
- --str-video__video-preview-container--border-radius: var(--str-video__border-radius-xs);
1975
+ --str-video__video-preview-container--border-radius: var(
1976
+ --str-video__border-radius-xs
1977
+ );
1945
1978
  /* The border used for the borders of the component */
1946
- --str-video__video-preview-container--border-block-start: 4px solid var(--str-video__primary-color);
1979
+ --str-video__video-preview-container--border-block-start: 4px solid
1980
+ var(--str-video__primary-color);
1947
1981
  /* The border used for the borders of the component */
1948
- --str-video__video-preview-container--border-block-end: 4px solid var(--str-video__primary-color);
1982
+ --str-video__video-preview-container--border-block-end: 4px solid
1983
+ var(--str-video__primary-color);
1949
1984
  /* The border used for the borders of the component */
1950
- --str-video__video-preview-container--border-inline-start: 4px solid var(--str-video__primary-color);
1985
+ --str-video__video-preview-container--border-inline-start: 4px solid
1986
+ var(--str-video__primary-color);
1951
1987
  /* The border used for the borders of the component */
1952
- --str-video__video-preview-container--border-inline-end: 4px solid var(--str-video__primary-color);
1988
+ --str-video__video-preview-container--border-inline-end: 4px solid
1989
+ var(--str-video__primary-color);
1953
1990
  }
1954
1991
 
1955
1992
  .str-video__video-preview-container {
@@ -1964,96 +2001,44 @@
1964
2001
  overflow: hidden;
1965
2002
  }
1966
2003
 
1967
- .str-video__participant-placeholder {
1968
- aspect-ratio: 4/3;
1969
- height: 100%;
2004
+ .str-video__participant-view,
2005
+ .str-video__participant-view--angular-host {
2006
+ position: relative;
1970
2007
  width: 100%;
2008
+ max-width: 1280px;
2009
+ max-height: 100%;
2010
+ aspect-ratio: 4/3;
1971
2011
  display: flex;
1972
2012
  align-items: center;
1973
2013
  justify-content: center;
1974
- }
1975
- .str-video__participant-placeholder .str-video__participant-placeholder--avatar {
1976
- width: 100px;
1977
- height: 100px;
1978
- object-fit: cover;
1979
- }
1980
- .str-video__participant-placeholder .str-video__participant-placeholder--initials-fallback {
1981
- display: flex;
1982
- justify-content: center;
1983
- align-items: center;
1984
- width: 100px;
1985
- height: 100px;
1986
- }
1987
-
1988
- .str-video__participant-placeholder {
1989
- background: var(--str-video__background-color5);
1990
2014
  border-radius: var(--str-video__border-radius-sm);
1991
2015
  }
1992
- .str-video__participant-placeholder .str-video__participant-placeholder--avatar {
1993
- border-radius: var(--str-video__border-radius-circle);
1994
- }
1995
- .str-video__participant-placeholder .str-video__participant-placeholder--initials-fallback {
1996
- background-color: var(--str-video__primary-color);
1997
- border-radius: var(--str-video__border-radius-circle);
1998
- font-size: 32px;
1999
- font-weight: 600;
2000
- text-transform: uppercase;
2001
- }
2002
-
2003
- .str-video__participant,
2004
- .str-video__participant-angular-host {
2005
- position: relative;
2006
- width: 100%;
2007
- max-width: 1280px;
2008
- min-height: 0;
2009
- max-height: 100%;
2010
- aspect-ratio: 4/3;
2016
+ .str-video__participant-view--speaking,
2017
+ .str-video__participant-view--angular-host--speaking {
2018
+ outline: 2px solid var(--str-video__primary-color);
2011
2019
  }
2012
- .str-video__participant .str-video__participant_details,
2013
- .str-video__participant .str-video__call-controls__button,
2014
- .str-video__participant-angular-host .str-video__participant_details,
2015
- .str-video__participant-angular-host .str-video__call-controls__button {
2020
+ .str-video__participant-view .str-video__participant-details,
2021
+ .str-video__participant-view .str-video__call-controls__button,
2022
+ .str-video__participant-view--angular-host .str-video__participant-details,
2023
+ .str-video__participant-view--angular-host .str-video__call-controls__button {
2016
2024
  transition: opacity 200ms ease-out;
2017
2025
  opacity: 0.3;
2018
2026
  }
2019
- .str-video__participant:hover .str-video__participant_details,
2020
- .str-video__participant:hover .str-video__call-controls__button,
2021
- .str-video__participant-angular-host:hover .str-video__participant_details,
2022
- .str-video__participant-angular-host:hover .str-video__call-controls__button {
2027
+ .str-video__participant-view:hover .str-video__participant-details,
2028
+ .str-video__participant-view:hover .str-video__call-controls__button,
2029
+ .str-video__participant-view--angular-host:hover .str-video__participant-details,
2030
+ .str-video__participant-view--angular-host:hover .str-video__call-controls__button {
2023
2031
  opacity: 1;
2024
2032
  }
2025
- .str-video__participant > .str-video__call-controls__button,
2026
- .str-video__participant-angular-host > .str-video__call-controls__button {
2033
+ .str-video__participant-view > .str-video__call-controls__button,
2034
+ .str-video__participant-view--angular-host > .str-video__call-controls__button {
2027
2035
  position: absolute;
2028
2036
  top: 0.875rem;
2029
2037
  right: 0.875rem;
2030
- z-index: 1;
2031
2038
  padding: 0.3rem;
2032
2039
  }
2033
- .str-video__participant--speaking video,
2034
- .str-video__participant--speaking .str-video__participant-placeholder,
2035
- .str-video__participant-angular-host--speaking video,
2036
- .str-video__participant-angular-host--speaking .str-video__participant-placeholder {
2037
- outline: 2px solid var(--str-video__primary-color);
2038
- }
2039
- .str-video__participant .str-video__video-container,
2040
- .str-video__participant-angular-host .str-video__video-container {
2041
- position: relative;
2042
- height: 100%;
2043
- min-height: 0;
2044
- max-height: 100%;
2045
- display: flex;
2046
- flex-direction: column;
2047
- }
2048
- .str-video__participant .str-video__video-container .str-video__remote-video,
2049
- .str-video__participant-angular-host .str-video__video-container .str-video__remote-video {
2050
- border-radius: var(--str-video__border-radius2);
2051
- width: 100%;
2052
- object-fit: cover;
2053
- background: var(--str-video__text-color3);
2054
- }
2055
- .str-video__participant .str-video__participant_details,
2056
- .str-video__participant-angular-host .str-video__participant_details {
2040
+ .str-video__participant-view .str-video__participant-details,
2041
+ .str-video__participant-view--angular-host .str-video__participant-details {
2057
2042
  position: absolute;
2058
2043
  left: 0.875rem;
2059
2044
  bottom: 0.875rem;
@@ -2061,8 +2046,8 @@
2061
2046
  align-items: center;
2062
2047
  gap: 0.3125rem;
2063
2048
  }
2064
- .str-video__participant .str-video__participant_details .str-video__participant_name,
2065
- .str-video__participant-angular-host .str-video__participant_details .str-video__participant_name {
2049
+ .str-video__participant-view .str-video__participant-details .str-video__participant-details__name,
2050
+ .str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__name {
2066
2051
  border-radius: var(--str-video__border-radius1);
2067
2052
  background-color: var(--str-video__background-color4);
2068
2053
  display: flex;
@@ -2073,8 +2058,8 @@
2073
2058
  overflow: hidden;
2074
2059
  text-overflow: ellipsis;
2075
2060
  }
2076
- .str-video__participant .str-video__participant_details .str-video__participant_name .str-video__participant_name--audio-muted,
2077
- .str-video__participant-angular-host .str-video__participant_details .str-video__participant_name .str-video__participant_name--audio-muted {
2061
+ .str-video__participant-view .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--audio-muted,
2062
+ .str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--audio-muted {
2078
2063
  width: 1rem;
2079
2064
  height: 1rem;
2080
2065
  mask-size: 1rem;
@@ -2083,8 +2068,8 @@
2083
2068
  mask-image: var(--str-video__icon--mic-off);
2084
2069
  -webkit-mask-image: var(--str-video__icon--mic-off);
2085
2070
  }
2086
- .str-video__participant .str-video__participant_details .str-video__participant_name .str-video__participant_name--dominant_speaker,
2087
- .str-video__participant-angular-host .str-video__participant_details .str-video__participant_name .str-video__participant_name--dominant_speaker {
2071
+ .str-video__participant-view .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--dominant_speaker,
2072
+ .str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--dominant_speaker {
2088
2073
  width: 1rem;
2089
2074
  height: 1rem;
2090
2075
  mask-size: 1rem;
@@ -2099,8 +2084,8 @@
2099
2084
  mask-position: center;
2100
2085
  -webkit-mask-position: center;
2101
2086
  }
2102
- .str-video__participant .str-video__participant_details .str-video__participant_name .str-video__participant_name--video-muted,
2103
- .str-video__participant-angular-host .str-video__participant_details .str-video__participant_name .str-video__participant_name--video-muted {
2087
+ .str-video__participant-view .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--video-muted,
2088
+ .str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--video-muted {
2104
2089
  width: 1rem;
2105
2090
  height: 1rem;
2106
2091
  mask-size: 1rem;
@@ -2109,8 +2094,8 @@
2109
2094
  mask-image: var(--str-video__icon--camera-off);
2110
2095
  -webkit-mask-image: var(--str-video__icon--camera-off);
2111
2096
  }
2112
- .str-video__participant .str-video__participant_details .str-video__participant_name .str-video__participant_name--pinned,
2113
- .str-video__participant-angular-host .str-video__participant_details .str-video__participant_name .str-video__participant_name--pinned {
2097
+ .str-video__participant-view .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--pinned,
2098
+ .str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--pinned {
2114
2099
  width: 1rem;
2115
2100
  height: 1rem;
2116
2101
  mask-size: 1rem;
@@ -2127,8 +2112,8 @@
2127
2112
  mask-image: var(--str-video__icon--pin);
2128
2113
  -webkit-mask-image: var(--str-video__icon--pin);
2129
2114
  }
2130
- .str-video__participant .str-video__participant_details .str-video__participant_name .str-video__participant_name--network-stats,
2131
- .str-video__participant-angular-host .str-video__participant_details .str-video__participant_name .str-video__participant_name--network-stats {
2115
+ .str-video__participant-view .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--network-stats,
2116
+ .str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--network-stats {
2132
2117
  width: 1rem;
2133
2118
  height: 1rem;
2134
2119
  mask-size: 1rem;
@@ -2138,27 +2123,27 @@
2138
2123
  cursor: pointer;
2139
2124
  margin-right: 0.625rem;
2140
2125
  }
2141
- .str-video__participant .str-video__participant_details .str-video__participant__connection-quality,
2142
- .str-video__participant-angular-host .str-video__participant_details .str-video__participant__connection-quality {
2126
+ .str-video__participant-view .str-video__participant-details .str-video__participant-details__connection-quality,
2127
+ .str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__connection-quality {
2143
2128
  width: 1.5rem;
2144
2129
  height: 1.5rem;
2145
2130
  display: block;
2146
2131
  background-size: cover;
2147
2132
  }
2148
- .str-video__participant .str-video__participant_details .str-video__participant__connection-quality--poor,
2149
- .str-video__participant-angular-host .str-video__participant_details .str-video__participant__connection-quality--poor {
2133
+ .str-video__participant-view .str-video__participant-details .str-video__participant-details__connection-quality--poor,
2134
+ .str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__connection-quality--poor {
2150
2135
  background-image: var(--str-video__icon--connection-quality-poor);
2151
2136
  }
2152
- .str-video__participant .str-video__participant_details .str-video__participant__connection-quality--good,
2153
- .str-video__participant-angular-host .str-video__participant_details .str-video__participant__connection-quality--good {
2137
+ .str-video__participant-view .str-video__participant-details .str-video__participant-details__connection-quality--good,
2138
+ .str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__connection-quality--good {
2154
2139
  background-image: var(--str-video__icon--connection-quality-good);
2155
2140
  }
2156
- .str-video__participant .str-video__participant_details .str-video__participant__connection-quality--excellent,
2157
- .str-video__participant-angular-host .str-video__participant_details .str-video__participant__connection-quality--excellent {
2141
+ .str-video__participant-view .str-video__participant-details .str-video__participant-details__connection-quality--excellent,
2142
+ .str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__connection-quality--excellent {
2158
2143
  background-image: var(--str-video__icon--connection-quality-excellent);
2159
2144
  }
2160
2145
 
2161
- .str-video__paginated-grid-layout--wrapper {
2146
+ .str-video__paginated-grid-layout__wrapper {
2162
2147
  flex-grow: 1;
2163
2148
  }
2164
2149
 
@@ -2168,7 +2153,7 @@
2168
2153
  align-items: center;
2169
2154
  justify-content: space-between;
2170
2155
  }
2171
- .str-video__paginated-grid-layout .str-video__paginated-grid-layout--group {
2156
+ .str-video__paginated-grid-layout .str-video__paginated-grid-layout__group {
2172
2157
  display: flex;
2173
2158
  flex-wrap: wrap;
2174
2159
  gap: 8px;
@@ -2178,20 +2163,20 @@
2178
2163
  margin: auto;
2179
2164
  width: 100%;
2180
2165
  }
2181
- .str-video__paginated-grid-layout .str-video__paginated-grid-layout--group .str-video__participant {
2166
+ .str-video__paginated-grid-layout .str-video__paginated-grid-layout__group .str-video__participant-view {
2182
2167
  flex: 0 1 calc(25% - 6px);
2183
2168
  }
2184
- .str-video__paginated-grid-layout .str-video__paginated-grid-layout--group.str-video__paginated-grid-layout--one .str-video__participant {
2169
+ .str-video__paginated-grid-layout .str-video__paginated-grid-layout__group.str-video__paginated-grid-layout--one .str-video__participant-view {
2185
2170
  flex: 0 1 calc(100% - 6px);
2186
2171
  }
2187
- .str-video__paginated-grid-layout .str-video__paginated-grid-layout--group.str-video__paginated-grid-layout--two-four .str-video__participant {
2172
+ .str-video__paginated-grid-layout .str-video__paginated-grid-layout__group.str-video__paginated-grid-layout--two-four .str-video__participant-view {
2188
2173
  flex: 0 1 calc(50% - 6px);
2189
2174
  }
2190
- .str-video__paginated-grid-layout .str-video__paginated-grid-layout--group.str-video__paginated-grid-layout--five-nine .str-video__participant {
2175
+ .str-video__paginated-grid-layout .str-video__paginated-grid-layout__group.str-video__paginated-grid-layout--five-nine .str-video__participant-view {
2191
2176
  flex: 0 1 calc(33% - 6px);
2192
2177
  }
2193
2178
 
2194
- .str-video__speaker-layout--wrapper {
2179
+ .str-video__speaker-layout__wrapper {
2195
2180
  flex-grow: 1;
2196
2181
  overflow-y: hidden;
2197
2182
  }
@@ -2205,65 +2190,69 @@
2205
2190
  gap: 1rem;
2206
2191
  padding-inline: 2px;
2207
2192
  }
2208
- .str-video__speaker-layout .str-video__participant {
2193
+ .str-video__speaker-layout .str-video__participant-view {
2209
2194
  aspect-ratio: 16/9;
2210
2195
  }
2211
- .str-video__speaker-layout .str-video__speaker-layout--spotlight {
2196
+ .str-video__speaker-layout .str-video__speaker-layout__spotlight {
2212
2197
  display: flex;
2213
2198
  align-items: center;
2214
2199
  justify-content: center;
2215
2200
  min-height: 0;
2216
2201
  }
2217
- .str-video__speaker-layout .str-video__speaker-layout--spotlight .str-video__participant {
2202
+ .str-video__speaker-layout .str-video__speaker-layout__spotlight .str-video__participant-view {
2218
2203
  width: 100%;
2219
2204
  max-width: 110vh;
2220
2205
  }
2221
- .str-video__speaker-layout .str-video__speaker-layout--spotlight .str-video__screen-share {
2206
+ .str-video__speaker-layout .str-video__speaker-layout__spotlight .str-video__participant-view--speaking:has(.str-video__video--screen-share) {
2222
2207
  outline: none;
2208
+ }
2209
+ .str-video__speaker-layout .str-video__speaker-layout__spotlight .str-video__participant-view:has(.str-video__video--screen-share) {
2223
2210
  border-radius: unset;
2211
+ }
2212
+ .str-video__speaker-layout .str-video__speaker-layout__spotlight .str-video__video--screen-share {
2224
2213
  object-fit: contain;
2225
2214
  }
2226
- .str-video__speaker-layout .str-video__speaker-layout--spotlight .str-video__participant_details,
2227
- .str-video__speaker-layout .str-video__speaker-layout--spotlight .str-video__call-controls__button {
2215
+ .str-video__speaker-layout .str-video__speaker-layout__spotlight .str-video__participant-details,
2216
+ .str-video__speaker-layout .str-video__speaker-layout__spotlight .str-video__call-controls__button {
2228
2217
  opacity: 1;
2229
2218
  }
2230
- .str-video__speaker-layout .str-video__speaker-layout--participants-bar-buttons-wrapper {
2219
+ .str-video__speaker-layout .str-video__speaker-layout__participants-bar-buttons-wrapper {
2231
2220
  position: relative;
2232
2221
  display: flex;
2233
2222
  align-items: center;
2234
2223
  justify-content: center;
2235
2224
  }
2236
- .str-video__speaker-layout .str-video__speaker-layout--participants-bar-buttons-wrapper .str-video__speaker-layout--participants-bar-button-left {
2225
+ .str-video__speaker-layout .str-video__speaker-layout__participants-bar-buttons-wrapper .str-video__speaker-layout__participants-bar--button-left {
2237
2226
  position: absolute;
2238
2227
  left: 0.5rem;
2239
2228
  z-index: 1;
2240
2229
  }
2241
- .str-video__speaker-layout .str-video__speaker-layout--participants-bar-buttons-wrapper .str-video__speaker-layout--participants-bar-button-left .str-video__call-controls__button--icon {
2230
+ .str-video__speaker-layout .str-video__speaker-layout__participants-bar-buttons-wrapper .str-video__speaker-layout__participants-bar--button-left .str-video__call-controls__button--icon {
2242
2231
  width: 0.8rem;
2243
2232
  height: 0.8rem;
2244
2233
  }
2245
- .str-video__speaker-layout .str-video__speaker-layout--participants-bar-buttons-wrapper .str-video__speaker-layout--participants-bar-button-right {
2234
+ .str-video__speaker-layout .str-video__speaker-layout__participants-bar-buttons-wrapper .str-video__speaker-layout__participants-bar--button-right {
2246
2235
  position: absolute;
2247
2236
  right: 0.5rem;
2248
2237
  z-index: 1;
2249
2238
  }
2250
- .str-video__speaker-layout .str-video__speaker-layout--participants-bar-buttons-wrapper .str-video__speaker-layout--participants-bar-button-right .str-video__call-controls__button--icon {
2239
+ .str-video__speaker-layout .str-video__speaker-layout__participants-bar-buttons-wrapper .str-video__speaker-layout__participants-bar--button-right .str-video__call-controls__button--icon {
2251
2240
  width: 0.8rem;
2252
2241
  height: 0.8rem;
2253
2242
  }
2254
- .str-video__speaker-layout .str-video__speaker-layout--participants-bar-wrapper {
2243
+ .str-video__speaker-layout .str-video__speaker-layout__participants-bar-wrapper {
2255
2244
  overflow-x: auto;
2256
2245
  scrollbar-width: none;
2257
2246
  }
2258
- .str-video__speaker-layout .str-video__speaker-layout--participants-bar-wrapper::-webkit-scrollbar {
2247
+ .str-video__speaker-layout .str-video__speaker-layout__participants-bar-wrapper::-webkit-scrollbar {
2259
2248
  display: none;
2260
2249
  }
2261
- .str-video__speaker-layout .str-video__speaker-layout--participants-bar-wrapper .str-video__speaker-layout--participants-bar {
2250
+ .str-video__speaker-layout .str-video__speaker-layout__participants-bar-wrapper .str-video__speaker-layout__participants-bar {
2262
2251
  display: flex;
2263
2252
  flex-direction: row;
2264
2253
  align-items: center;
2265
2254
  }
2266
- .str-video__speaker-layout .str-video__speaker-layout--participants-bar-wrapper .str-video__speaker-layout--participants-bar .str-video__speaker-layout--participant-tile {
2255
+ .str-video__speaker-layout .str-video__speaker-layout__participants-bar-wrapper .str-video__speaker-layout__participants-bar .str-video__speaker-layout__participant-tile {
2267
2256
  width: 280px;
2268
2257
  min-width: 280px;
2269
2258
  max-width: 25vh;
@@ -1 +1 @@
1
- {"version":3,"sourceRoot":"","sources":["../../src/_base.scss","../../src/_global-layout-variables.scss","../../src/_global-theme-variables.scss","../../src/_palette-variables.scss","../../src/_variables.scss","../../src/Avatar/Avatar-layout.scss","../../src/Avatar/Avatar-theme.scss","../../src/_utils.scss","../../src/Button/Button-layout.scss","../../src/Button/Button-theme.scss","../../src/CallControls/CallControls-layout.scss","../../src/CallParticipantsScreenView.scss","../../src/CallParticipantsView.scss","../../src/CallParticipantList/CallParticipantList-layout.scss","../../src/CallParticipantList/CallParticipantList-theme.scss","../../src/CallParticipantList/CallParticiantListingItem-layout.scss","../../src/CallParticipantList/CallParticiantListingItem-theme.scss","../../src/CallRecodingList/CallRecordingList-layout.scss","../../src/CallRecodingList/CallRecordingList-theme.scss","../../src/CallStats.scss","../../src/DeviceSettings/DeviceSettings-layout.scss","../../src/DeviceSettings/DeviceSettings-theme.scss","../../src/LoadingIndicator/LoadingIndicator-layout.scss","../../src/LoadingIndicator/LoadingIndicator-theme.scss","../../src/Menu/Menu-layout.scss","../../src/Menu/Menu-theme.scss","../../src/Menu/GenericMenu-layout.scss","../../src/Menu/GenericMenu-theme.scss","../../src/Notification/Notification-layout.scss","../../src/Notification/Notification-theme.scss","../../src/PendingCallPanel/PendingCallPanel-layout.scss","../../src/PendingCallPanel/PendingCallPanel-theme.scss","../../src/Permissions/Permissions-layout.scss","../../src/Reaction/Reaction-layout.scss","../../src/Search/SearchInput-layout.scss","../../src/Search/SearchInput-theme.scss","../../src/StreamCall.scss","../../src/Tooltip/Tooltip-layout.scss","../../src/Tooltip/Tooltip-theme.scss","../../src/Video/Video-layout.scss","../../src/Video/Video-theme.scss","../../src/Video/VideoPlaceholder-layout.scss","../../src/Video/VideoPlaceholder-theme.scss","../../src/ParticipantBox/ParticipantBox-layout.scss","../../src/CallLayout/PaginatedGridLayout-layout.scss","../../src/CallLayout/SpeakerLayout-layout.scss","../../src/Icon/Icon-theme.scss","../../src/Icon/Icon-layout.scss","../../src/Debug.scss"],"names":[],"mappings":";AACE;AAAA;AAAA;EAGE;;AAGF;EACE;EACA;EACA;;;AAKF;EACE;EACA;EACA;EACA;;AAGF;AAAA;EAEE;EACA;;;ACzBJ;AACE;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;;;ACxDF;AACE;EACA;AACA;EACA;AACA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAAA;AAGA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;;;AAGF;AAAA;AAEE;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ACjLF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ACrDF;AAAA;AAAA;EAGE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ACtDF;EAJE;EACA;EAKA;;;AAGF;EATE;EACA;EAUA;EACA;EACA;;;ACZF;AACE;EACA;AAEA;EACA;AAEA;EACA;;;AAGF;ECSE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ADZF;EACE;EACA;EACA;EACA;EACA;;;AEtBF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;;;AAKN;EACE;;AAEA;EACE;;AAIF;EACE;EACA;;AAIA;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;;AAKN;EACE;EACA;EACA;EACA;EAGA;;;ACzEF;AACE;EACA;AAAA;AAAA;AAIA;EACA;AAAA;AAAA;AAIA;EACA;AAAA;AAAA;AAIA;EACA;AAAA;AAAA;;;AAKF;EFFE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AEFA;EACE;;AAGF;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;;AAGF;AAAA;EAEE;;;AAKF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAKF;EACE;;AAEA;EACE;;AAIJ;EACE;;AAEA;EACE;;AAIJ;EACE;;;AClFJ;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;;ACfN;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AACA;EACE;;AAGF;EACE;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAEA;EACE;EACA;;AAGJ;EACE;EACA;EACA;;AAEA;EACE;EACA;;AAKN;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;;;ACrGJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;AAOA;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;;ACjEN;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AACA;EACE;;AAEF;EACE;EACA;;AACA;EACE;EACA;EACA;;AAKN;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAKN;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;EAEE,QADiB;EAEjB,OAFiB;EAGjB,WAHiB;EAIjB,mBAJiB;;AAQrB;EACE;EACA;EACA;EACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;;;AC1GJ;EACE;AAAA;AAAA;EAGA;AAAA;AAAA;EAIA;EAEA;AAAA;AAAA;EAIA;EACA;AAAA;AAAA;EAIA;;;AAGF;EPFE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AOFA;EPLA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EOAE;EACA;;AAGF;EPXA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AOUA;EPjBA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AOeE;EPlCF,YOoCM;EPnCN,oBOmCM;EPlCN;EACA;EACA;EACA;EACA,WOkCM;EPjCN,mBOiCM;EPhCN,kBO6BM;;AAQN;EACE;;AAGF;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAEA;EP5DJ,YO8DU;EP7DV,oBO6DU;EP5DV;EACA;EACA;EACA;EACA,WO0DU;EPzDV,mBOyDU;EPxDV,kBOuDU;;;ACvEZ;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;ERbA;EACA;EAEA;EACA;EACA;;AQYA;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;;;ACvBJ;EACE;;AAIA;ETEF;EACA,oBSDQ;ETER;EACA;EACA;EACA;EACA,WSJQ;ETKR,mBSLQ;ETMR,kBSPQ;;AAKN;ETNF,YSQQ;ETPR,oBSOQ;ETNR;EACA;EACA;EACA;EACA,WSIQ;ETHR,mBSGQ;ETFR,kBSCQ;;AAKN;ETdF,YSgBQ;ETfR,oBSeQ;ETdR;EACA;EACA;EACA;EACA,WSYQ;ETXR,mBSWQ;ETVR,kBSSQ;;AAKN;ETtBF,YSwBQ;ETvBR,oBSuBQ;ETtBR;EACA;EACA;EACA;EACA,WSoBQ;ETnBR,mBSmBQ;ETlBR,kBSiBQ;;AAKN;ET9BF,YSgCQ;ET/BR,oBS+BQ;ET9BR;EACA;EACA;EACA;EACA,WS4BQ;ET3BR,mBS2BQ;ET1BR,kBSyBQ;;;ACzCV;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAIA;EACE;EACA;;;AAKN;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;;;AAKN;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAEA;EACE;EACA;;;AAQR;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EVnGF;EACA;EAEA;EACA;EACA;;;AWJF;EACE;;;AAGF;EXIE,YWFI;EXGJ,oBWHI;EXIJ;EACA;EACA;EACA;EACA,WWNI;EXOJ,mBWPI;EXQJ,kBWTI;;;AAKN;EACE;;;AAGF;EACE;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;;AAGF;EXtBA,YWwBI;EXvBJ,oBWuBI;EXtBJ;EACA;EACA;EACA;EACA,WWoBI;EXnBJ,mBWmBI;EXlBJ,kBWiBI;;;AAMN;EX/BE,YWiCI;EXhCJ,oBWgCI;EX/BJ;EACA;EACA;EACA;EACA,WW6BI;EX5BJ,mBW4BI;EX3BJ,kBW0BI;;;AAMJ;EACE;EACA;;AAGA;EACE;;AAGF;EACE;EACA;;AAGF;EXtDF,YWwDQ;EXvDR,oBWuDQ;EXtDR;EACA;EACA;EACA;EACA,WWoDQ;EXnDR,mBWmDQ;EXlDR,kBWiDQ;;AAKN;EX9DF,YWgEQ;EX/DR,oBW+DQ;EX9DR;EACA;EACA;EACA;EACA,WW4DQ;EX3DR,mBW2DQ;EX1DR,kBWyDQ;;;AAUN;EACE;;;ACtFN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAEA;EACE;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAIJ;EACE;;;AClDF;EACE;EACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;;AAEA;EACE;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAEF;EACE;;;ACrCR;AACE;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;;;AAGF;EdAE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AcHF;EdJE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AcCF;EACE;;AAEA;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;AACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;;AAEF;EACE;;;AAMR;EACE;EACA;EACA;;AAEA;EdrEA,YcuEM;EdtEN,oBcsEM;EdrEN;EACA;EACA;EACA;EACA,WcmEM;EdlEN,mBckEM;EdjEN,kBcgEM;;AAKN;EAEE;EACA;;;AAIJ;EACE;;;AC/FF;EACE;EACA;EACA;;;ACDF;EhBQE,YgBNE;EhBOF,oBgBPE;EhBQF;EACA;EACA;EACA;EACA,WAPmD;EAQnD,mBARmD;EASnD,kBgBbE;EAEF;EACA;EACA;;;AAGF;EACE;IACE;;EAEF;IACE;;;ACjBJ;EACE;;;ACDF;EACE;;;ACDF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AACA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAKJ;EACE;;AAEF;EACE;EACA;EACA;EACA;;;ACpCN;EACE;;AAGE;EACE;;AAGF;EACE;EACA;EACA;;;ACXN;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;;;ACXJ;EACE;EACA;EACA;;AAEA;EtBGA,YsBDI;EtBEJ,oBsBFI;EtBGJ;EACA;EACA;EACA;EACA,WsBLI;EtBMJ,mBsBNI;EtBOJ,kBsBRI;;AAKJ;EACE;;;AChBJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIA;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAKN;EACE;EACA;;;ACxCJ;EACE;EACA;EACA;;;AAME;EACE;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EAGA,cACE;EAEF;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AClCR;EACE;EACA;EACA;EACA;;AAEA;AAAA;EAEE;EACA;EACA;EACA;;AAGF;AAAA;EAEE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;;ACnDN;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;;ACZJ;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;;AAGF;AAAA;EAEE;EACA;EACA;;;ACxBJ;EACE;EACA;AAAA;AAAA;EAGA;AAAA;AAAA;EAGA;AAAA;EAEA;EACA;AAAA;EAEA;EAEA;EAEA;;;AAGF;EACE;;;AAEF;E5BHE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4BDA;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAIJ;E5B9BA,Y4BgCI;E5B/BJ,oB4B+BI;E5B9BJ;EACA;EACA;EACA;EACA,W4B4BI;E5B3BJ,mB4B2BI;E5B1BJ,kB4ByBI;;AAIJ;EACE;;AAEA;E5BxCF,Y4B0CM;E5BzCN,oB4ByCM;E5BxCN;EACA;EACA;EACA;EACA,W4BsCM;E5BrCN,mB4BqCM;E5BpCN,kB4BmCM;;;ACrDR;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AC9BJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ACNF;AACE;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;;;AAGF;E/BNE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;E+BCA;;AAEA;EACE;;;AAIJ;EACE;EACA;EACA;EACA;;;ACzCF;EACE;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EAEA,OADkB;EAElB;;AAEA;EAEE,QADiB;EAEjB,OAFiB;EAGjB,WAHiB;;;AAOrB;EACE;EACA;EACA;;AAEA;EAEE;;AAGF;EACE;;;ACpCJ;AACE;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;;;AAIF;EjCJE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EiCDA;;;AC5BF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;;ACnBJ;EACE;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;;;ACXJ;AAAA;EAEE;EACA;EACA;EACA;EACA;EACA;;AAEA;AAAA;AAAA;AAAA;EAEE;EACA;;AAIA;AAAA;AAAA;AAAA;EAEE;;AAIJ;AAAA;EACE;EACA;EACA;EACA;EACA;;AAIA;AAAA;AAAA;AAAA;EAEE;;AAIJ;AAAA;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;AAAA;EACE;EACA;EACA;EACA;;AAIJ;AAAA;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;AAAA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAWA;AAAA;EAPE,OADY;EAEZ,QAFY;EAGZ,WAHY;EAIZ,mBAJY;EAKZ;EAKA;EACA;;AAGF;AAAA;EAbE,OADY;EAEZ,QAFY;EAGZ,WAHY;EAIZ,mBAJY;EAKZ;EAWA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;;AAGF;AAAA;EA1BE,OADY;EAEZ,QAFY;EAGZ,WAHY;EAIZ,mBAJY;EAKZ;EAwBA;EACA;;AAGF;AAAA;EAhCE,OADY;EAEZ,QAFY;EAGZ,WAHY;EAIZ,mBAJY;EAKZ;EA8BA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;AAAA;EA9CE,OADY;EAEZ,QAFY;EAGZ,WAHY;EAIZ,mBAJY;EAKZ;EA4CA;EACA;EACA;;AAIJ;AAAA;EACE;EACA;EACA;EACA;;AAEA;AAAA;EACE;;AAEF;AAAA;EACE;;AAEF;AAAA;EACE;;;AC7IR;EACE;;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;;AAEA;EACE;;AAIA;EACE;;AAIF;EACE;;AAIF;EACE;;;ACrCR;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAGF;AAAA;EAEE;;AAIJ;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAEA;EACE;EACA;;AAGJ;EACE;EACA;EACA;;AAEA;EACE;EACA;;AAKN;EACE;EACA;;AACA;EACE;;AAGF;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EAEA;EACA;;;ACzFR;EACE;;AAEA;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;;AC/JJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ACTF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA","file":"styles.css"}
1
+ {"version":3,"sourceRoot":"","sources":["../../src/_base.scss","../../src/_global-layout-variables.scss","../../src/_global-theme-variables.scss","../../src/_palette-variables.scss","../../src/_variables.scss","../../src/Avatar/Avatar-layout.scss","../../src/Avatar/Avatar-theme.scss","../../src/_utils.scss","../../src/Button/Button-layout.scss","../../src/Button/Button-theme.scss","../../src/CallControls/CallControls-layout.scss","../../src/CallParticipantsScreenView.scss","../../src/CallParticipantsView.scss","../../src/CallParticipantList/CallParticipantList-layout.scss","../../src/CallParticipantList/CallParticipantList-theme.scss","../../src/CallParticipantList/CallParticiantListingItem-layout.scss","../../src/CallParticipantList/CallParticiantListingItem-theme.scss","../../src/CallRecodingList/CallRecordingList-layout.scss","../../src/CallRecodingList/CallRecordingList-theme.scss","../../src/CallStats.scss","../../src/DeviceSettings/DeviceSettings-layout.scss","../../src/DeviceSettings/DeviceSettings-theme.scss","../../src/LoadingIndicator/LoadingIndicator-layout.scss","../../src/LoadingIndicator/LoadingIndicator-theme.scss","../../src/Menu/Menu-layout.scss","../../src/Menu/Menu-theme.scss","../../src/Menu/GenericMenu-layout.scss","../../src/Menu/GenericMenu-theme.scss","../../src/Notification/Notification-layout.scss","../../src/Notification/Notification-theme.scss","../../src/PendingCallPanel/PendingCallPanel-layout.scss","../../src/PendingCallPanel/PendingCallPanel-theme.scss","../../src/Permissions/Permissions-layout.scss","../../src/Reaction/Reaction-layout.scss","../../src/Search/SearchInput-layout.scss","../../src/Search/SearchInput-theme.scss","../../src/StreamCall.scss","../../src/Tooltip/Tooltip-layout.scss","../../src/Tooltip/Tooltip-theme.scss","../../src/Video/Video-layout.scss","../../src/Video/VideoPlaceholder-layout.scss","../../src/Video/VideoPlaceholder-theme.scss","../../src/VideoPreview/VideoPreview-layout.scss","../../src/VideoPreview/VideoPreview-theme.scss","../../src/ParticipantView/ParticipantView-layout.scss","../../src/CallLayout/PaginatedGridLayout-layout.scss","../../src/CallLayout/SpeakerLayout-layout.scss","../../src/Icon/Icon-theme.scss","../../src/Icon/Icon-layout.scss","../../src/Debug.scss"],"names":[],"mappings":";AACE;AAAA;AAAA;EAGE;;AAGF;EACE;EACA;EACA;;;AAKF;EACE;EACA;EACA;EACA;;AAGF;AAAA;EAEE;EACA;;;ACzBJ;AACE;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;;;ACxDF;AACE;EACA;AACA;EACA;AACA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAAA;AAGA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;;;AAGF;AAAA;AAEE;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ACjLF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ACrDF;AAAA;AAAA;EAGE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ACtDF;EAJE;EACA;EAKA;;;AAGF;EATE;EACA;EAUA;EACA;EACA;;;ACZF;AACE;EACA;AAEA;EACA;AAEA;EACA;;;AAGF;ECSE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ADZF;EACE;EACA;EACA;EACA;EACA;;;AEtBF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;;;AAKN;EACE;;AAEA;EACE;;AAIF;EACE;EACA;;AAIA;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;;AAKN;EACE;EACA;EACA;EACA;EAGA;;;ACzEF;AACE;EACA;AAAA;AAAA;AAIA;EACA;AAAA;AAAA;AAIA;EACA;AAAA;AAAA;AAIA;EACA;AAAA;AAAA;;;AAKF;EFFE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AEFA;EACE;;AAGF;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;;AAGF;AAAA;EAEE;;;AAKF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAKF;EACE;;AAEA;EACE;;AAIJ;EACE;;AAEA;EACE;;AAIJ;EACE;;;AClFJ;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;;ACfN;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AACA;EACE;;AAGF;EACE;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAEA;EACE;EACA;;AAGJ;EACE;EACA;EACA;;AAEA;EACE;EACA;;AAKN;EACE;;;ACzFJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;AAOA;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;AAFF;EACE;EACA;;;ACjEN;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AACA;EACE;;AAEF;EACE;EACA;;AACA;EA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EACE;;AAGF;EACE;;AAEA;EACE;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAIJ;EACE;;;AClDF;EACE;EACA;;;AAIJ;EACE;EACA;;;AAGF;EACE;;AAEA;EACE;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAEF;EACE;;;ACrCR;AACE;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;;;AAGF;EdAE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AcHF;EdJE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AcCF;EACE;;AAEA;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;AACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;;AAEF;EACE;;;AAMR;EACE;EACA;EACA;;AAEA;EdrEA,YcuEM;EdtEN,oBcsEM;EdrEN;EACA;EACA;EACA;EACA,WcmEM;EdlEN,mBckEM;EdjEN,kBcgEM;;AAKN;EAEE;EACA;;;AAIJ;EACE;;;AC/FF;EACE;EACA;EACA;;;ACDF;EhBQE,YgBNE;EhBOF,oBgBPE;EhBQF;EACA;EACA;EACA;EACA,WAPmD;EAQnD,mBARmD;EASnD,kBgBbE;EAEF;EACA;EACA;;;AAGF;EACE;IACE;;EAEF;IACE;;;ACjBJ;EACE;;;ACDF;EACE;;;ACDF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AACA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAKJ;EACE;;AAEF;EACE;EACA;EACA;EACA;;;ACpCN;EACE;;AAGE;EACE;;AAGF;EACE;EACA;EACA;;;ACXN;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;;;ACXJ;EACE;EACA;EACA;;AAEA;EtBGA,YsBDI;EtBEJ,oBsBFI;EtBGJ;EACA;EACA;EACA;EACA,WsBLI;EtBMJ,mBsBNI;EtBOJ,kBsBRI;;AAKJ;EACE;;;AChBJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIA;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAKN;EACE;EACA;;;ACxCJ;EACE;EACA;EACA;;;AAME;EACE;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EAGA,cACE;EAEF;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AClCR;EACE;EACA;EACA;EACA;;AAEA;AAAA;EAEE;EACA;EACA;EACA;;AAGF;AAAA;EAEE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;;ACnDN;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;;;ACdJ;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;;AAGF;AAAA;EAEE;EACA;EACA;;;ACxBJ;EACE;EACA;AAAA;AAAA;EAGA;AAAA;AAAA;EAGA;AAAA;EAEA;EACA;AAAA;EAEA;EAEA;EAEA;;;AAGF;EACE;;;AAEF;E5BHE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;A4BDA;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAIJ;E5B9BA,Y4BgCI;E5B/BJ,oB4B+BI;E5B9BJ;EACA;EACA;EACA;EACA,W4B4BI;E5B3BJ,mB4B2BI;E5B1BJ,kB4ByBI;;AAIJ;EACE;;AAEA;E5BxCF,Y4B0CM;E5BzCN,oB4ByCM;E5BxCN;EACA;EACA;EACA;EACA,W4BsCM;E5BrCN,mB4BqCM;E5BpCN,kB4BmCM;;;ACrDR;EACE;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;;AC9BJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ACNF;AACE;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;AAEA;EACA;;;AAGF;E/BNE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;E+BCA;;AAEA;EACE;;;AAIJ;EACE;EACA;EACA;EACA;;;ACzCF;EACE;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;;ACXJ;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;;ACnBJ;EACE;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;;;ACbJ;EACE;EACA;EACA;EAEA,OADkB;EAElB;;AAEA;EACE;EACA;EACA;;AAGF;EAEE,QADiB;EAEjB,OAFiB;EAGjB,WAHiB;;AAMnB;EACE;;AAGF;EACE;;;ACxBJ;AACE;EACA;AAEA;EACA;AAAA;AAAA;AAIA;EACA;AAAA;AAAA;AAIA;EACA;AAAA;AAGA;EACA;AAAA;AAGA;EACA;AAAA;AAGA;EACA;AAAA;;;AAIF;EpCXE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EoCMA;;;ACjCF;AAAA;EAEE;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;;AAEA;AAAA;EACE;;AAGF;AAAA;AAAA;AAAA;EAEE;EACA;;AAIA;AAAA;AAAA;AAAA;EAEE;;AAIJ;AAAA;EACE;EACA;EACA;EACA;;AAGF;AAAA;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;AAAA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAWA;AAAA;EAPE,OADY;EAEZ,QAFY;EAGZ,WAHY;EAIZ,mBAJY;EAKZ;EAKA;EACA;;AAGF;AAAA;EAbE,OADY;EAEZ,QAFY;EAGZ,WAHY;EAIZ,mBAJY;EAKZ;EAWA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;;AAGF;AAAA;EA1BE,OADY;EAEZ,QAFY;EAGZ,WAHY;EAIZ,mBAJY;EAKZ;EAwBA;EACA;;AAGF;AAAA;EAhCE,OADY;EAEZ,QAFY;EAGZ,WAHY;EAIZ,mBAJY;EAKZ;EA8BA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;AAAA;EA9CE,OADY;EAEZ,QAFY;EAGZ,WAHY;EAIZ,mBAJY;EAKZ;EA4CA;EACA;EACA;;AAIJ;AAAA;EACE;EACA;EACA;EACA;;AAEA;AAAA;EACE;;AAEF;AAAA;EACE;;AAEF;AAAA;EACE;;;AC7HR;EACE;;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;;AAEA;EACE;;AAIA;EACE;;AAIF;EACE;;AAIF;EACE;;;ACrCR;EACE;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EAGE;;AAGF;EACE;;AAGF;EACE;;AAGF;AAAA;EAEE;;AAIJ;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAEA;EACE;EACA;;AAGJ;EACE;EACA;EACA;;AAEA;EACE;EACA;;AAKN;EACE;EACA;;AACA;EACE;;AAGF;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EAEA;EACA;;;ACjGR;EACE;;AAEA;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;;AC/JJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ACTF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA","file":"styles.css"}
@@ -1,11 +1,9 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import clsx from 'clsx';
3
3
  import { MenuToggle } from '../Menu';
4
- import { forwardRef, isValidElement, } from 'react';
4
+ import { forwardRef } from 'react';
5
5
  import { IconButton } from './IconButton';
6
- const isComponentType = (elementOrComponent) => {
7
- return !isValidElement(elementOrComponent);
8
- };
6
+ import { isComponentType } from '../../utilities';
9
7
  export const CompositeButton = forwardRef(({ caption, children, active, Menu, menuPlacement }, ref) => {
10
8
  return (_jsxs("div", Object.assign({ className: "str-video__composite-button", ref: ref }, { children: [_jsxs("div", Object.assign({ className: clsx('str-video__composite-button__button-group', {
11
9
  'str-video__composite-button__button-group--active': active,
@@ -1 +1 @@
1
- {"version":3,"file":"CompositeButton.js","sourceRoot":"","sources":["../../../../src/components/Button/CompositeButton.tsx"],"names":[],"mappings":";AAAA,OAAO,IAAI,MAAM,MAAM,CAAC;AACxB,OAAO,EAAE,UAAU,EAAyB,MAAM,SAAS,CAAC;AAC5D,OAAO,EAEL,UAAU,EACV,cAAc,GAEf,MAAM,OAAO,CAAC;AACf,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAU1C,MAAM,eAAe,GAAG,CACtB,kBAA+C,EACV,EAAE;IACvC,OAAO,CAAC,cAAc,CAAC,kBAAkB,CAAC,CAAC;AAC7C,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,eAAe,GAAG,UAAU,CAGvC,CAAC,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,aAAa,EAAE,EAAE,GAAG,EAAE,EAAE;IAC5D,OAAO,CACL,6BAAK,SAAS,EAAC,6BAA6B,EAAC,GAAG,EAAE,GAAG,iBACnD,6BACE,SAAS,EAAE,IAAI,CAAC,2CAA2C,EAAE;oBAC3D,mDAAmD,EAAE,MAAM;iBAC5D,CAAC,iBAED,QAAQ,EACR,IAAI,IAAI,CACP,KAAC,UAAU,kBAAC,SAAS,EAAE,aAAa,EAAE,YAAY,EAAE,gBAAgB,gBACjE,eAAe,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,KAAC,IAAI,KAAG,CAAC,CAAC,CAAC,IAAI,IAC7B,CACd,KACG,EACL,OAAO,IAAI,CACV,4BAAK,SAAS,EAAC,sCAAsC,gBAAE,OAAO,IAAO,CACtE,KACG,CACP,CAAC;AACJ,CAAC,CAAC,CAAC;AAEH,MAAM,gBAAgB,GAAG,UAAU,CACjC,CAAC,EAAE,SAAS,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,CACtB,KAAC,UAAU,IACT,SAAS,EAAE,+BAA+B,EAC1C,IAAI,EAAE,SAAS,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,UAAU,EAC3C,KAAK,EAAC,oBAAoB,EAC1B,GAAG,EAAE,GAAG,GACR,CACH,CACF,CAAC"}
1
+ {"version":3,"file":"CompositeButton.js","sourceRoot":"","sources":["../../../../src/components/Button/CompositeButton.tsx"],"names":[],"mappings":";AAAA,OAAO,IAAI,MAAM,MAAM,CAAC;AACxB,OAAO,EAAE,UAAU,EAAyB,MAAM,SAAS,CAAC;AAC5D,OAAO,EAAiB,UAAU,EAAqB,MAAM,OAAO,CAAC;AAGrE,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AASlD,MAAM,CAAC,MAAM,eAAe,GAAG,UAAU,CAGvC,CAAC,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,aAAa,EAAE,EAAE,GAAG,EAAE,EAAE;IAC5D,OAAO,CACL,6BAAK,SAAS,EAAC,6BAA6B,EAAC,GAAG,EAAE,GAAG,iBACnD,6BACE,SAAS,EAAE,IAAI,CAAC,2CAA2C,EAAE;oBAC3D,mDAAmD,EAAE,MAAM;iBAC5D,CAAC,iBAED,QAAQ,EACR,IAAI,IAAI,CACP,KAAC,UAAU,kBAAC,SAAS,EAAE,aAAa,EAAE,YAAY,EAAE,gBAAgB,gBACjE,eAAe,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,KAAC,IAAI,KAAG,CAAC,CAAC,CAAC,IAAI,IAC7B,CACd,KACG,EACL,OAAO,IAAI,CACV,4BAAK,SAAS,EAAC,sCAAsC,gBAAE,OAAO,IAAO,CACtE,KACG,CACP,CAAC;AACJ,CAAC,CAAC,CAAC;AAEH,MAAM,gBAAgB,GAAG,UAAU,CACjC,CAAC,EAAE,SAAS,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,CACtB,KAAC,UAAU,IACT,SAAS,EAAE,+BAA+B,EAC1C,IAAI,EAAE,SAAS,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,UAAU,EAC3C,KAAK,EAAC,oBAAoB,EAC1B,GAAG,EAAE,GAAG,GACR,CACH,CACF,CAAC"}
@@ -2,7 +2,7 @@ import { jsxs as _jsxs, jsx as _jsx, Fragment as _Fragment } from "react/jsx-run
2
2
  import { useState, useEffect } from 'react';
3
3
  import { SfuModels } from '@stream-io/video-client';
4
4
  import { useLocalParticipant, useParticipants, } from '@stream-io/video-react-bindings';
5
- import { ParticipantBox } from '../../core/components/ParticipantBox/ParticipantBox';
5
+ import { ParticipantView, DefaultParticipantViewUI } from '../../core';
6
6
  import { Video } from '../Video';
7
7
  import { useVerticalScrollPosition } from './hooks';
8
8
  import { IconButton } from '../Button';
@@ -27,8 +27,8 @@ export const CallParticipantsScreenView = (props) => {
27
27
  const scrollPosition = useVerticalScrollPosition(scrollWrapper);
28
28
  const [overlayVisible, setOverlayVisible] = useState(() => (firstScreenSharingParticipant === null || firstScreenSharingParticipant === void 0 ? void 0 : firstScreenSharingParticipant.sessionId) === (localParticipant === null || localParticipant === void 0 ? void 0 : localParticipant.sessionId));
29
29
  return (_jsxs("div", Object.assign({ className: "str-video__call-participants-screen-view" }, { children: [_jsx("div", Object.assign({ className: "str-video__call-participants-screen-view__screen" }, { children: firstScreenSharingParticipant && (_jsxs(_Fragment, { children: [_jsxs("span", Object.assign({ className: "str-video__call-participants-screen-view__screen__presenter" }, { children: [firstScreenSharingParticipant.name ||
30
- firstScreenSharingParticipant.userId, ' ', "is presenting their screen."] })), _jsxs("div", Object.assign({ className: "str-video__call-participants-screen-view__wrapper" }, { children: [_jsx(Video, { className: "str-video__screen-share", participant: firstScreenSharingParticipant, call: call, kind: "screen", autoPlay: true, muted: true }), overlayVisible && (_jsxs("div", Object.assign({ className: "str-video__call-participants-screen-view__overlay" }, { children: [_jsxs("div", { children: [_jsx("div", { children: "To avoid an infinity mirror, don't share your entire screen or browser window." }), _jsx("div", { children: "Share just a single tab or a different window instead." })] }), _jsx("button", Object.assign({ type: "button", onClick: () => {
30
+ firstScreenSharingParticipant.userId, ' ', "is presenting their screen."] })), _jsxs("div", Object.assign({ className: "str-video__call-participants-screen-view__wrapper" }, { children: [_jsx(Video, { className: "str-video__screen-share", participant: firstScreenSharingParticipant, kind: "screen", autoPlay: true, muted: true }), overlayVisible && (_jsxs("div", Object.assign({ className: "str-video__call-participants-screen-view__overlay" }, { children: [_jsxs("div", { children: [_jsx("div", { children: "To avoid an infinity mirror, don't share your entire screen or browser window." }), _jsx("div", { children: "Share just a single tab or a different window instead." })] }), _jsx("button", Object.assign({ type: "button", onClick: () => {
31
31
  setOverlayVisible(false);
32
- } }, { children: "Got it" }))] })))] }))] })) })), _jsxs("div", Object.assign({ className: "str-video__call-participants-screen-view__buttons-wrapper" }, { children: [scrollPosition && scrollPosition !== 'top' && (_jsx(IconButton, { onClick: scrollUpClickHandler, icon: "caret-up", className: "str-video__call-participants-screen-view__button-up" })), _jsx("div", Object.assign({ ref: setScrollWrapper, className: "str-video__call-participants-screen-view__participants-wrapper" }, { children: _jsx("div", Object.assign({ className: "str-video__call-participants-screen-view__participants" }, { children: allParticipants.map((participant) => (_jsx(ParticipantBox, { participant: participant, call: call, sinkId: localParticipant === null || localParticipant === void 0 ? void 0 : localParticipant.audioOutputDeviceId }, participant.sessionId))) })) })), scrollPosition && scrollPosition !== 'bottom' && (_jsx(IconButton, { onClick: scrollDownClickHandler, icon: "caret-down", className: "str-video__call-participants-screen-view__button-down" }))] }))] })));
32
+ } }, { children: "Got it" }))] })))] }))] })) })), _jsxs("div", Object.assign({ className: "str-video__call-participants-screen-view__buttons-wrapper" }, { children: [scrollPosition && scrollPosition !== 'top' && (_jsx(IconButton, { onClick: scrollUpClickHandler, icon: "caret-up", className: "str-video__call-participants-screen-view__button-up" })), _jsx("div", Object.assign({ ref: setScrollWrapper, className: "str-video__call-participants-screen-view__participants-wrapper" }, { children: _jsx("div", Object.assign({ className: "str-video__call-participants-screen-view__participants" }, { children: allParticipants.map((participant) => (_jsx(ParticipantView, { participant: participant, sinkId: localParticipant === null || localParticipant === void 0 ? void 0 : localParticipant.audioOutputDeviceId, ParticipantViewUI: DefaultParticipantViewUI }, participant.sessionId))) })) })), scrollPosition && scrollPosition !== 'bottom' && (_jsx(IconButton, { onClick: scrollDownClickHandler, icon: "caret-down", className: "str-video__call-participants-screen-view__button-down" }))] }))] })));
33
33
  };
34
34
  //# sourceMappingURL=CallParticipantsScreenView.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"CallParticipantsScreenView.js","sourceRoot":"","sources":["../../../../src/components/StreamCall/CallParticipantsScreenView.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"CallParticipantsScreenView.js","sourceRoot":"","sources":["../../../../src/components/StreamCall/CallParticipantsScreenView.tsx"],"names":[],"mappings":"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"}