@jbrowse/plugin-dotplot-view 2.10.1 → 2.10.2

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.
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { ExportSvgOptions } from '../model';
3
- export default function ExportSvgDlg({ model, handleClose, }: {
3
+ export default function ExportSvgDialog({ model, handleClose, }: {
4
4
  model: {
5
5
  exportSvg(opts: ExportSvgOptions): Promise<void>;
6
6
  };
@@ -35,7 +35,7 @@ function LoadingMessage() {
35
35
  function useSvgLocal(key, val) {
36
36
  return (0, util_1.useLocalStorage)('svg-' + key, val);
37
37
  }
38
- function ExportSvgDlg({ model, handleClose, }) {
38
+ function ExportSvgDialog({ model, handleClose, }) {
39
39
  const session = (0, util_1.getSession)(model);
40
40
  const offscreenCanvas = typeof OffscreenCanvas !== 'undefined';
41
41
  const [rasterizeLayers, setRasterizeLayers] = (0, react_1.useState)(offscreenCanvas);
@@ -72,4 +72,4 @@ function ExportSvgDlg({ model, handleClose, }) {
72
72
  }
73
73
  } }, "Submit"))));
74
74
  }
75
- exports.default = ExportSvgDlg;
75
+ exports.default = ExportSvgDialog;
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { ExportSvgOptions } from '../model';
3
- export default function ExportSvgDlg({ model, handleClose, }: {
3
+ export default function ExportSvgDialog({ model, handleClose, }: {
4
4
  model: {
5
5
  exportSvg(opts: ExportSvgOptions): Promise<void>;
6
6
  };
@@ -10,7 +10,7 @@ function LoadingMessage() {
10
10
  function useSvgLocal(key, val) {
11
11
  return useLocalStorage('svg-' + key, val);
12
12
  }
13
- export default function ExportSvgDlg({ model, handleClose, }) {
13
+ export default function ExportSvgDialog({ model, handleClose, }) {
14
14
  const session = getSession(model);
15
15
  const offscreenCanvas = typeof OffscreenCanvas !== 'undefined';
16
16
  const [rasterizeLayers, setRasterizeLayers] = useState(offscreenCanvas);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jbrowse/plugin-dotplot-view",
3
- "version": "2.10.1",
3
+ "version": "2.10.2",
4
4
  "description": "JBrowse 2 dotplot view",
5
5
  "keywords": [
6
6
  "jbrowse",
@@ -63,5 +63,5 @@
63
63
  "publishConfig": {
64
64
  "access": "public"
65
65
  },
66
- "gitHead": "442b5f87efddfdf4ccf520b4d9dd01ddd370cb07"
66
+ "gitHead": "7ca3b7db337ebd88853e2d96cdab940ed550c4fb"
67
67
  }