Skip to content
Merged

UI #1

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 28 additions & 28 deletions frontend/src/components/editor/chrome/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,34 +88,34 @@ export const PANELS: PanelDescriptor[] = [
tooltip: "Manage packages",
defaultSection: "sidebar",
},
{
type: "ai",
Icon: BotIcon,
label: "AI",
tooltip: "Chat & Agents",
defaultSection: "sidebar",
},
{
type: "outline",
Icon: ScrollTextIcon,
label: "Outline",
tooltip: "View outline",
defaultSection: "sidebar",
},
{
type: "documentation",
Icon: TextSearchIcon,
label: "Docs",
tooltip: "View live docs",
defaultSection: "sidebar",
},
{
type: "dependencies",
Icon: NetworkIcon,
label: "Dependencies",
tooltip: "Explore dependencies",
defaultSection: "sidebar",
},
// {
// type: "ai",
// Icon: BotIcon,
// label: "AI",
// tooltip: "Chat & Agents",
// defaultSection: "sidebar",
// },
// {
// type: "outline",
// Icon: ScrollTextIcon,
// label: "Outline",
// tooltip: "View outline",
// defaultSection: "sidebar",
// },
// {
// type: "documentation",
// Icon: TextSearchIcon,
// label: "Docs",
// tooltip: "View live docs",
// defaultSection: "sidebar",
// },
// {
// type: "dependencies",
// Icon: NetworkIcon,
// label: "Dependencies",
// tooltip: "Explore dependencies",
// defaultSection: "sidebar",
// },
// Developer panel defaults
{
type: "errors",
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/components/editor/chrome/wrapper/sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,11 +149,11 @@ export const Sidebar: React.FC = () => {
</SidebarItem>
)}
/>
<FeedbackButton>
{/* <FeedbackButton>
<SidebarItem tooltip="Send feedback!" selected={false}>
<MessageCircleQuestionIcon className="h-5 w-5" />
</SidebarItem>
</FeedbackButton>
</FeedbackButton> */}
<div className="flex-1" />
<QueuedOrRunningStack />
</div>
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/components/editor/controls/Controls.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ export const Controls = ({
{!closed && (
<div className={topRightControls}>
{presenting && <LayoutSelect />}
<NotebookMenuDropdown
{/* <NotebookMenuDropdown
disabled={disabled}
tooltip={connectionTooltip}
/>
<ConfigButton disabled={disabled} tooltip={connectionTooltip} />
<ConfigButton disabled={disabled} tooltip={connectionTooltip} /> */}
<ShutdownButton
description="This will terminate the Python kernel. You'll lose all data that's in memory."
disabled={disabled}
Expand Down Expand Up @@ -122,7 +122,7 @@ export const Controls = ({
</Button>
</Tooltip>

<CommandPaletteButton />
{/* <CommandPaletteButton /> */}
<KeyboardShortcuts />

<div />
Expand Down
Loading