Merge pull request #524 from dannyrb/fix/quick-toolbar-edits-and-version-bumps
Fix/quick toolbar edits and version bumps
This commit is contained in:
commit
a111327ff6
1
.gitattributes
vendored
Normal file
1
.gitattributes
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
* text eol=lf
|
||||||
@ -21,11 +21,6 @@ include tags. Here's how it works:
|
|||||||
<code>Google Fonts, Sanchez & Roboto</code>
|
<code>Google Fonts, Sanchez & Roboto</code>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
|
||||||
<a href="https://use.fontawesome.com/releases/v5.7.2/css/all.css">
|
|
||||||
<code>fontawesome@5.7.2</code>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://unpkg.com/react@16/umd/react.production.min.js">
|
<a href="https://unpkg.com/react@16/umd/react.production.min.js">
|
||||||
<code>react@16.8.6</code>
|
<code>react@16.8.6</code>
|
||||||
@ -73,7 +68,7 @@ window.config = {
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
}
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
<ol start="5"><li>
|
<ol start="5"><li>
|
||||||
@ -82,10 +77,10 @@ window.config = {
|
|||||||
|
|
||||||
```js
|
```js
|
||||||
// Made available by the `ohif-viewer` script included in step 1
|
// Made available by the `ohif-viewer` script included in step 1
|
||||||
var Viewer = window.OHIFStandaloneViewer.App
|
var Viewer = window.OHIFStandaloneViewer.App;
|
||||||
var app = React.createElement(Viewer, window.config, null)
|
var app = React.createElement(Viewer, window.config, null);
|
||||||
|
|
||||||
ReactDOM.render(app, document.getElementById('ohif-viewer-target'))
|
ReactDOM.render(app, document.getElementById('ohif-viewer-target'));
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Tips & Tricks
|
#### Tips & Tricks
|
||||||
|
|||||||
@ -80,7 +80,7 @@
|
|||||||
"hammerjs": "^2.0.8",
|
"hammerjs": "^2.0.8",
|
||||||
"lodash.isequal": "4.5.0",
|
"lodash.isequal": "4.5.0",
|
||||||
"moment": "^2.24.0",
|
"moment": "^2.24.0",
|
||||||
"ohif-core": "0.5.5",
|
"ohif-core": "0.5.6",
|
||||||
"ohif-dicom-html-extension": "^0.0.2",
|
"ohif-dicom-html-extension": "^0.0.2",
|
||||||
"ohif-dicom-pdf-extension": "^0.0.6",
|
"ohif-dicom-pdf-extension": "^0.0.6",
|
||||||
"oidc-client": "1.7.x",
|
"oidc-client": "1.7.x",
|
||||||
@ -92,7 +92,7 @@
|
|||||||
"react-resize-detector": "^3.4.0",
|
"react-resize-detector": "^3.4.0",
|
||||||
"react-router": "^4.3.1",
|
"react-router": "^4.3.1",
|
||||||
"react-router-dom": "^4.3.1",
|
"react-router-dom": "^4.3.1",
|
||||||
"react-viewerbase": "0.6.1",
|
"react-viewerbase": "0.7.0",
|
||||||
"react-vtkjs-viewport": "^0.0.7",
|
"react-vtkjs-viewport": "^0.0.7",
|
||||||
"redux": "^4.0.1",
|
"redux": "^4.0.1",
|
||||||
"redux-oidc": "3.1.x"
|
"redux-oidc": "3.1.x"
|
||||||
|
|||||||
@ -49,48 +49,6 @@ export default function() {
|
|||||||
icon: 'angle-left',
|
icon: 'angle-left',
|
||||||
active: false,
|
active: false,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
command: 'Bidirectional',
|
|
||||||
type: 'tool',
|
|
||||||
text: 'Bidirectional',
|
|
||||||
icon: 'measure-target',
|
|
||||||
active: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
command: 'Brush',
|
|
||||||
type: 'tool',
|
|
||||||
text: 'Brush',
|
|
||||||
icon: 'circle',
|
|
||||||
active: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
command: 'FreehandMouse',
|
|
||||||
type: 'tool',
|
|
||||||
text: 'Freehand',
|
|
||||||
icon: 'star',
|
|
||||||
active: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
command: 'EllipticalRoi',
|
|
||||||
type: 'tool',
|
|
||||||
text: 'EllipticalRoi',
|
|
||||||
icon: 'oval',
|
|
||||||
active: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
command: 'CircleRoi',
|
|
||||||
type: 'tool',
|
|
||||||
text: 'CircleRoi',
|
|
||||||
icon: 'dot-circle',
|
|
||||||
active: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
command: 'RectangleRoi',
|
|
||||||
type: 'tool',
|
|
||||||
text: 'RectangleRoi',
|
|
||||||
icon: 'square-o',
|
|
||||||
active: false,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
command: 'reset',
|
command: 'reset',
|
||||||
type: 'command',
|
type: 'command',
|
||||||
|
|||||||
16
yarn.lock
16
yarn.lock
@ -9702,10 +9702,10 @@ octokit-pagination-methods@^1.1.0:
|
|||||||
resolved "https://registry.yarnpkg.com/octokit-pagination-methods/-/octokit-pagination-methods-1.1.0.tgz#cf472edc9d551055f9ef73f6e42b4dbb4c80bea4"
|
resolved "https://registry.yarnpkg.com/octokit-pagination-methods/-/octokit-pagination-methods-1.1.0.tgz#cf472edc9d551055f9ef73f6e42b4dbb4c80bea4"
|
||||||
integrity sha512-fZ4qZdQ2nxJvtcasX7Ghl+WlWS/d9IgnBIwFZXVNNZUmzpno91SX5bc5vuxiuKoCtK78XxGGNuSCrDC7xYB3OQ==
|
integrity sha512-fZ4qZdQ2nxJvtcasX7Ghl+WlWS/d9IgnBIwFZXVNNZUmzpno91SX5bc5vuxiuKoCtK78XxGGNuSCrDC7xYB3OQ==
|
||||||
|
|
||||||
ohif-core@0.5.5:
|
ohif-core@0.5.6:
|
||||||
version "0.5.5"
|
version "0.5.6"
|
||||||
resolved "https://registry.yarnpkg.com/ohif-core/-/ohif-core-0.5.5.tgz#78ace87fa06b3b23a004414a702cc23cb00edf9d"
|
resolved "https://registry.yarnpkg.com/ohif-core/-/ohif-core-0.5.6.tgz#b626b2fdd5bebf53f4914a8701bedf2dc2c43b71"
|
||||||
integrity sha512-BORJCxOWuVAx2CE6+LSdL5+1+PG6gkYgl6tyAZhHhAgT46DWAfbq8nkAIX7Rhwot0BWpAcHkkBWIavGOBOH24Q==
|
integrity sha512-qe5/tHjnyPAGoNEdYZBJEejojBBOE9G5Y54vuTUnu2TUKkdbFPg2Kj/WzmLBMG/3PHcjMCqFm1JllEwcntRvOg==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/runtime" "^7.2.0"
|
"@babel/runtime" "^7.2.0"
|
||||||
ajv "^6.10.0"
|
ajv "^6.10.0"
|
||||||
@ -11760,10 +11760,10 @@ react-transition-group@^2.0.0, react-transition-group@^2.2.0:
|
|||||||
prop-types "^15.6.2"
|
prop-types "^15.6.2"
|
||||||
react-lifecycles-compat "^3.0.4"
|
react-lifecycles-compat "^3.0.4"
|
||||||
|
|
||||||
react-viewerbase@0.6.1:
|
react-viewerbase@0.7.0:
|
||||||
version "0.6.1"
|
version "0.7.0"
|
||||||
resolved "https://registry.yarnpkg.com/react-viewerbase/-/react-viewerbase-0.6.1.tgz#60cb6d1b9e90f627b3756f1e426505b9551d0485"
|
resolved "https://registry.yarnpkg.com/react-viewerbase/-/react-viewerbase-0.7.0.tgz#b0f48a0f003b849c280b8ca67927d4780c68b0dc"
|
||||||
integrity sha512-1wGW4a8lHaG/j5WeC9/R9TZrJLthL6cm5IPDEmthTKF8PNiImMY1VgLR80aXDhfKYi8AVEyCEhOkvvXbPgBl1A==
|
integrity sha512-1VQXREKSsqxtOSSHRou0gjBODrSOjE8SBJ6/dHG0gPgdmeotOg68xPMKYf9K7fYyGZ6CDA7oVCAmdTE4SVYP5Q==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/runtime" "7.2.0"
|
"@babel/runtime" "7.2.0"
|
||||||
classnames "2.2.6"
|
classnames "2.2.6"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user