summaryrefslogtreecommitdiff
path: root/ui/lib/components/CreateConversationForm.svelte
Commit message (Collapse)AuthorAge
* A few semantically-thin wrapper divs.Owen Jacobson2025-07-08
| | | | This is an extension of the previous commit: we don't need these divs _at all_ to achieve the layout we want, and we aren't attaching behaviour or semantics to them, so, out they go.
* Move container divs for components into those components.Owen Jacobson2025-07-08
| | | | | | The styles for the `MessageInput` and `CreateConversationForm` components assume that the container div will be present, and the components will not render as intended without them. Therefore: they are "part of" the component in most of the ways that matter, not part of the context in which the component is used. Moving the divs into the component will make it easier to reuse these components (for example, in swatches). The diff for this looks worse than it is because of indentation changes.
* Rename "channel" to "conversation" throughout the client.Owen Jacobson2025-07-03
Existing client state, stored in local storage, is migrated to new keys (that mention "conversation" instead of "channel" where appropriate) the first time the client loads.