gpui-component/docs/package.json
Nico Gründel 2cba6e8be9
slider: Add option to choose between linear and logarithmic scale (#1543)
Adds the ability to choose between a linear and a logarithmic scale for
the slider. A logarithmic scale is the right and intuitive choice for
many different slider applications. Building this right into the
component has two advantages:
- The user doesn't have to convert at every point where they might use
or update the slider value
- On a logarithmic scale, the distance between steps varies over the
sliders range. This implementation respects that

---------

Co-authored-by: Jason Lee <huacnlee@gmail.com>
2025-11-10 02:56:09 +00:00

22 lines
529 B
JSON

{
"dependencies": {
"@tailwindcss/postcss": "^4.1.15",
"@tailwindcss/vite": "^4.1.15",
"lucide-react": "^0.546.0",
"lucide-vue-next": "^0.546.0",
"markdown-it-mathjax3": "^4",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.15"
},
"devDependencies": {
"vitepress": "^2.0.0-alpha.12",
"vitepress-plugin-llms": "^1.8.0",
"vitepress-sidebar": "^1.18.0",
"sass": "^1"
},
"scripts": {
"dev": "vitepress dev",
"build": "vitepress build",
"preview": "vitepress preview"
}
}