mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-20 06:28:14 -04:00
* WIP * Some minor fixes for light theme - Fix `useIsDark` not reading the initial theme value (only reacting to theme changes) - Fix `Inspector` always showing a dark image when no item was selected - Fix `Thumb` video extension using black text on light theme * Improve form error messages - Fix `addLocationDialog` not registering the path input - Remove `@hookform/error-message` * Fix Dialog not respecting max-width - Fix ErrorMessage animation jumping * A lot of misc fixes - Implement an `useExplorerItemData` (cleaner fix for thumbnail flicker) - Fix broken image showing for `Thumb` due a rece condition when props are updated - Implement an `ExternalObject` component that hacks an alternative for `onLoad` and `onError` events for <object> - Fix `Overview` broken layout when `Inspector` is open and window is small - Improve `IndexerRuleEditor` UX in `AddLocationDialog` - Improve the way `IndexerRuleEditor` handles rules deletion - Fix `IndexerRuleEditor` closing the the new rule form even when the rule creation fails - Add an editable prop to `IndexerRuleEditor` to disable all editable functions - Fix `getIcon` fallbacking to Document instead of the dark version of an icon if it exists - Add some missing colors to white theme * Format * Fix Backup restore key dialog not resetting after error * Feedback * Format * Normalize imports * Fix ColorPicker export * Fix Thumb video ext not showing in MediaView with show square thumbnails - Fix AddLocationDialog Error resetting when changing IndexRules
67 lines
1.8 KiB
JSON
67 lines
1.8 KiB
JSON
{
|
|
"name": "@sd/ui",
|
|
"version": "0.0.0",
|
|
"license": "GPL-3.0-only",
|
|
"main": "src/index.ts",
|
|
"types": "src/index.ts",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./src/forms": "./src/forms/index.ts",
|
|
"./postcss": "./style/postcss.config.js",
|
|
"./tailwind": "./style/tailwind.js",
|
|
"./style": "./style/index.js",
|
|
"./style/style.scss": "./style/style.scss",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint src --cache",
|
|
"typecheck": "tsc -b",
|
|
"build": "tsc"
|
|
},
|
|
"dependencies": {
|
|
"@headlessui/react": "^1.7.3",
|
|
"@headlessui/tailwindcss": "^0.1.1",
|
|
"@hookform/resolvers": "^3.1.0",
|
|
"@radix-ui/react-checkbox": "^1.0.3",
|
|
"@radix-ui/react-context-menu": "^1.0.0",
|
|
"@radix-ui/react-dialog": "^1.0.0",
|
|
"@radix-ui/react-dropdown-menu": "^1.0.0",
|
|
"@radix-ui/react-popover": "^1.0.3",
|
|
"@radix-ui/react-radio-group": "^1.1.0",
|
|
"@radix-ui/react-select": "^1.1.2",
|
|
"@radix-ui/react-switch": "^1.0.1",
|
|
"@radix-ui/react-tabs": "^1.0.1",
|
|
"@react-spring/web": "9.6.0",
|
|
"@sd/assets": "workspace:*",
|
|
"@tailwindcss/forms": "^0.5.3",
|
|
"class-variance-authority": "^0.4.0",
|
|
"clsx": "^1.2.1",
|
|
"phosphor-react": "^1.4.1",
|
|
"postcss": "^8.4.17",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-loading-icons": "^1.1.0",
|
|
"react-router-dom": "6.9.0",
|
|
"tailwindcss-radix": "^2.6.0",
|
|
"use-debounce": "^9.0.4",
|
|
"zod": "^3.21.4"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.19.3",
|
|
"@sd/config": "workspace:*",
|
|
"@tailwindcss/line-clamp": "^0.4.2",
|
|
"@tailwindcss/typography": "^0.5.7",
|
|
"@types/node": "^18.15.1",
|
|
"@types/react": "^18.0.21",
|
|
"@types/react-dom": "^18.0.6",
|
|
"autoprefixer": "^10.4.12",
|
|
"babel-loader": "^8.2.5",
|
|
"sass": "^1.55.0",
|
|
"sass-loader": "^13.0.2",
|
|
"style-loader": "^3.3.1",
|
|
"tailwindcss": "^3.1.8",
|
|
"tailwindcss-animate": "^1.0.5",
|
|
"typescript": "^4.8.4"
|
|
}
|
|
}
|