Skip to content

Commit

Permalink
Zui Polish 2 (#2895)
Browse files Browse the repository at this point in the history
Dark Mode
Translucent Mac Window
New Pin Design
New Toolbar Design
New Detail Pane Design
New History Pane Design
New Save Query Workflow
  • Loading branch information
jameskerr authored Jan 9, 2024
1 parent 67d5936 commit 9f091b6
Show file tree
Hide file tree
Showing 453 changed files with 18,590 additions and 16,914 deletions.
8 changes: 6 additions & 2 deletions apps/zui/build/preload.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
const {contextBridge, ipcRenderer} = require("electron")

const preloadApi = () => ({
on: ipcRenderer.on.bind(ipcRenderer),
off: ipcRenderer.off.bind(ipcRenderer),
on: (channel, handler) => {
ipcRenderer.on(channel, handler)
return () => {
ipcRenderer.off(channel, handler)
}
},
once: ipcRenderer.once.bind(ipcRenderer),
invoke: ipcRenderer.invoke.bind(ipcRenderer),
})
Expand Down
1 change: 0 additions & 1 deletion apps/zui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@
"react-redux": "^8.0.5",
"react-router": "5.3.1",
"react-spring": "^8.0.27",
"react-tooltip": "^4.2.7",
"react-transition-group": "^4.4.5",
"react-window": "^1.8.7",
"regenerator-runtime": "^0.13.6",
Expand Down
2 changes: 1 addition & 1 deletion apps/zui/pages/detail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {AppProvider} from "src/app/core/context"
import AppWindowRouter from "src/app/router/app-window-router"
import LogDetailsWindow from "src/js/components/LogDetailsWindow"
import {Modals} from "src/js/components/Modals"
import Tooltip from "src/js/components/Tooltip"
import {Tooltip} from "src/components/tooltip"
import initialize from "src/js/initializers/initialize"
import TabHistories from "src/js/state/TabHistories"
import Tabs from "src/js/state/Tabs"
Expand Down
2 changes: 1 addition & 1 deletion apps/zui/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"sourceRoot": "apps/zui",
"projectType": "app",
"targets": {
"watch-tsc": {
"tsc-watch": {
"command": "tsc -p apps/zui/tsconfig.json --watch"
},
"lint": {
Expand Down
15 changes: 15 additions & 0 deletions apps/zui/public/custom-icons.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13,450 changes: 13,450 additions & 0 deletions apps/zui/public/icons.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 0 additions & 23 deletions apps/zui/public/icons/file-border.tsx

This file was deleted.

10 changes: 0 additions & 10 deletions apps/zui/public/icons/subspace-border.svg

This file was deleted.

6 changes: 0 additions & 6 deletions apps/zui/public/icons/subspace.svg

This file was deleted.

Loading

0 comments on commit 9f091b6

Please sign in to comment.