stream-chat-react 12.0.0-rc.3 → 12.0.0-rc.5
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.
- package/README.md +1 -1
- package/dist/components/Thread/Thread.d.ts +0 -2
- package/dist/components/Thread/Thread.js +1 -2
- package/dist/components/Window/Window.d.ts +1 -3
- package/dist/components/Window/Window.js +2 -2
- package/dist/css/v2/index.css +2 -2
- package/dist/css/v2/index.layout.css +2 -2
- package/dist/index.cjs.js +2 -4
- package/dist/index.cjs.js.map +2 -2
- package/dist/scss/v2/Channel/Channel-layout.scss +0 -4
- package/dist/scss/v2/Message/Message-layout.scss +5 -3
- package/dist/scss/v2/MessageReactions/MessageReactionsSelector-layout.scss +9 -2
- package/dist/scss/v2/Thread/Thread-layout.scss +0 -5
- package/dist/scss/v2/_base.scss +1 -0
- package/package.json +6 -3
|
@@ -520,9 +520,11 @@
|
|
|
520
520
|
}
|
|
521
521
|
|
|
522
522
|
.str-chat__message-with-touch-support {
|
|
523
|
-
-
|
|
524
|
-
|
|
525
|
-
|
|
523
|
+
.str-chat__message-bubble {
|
|
524
|
+
-webkit-touch-callout: none;
|
|
525
|
+
-webkit-user-select: none;
|
|
526
|
+
user-select: none;
|
|
527
|
+
}
|
|
526
528
|
|
|
527
529
|
&.str-chat__message-menu-opened {
|
|
528
530
|
.str-chat__attachments-container,
|
|
@@ -7,13 +7,20 @@
|
|
|
7
7
|
inset-block-end: 100%;
|
|
8
8
|
|
|
9
9
|
&.str-chat-angular-v5__reaction-selector {
|
|
10
|
+
margin: var(--str-chat__spacing-2);
|
|
10
11
|
position: static;
|
|
12
|
+
justify-content: flex-start;
|
|
11
13
|
|
|
12
14
|
.str-chat__message-reactions-options {
|
|
13
15
|
max-width: 100%;
|
|
14
|
-
overflow-y:
|
|
15
|
-
overflow-x:
|
|
16
|
+
overflow-y: hidden;
|
|
17
|
+
overflow-x: auto;
|
|
16
18
|
scrollbar-width: none;
|
|
19
|
+
padding: 0;
|
|
20
|
+
|
|
21
|
+
.str-chat__message-reactions-option {
|
|
22
|
+
flex-shrink: 0;
|
|
23
|
+
}
|
|
17
24
|
}
|
|
18
25
|
}
|
|
19
26
|
|
|
@@ -46,11 +46,6 @@
|
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
-
.str-chat__main-panel--hideOnThread + .str-chat__thread-container {
|
|
50
|
-
// occupy the whole space by previously occupied by the main message list container
|
|
51
|
-
flex: 1;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
49
|
.str-chat__parent-message-li {
|
|
55
50
|
padding: var(--str-chat__spacing-2);
|
|
56
51
|
}
|
package/dist/scss/v2/_base.scss
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stream-chat-react",
|
|
3
|
-
"version": "12.0.0-rc.
|
|
3
|
+
"version": "12.0.0-rc.5",
|
|
4
4
|
"description": "React components to create chat conversations or livestream style chat",
|
|
5
5
|
"author": "GetStream",
|
|
6
6
|
"homepage": "https://getstream.io/chat/",
|
|
@@ -48,7 +48,10 @@
|
|
|
48
48
|
"typesVersions": {
|
|
49
49
|
"*": {
|
|
50
50
|
"emojis": [
|
|
51
|
-
"./dist/
|
|
51
|
+
"./dist/plugins/Emojis/index.d.ts"
|
|
52
|
+
],
|
|
53
|
+
"mp3-encoder": [
|
|
54
|
+
"./dist/plugins/encoders/mp3.d.ts"
|
|
52
55
|
]
|
|
53
56
|
}
|
|
54
57
|
},
|
|
@@ -150,7 +153,7 @@
|
|
|
150
153
|
"@semantic-release/changelog": "^6.0.2",
|
|
151
154
|
"@semantic-release/git": "^10.0.1",
|
|
152
155
|
"@stream-io/rollup-plugin-node-builtins": "^2.1.5",
|
|
153
|
-
"@stream-io/stream-chat-css": "5.0.0-rc.
|
|
156
|
+
"@stream-io/stream-chat-css": "5.0.0-rc.2",
|
|
154
157
|
"@testing-library/jest-dom": "^6.1.4",
|
|
155
158
|
"@testing-library/react": "^13.1.1",
|
|
156
159
|
"@testing-library/react-hooks": "^8.0.0",
|