@deephaven/js-plugin-matplotlib 0.5.0 → 0.5.1-alpha-pivots.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.
Files changed (2) hide show
  1. package/dist/index.js +8 -20
  2. package/package.json +3 -6
package/dist/index.js CHANGED
@@ -6,15 +6,7 @@ const require$$1 = require("react");
6
6
  const jsapiBootstrap = require("@deephaven/jsapi-bootstrap");
7
7
  const Log = require("@deephaven/log");
8
8
  const dashboard = require("@deephaven/dashboard");
9
- var jsxRuntimeExports = {};
10
- var jsxRuntime = {
11
- get exports() {
12
- return jsxRuntimeExports;
13
- },
14
- set exports(v) {
15
- jsxRuntimeExports = v;
16
- }
17
- };
9
+ var jsxRuntime = { exports: {} };
18
10
  var reactJsxRuntime_production_min = {};
19
11
  /*
20
12
  object-assign
@@ -105,20 +97,16 @@ function q(c, a, k) {
105
97
  void 0 !== k && (e = "" + k);
106
98
  void 0 !== a.key && (e = "" + a.key);
107
99
  void 0 !== a.ref && (l = a.ref);
108
- for (b in a)
109
- n.call(a, b) && !p.hasOwnProperty(b) && (d[b] = a[b]);
110
- if (c && c.defaultProps)
111
- for (b in a = c.defaultProps, a)
112
- void 0 === d[b] && (d[b] = a[b]);
100
+ for (b in a) n.call(a, b) && !p.hasOwnProperty(b) && (d[b] = a[b]);
101
+ if (c && c.defaultProps) for (b in a = c.defaultProps, a) void 0 === d[b] && (d[b] = a[b]);
113
102
  return { $$typeof: g, type: c, key: e, ref: l, props: d, _owner: m.current };
114
103
  }
115
104
  reactJsxRuntime_production_min.jsx = q;
116
105
  reactJsxRuntime_production_min.jsxs = q;
117
- (function(module2) {
118
- {
119
- module2.exports = reactJsxRuntime_production_min;
120
- }
121
- })(jsxRuntime);
106
+ {
107
+ jsxRuntime.exports = reactJsxRuntime_production_min;
108
+ }
109
+ var jsxRuntimeExports = jsxRuntime.exports;
122
110
  const log$1 = Log.module("@deephaven/js-plugin-matplotlib.MatplotlibView");
123
111
  const MatplotlibViewStyle = {
124
112
  height: "100%",
@@ -213,7 +201,7 @@ const MatplotlibPlugin = {
213
201
  const urlAlphabet = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";
214
202
  let nanoid = (size = 21) => {
215
203
  let id = "";
216
- let bytes = crypto.getRandomValues(new Uint8Array(size));
204
+ let bytes = crypto.getRandomValues(new Uint8Array(size |= 0));
217
205
  while (size--) {
218
206
  id += urlAlphabet[bytes[size] & 63];
219
207
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deephaven/js-plugin-matplotlib",
3
- "version": "0.5.0",
3
+ "version": "0.5.1-alpha-pivots.0+3672c45",
4
4
  "description": "Deephaven Matplotlib plugin",
5
5
  "keywords": [
6
6
  "Deephaven",
@@ -28,11 +28,8 @@
28
28
  "devDependencies": {
29
29
  "@types/react": "^17.0.2",
30
30
  "@types/react-dom": "^17.0.2",
31
- "@vitejs/plugin-react-swc": "^3.0.0",
32
31
  "react": "^17.0.2",
33
- "react-dom": "^17.0.2",
34
- "typescript": "^4.5.4",
35
- "vite": "~4.1.4"
32
+ "react-dom": "^17.0.2"
36
33
  },
37
34
  "peerDependencies": {
38
35
  "react": "^17.0.2",
@@ -54,5 +51,5 @@
54
51
  "files": [
55
52
  "dist/index.js"
56
53
  ],
57
- "gitHead": "3dca56477c94548ab595116a53652d70d454827d"
54
+ "gitHead": "3672c455111ffff5975520efd83e89f0f0476d2e"
58
55
  }