mirror of
https://github.com/enso-org/enso.git
synced 2024-12-22 06:41:42 +03:00
73237b7b25
Closes #7244 - Section navigator removed - Added a button panel on top of the documentation - Show/hide documentation panel button is functional, documentation panel has animation. - All other buttons are read-only (unclickable). - "Hovered item preview" caption was removed from the documentation panel - Breadcrumbs are flying in the temporary position. They should be functional but will be moved to the documentation panel in a separate task. - Sizes and layouts of the CB panels match the design. - The color of the application background changed. Also fixed a bug because of which the stylesheet setting of the background was not taken into account. Known issues: - ~~The buttons panel partially hides the topmost entry in the list. To fix that, we would need API changes to the grid view, I decided not to do that as part of the PR. We need to add padding on top of the scroll area content.~~ - Scrollbar is not rendered correctly at the bottom – the scroll area mask should crop it. - Component list entries are not exactly as in design – I didn't touch this part of the code. - Breadcrumbs are in the wrong position. https://github.com/enso-org/enso/assets/6566674/409bebb5-572a-4760-852d-f666124689a2
61 lines
1.6 KiB
JSON
61 lines
1.6 KiB
JSON
{
|
|
"version": "0.0.0-dev",
|
|
"type": "module",
|
|
"author": {
|
|
"name": "Enso Team",
|
|
"email": "contact@enso.org"
|
|
},
|
|
"homepage": "https://github.com/enso-org/ide",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:enso-org/ide.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/enso-org/ide/issues"
|
|
},
|
|
"name": "enso",
|
|
"description": "Enso Data Processing Environment.",
|
|
"main": "index.cjs",
|
|
"dependencies": {
|
|
"@types/mime-types": "^2.1.1",
|
|
"@types/opener": "^1.4.0",
|
|
"chalk": "^5.2.0",
|
|
"create-servers": "^3.2.0",
|
|
"electron-is-dev": "^2.0.0",
|
|
"mime-types": "^2.1.35",
|
|
"opener": "^1.5.2",
|
|
"string-length": "^5.0.1",
|
|
"@types/tar": "^6.1.4",
|
|
"tar": "^6.1.13",
|
|
"yargs": "17.6.2"
|
|
},
|
|
"comments": {
|
|
"electron-builder": "Cannot be updated to a newer version because of a NSIS installer issue: https://github.com/enso-org/enso/issues/5169"
|
|
},
|
|
"devDependencies": {
|
|
"crypto-js": "4.1.1",
|
|
"electron": "25.3.1",
|
|
"electron-builder": "^22.14.13",
|
|
"electron-notarize": "1.2.2",
|
|
"enso-common": "^1.0.0",
|
|
"esbuild": "^0.17.15",
|
|
"fast-glob": "^3.2.12",
|
|
"portfinder": "^1.0.32",
|
|
"tsx": "^3.12.6"
|
|
},
|
|
"optionalDependencies": {
|
|
"dmg-license": "^1.0.11",
|
|
"@esbuild/darwin-x64": "^0.17.15",
|
|
"@esbuild/linux-x64": "^0.17.15",
|
|
"@esbuild/windows-x64": "^0.17.15"
|
|
},
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "npx --yes eslint src",
|
|
"start": "tsx start.ts",
|
|
"build": "tsx bundle.ts",
|
|
"dist": "tsx dist.ts",
|
|
"watch": "tsx watch.ts"
|
|
}
|
|
}
|