stream-chat-react 13.2.0 → 13.2.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.
@@ -34980,7 +34980,7 @@ var useChat = ({
34980
34980
  };
34981
34981
  (0, import_react269.useEffect)(() => {
34982
34982
  if (!client) return;
34983
- const version = "13.2.0";
34983
+ const version = "13.2.1";
34984
34984
  const userAgent = client.getUserAgent();
34985
34985
  if (!userAgent.includes("stream-chat-react")) {
34986
34986
  client.setUserAgent(`stream-chat-react-${version}-${userAgent}`);
@@ -36850,7 +36850,7 @@ var useChat = ({
36850
36850
  };
36851
36851
  (0, import_react269.useEffect)(() => {
36852
36852
  if (!client) return;
36853
- const version = "13.2.0";
36853
+ const version = "13.2.1";
36854
36854
  const userAgent = client.getUserAgent();
36855
36855
  if (!userAgent.includes("stream-chat-react")) {
36856
36856
  client.setUserAgent(`stream-chat-react-${version}-${userAgent}`);
@@ -1,17 +1,20 @@
1
- .str-chat__form-field-error {
2
- font-size: 0.75rem;
3
- color: var(--str-chat__danger-color)
4
- }
1
+ .str-chat {
2
+ // hide spin buttons form input of type number
3
+ /* Chrome, Safari, Edge, Opera */
4
+
5
+ input::-webkit-outer-spin-button,
6
+ input::-webkit-inner-spin-button {
7
+ -webkit-appearance: none;
8
+ margin: 0;
9
+ }
5
10
 
6
- // hide spin buttons form input of type number
7
- /* Chrome, Safari, Edge, Opera */
8
- input::-webkit-outer-spin-button,
9
- input::-webkit-inner-spin-button {
10
- -webkit-appearance: none;
11
- margin: 0;
11
+ /* Firefox */
12
+ input[type='number'] {
13
+ -moz-appearance: textfield;
14
+ }
12
15
  }
13
16
 
14
- /* Firefox */
15
- input[type=number] {
16
- -moz-appearance: textfield;
17
- }
17
+ .str-chat__form-field-error {
18
+ font-size: 0.75rem;
19
+ color: var(--str-chat__danger-color);
20
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stream-chat-react",
3
- "version": "13.2.0",
3
+ "version": "13.2.1",
4
4
  "description": "React components to create chat conversations or livestream style chat",
5
5
  "author": "GetStream",
6
6
  "homepage": "https://getstream.io/chat/",
@@ -183,7 +183,7 @@
183
183
  "@playwright/test": "^1.42.1",
184
184
  "@semantic-release/changelog": "^6.0.3",
185
185
  "@semantic-release/git": "^10.0.1",
186
- "@stream-io/stream-chat-css": "^5.11.0",
186
+ "@stream-io/stream-chat-css": "^5.11.1",
187
187
  "@testing-library/dom": "^10.4.0",
188
188
  "@testing-library/jest-dom": "^6.6.3",
189
189
  "@testing-library/react": "^16.2.0",