Skip to content

Commit fb787cc

Browse files
committed
Merge branch 'feat/add-devtools-ui' of https://github.com/TanStack/devtools into feat/add-devtools-ui
2 parents f9b97df + 14440d1 commit fb787cc

File tree

6 files changed

+10
-16
lines changed

6 files changed

+10
-16
lines changed

packages/devtools-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@
6262
"devDependencies": {
6363
"vite-plugin-solid": "^2.11.6"
6464
}
65-
}
65+
}

packages/devtools-ui/src/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export { Checkbox } from "./components/checkbox"
2-
export { Input } from "./components/input"
3-
export { Select } from "./components/select"
4-
export { TanStackLogo } from "./components/logo"
1+
export { Checkbox } from './components/checkbox'
2+
export { Input } from './components/input'
3+
export { Select } from './components/select'
4+
export { TanStackLogo } from './components/logo'

packages/devtools-ui/src/styles/use-styles.ts

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@ import { createSignal } from 'solid-js'
33
import { tokens } from './tokens'
44

55
const stylesFactory = () => {
6-
const { colors, font, size, alpha, } = tokens
7-
const { fontFamily, } = font
6+
const { colors, font, size, alpha } = tokens
7+
const { fontFamily } = font
88
const css = goober.css
99

1010
return {
11-
1211
logo: css`
1312
cursor: pointer;
1413
display: flex;
@@ -25,9 +24,6 @@ const stylesFactory = () => {
2524
}
2625
`,
2726

28-
29-
30-
3127
selectWrapper: css`
3228
width: 100%;
3329
max-width: 300px;
@@ -190,7 +186,6 @@ const stylesFactory = () => {
190186
font-size: 0.8rem;
191187
line-height: 1.3;
192188
`,
193-
194189
}
195190
}
196191

packages/devtools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,4 @@
6666
"devDependencies": {
6767
"vite-plugin-solid": "^2.11.6"
6868
}
69-
}
69+
}

packages/devtools/src/styles/use-styles.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,6 @@ const stylesFactory = () => {
254254
overflow-y: auto;
255255
`,
256256

257-
258257
settingsContainer: css`
259258
padding: 1.5rem;
260259
height: 100%;

packages/devtools/src/tabs/settings-tab.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Show } from 'solid-js'
1+
import { Show } from 'solid-js'
22
import { Checkbox, Input, Select } from '@tanstack/devtools-ui'
33
import { useDevtoolsSettings } from '../context/use-devtools-context'
44
import { uppercaseFirstLetter } from '../utils/sanitize'
@@ -7,7 +7,7 @@ import { useStyles } from '../styles/use-styles'
77
export const SettingsTab = () => {
88
const { setSettings, settings } = useDevtoolsSettings()
99
const styles = useStyles()
10-
10+
1111
return (
1212
<div class={styles().settingsContainer}>
1313
{/* General Settings */}

0 commit comments

Comments
 (0)