You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Version 4 of stream-chat-angular brings a new and improved theming system. To use the new system please refer to our new [theming guide](../theming/introduction.mdx).
9
+
10
+
## Theme-v1
11
+
12
+
The old theme can still be used with the latest SDK versions however, you might need to update your custom CSS as some changes were introduced to theme-v1.
13
+
14
+
Theme-v1 is now deprecated and will be removed in a future release.
15
+
16
+
## Theard layout
17
+
18
+
Previously you had to provide a selector for the message list and message input component projected inside the [thread component](../components/ThreadComponent.mdx).
19
+
20
+
```html
21
+
<stream-threadname="thread">
22
+
<stream-message-list
23
+
name="thread-message-list"
24
+
mode="thread"
25
+
></stream-message-list>
26
+
<stream-message-input
27
+
mode="thread"
28
+
name="thread-message-input"
29
+
></stream-message-input>
30
+
</stream-thread>
31
+
```
32
+
33
+
You don't need to provide those selectors anymore, anything inside the content part of `stream-thread` HTML element will be projected inside the thread component:
0 commit comments