@deephaven/chart 1.5.1 → 1.5.2-beta.1
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/dist/LazyChart.js +3 -1
- package/dist/LazyChart.js.map +1 -1
- package/dist/plotly/LazyPlot.js +3 -1
- package/dist/plotly/LazyPlot.js.map +1 -1
- package/package.json +11 -11
package/dist/LazyChart.js
CHANGED
|
@@ -9,7 +9,9 @@ import { jsx as _jsx } from "react/jsx-runtime";
|
|
|
9
9
|
var Chart = /*#__PURE__*/lazy(() => import('./Chart.js'));
|
|
10
10
|
function LazyChart(props) {
|
|
11
11
|
return /*#__PURE__*/_jsx(Suspense, {
|
|
12
|
-
fallback: /*#__PURE__*/_jsx(LoadingOverlay, {
|
|
12
|
+
fallback: /*#__PURE__*/_jsx(LoadingOverlay, {
|
|
13
|
+
"data-testid": "lazy-chart-loading"
|
|
14
|
+
}),
|
|
13
15
|
children: /*#__PURE__*/_jsx(Chart, _objectSpread({}, props))
|
|
14
16
|
});
|
|
15
17
|
}
|
package/dist/LazyChart.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LazyChart.js","names":["LoadingOverlay","lazy","Suspense","jsx","_jsx","Chart","LazyChart","props","fallback","children","_objectSpread"],"sources":["../src/LazyChart.tsx"],"sourcesContent":["import { LoadingOverlay } from '@deephaven/components';\nimport { lazy, Suspense } from 'react';\n\nconst Chart = lazy(() => import('./Chart.js'));\n\nfunction LazyChart(props: React.ComponentProps<typeof Chart>): JSX.Element {\n return (\n <Suspense fallback={<LoadingOverlay />}>\n {/* eslint-disable-next-line react/jsx-props-no-spreading */}\n <Chart {...props} />\n </Suspense>\n );\n}\n\nexport default LazyChart;\n"],"mappings":";;;;;AAAA,SAASA,cAAc,QAAQ,uBAAuB;AACtD,SAASC,IAAI,EAAEC,QAAQ,QAAQ,OAAO;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAEvC,IAAMC,KAAK,gBAAGJ,IAAI,CAAC,MAAM,MAAM,CAAC,YAAY,CAAC,CAAC;AAE9C,SAASK,SAASA,CAACC,KAAyC,EAAe;EACzE,oBACEH,IAAA,CAACF,QAAQ;IAACM,QAAQ,eAAEJ,IAAA,CAACJ,cAAc,
|
|
1
|
+
{"version":3,"file":"LazyChart.js","names":["LoadingOverlay","lazy","Suspense","jsx","_jsx","Chart","LazyChart","props","fallback","children","_objectSpread"],"sources":["../src/LazyChart.tsx"],"sourcesContent":["import { LoadingOverlay } from '@deephaven/components';\nimport { lazy, Suspense } from 'react';\n\nconst Chart = lazy(() => import('./Chart.js'));\n\nfunction LazyChart(props: React.ComponentProps<typeof Chart>): JSX.Element {\n return (\n <Suspense fallback={<LoadingOverlay data-testid=\"lazy-chart-loading\" />}>\n {/* eslint-disable-next-line react/jsx-props-no-spreading */}\n <Chart {...props} />\n </Suspense>\n );\n}\n\nexport default LazyChart;\n"],"mappings":";;;;;AAAA,SAASA,cAAc,QAAQ,uBAAuB;AACtD,SAASC,IAAI,EAAEC,QAAQ,QAAQ,OAAO;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAEvC,IAAMC,KAAK,gBAAGJ,IAAI,CAAC,MAAM,MAAM,CAAC,YAAY,CAAC,CAAC;AAE9C,SAASK,SAASA,CAACC,KAAyC,EAAe;EACzE,oBACEH,IAAA,CAACF,QAAQ;IAACM,QAAQ,eAAEJ,IAAA,CAACJ,cAAc;MAAC,eAAY;IAAoB,CAAE,CAAE;IAAAS,QAAA,eAEtEL,IAAA,CAACC,KAAK,EAAAK,aAAA,KAAKH,KAAK,CAAG;EAAC,CACZ,CAAC;AAEf;AAEA,eAAeD,SAAS"}
|
package/dist/plotly/LazyPlot.js
CHANGED
|
@@ -9,7 +9,9 @@ import { jsx as _jsx } from "react/jsx-runtime";
|
|
|
9
9
|
var PlotBase = /*#__PURE__*/lazy(() => import('./Plot.js'));
|
|
10
10
|
function Plot(props) {
|
|
11
11
|
return /*#__PURE__*/_jsx(Suspense, {
|
|
12
|
-
fallback: /*#__PURE__*/_jsx(LoadingOverlay, {
|
|
12
|
+
fallback: /*#__PURE__*/_jsx(LoadingOverlay, {
|
|
13
|
+
"data-testid": "lazy-plot-loading"
|
|
14
|
+
}),
|
|
13
15
|
children: /*#__PURE__*/_jsx(PlotBase, _objectSpread({}, props))
|
|
14
16
|
});
|
|
15
17
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LazyPlot.js","names":["LoadingOverlay","lazy","Suspense","jsx","_jsx","PlotBase","Plot","props","fallback","children","_objectSpread"],"sources":["../../src/plotly/LazyPlot.tsx"],"sourcesContent":["import { LoadingOverlay } from '@deephaven/components';\nimport { lazy, Suspense } from 'react';\n\nconst PlotBase = lazy(() => import('./Plot.js'));\n\nfunction Plot(props: React.ComponentProps<typeof PlotBase>): JSX.Element {\n return (\n <Suspense fallback={<LoadingOverlay />}>\n {/* eslint-disable react/jsx-props-no-spreading */}\n <PlotBase {...props} />\n </Suspense>\n );\n}\n\nexport default Plot;\n"],"mappings":";;;;;AAAA,SAASA,cAAc,QAAQ,uBAAuB;AACtD,SAASC,IAAI,EAAEC,QAAQ,QAAQ,OAAO;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAEvC,IAAMC,QAAQ,gBAAGJ,IAAI,CAAC,MAAM,MAAM,CAAC,WAAW,CAAC,CAAC;AAEhD,SAASK,IAAIA,CAACC,KAA4C,EAAe;EACvE,oBACEH,IAAA,CAACF,QAAQ;IAACM,QAAQ,eAAEJ,IAAA,CAACJ,cAAc,
|
|
1
|
+
{"version":3,"file":"LazyPlot.js","names":["LoadingOverlay","lazy","Suspense","jsx","_jsx","PlotBase","Plot","props","fallback","children","_objectSpread"],"sources":["../../src/plotly/LazyPlot.tsx"],"sourcesContent":["import { LoadingOverlay } from '@deephaven/components';\nimport { lazy, Suspense } from 'react';\n\nconst PlotBase = lazy(() => import('./Plot.js'));\n\nfunction Plot(props: React.ComponentProps<typeof PlotBase>): JSX.Element {\n return (\n <Suspense fallback={<LoadingOverlay data-testid=\"lazy-plot-loading\" />}>\n {/* eslint-disable react/jsx-props-no-spreading */}\n <PlotBase {...props} />\n </Suspense>\n );\n}\n\nexport default Plot;\n"],"mappings":";;;;;AAAA,SAASA,cAAc,QAAQ,uBAAuB;AACtD,SAASC,IAAI,EAAEC,QAAQ,QAAQ,OAAO;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAEvC,IAAMC,QAAQ,gBAAGJ,IAAI,CAAC,MAAM,MAAM,CAAC,WAAW,CAAC,CAAC;AAEhD,SAASK,IAAIA,CAACC,KAA4C,EAAe;EACvE,oBACEH,IAAA,CAACF,QAAQ;IAACM,QAAQ,eAAEJ,IAAA,CAACJ,cAAc;MAAC,eAAY;IAAmB,CAAE,CAAE;IAAAS,QAAA,eAErEL,IAAA,CAACC,QAAQ,EAAAK,aAAA,KAAKH,KAAK,CAAG;EAAC,CACf,CAAC;AAEf;AAEA,eAAeD,IAAI"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deephaven/chart",
|
|
3
|
-
"version": "1.5.1",
|
|
3
|
+
"version": "1.5.2-beta.1+8793afa7",
|
|
4
4
|
"description": "Deephaven Chart",
|
|
5
5
|
"author": "Deephaven Data Labs LLC",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -27,13 +27,13 @@
|
|
|
27
27
|
"build:sass": "sass --embed-sources --load-path=../../node_modules ./src:./dist"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@deephaven/components": "^1.5.1",
|
|
31
|
-
"@deephaven/icons": "^1.2.
|
|
30
|
+
"@deephaven/components": "^1.5.2-beta.1+8793afa7",
|
|
31
|
+
"@deephaven/icons": "^1.5.2-beta.1+8793afa7",
|
|
32
32
|
"@deephaven/jsapi-types": "^1.0.0-dev0.39.4",
|
|
33
|
-
"@deephaven/jsapi-utils": "^1.
|
|
34
|
-
"@deephaven/log": "^1.1
|
|
35
|
-
"@deephaven/react-hooks": "^1.2.
|
|
36
|
-
"@deephaven/utils": "^1.1
|
|
33
|
+
"@deephaven/jsapi-utils": "^1.5.2-beta.1+8793afa7",
|
|
34
|
+
"@deephaven/log": "^1.5.2-beta.1+8793afa7",
|
|
35
|
+
"@deephaven/react-hooks": "^1.5.2-beta.1+8793afa7",
|
|
36
|
+
"@deephaven/utils": "^1.5.2-beta.1+8793afa7",
|
|
37
37
|
"buffer": "^6.0.3",
|
|
38
38
|
"fast-deep-equal": "^3.1.3",
|
|
39
39
|
"lodash.debounce": "^4.0.8",
|
|
@@ -48,9 +48,9 @@
|
|
|
48
48
|
"react": ">=16.8.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@deephaven/jsapi-shim": "^1.1
|
|
52
|
-
"@deephaven/mocks": "^1.1
|
|
53
|
-
"@deephaven/test-utils": "^1.1
|
|
51
|
+
"@deephaven/jsapi-shim": "^1.5.2-beta.1+8793afa7",
|
|
52
|
+
"@deephaven/mocks": "^1.5.2-beta.1+8793afa7",
|
|
53
|
+
"@deephaven/test-utils": "^1.5.2-beta.1+8793afa7",
|
|
54
54
|
"@types/plotly.js": "^3.0.0"
|
|
55
55
|
},
|
|
56
56
|
"files": [
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"publishConfig": {
|
|
63
63
|
"access": "public"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "8793afa7d6549b898df34d939a63b5853c6758c3"
|
|
66
66
|
}
|