-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add Resizable item setting (#514)
fix: filtering option in app auto-complete chore: apply prettier to ts files test: adapt tests to item settings refactor and types
- Loading branch information
Showing
34 changed files
with
1,443 additions
and
1,149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,9 @@ cypress/videos | |
# jetbrains | ||
.idea | ||
|
||
# vscode | ||
.vscode | ||
|
||
# yarn | ||
.yarn/* | ||
!.yarn/patches | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,16 +6,16 @@ | |
"dependencies": { | ||
"@emotion/react": "11.10.5", | ||
"@emotion/styled": "11.10.5", | ||
"@graasp/chatbox": "github:graasp/graasp-chatbox#v1.0.0", | ||
"@graasp/query-client": "github:graasp/graasp-query-client.git", | ||
"@graasp/chatbox": "1.0.0", | ||
"@graasp/query-client": "0.1.0", | ||
"@graasp/sdk": "0.2.0", | ||
"@graasp/translations": "1.2.1", | ||
"@graasp/translations": "1.2.0", | ||
"@graasp/ui": "0.7.0", | ||
"@mui/icons-material": "5.10.9", | ||
"@mui/icons-material": "5.10.14", | ||
"@mui/lab": "5.0.0-alpha.104", | ||
"@mui/material": "5.10.12", | ||
"@sentry/react": "7.17.4", | ||
"@sentry/tracing": "7.17.4", | ||
"@mui/material": "5.10.14", | ||
"@sentry/react": "7.29.0", | ||
"@sentry/tracing": "7.29.0", | ||
"@uppy/core": "2.1.6", | ||
"@uppy/dashboard": "2.1.4", | ||
"@uppy/drag-drop": "2.0.6", | ||
|
@@ -64,8 +64,8 @@ | |
"eject": "react-scripts eject", | ||
"lint": "eslint .", | ||
"type-check": "tsc --noEmit", | ||
"prettier:check": "prettier --check src/**/*.{js,json}", | ||
"prettier:write": "prettier --write src/**/*.{js,json}", | ||
"prettier:check": "prettier --check src/**/*.{js,ts,tsx,json}", | ||
"prettier:write": "prettier --write src/**/*.{js,ts,tsx,json}", | ||
"cypress:open": "env-cmd -f ./.env.test cypress open", | ||
"cypress": "concurrently \"yarn start:test\" \"wait-on http://localhost:3111 && yarn cypress:run\"", | ||
"cypress:run": "env-cmd -f ./.env.test cypress run --headless --browser chrome --spec \"cypress/**/*.cy.js\"", | ||
|
@@ -95,15 +95,15 @@ | |
"@babel/eslint-parser": "7.19.1", | ||
"@babel/eslint-plugin": "7.19.1", | ||
"@babel/preset-react": "7.18.6", | ||
"@commitlint/cli": "17.2.0", | ||
"@commitlint/config-conventional": "17.2.0", | ||
"@commitlint/cli": "17.4.1", | ||
"@commitlint/config-conventional": "17.4.0", | ||
"@cypress/code-coverage": "3.10.0", | ||
"@cypress/instrument-cra": "1.4.0", | ||
"@graasp/websockets": "github:graasp/graasp-websockets.git", | ||
"@testing-library/jest-dom": "^5.16.3", | ||
"@testing-library/react": "^12.1.4", | ||
"@testing-library/user-event": "^13.5.0", | ||
"@trivago/prettier-plugin-sort-imports": "3.4.0", | ||
"@trivago/prettier-plugin-sort-imports": "4.0.0", | ||
"@types/jest": "29.0.3", | ||
"@types/lodash.truncate": "4.4.7", | ||
"@types/node": "18.7.21", | ||
|
@@ -113,8 +113,8 @@ | |
"@types/uuid": "8.3.4", | ||
"@typescript-eslint/eslint-plugin": "5.42.0", | ||
"@typescript-eslint/parser": "5.42.0", | ||
"concurrently": "7.5.0", | ||
"cypress": "11.0.1", | ||
"concurrently": "7.6.0", | ||
"cypress": "12.3.0", | ||
"cypress-localstorage-commands": "2.2.1", | ||
"env-cmd": "10.1.0", | ||
"eslint": "^7.31.0", | ||
|
@@ -125,27 +125,27 @@ | |
"eslint-plugin-import": "2.22.1", | ||
"eslint-plugin-jsx-a11y": "6.4.1", | ||
"eslint-plugin-react": "7.22.0", | ||
"husky": "7.0.4", | ||
"husky": "8.0.3", | ||
"istanbul-lib-coverage": "3.2.0", | ||
"npm-run-all": "4.1.5", | ||
"nyc": "15.1.0", | ||
"prettier": "2.7.1", | ||
"prettier": "2.8.2", | ||
"react-app-rewired": "2.2.1", | ||
"standard-version": "9.5.0", | ||
"typescript": "4.8.4", | ||
"wait-on": "6.0.1" | ||
"typescript": "4.9.4", | ||
"wait-on": "7.0.1" | ||
}, | ||
"resolutions": { | ||
"node-forge": "1.3.0", | ||
"nth-check": "2.0.1", | ||
"i18next": "21.8.1", | ||
"immer": "9.0.6", | ||
"immutable": "4.1.0", | ||
"glob-parent": "5.1.2", | ||
"browserslist": "4.16.5", | ||
"ansi-html": "0.0.8", | ||
"react-error-overlay": "6.0.9", | ||
"@mui/icons-material": "5.10.9", | ||
"@mui/material": "5.10.10" | ||
"@graasp/sdk": "0.2.0" | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.