diff --git a/package-lock.json b/package-lock.json index 5a77499..b2be475 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "pulsar-web", - "version": "0.6.0", + "version": "0.7.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "pulsar-web", - "version": "0.6.0", + "version": "0.7.1", "license": "MIT", "dependencies": { "@solidjs/router": "^0.15.4", diff --git a/package.json b/package.json index 1e3b354..d6c7c08 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pulsar-web", - "version": "0.7.0", + "version": "0.7.1", "description": "", "type": "module", "scripts": { diff --git a/src/components/ChannelBar/ChannelBar.tsx b/src/components/ChannelBar/ChannelBar.tsx index 709dedc..a5583ab 100644 --- a/src/components/ChannelBar/ChannelBar.tsx +++ b/src/components/ChannelBar/ChannelBar.tsx @@ -1,15 +1,30 @@ import type { Component } from "solid-js"; import { IChannelBarProps } from "./types"; +import { LeftIcon, UserIcon } from "../../icons"; +import { resetActiveChannel } from "../../store/channel"; +import { setMembersOpenMobile } from "../../store/app"; const ChannelBar: Component = (props: IChannelBarProps) => { return ( -
-
+
+
+ +
+

{props.name ? `# ${props.name}` : undefined}

{props.description}

+
setMembersOpenMobile(true)} + > + +
); }; diff --git a/src/components/FileInput/FileInput.tsx b/src/components/FileInput/FileInput.tsx index e04cc1c..ec9c759 100644 --- a/src/components/FileInput/FileInput.tsx +++ b/src/components/FileInput/FileInput.tsx @@ -32,7 +32,7 @@ const FileInput: Component = (props: IFileInputProps) => { class={`bg-stone-800 h-40 w-40 p-2 ${props.rounded ? "rounded-full" : "rounded-2xl"} ${props.outline ? "outline-2" : ""}`} >