Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: version pinning #435

Merged
merged 2 commits into from
Jan 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ __pycache__/
*.pyc
*.swp
*.lock
!yarn.lock
# due to using tox and pytest
.tox
.cache
Expand All @@ -28,8 +29,6 @@ node_modules/
*.log
/.awcache
/.cache-loader
package-lock.json
/yarn.lock
# yarn
.pnp.*
.yarn/*
Expand Down
2 changes: 1 addition & 1 deletion dist/components/OrdinoFooter.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/components/OrdinoFooter.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions dist/internal/OrdinoApp.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/internal/OrdinoApp.js.map

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions dist/internal/ViewWrapper.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/internal/ViewWrapper.js.map

Large diffs are not rendered by default.

98 changes: 49 additions & 49 deletions dist/locales/en/tdp.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion dist/phovea_registry.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/phovea_registry.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion dist/phovea_registry.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/phovea_registry.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,16 +57,16 @@
"@types/react-select": "^4.0.13"
},
"dependencies": {
"html-react-parser": "^4.2.0",
"react-dropzone": "^11.3.1",
"react-highlight-words": "^0.17.0",
"react-intersection-observer": "^8.31.1",
"react-router-dom": "^5.2.0",
"react-select": "^4.1.0",
"react-select-async-paginate": "^0.5.3",
"react-virtualized": "^9.22.3",
"html-react-parser": "^4.2.0",
"tdp_core": "git+ssh://git@github.com:datavisyn/tdp_core#develop",
"visyn_scripts": "git+ssh://git@github.com/datavisyn/visyn_scripts.git#develop"
"tdp_core": "^23.0.1",
"visyn_scripts": "^7.0.1"
},
"resolutions": {
"@types/react": "~18.2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/components/OrdinoFooter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function FooterLink(props: IFooterLinkProps) {
}

export function OrdinoFooter(props) {
const testId = props.testId;
const { testId } = props;
const openInNewWindow = !!props.openInNewWindow; // undefined and null = false (default)

const lists: IOrdinoFooterMenuLink[][] = PluginRegistry.getInstance()
Expand Down
1 change: 0 additions & 1 deletion src/phovea_registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import reg from './phovea';
* build a registry by registering all phovea modules
*/
// other modules
import 'visyn_core/phovea_registry';
import 'tdp_core/dist/phovea_registry';
// self
PluginRegistry.getInstance().register('ordino', reg);
Loading
Loading