oncoprintjs 6.0.6 → 6.0.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oncoprintjs",
3
- "version": "6.0.6",
3
+ "version": "6.0.8",
4
4
  "description": "A data visualization for cancer genomic data.",
5
5
  "types": "./dist/js/oncoprint.d.ts",
6
6
  "main": "dist/index.js",
@@ -56,9 +56,9 @@
56
56
  "gl-matrix": "2.3.2",
57
57
  "jquery": "^3.2.1",
58
58
  "jstat": "^1.7.1",
59
- "lodash": "^4.17.15",
59
+ "lodash": "^4.17.21",
60
60
  "tayden-clusterfck": "^0.7.0",
61
61
  "typescript": "4.0.3"
62
62
  },
63
- "gitHead": "62335e5640758e0eb98115b13d0867edb81e19d0"
63
+ "gitHead": "55fd9b0a7ffd20d5fea0d166181bc5838e6aa4f3"
64
64
  }
@@ -225,6 +225,7 @@ export default class OncoprintHeaderView {
225
225
  .appendTo($headerDiv)
226
226
  .attr({
227
227
  src: menuDotsIcon,
228
+ alt: 'Menu Dots Icon',
228
229
  width: MENU_DOTS_SIZE,
229
230
  height: MENU_DOTS_SIZE,
230
231
  })
@@ -262,7 +262,7 @@ export default class OncoprintMinimapView {
262
262
  })
263
263
  .addClass('oncoprint-zoomtofit-btn')
264
264
  .appendTo($div);
265
- $(`<img src="${zoomToFitIcon}" />`)
265
+ $(`<img src="${zoomToFitIcon}" alt="Zoom to Fit Icon" />`)
266
266
  .css({
267
267
  height: btn_height - 4,
268
268
  width: btn_width - 4,
@@ -617,7 +617,7 @@ export default class OncoprintModel {
617
617
  agg: OncoprintDataGroupsByTrackId<
618
618
  TrackProp<ColumnProp<Datum>>
619
619
  >,
620
- label,
620
+ label: string,
621
621
  trackId: number
622
622
  ) => {
623
623
  // key the data by the datum UID
@@ -248,6 +248,7 @@ export default class OncoprintTrackOptionsView {
248
248
  .appendTo($div)
249
249
  .attr({
250
250
  src: menuDotsIcon,
251
+ alt: 'Menu Dots Icon',
251
252
  width: this.img_size,
252
253
  height: this.img_size,
253
254
  })