mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 18:42:49 +00:00
- Implemented in the to manage the physical item capacity for each wagon type. - Added a new migration to create the column in the table. - Introduced method in to update rate units when cargo type unit of measure changes. - Updated booking calculations to consider items per wagon for break-bulk cargo. - Refactored various components to utilize the new items fit logic and ensure consistent date formatting across the application. - Added tests for the new display timezone functionality to ensure consistent date/time representation across different user settings.
58 lines
1.6 KiB
JSON
58 lines
1.6 KiB
JSON
{
|
|
"name": "@edr/ui-common",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./display-timezone": "./src/lib/display-timezone.ts",
|
|
"./styles.css": "./dist/index.css",
|
|
"./theme.css": "./src/styles/theme.css"
|
|
},
|
|
"scripts": {
|
|
"build:styles": "tailwindcss -i ./src/styles/index.css -o ./dist/index.css",
|
|
"check-types": "tsc --noEmit",
|
|
"dev:styles": "tailwindcss -i ./src/styles/index.css -o ./dist/index.css --watch",
|
|
"type-check": "tsc --noEmit",
|
|
"lint": "eslint src"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^18.0.0",
|
|
"react-dom": "^18.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@edr/types": "workspace:*",
|
|
"@mantine/core": "^9.3.0",
|
|
"@tanstack/react-table": "^8.21.3",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"lucide-react": "^1.14.0",
|
|
"radix-ui": "^1.4.3",
|
|
"shadcn": "^4.7.0",
|
|
"tailwind-merge": "^3.6.0",
|
|
"tw-animate-css": "^1.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@edr/eslint-config": "workspace:*",
|
|
"@edr/tsconfig": "workspace:*",
|
|
"@tailwindcss/cli": "^4.3.0",
|
|
"@types/react": "^18.3.11",
|
|
"@types/react-dom": "^18.3.0",
|
|
"postcss": "^8.4.47",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"tailwindcss": "^4.3.0",
|
|
"typescript": "^5.5.4"
|
|
},
|
|
"imports": {
|
|
"#components": "./src/components",
|
|
"#components/*": "./src/components/*",
|
|
"#lib": "./src/lib",
|
|
"#lib/*": "./src/lib/*",
|
|
"#hooks": "./src/hooks",
|
|
"#hooks/*": "./src/hooks/*"
|
|
}
|
|
}
|