mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-06 07:53:54 +00:00
ae15f3cdc5
* refactor: align header columns * refactor: improve scrollbar visibility * refactor: center align table elements * refactor: make param elements stateful * fix: issue with collapsed elements not loosing value * fix: prevent search params containing multiple alias references * fix: the issue where a file disappears if it is both migrated and recovered in the same load operation (#1744) * refactor: disable group action for elements in groups * refactor: move context menu items into the event element (#1747) * feat: sheet import new features for v4 (#1730) * import milestone * fixup! import milestone * test: milestone import * add entries to group stop on new group or on group-end type * fixup! add entries to group * cleanup * add event target duration * link start if undefined * add skip import type * extract some to the excel paresing functions * tweaks to presentation * move file --------- Co-authored-by: Carlos Valente <carlosvalente@pm.me> * fix: notify runtimeStore of events bieng groupd * fix: improve authentication and stage detection in demo * chore: ship logo with project * fix: client is referenced by name * fix: prevent reflow in event editor * fix: stale render on selected event due to ref mismatch * Create/Load/Delete multiple rundowns (#1696) * refactor: restore last loaded rundown * refactor: initialise rundown in ProjectService * feat: allow switching rundowns ensure on coordination between the db object and the working object server provide list of rundowns implement switch in the UI implement delete implement new rundown button * fix: render order for floating button * refactor: appropriate names to service * refactor: rundown endpoints * refactor: save last loaded rundown ID * refactor: rundown management UI * refactor: emit refetch all on project load --------- Co-authored-by: Carlos Valente <carlosvalente@pm.me> * feat: recover single event subscription * fixup! feat: sheet import new features for v4 (#1730) * fix: prevent dropping a group inside another * fixup! refactor: move context menu items into the event element (#1747) * fix: prevent stale references to custom fields * fix: propagate updates to all rundowns * refactor: client rundown metadata (#1728) * generate metadata in the hook * move test * ensure there is always a last element * use for-loop * update metadata in useEfect * fully extract metadata generation * use direct assignment * cleanup --------- Co-authored-by: Carlos Valente <carlosvalente@pm.me> * refactor: small imporvement and tests for coerce functions (#1752) * refactor: small imporvement and tests for coerce functions add test `coerceString` add test `coerceBoolean` add test `coerceColour` * remove old todo * fix: consistent quick add behaviour * refactor: create flat rundown with metadata * fix: show add buttons on top * feat: allow editing milestones * refactor: style tweaks to rundown elements refactor: milestones are full width refactor: cuesheet header alignment fix: editor styling in cuesheet * refactor: virtualise table * refactor: improve overscan (#1758) * bump version to 4.0.0-alpha.5 --------- Co-authored-by: Alex Christoffer Rasmussen <ac@omnivox.dk>
92 lines
2.9 KiB
JSON
92 lines
2.9 KiB
JSON
{
|
|
"name": "ontime-ui",
|
|
"version": "4.0.0-alpha.5",
|
|
"private": true,
|
|
"type": "module",
|
|
"dependencies": {
|
|
"@base-ui-components/react": "1.0.0-beta.2",
|
|
"@dnd-kit/core": "^6.3.1",
|
|
"@dnd-kit/sortable": "^10.0.0",
|
|
"@dnd-kit/utilities": "^3.2.2",
|
|
"@fontsource/open-sans": "^5.0.28",
|
|
"@mantine/hooks": "^8.2.4",
|
|
"@sentry/react": "^10.2.0",
|
|
"@table-nav/react": "^0.0.7",
|
|
"@tanstack/react-query": "^5.84.1",
|
|
"@tanstack/react-query-devtools": "^5.84.1",
|
|
"@tanstack/react-table": "^8.21.3",
|
|
"autosize": "^6.0.1",
|
|
"axios": "^1.11.0",
|
|
"babel-plugin-react-compiler": "19.1.0-rc.2",
|
|
"csv-stringify": "^6.6.0",
|
|
"prismjs": "^1.30.0",
|
|
"react": "^19.1.1",
|
|
"react-colorful": "^5.6.1",
|
|
"react-dom": "^19.1.1",
|
|
"react-fast-compare": "^3.2.2",
|
|
"react-hook-form": "^7.62.0",
|
|
"react-icons": "5.5.0",
|
|
"react-qr-code": "^2.0.18",
|
|
"react-router": "^7.8.0",
|
|
"react-simple-code-editor": "^0.14.1",
|
|
"react-virtuoso": "^4.14.0",
|
|
"web-vitals": "^5.1.0",
|
|
"zustand": "^5.0.7"
|
|
},
|
|
"scripts": {
|
|
"addversion": "node -p \"'export const ONTIME_VERSION = ' + JSON.stringify(require('../../package.json').version) + ';'\" > src/ONTIME_VERSION.js",
|
|
"postinstall": "pnpm addversion",
|
|
"dev": "cross-env BROWSER=none vite",
|
|
"build": "vite build",
|
|
"build:local": "cross-env NODE_ENV=local vite build",
|
|
"build:electron": "cross-env NODE_ENV=local vite build",
|
|
"build:docker": "cross-env VITE_IS_DOCKER=true vite build",
|
|
"build:localdocker": "cross-env NODE_ENV=local vite build",
|
|
"lint": "eslint . --quiet",
|
|
"test": "vitest",
|
|
"test:pipeline": "vitest run",
|
|
"cleanup": "rm -rf .turbo && rm -rf node_modules && rm -rf build",
|
|
"analyse": "npx vite-bundle-visualizer"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@sentry/vite-plugin": "^2.16.1",
|
|
"@tanstack/eslint-plugin-query": "^5.8.4",
|
|
"@types/prismjs": "^1.26.5",
|
|
"@types/react": "^19.1.8",
|
|
"@types/react-dom": "^19.1.6",
|
|
"@typescript-eslint/eslint-plugin": "catalog:",
|
|
"@typescript-eslint/parser": "catalog:",
|
|
"@vitejs/plugin-react": "4.5.1",
|
|
"eslint": "catalog:",
|
|
"eslint-config-prettier": "catalog:",
|
|
"eslint-plugin-jest": "^28.6.0",
|
|
"eslint-plugin-prettier": "catalog:",
|
|
"eslint-plugin-react": "^7.32.0",
|
|
"eslint-plugin-react-compiler": "19.1.0-rc.2",
|
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
"eslint-plugin-simple-import-sort": "^8.0.0",
|
|
"ontime-types": "workspace:*",
|
|
"ontime-utils": "workspace:*",
|
|
"prettier": "catalog:",
|
|
"sass": "^1.57.1",
|
|
"typescript": "catalog:",
|
|
"vite": "6.3.1",
|
|
"vite-plugin-compression2": "2.2.0",
|
|
"vite-plugin-svgr": "4.3.0",
|
|
"vite-tsconfig-paths": "5.1.4",
|
|
"vitest": "catalog:"
|
|
}
|
|
}
|