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
Copy file name to clipboardExpand all lines: docusaurus/docs/Angular/components/channel-header.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ If you want to, you can create your own custom channel header, here is how to us
26
26
</stream-channel>
27
27
```
28
28
29
-
If you create your own channel header, you can use the [`ChannelService`](../services/channel.mdx) to access the currently active channel. Please note that, the default channel header also contains the menu button to [toggle the channel list](../services/channel-list-toggle.mdx). Here is a simple implementation of a custom channel header to guide you:
29
+
If you create your own channel header, you can use the [`ChannelService`](../services/ChannelService.mdx) to access the currently active channel. Please note that, the default channel header also contains the menu button to [toggle the channel list](../services/ChannelListToggleService.mdx). Here is a simple implementation of a custom channel header to guide you:
Copy file name to clipboardExpand all lines: docusaurus/docs/Angular/components/channel-list.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,13 +26,13 @@ If you want to create a custom channel list component, here is how to use it:
26
26
```
27
27
28
28
:::note
29
-
If you want to create your own channel list, you can use the [`ChannelService`](../services/channel.mdx) to receive the channels and interact with the Stream API.
29
+
If you want to create your own channel list, you can use the [`ChannelService`](../services/ChannelService.mdx) to receive the channels and interact with the Stream API.
30
30
31
31
Other building blocks, that you might find useful:
32
32
33
33
### Toggle
34
34
35
-
The channel list is always visible on desktop devices, on mobile devices, the list can be opened or closed controlled by a button in the `ChannelHeader` component. The open/close mechanism is implemented by the [`ChannelListToggleService`](../services/channel-list-toggle.mdx).
35
+
The channel list is always visible on desktop devices, on mobile devices, the list can be opened or closed controlled by a button in the `ChannelHeader` component. The open/close mechanism is implemented by the [`ChannelListToggleService`](../services/ChannelListToggleService.mdx).
Copy file name to clipboardExpand all lines: docusaurus/docs/Angular/components/message-input.mdx
+15-15Lines changed: 15 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,11 +52,11 @@ If you want to create your own message input, you can use the following building
52
52
53
53
### Send and update messages
54
54
55
-
You can use [`ChannelService`](../services/channel.mdx) to send and update messages.
55
+
You can use [`ChannelService`](../services/ChannelService.mdx) to send and update messages.
56
56
57
57
### File uploads
58
58
59
-
You can use the [`AttachmentService`](../services/attachment.mdx) to manage file uploads.
59
+
You can use the [`AttachmentService`](../services/AttachmentService.mdx) to manage file uploads.
60
60
61
61
If more than one message input component can exist on your chat UI you should provide the `AttachmentService` on the component level:
62
62
@@ -81,7 +81,7 @@ You can use the [`Textarea`](./textarea.mdx) or the [`AutocompleteTextarea`](./a
81
81
82
82
If file upload is enabled, the user can open a file selector from the input. Please note that the user also needs to have the necessary [channel capability](https://getstream.io/chat/docs/javascript/channel_capabilities/?language=javascript).
83
83
84
-
If no value is provided, it is set from the [`MessageInputConfigService`](../services/message-input-config.mdx).
84
+
If no value is provided, it is set from the [`MessageInputConfigService`](../services/MessageInputConfigService.mdx).
85
85
86
86
| Type |
87
87
| ------- |
@@ -93,7 +93,7 @@ If no value is provided, it is set from the [`MessageInputConfigService`](../ser
93
93
94
94
You can narrow the accepted file types by providing the [accepted types](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#accept). By default every file type is accepted.
95
95
96
-
If no value is provided, it is set from the [`MessageInputConfigService`](../services/message-input-config.mdx).
96
+
If no value is provided, it is set from the [`MessageInputConfigService`](../services/MessageInputConfigService.mdx).
97
97
98
98
| Type |
99
99
| ---------- |
@@ -103,7 +103,7 @@ If no value is provided, it is set from the [`MessageInputConfigService`](../ser
103
103
104
104
If true, users can select multiple files to upload.
105
105
106
-
If no value is provided, it is set from the [`MessageInputConfigService`](../services/message-input-config.mdx).
106
+
If no value is provided, it is set from the [`MessageInputConfigService`](../services/MessageInputConfigService.mdx).
107
107
108
108
| Type |
109
109
| ------- |
@@ -113,7 +113,7 @@ If no value is provided, it is set from the [`MessageInputConfigService`](../ser
113
113
114
114
If true, users can mention other users in messages. You also [need to use the `AutocompleteTextarea`](../concepts/opt-in-architecure.mdx) for this feature to work.
115
115
116
-
If no value is provided, it is set from the [`MessageInputConfigService`](../services/message-input-config.mdx).
116
+
If no value is provided, it is set from the [`MessageInputConfigService`](../services/MessageInputConfigService.mdx).
117
117
118
118
| Type |
119
119
| ------- |
@@ -123,27 +123,27 @@ If no value is provided, it is set from the [`MessageInputConfigService`](../ser
123
123
124
124
You can provide your own template for the autocomplete list for user mentions. You also [need to use the `AutocompleteTextarea`](../concepts/opt-in-architecure.mdx) for this feature to work.
125
125
126
-
If no value is provided, it is set from the [`MessageInputConfigService`](../services/message-input-config.mdx).
126
+
If no value is provided, it is set from the [`MessageInputConfigService`](../services/MessageInputConfigService.mdx).
You can provide your own template for the autocomplete list for commands. You also [need to use the `AutocompleteTextarea`](../concepts/opt-in-architecure.mdx) for this feature to work.
135
135
136
-
If no value is provided, it is set from the [`MessageInputConfigService`](../services/message-input-config.mdx).
136
+
If no value is provided, it is set from the [`MessageInputConfigService`](../services/MessageInputConfigService.mdx).
0 commit comments