stream-chat-angular 4.31.2 → 4.32.1

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.
@@ -18,6 +18,23 @@
18
18
  display: none !important;
19
19
  }
20
20
  }
21
+
22
+ // Quick fix for: https://github.com/tonysamperi/ngx-popperjs/issues/52
23
+ &.google-chrome {
24
+ popper-content {
25
+ .ngxp__container {
26
+ display: block !important;
27
+ position: absolute;
28
+ right: 0;
29
+ bottom: 0;
30
+ opacity: 0;
31
+
32
+ &[aria-hidden="true"] {
33
+ visibility: hidden;
34
+ }
35
+ }
36
+ }
37
+ }
21
38
  }
22
39
 
23
40
  // Fixes icon sizing problem in Angular SDK
@@ -1,5 +1,5 @@
1
1
  /* declare a font faces for our Emoji Replacement font, based on the default font used by Stream Chat React */
2
- $assetsPath: '../../assets';
2
+ $assetsPath: '../../assets' !default;
3
3
  $emoji-flag-unicode-range: U+1F1E6-1F1FF;
4
4
 
5
5
  /* png based woff for most browsers */
@@ -166,7 +166,9 @@ $ig-shadow: 0 2px 2px lighten($ig-black, 10%);
166
166
  }
167
167
 
168
168
  &.left,
169
- &.right {
169
+ &.right,
170
+ &.image-gallery-thumbnails-left,
171
+ &.image-gallery-thumbnails-right {
170
172
  .image-gallery-slide .image-gallery-image {
171
173
  max-height: 100vh;
172
174
  }
@@ -177,7 +179,9 @@ $ig-shadow: 0 2px 2px lighten($ig-black, 10%);
177
179
  position: relative;
178
180
 
179
181
  &.left,
180
- &.right {
182
+ &.right,
183
+ &.image-gallery-thumbnails-left,
184
+ &.image-gallery-thumbnails-right {
181
185
  display: inline-block;
182
186
  width: calc(100% - 110px); // 100px + 10px for margin
183
187
 
@@ -205,7 +209,8 @@ $ig-shadow: 0 2px 2px lighten($ig-black, 10%);
205
209
  top: 0;
206
210
  width: 100%;
207
211
 
208
- &.center {
212
+ &.center,
213
+ &.image-gallery-center {
209
214
  position: relative;
210
215
  }
211
216
 
@@ -166,7 +166,9 @@ $ig-shadow: 0 2px 2px lighten($ig-black, 10%);
166
166
  }
167
167
 
168
168
  &.left,
169
- &.right {
169
+ &.right,
170
+ &.image-gallery-thumbnails-left,
171
+ &.image-gallery-thumbnails-right {
170
172
  .image-gallery-slide .image-gallery-image {
171
173
  max-height: 100vh;
172
174
  }
@@ -177,7 +179,9 @@ $ig-shadow: 0 2px 2px lighten($ig-black, 10%);
177
179
  position: relative;
178
180
 
179
181
  &.left,
180
- &.right {
182
+ &.right,
183
+ &.image-gallery-thumbnails-left,
184
+ &.image-gallery-thumbnails-right {
181
185
  display: inline-block;
182
186
  width: calc(100% - 110px); // 100px + 10px for margin
183
187
 
@@ -205,7 +209,8 @@ $ig-shadow: 0 2px 2px lighten($ig-black, 10%);
205
209
  top: 0;
206
210
  width: 100%;
207
211
 
208
- &.center {
212
+ &.center,
213
+ &.image-gallery-center {
209
214
  position: relative;
210
215
  }
211
216
 
@@ -1 +1 @@
1
- export const version = '4.31.2';
1
+ export const version = '4.32.1';