@ohif/extension-dicom-microscopy 0.52.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +4 -16
- package/README.md +7 -30
- package/dist/ohif-extension-dicom-microscopy.css +2 -0
- package/dist/ohif-extension-dicom-microscopy.umd.js +3 -0
- package/dist/ohif-extension-dicom-microscopy.umd.js.LICENSE.txt +65 -0
- package/dist/ohif-extension-dicom-microscopy.umd.js.map +1 -0
- package/package.json +60 -22
- package/CHANGELOG.md +0 -228
- package/dist/index.umd.js +0 -3
- package/dist/index.umd.js.LICENSE +0 -3170
- package/dist/index.umd.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,41 +1,79 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ohif/extension-dicom-microscopy",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "OHIF extension for
|
|
5
|
-
"author": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
|
+
"description": "OHIF extension for DICOM microscopy",
|
|
5
|
+
"author": "Bill Wallace, md-prog",
|
|
6
6
|
"license": "MIT",
|
|
7
|
-
"
|
|
8
|
-
"main": "dist/index.umd.js",
|
|
9
|
-
"module": "src/index.js",
|
|
10
|
-
"publishConfig": {
|
|
11
|
-
"access": "public"
|
|
12
|
-
},
|
|
7
|
+
"main": "dist/ohif-extension-dicom-microscopy.umd.js",
|
|
13
8
|
"files": [
|
|
14
|
-
"dist",
|
|
9
|
+
"dist/**",
|
|
10
|
+
"public/**",
|
|
15
11
|
"README.md"
|
|
16
12
|
],
|
|
13
|
+
"repository": "OHIF/Viewers",
|
|
14
|
+
"keywords": [
|
|
15
|
+
"ohif-extension"
|
|
16
|
+
],
|
|
17
|
+
"module": "src/index.tsx",
|
|
17
18
|
"engines": {
|
|
18
|
-
"node": ">=
|
|
19
|
+
"node": ">=14",
|
|
19
20
|
"npm": ">=6",
|
|
20
|
-
"yarn": ">=1.
|
|
21
|
+
"yarn": ">=1.18.0"
|
|
21
22
|
},
|
|
22
23
|
"scripts": {
|
|
23
|
-
"dev": "cross-env NODE_ENV=development webpack --config .webpack/webpack.dev.js --watch --
|
|
24
|
-
"dev:dicom-
|
|
24
|
+
"dev": "cross-env NODE_ENV=development webpack --config .webpack/webpack.dev.js --watch --output-pathinfo",
|
|
25
|
+
"dev:dicom-pdf": "yarn run dev",
|
|
25
26
|
"build": "cross-env NODE_ENV=production webpack --config .webpack/webpack.prod.js",
|
|
26
27
|
"build:package": "yarn run build",
|
|
27
|
-
"prepublishOnly": "yarn run build",
|
|
28
28
|
"start": "yarn run dev"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
|
-
"@ohif/core": "^0.
|
|
32
|
-
"
|
|
33
|
-
"
|
|
31
|
+
"@ohif/core": "^3.0.0",
|
|
32
|
+
"@ohif/extension-default": "^3.0.0",
|
|
33
|
+
"@ohif/i18n": "^1.0.0",
|
|
34
|
+
"@ohif/ui": "^2.0.0",
|
|
35
|
+
"prop-types": "^15.6.2",
|
|
36
|
+
"react": "^17.0.2",
|
|
37
|
+
"react-dom": "^17.0.2",
|
|
38
|
+
"react-i18next": "^10.11.0",
|
|
39
|
+
"react-router": "^6.8.1",
|
|
40
|
+
"react-router-dom": "^6.8.1",
|
|
41
|
+
"webpack": "^5.50.0",
|
|
42
|
+
"webpack-merge": "^5.7.3"
|
|
34
43
|
},
|
|
35
44
|
"dependencies": {
|
|
36
|
-
"@babel/runtime": "^7.
|
|
37
|
-
"
|
|
38
|
-
"
|
|
45
|
+
"@babel/runtime": "^7.20.13",
|
|
46
|
+
"@cornerstonejs/codec-charls": "^1.2.3",
|
|
47
|
+
"@cornerstonejs/codec-libjpeg-turbo-8bit": "^1.2.2",
|
|
48
|
+
"@cornerstonejs/codec-openjpeg": "^1.2.2",
|
|
49
|
+
"colormap": "^2.3",
|
|
50
|
+
"dicom-microscopy-viewer": "^0.44.0",
|
|
51
|
+
"dicomicc": "^0.1"
|
|
39
52
|
},
|
|
40
|
-
"
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@babel/core": "^7.21.4",
|
|
55
|
+
"@babel/plugin-proposal-class-properties": "^7.16.7",
|
|
56
|
+
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
|
|
57
|
+
"@babel/plugin-proposal-private-methods": "^7.18.6",
|
|
58
|
+
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
59
|
+
"@babel/plugin-transform-arrow-functions": "^7.16.7",
|
|
60
|
+
"@babel/plugin-transform-regenerator": "^7.16.7",
|
|
61
|
+
"@babel/plugin-transform-runtime": "^7.17.0",
|
|
62
|
+
"@babel/plugin-transform-typescript": "^7.13.0",
|
|
63
|
+
"@babel/preset-env": "^7.16.11",
|
|
64
|
+
"@babel/preset-react": "^7.16.7",
|
|
65
|
+
"@babel/preset-typescript": "^7.13.0",
|
|
66
|
+
"babel-eslint": "^8.0.3",
|
|
67
|
+
"babel-loader": "^8.0.0-beta.4",
|
|
68
|
+
"babel-plugin-inline-react-svg": "^2.0.1",
|
|
69
|
+
"clean-webpack-plugin": "^4.0.0",
|
|
70
|
+
"copy-webpack-plugin": "^10.2.0",
|
|
71
|
+
"cross-env": "^7.0.3",
|
|
72
|
+
"dotenv": "^14.1.0",
|
|
73
|
+
"eslint": "^5.0.1",
|
|
74
|
+
"eslint-loader": "^2.0.0",
|
|
75
|
+
"webpack": "^5.50.0",
|
|
76
|
+
"webpack-cli": "^4.7.2",
|
|
77
|
+
"webpack-merge": "^5.7.3"
|
|
78
|
+
}
|
|
41
79
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,228 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
# [0.52.0](https://github.com/OHIF/Viewers/compare/@ohif/extension-dicom-microscopy@0.51.4...@ohif/extension-dicom-microscopy@0.52.0) (2021-03-04)
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
### Features
|
|
10
|
-
|
|
11
|
-
* **log:** add new log service ([14d6454](https://github.com/OHIF/Viewers/commit/14d6454eafaa2ccb50e133c2945c9558052ea27e))
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
## [0.51.4](https://github.com/OHIF/Viewers/compare/@ohif/extension-dicom-microscopy@0.51.3...@ohif/extension-dicom-microscopy@0.51.4) (2021-01-21)
|
|
18
|
-
|
|
19
|
-
**Note:** Version bump only for package @ohif/extension-dicom-microscopy
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
## [0.51.3](https://github.com/OHIF/Viewers/compare/@ohif/extension-dicom-microscopy@0.51.2...@ohif/extension-dicom-microscopy@0.51.3) (2020-09-10)
|
|
26
|
-
|
|
27
|
-
**Note:** Version bump only for package @ohif/extension-dicom-microscopy
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
## [0.51.2](https://github.com/OHIF/Viewers/compare/@ohif/extension-dicom-microscopy@0.51.1...@ohif/extension-dicom-microscopy@0.51.2) (2020-09-03)
|
|
34
|
-
|
|
35
|
-
**Note:** Version bump only for package @ohif/extension-dicom-microscopy
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
## [0.51.1](https://github.com/OHIF/Viewers/compare/@ohif/extension-dicom-microscopy@0.51.0...@ohif/extension-dicom-microscopy@0.51.1) (2020-08-28)
|
|
42
|
-
|
|
43
|
-
**Note:** Version bump only for package @ohif/extension-dicom-microscopy
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
# [0.51.0](https://github.com/OHIF/Viewers/compare/@ohif/extension-dicom-microscopy@0.50.9...@ohif/extension-dicom-microscopy@0.51.0) (2020-06-04)
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
### Features
|
|
53
|
-
|
|
54
|
-
* 🎸 1729 - error boundary wrapper ([#1764](https://github.com/OHIF/Viewers/issues/1764)) ([c02b232](https://github.com/OHIF/Viewers/commit/c02b232b0cc24f38af5d5e3831d987d048e60ada))
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
## [0.50.9](https://github.com/OHIF/Viewers/compare/@ohif/extension-dicom-microscopy@0.50.8...@ohif/extension-dicom-microscopy@0.50.9) (2020-04-02)
|
|
61
|
-
|
|
62
|
-
**Note:** Version bump only for package @ohif/extension-dicom-microscopy
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
## [0.50.8](https://github.com/OHIF/Viewers/compare/@ohif/extension-dicom-microscopy@0.50.7...@ohif/extension-dicom-microscopy@0.50.8) (2020-03-31)
|
|
69
|
-
|
|
70
|
-
**Note:** Version bump only for package @ohif/extension-dicom-microscopy
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
## [0.50.7](https://github.com/OHIF/Viewers/compare/@ohif/extension-dicom-microscopy@0.50.6...@ohif/extension-dicom-microscopy@0.50.7) (2020-03-09)
|
|
77
|
-
|
|
78
|
-
**Note:** Version bump only for package @ohif/extension-dicom-microscopy
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
## [0.50.6](https://github.com/OHIF/Viewers/compare/@ohif/extension-dicom-microscopy@0.50.5...@ohif/extension-dicom-microscopy@0.50.6) (2019-09-26)
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
### Bug Fixes
|
|
88
|
-
|
|
89
|
-
* Add some code splitting for PWA build ([#937](https://github.com/OHIF/Viewers/issues/937)) ([8938035](https://github.com/OHIF/Viewers/commit/8938035))
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
## [0.50.5](https://github.com/OHIF/Viewers/compare/@ohif/extension-dicom-microscopy@0.50.4...@ohif/extension-dicom-microscopy@0.50.5) (2019-09-10)
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
### Bug Fixes
|
|
99
|
-
|
|
100
|
-
* simplify runtime-extension usage ([ac5dbda](https://github.com/OHIF/Viewers/commit/ac5dbda))
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
## [0.50.4](https://github.com/OHIF/Viewers/compare/@ohif/extension-dicom-microscopy@0.50.3...@ohif/extension-dicom-microscopy@0.50.4) (2019-09-04)
|
|
107
|
-
|
|
108
|
-
**Note:** Version bump only for package @ohif/extension-dicom-microscopy
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
## [0.50.3](https://github.com/OHIF/Viewers/compare/@ohif/extension-dicom-microscopy@0.50.2...@ohif/extension-dicom-microscopy@0.50.3) (2019-09-04)
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
### Bug Fixes
|
|
118
|
-
|
|
119
|
-
* measurementsAPI issue caused by production build ([#842](https://github.com/OHIF/Viewers/issues/842)) ([49d3439](https://github.com/OHIF/Viewers/commit/49d3439))
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
## [0.50.2](https://github.com/OHIF/Viewers/compare/@ohif/extension-dicom-microscopy@0.50.1...@ohif/extension-dicom-microscopy@0.50.2) (2019-09-03)
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
### Bug Fixes
|
|
129
|
-
|
|
130
|
-
* **dicom-microscopy:** Update dicom-microscopy-viewer to 0.6.1 to fix Google Cloud usage with WSI images ([#843](https://github.com/OHIF/Viewers/issues/843)) ([dbaf5c5](https://github.com/OHIF/Viewers/commit/dbaf5c5))
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
## [0.50.1](https://github.com/OHIF/Viewers/compare/@ohif/extension-dicom-microscopy@0.50.0-alpha.10...@ohif/extension-dicom-microscopy@0.50.1) (2019-08-14)
|
|
137
|
-
|
|
138
|
-
**Note:** Version bump only for package @ohif/extension-dicom-microscopy
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
# [0.50.0-alpha.10](https://github.com/OHIF/Viewers/compare/@ohif/extension-dicom-microscopy@0.0.9-alpha.9...@ohif/extension-dicom-microscopy@0.50.0-alpha.10) (2019-08-14)
|
|
145
|
-
|
|
146
|
-
**Note:** Version bump only for package @ohif/extension-dicom-microscopy
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
## [0.0.9-alpha.9](https://github.com/OHIF/Viewers/compare/@ohif/extension-dicom-microscopy@0.0.9-alpha.8...@ohif/extension-dicom-microscopy@0.0.9-alpha.9) (2019-08-14)
|
|
153
|
-
|
|
154
|
-
**Note:** Version bump only for package @ohif/extension-dicom-microscopy
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
## 0.0.9-alpha.8 (2019-08-14)
|
|
161
|
-
|
|
162
|
-
**Note:** Version bump only for package @ohif/extension-dicom-microscopy
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
# Change Log
|
|
169
|
-
|
|
170
|
-
All notable changes to this project will be documented in this file. See
|
|
171
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
172
|
-
|
|
173
|
-
## [0.0.9-alpha.7](https://github.com/OHIF/Viewers/compare/@ohif/extension-dicom-microscopy@0.0.9-alpha.6...@ohif/extension-dicom-microscopy@0.0.9-alpha.7) (2019-08-08)
|
|
174
|
-
|
|
175
|
-
**Note:** Version bump only for package @ohif/extension-dicom-microscopy
|
|
176
|
-
|
|
177
|
-
# Change Log
|
|
178
|
-
|
|
179
|
-
All notable changes to this project will be documented in this file. See
|
|
180
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
181
|
-
|
|
182
|
-
## [0.0.9-alpha.6](https://github.com/OHIF/Viewers/compare/@ohif/extension-dicom-microscopy@0.0.9-alpha.5...@ohif/extension-dicom-microscopy@0.0.9-alpha.6) (2019-08-08)
|
|
183
|
-
|
|
184
|
-
**Note:** Version bump only for package @ohif/extension-dicom-microscopy
|
|
185
|
-
|
|
186
|
-
# Change Log
|
|
187
|
-
|
|
188
|
-
All notable changes to this project will be documented in this file. See
|
|
189
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
190
|
-
|
|
191
|
-
## [0.0.9-alpha.5](https://github.com/OHIF/Viewers/compare/@ohif/extension-dicom-microscopy@0.0.9-alpha.4...@ohif/extension-dicom-microscopy@0.0.9-alpha.5) (2019-08-08)
|
|
192
|
-
|
|
193
|
-
**Note:** Version bump only for package @ohif/extension-dicom-microscopy
|
|
194
|
-
|
|
195
|
-
# Change Log
|
|
196
|
-
|
|
197
|
-
All notable changes to this project will be documented in this file. See
|
|
198
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
199
|
-
|
|
200
|
-
## [0.0.9-alpha.4](https://github.com/OHIF/Viewers/compare/@ohif/extension-dicom-microscopy@0.0.9-alpha.3...@ohif/extension-dicom-microscopy@0.0.9-alpha.4) (2019-08-08)
|
|
201
|
-
|
|
202
|
-
**Note:** Version bump only for package @ohif/extension-dicom-microscopy
|
|
203
|
-
|
|
204
|
-
# Change Log
|
|
205
|
-
|
|
206
|
-
All notable changes to this project will be documented in this file. See
|
|
207
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
208
|
-
|
|
209
|
-
## [0.0.9-alpha.3](https://github.com/OHIF/Viewers/compare/@ohif/extension-dicom-microscopy@0.0.9-alpha.2...@ohif/extension-dicom-microscopy@0.0.9-alpha.3) (2019-08-08)
|
|
210
|
-
|
|
211
|
-
**Note:** Version bump only for package @ohif/extension-dicom-microscopy
|
|
212
|
-
|
|
213
|
-
# Change Log
|
|
214
|
-
|
|
215
|
-
All notable changes to this project will be documented in this file. See
|
|
216
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
217
|
-
|
|
218
|
-
## [0.0.9-alpha.2](https://github.com/OHIF/Viewers/compare/@ohif/extension-dicom-microscopy@0.0.9-alpha.1...@ohif/extension-dicom-microscopy@0.0.9-alpha.2) (2019-08-07)
|
|
219
|
-
|
|
220
|
-
**Note:** Version bump only for package @ohif/extension-dicom-microscopy
|
|
221
|
-
|
|
222
|
-
## [0.0.9-alpha.1](https://github.com/OHIF/Viewers/compare/@ohif/extension-dicom-microscopy@0.0.9-alpha.0...@ohif/extension-dicom-microscopy@0.0.9-alpha.1) (2019-08-07)
|
|
223
|
-
|
|
224
|
-
**Note:** Version bump only for package @ohif/extension-dicom-microscopy
|
|
225
|
-
|
|
226
|
-
## 0.0.9-alpha.0 (2019-08-05)
|
|
227
|
-
|
|
228
|
-
**Note:** Version bump only for package @ohif/extension-dicom-microscopy
|