@deephaven/app-utils 0.60.1-beta.5 → 0.60.1-object-fetcher.6

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 +1 @@
1
- {"version":3,"file":"ConnectionBootstrap.d.ts","sourceRoot":"","sources":["../../src/components/ConnectionBootstrap.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8B,MAAM,OAAO,CAAC;AASnD,MAAM,MAAM,wBAAwB,GAAG;IACrC;;;OAGG;IACH,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B,CAAC;AAEF;;GAEG;AACH,wBAAgB,mBAAmB,CAAC,EAClC,QAAQ,GACT,EAAE,wBAAwB,GAAG,GAAG,CAAC,OAAO,CAgExC;AAED,eAAe,mBAAmB,CAAC"}
1
+ {"version":3,"file":"ConnectionBootstrap.d.ts","sourceRoot":"","sources":["../../src/components/ConnectionBootstrap.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA2C,MAAM,OAAO,CAAC;AAchE,MAAM,MAAM,wBAAwB,GAAG;IACrC;;;OAGG;IACH,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B,CAAC;AAEF;;GAEG;AACH,wBAAgB,mBAAmB,CAAC,EAClC,QAAQ,GACT,EAAE,wBAAwB,GAAG,GAAG,CAAC,OAAO,CA0ExC;AAED,eAAe,mBAAmB,CAAC"}
@@ -1,10 +1,11 @@
1
1
  function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
2
2
  function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
3
- import React, { useEffect, useState } from 'react';
3
+ import React, { useCallback, useEffect, useState } from 'react';
4
4
  import { LoadingOverlay } from '@deephaven/components';
5
- import { useApi, useClient } from '@deephaven/jsapi-bootstrap';
6
- import { ConnectionContext } from '@deephaven/jsapi-components';
5
+ import { ObjectFetcherContext, useApi, useClient } from '@deephaven/jsapi-bootstrap';
7
6
  import Log from '@deephaven/log';
7
+ import { assertNotNull } from '@deephaven/utils';
8
+ import ConnectionContext from "./ConnectionContext.js";
8
9
  import { jsx as _jsx } from "react/jsx-runtime";
9
10
  var log = Log.module('@deephaven/app-utils.ConnectionBootstrap');
10
11
  /**
@@ -57,6 +58,15 @@ export function ConnectionBootstrap(_ref) {
57
58
  var removerFn = connection.addEventListener(api.IdeConnection.EVENT_SHUTDOWN, handleShutdown);
58
59
  return removerFn;
59
60
  }, [api, connection]);
61
+ var objectFetcher = useCallback( /*#__PURE__*/function () {
62
+ var _ref2 = _asyncToGenerator(function* (descriptor) {
63
+ assertNotNull(connection, 'connection');
64
+ return connection.getObject(descriptor);
65
+ });
66
+ return function (_x) {
67
+ return _ref2.apply(this, arguments);
68
+ };
69
+ }(), [connection]);
60
70
  if (connection == null || error != null) {
61
71
  return /*#__PURE__*/_jsx(LoadingOverlay, {
62
72
  "data-testid": "connection-bootstrap-loading",
@@ -66,7 +76,10 @@ export function ConnectionBootstrap(_ref) {
66
76
  }
67
77
  return /*#__PURE__*/_jsx(ConnectionContext.Provider, {
68
78
  value: connection,
69
- children: children
79
+ children: /*#__PURE__*/_jsx(ObjectFetcherContext.Provider, {
80
+ value: objectFetcher,
81
+ children: children
82
+ })
70
83
  });
71
84
  }
72
85
  export default ConnectionBootstrap;
@@ -1 +1 @@
1
- {"version":3,"file":"ConnectionBootstrap.js","names":["React","useEffect","useState","LoadingOverlay","useApi","useClient","ConnectionContext","Log","jsx","_jsx","log","module","ConnectionBootstrap","_ref","children","api","client","error","setError","connection","setConnection","initConnection","isCanceled","loadConnection","_loadConnection","apply","arguments","_asyncToGenerator","newConnection","getAsIdeConnection","e","listenForShutdown","handleShutdown","event","detail","info","concat","JSON","stringify","removerFn","addEventListener","IdeConnection","EVENT_SHUTDOWN","isLoading","errorMessage","undefined","Provider","value"],"sources":["../../src/components/ConnectionBootstrap.tsx"],"sourcesContent":["import React, { useEffect, useState } from 'react';\nimport { LoadingOverlay } from '@deephaven/components';\nimport { useApi, useClient } from '@deephaven/jsapi-bootstrap';\nimport type { IdeConnection } from '@deephaven/jsapi-types';\nimport { ConnectionContext } from '@deephaven/jsapi-components';\nimport Log from '@deephaven/log';\n\nconst log = Log.module('@deephaven/app-utils.ConnectionBootstrap');\n\nexport type ConnectionBootstrapProps = {\n /**\n * The children to render wrapped with the ConnectionContext.\n * Will not render children until the connection is created.\n */\n children: React.ReactNode;\n};\n\n/**\n * ConnectionBootstrap component. Handles initializing the connection.\n */\nexport function ConnectionBootstrap({\n children,\n}: ConnectionBootstrapProps): JSX.Element {\n const api = useApi();\n const client = useClient();\n const [error, setError] = useState<unknown>();\n const [connection, setConnection] = useState<IdeConnection>();\n useEffect(\n function initConnection() {\n let isCanceled = false;\n async function loadConnection(): Promise<void> {\n try {\n const newConnection = await client.getAsIdeConnection();\n if (isCanceled) {\n return;\n }\n setConnection(newConnection);\n } catch (e) {\n if (isCanceled) {\n return;\n }\n setError(e);\n }\n }\n loadConnection();\n return () => {\n isCanceled = true;\n };\n },\n [api, client]\n );\n\n useEffect(\n function listenForShutdown() {\n if (connection == null) return;\n\n function handleShutdown(event: CustomEvent): void {\n const { detail } = event;\n log.info('Shutdown', `${JSON.stringify(detail)}`);\n setError(`Server shutdown: ${detail ?? 'Unknown reason'}`);\n }\n\n const removerFn = connection.addEventListener(\n api.IdeConnection.EVENT_SHUTDOWN,\n handleShutdown\n );\n return removerFn;\n },\n [api, connection]\n );\n\n if (connection == null || error != null) {\n return (\n <LoadingOverlay\n data-testid=\"connection-bootstrap-loading\"\n isLoading={connection == null}\n errorMessage={error != null ? `${error}` : undefined}\n />\n );\n }\n\n return (\n <ConnectionContext.Provider value={connection}>\n {children}\n </ConnectionContext.Provider>\n );\n}\n\nexport default ConnectionBootstrap;\n"],"mappings":";;AAAA,OAAOA,KAAK,IAAIC,SAAS,EAAEC,QAAQ,QAAQ,OAAO;AAClD,SAASC,cAAc,QAAQ,uBAAuB;AACtD,SAASC,MAAM,EAAEC,SAAS,QAAQ,4BAA4B;AAE9D,SAASC,iBAAiB,QAAQ,6BAA6B;AAC/D,OAAOC,GAAG,MAAM,gBAAgB;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAEjC,IAAMC,GAAG,GAAGH,GAAG,CAACI,MAAM,CAAC,0CAA0C,CAAC;AAUlE;AACA;AACA;AACA,OAAO,SAASC,mBAAmBA,CAAAC,IAAA,EAEO;EAAA,IAFN;IAClCC;EACwB,CAAC,GAAAD,IAAA;EACzB,IAAME,GAAG,GAAGX,MAAM,CAAC,CAAC;EACpB,IAAMY,MAAM,GAAGX,SAAS,CAAC,CAAC;EAC1B,IAAM,CAACY,KAAK,EAAEC,QAAQ,CAAC,GAAGhB,QAAQ,CAAU,CAAC;EAC7C,IAAM,CAACiB,UAAU,EAAEC,aAAa,CAAC,GAAGlB,QAAQ,CAAgB,CAAC;EAC7DD,SAAS,CACP,SAASoB,cAAcA,CAAA,EAAG;IACxB,IAAIC,UAAU,GAAG,KAAK;IAAC,SACRC,cAAcA,CAAA;MAAA,OAAAC,eAAA,CAAAC,KAAA,OAAAC,SAAA;IAAA;IAAA,SAAAF,gBAAA;MAAAA,eAAA,GAAAG,iBAAA,CAA7B,aAA+C;QAC7C,IAAI;UACF,IAAMC,aAAa,SAASZ,MAAM,CAACa,kBAAkB,CAAC,CAAC;UACvD,IAAIP,UAAU,EAAE;YACd;UACF;UACAF,aAAa,CAACQ,aAAa,CAAC;QAC9B,CAAC,CAAC,OAAOE,CAAC,EAAE;UACV,IAAIR,UAAU,EAAE;YACd;UACF;UACAJ,QAAQ,CAACY,CAAC,CAAC;QACb;MACF,CAAC;MAAA,OAAAN,eAAA,CAAAC,KAAA,OAAAC,SAAA;IAAA;IACDH,cAAc,CAAC,CAAC;IAChB,OAAO,MAAM;MACXD,UAAU,GAAG,IAAI;IACnB,CAAC;EACH,CAAC,EACD,CAACP,GAAG,EAAEC,MAAM,CACd,CAAC;EAEDf,SAAS,CACP,SAAS8B,iBAAiBA,CAAA,EAAG;IAC3B,IAAIZ,UAAU,IAAI,IAAI,EAAE;IAExB,SAASa,cAAcA,CAACC,KAAkB,EAAQ;MAChD,IAAM;QAAEC;MAAO,CAAC,GAAGD,KAAK;MACxBvB,GAAG,CAACyB,IAAI,CAAC,UAAU,KAAAC,MAAA,CAAKC,IAAI,CAACC,SAAS,CAACJ,MAAM,CAAC,CAAE,CAAC;MACjDhB,QAAQ,qBAAAkB,MAAA,CAAqBF,MAAM,aAANA,MAAM,cAANA,MAAM,GAAI,gBAAgB,CAAE,CAAC;IAC5D;IAEA,IAAMK,SAAS,GAAGpB,UAAU,CAACqB,gBAAgB,CAC3CzB,GAAG,CAAC0B,aAAa,CAACC,cAAc,EAChCV,cACF,CAAC;IACD,OAAOO,SAAS;EAClB,CAAC,EACD,CAACxB,GAAG,EAAEI,UAAU,CAClB,CAAC;EAED,IAAIA,UAAU,IAAI,IAAI,IAAIF,KAAK,IAAI,IAAI,EAAE;IACvC,oBACER,IAAA,CAACN,cAAc;MACb,eAAY,8BAA8B;MAC1CwC,SAAS,EAAExB,UAAU,IAAI,IAAK;MAC9ByB,YAAY,EAAE3B,KAAK,IAAI,IAAI,MAAAmB,MAAA,CAAMnB,KAAK,IAAK4B;IAAU,CACtD,CAAC;EAEN;EAEA,oBACEpC,IAAA,CAACH,iBAAiB,CAACwC,QAAQ;IAACC,KAAK,EAAE5B,UAAW;IAAAL,QAAA,EAC3CA;EAAQ,CACiB,CAAC;AAEjC;AAEA,eAAeF,mBAAmB"}
1
+ {"version":3,"file":"ConnectionBootstrap.js","names":["React","useCallback","useEffect","useState","LoadingOverlay","ObjectFetcherContext","useApi","useClient","Log","assertNotNull","ConnectionContext","jsx","_jsx","log","module","ConnectionBootstrap","_ref","children","api","client","error","setError","connection","setConnection","initConnection","isCanceled","loadConnection","_loadConnection","apply","arguments","_asyncToGenerator","newConnection","getAsIdeConnection","e","listenForShutdown","handleShutdown","event","detail","info","concat","JSON","stringify","removerFn","addEventListener","IdeConnection","EVENT_SHUTDOWN","objectFetcher","_ref2","descriptor","getObject","_x","isLoading","errorMessage","undefined","Provider","value"],"sources":["../../src/components/ConnectionBootstrap.tsx"],"sourcesContent":["import React, { useCallback, useEffect, useState } from 'react';\nimport { LoadingOverlay } from '@deephaven/components';\nimport {\n ObjectFetcherContext,\n useApi,\n useClient,\n} from '@deephaven/jsapi-bootstrap';\nimport type { IdeConnection, VariableDescriptor } from '@deephaven/jsapi-types';\nimport Log from '@deephaven/log';\nimport { assertNotNull } from '@deephaven/utils';\nimport ConnectionContext from './ConnectionContext';\n\nconst log = Log.module('@deephaven/app-utils.ConnectionBootstrap');\n\nexport type ConnectionBootstrapProps = {\n /**\n * The children to render wrapped with the ConnectionContext.\n * Will not render children until the connection is created.\n */\n children: React.ReactNode;\n};\n\n/**\n * ConnectionBootstrap component. Handles initializing the connection.\n */\nexport function ConnectionBootstrap({\n children,\n}: ConnectionBootstrapProps): JSX.Element {\n const api = useApi();\n const client = useClient();\n const [error, setError] = useState<unknown>();\n const [connection, setConnection] = useState<IdeConnection>();\n useEffect(\n function initConnection() {\n let isCanceled = false;\n async function loadConnection(): Promise<void> {\n try {\n const newConnection = await client.getAsIdeConnection();\n if (isCanceled) {\n return;\n }\n setConnection(newConnection);\n } catch (e) {\n if (isCanceled) {\n return;\n }\n setError(e);\n }\n }\n loadConnection();\n return () => {\n isCanceled = true;\n };\n },\n [api, client]\n );\n\n useEffect(\n function listenForShutdown() {\n if (connection == null) return;\n\n function handleShutdown(event: CustomEvent): void {\n const { detail } = event;\n log.info('Shutdown', `${JSON.stringify(detail)}`);\n setError(`Server shutdown: ${detail ?? 'Unknown reason'}`);\n }\n\n const removerFn = connection.addEventListener(\n api.IdeConnection.EVENT_SHUTDOWN,\n handleShutdown\n );\n return removerFn;\n },\n [api, connection]\n );\n\n const objectFetcher = useCallback(\n async (descriptor: VariableDescriptor) => {\n assertNotNull(connection, 'connection');\n return connection.getObject(descriptor);\n },\n [connection]\n );\n\n if (connection == null || error != null) {\n return (\n <LoadingOverlay\n data-testid=\"connection-bootstrap-loading\"\n isLoading={connection == null}\n errorMessage={error != null ? `${error}` : undefined}\n />\n );\n }\n\n return (\n <ConnectionContext.Provider value={connection}>\n <ObjectFetcherContext.Provider value={objectFetcher}>\n {children}\n </ObjectFetcherContext.Provider>\n </ConnectionContext.Provider>\n );\n}\n\nexport default ConnectionBootstrap;\n"],"mappings":"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"}
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ import type { IdeConnection } from '@deephaven/jsapi-types';
3
+ export declare const ConnectionContext: import("react").Context<IdeConnection | null>;
4
+ export default ConnectionContext;
5
+ //# sourceMappingURL=ConnectionContext.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ConnectionContext.d.ts","sourceRoot":"","sources":["../../src/components/ConnectionContext.ts"],"names":[],"mappings":";AACA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAE5D,eAAO,MAAM,iBAAiB,+CAA4C,CAAC;AAE3E,eAAe,iBAAiB,CAAC"}
@@ -0,0 +1,4 @@
1
+ import { createContext } from 'react';
2
+ export var ConnectionContext = /*#__PURE__*/createContext(null);
3
+ export default ConnectionContext;
4
+ //# sourceMappingURL=ConnectionContext.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ConnectionContext.js","names":["createContext","ConnectionContext"],"sources":["../../src/components/ConnectionContext.ts"],"sourcesContent":["import { createContext } from 'react';\nimport type { IdeConnection } from '@deephaven/jsapi-types';\n\nexport const ConnectionContext = createContext<IdeConnection | null>(null);\n\nexport default ConnectionContext;\n"],"mappings":"AAAA,SAASA,aAAa,QAAQ,OAAO;AAGrC,OAAO,IAAMC,iBAAiB,gBAAGD,aAAa,CAAuB,IAAI,CAAC;AAE1E,eAAeC,iBAAiB"}
@@ -1,10 +1,12 @@
1
1
  export * from './AppBootstrap';
2
2
  export * from './AuthBootstrap';
3
3
  export * from './ConnectionBootstrap';
4
+ export * from './ConnectionContext';
4
5
  export * from './FontBootstrap';
5
6
  export * from './FontsLoaded';
6
7
  export * from './PluginsBootstrap';
7
8
  export * from './ThemeBootstrap';
9
+ export * from './useConnection';
8
10
  export * from './useServerConfig';
9
11
  export * from './useUser';
10
12
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,WAAW,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iBAAiB,CAAC;AAChC,cAAc,uBAAuB,CAAC;AACtC,cAAc,qBAAqB,CAAC;AACpC,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,WAAW,CAAC"}
@@ -1,10 +1,12 @@
1
1
  export * from "./AppBootstrap.js";
2
2
  export * from "./AuthBootstrap.js";
3
3
  export * from "./ConnectionBootstrap.js";
4
+ export * from "./ConnectionContext.js";
4
5
  export * from "./FontBootstrap.js";
5
6
  export * from "./FontsLoaded.js";
6
7
  export * from "./PluginsBootstrap.js";
7
8
  export * from "./ThemeBootstrap.js";
9
+ export * from "./useConnection.js";
8
10
  export * from "./useServerConfig.js";
9
11
  export * from "./useUser.js";
10
12
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","names":[],"sources":["../../src/components/index.ts"],"sourcesContent":["export * from './AppBootstrap';\nexport * from './AuthBootstrap';\nexport * from './ConnectionBootstrap';\nexport * from './FontBootstrap';\nexport * from './FontsLoaded';\nexport * from './PluginsBootstrap';\nexport * from './ThemeBootstrap';\nexport * from './useServerConfig';\nexport * from './useUser';\n"],"mappings":""}
1
+ {"version":3,"file":"index.js","names":[],"sources":["../../src/components/index.ts"],"sourcesContent":["export * from './AppBootstrap';\nexport * from './AuthBootstrap';\nexport * from './ConnectionBootstrap';\nexport * from './ConnectionContext';\nexport * from './FontBootstrap';\nexport * from './FontsLoaded';\nexport * from './PluginsBootstrap';\nexport * from './ThemeBootstrap';\nexport * from './useConnection';\nexport * from './useServerConfig';\nexport * from './useUser';\n"],"mappings":""}
@@ -0,0 +1,4 @@
1
+ import type { IdeConnection } from '@deephaven/jsapi-types';
2
+ export declare function useConnection(): IdeConnection;
3
+ export default useConnection;
4
+ //# sourceMappingURL=useConnection.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useConnection.d.ts","sourceRoot":"","sources":["../../src/components/useConnection.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAI5D,wBAAgB,aAAa,IAAI,aAAa,CAK7C;AAED,eAAe,aAAa,CAAC"}
@@ -0,0 +1,7 @@
1
+ import { useContextOrThrow } from '@deephaven/react-hooks';
2
+ import { ConnectionContext } from "./ConnectionContext.js";
3
+ export function useConnection() {
4
+ return useContextOrThrow(ConnectionContext, 'No IdeConnection available in useConnection. Was code wrapped in ConnectionContext.Provider?');
5
+ }
6
+ export default useConnection;
7
+ //# sourceMappingURL=useConnection.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useConnection.js","names":["useContextOrThrow","ConnectionContext","useConnection"],"sources":["../../src/components/useConnection.ts"],"sourcesContent":["import type { IdeConnection } from '@deephaven/jsapi-types';\nimport { useContextOrThrow } from '@deephaven/react-hooks';\nimport { ConnectionContext } from './ConnectionContext';\n\nexport function useConnection(): IdeConnection {\n return useContextOrThrow(\n ConnectionContext,\n 'No IdeConnection available in useConnection. Was code wrapped in ConnectionContext.Provider?'\n );\n}\n\nexport default useConnection;\n"],"mappings":"AACA,SAASA,iBAAiB,QAAQ,wBAAwB;AAAC,SAClDC,iBAAiB;AAE1B,OAAO,SAASC,aAAaA,CAAA,EAAkB;EAC7C,OAAOF,iBAAiB,CACtBC,iBAAiB,EACjB,8FACF,CAAC;AACH;AAEA,eAAeC,aAAa"}
@@ -12,7 +12,6 @@ import * as DeephavenAuthPlugins from '@deephaven/auth-plugins';
12
12
  import * as DeephavenChart from '@deephaven/chart';
13
13
  import * as DeephavenComponents from '@deephaven/components';
14
14
  import * as DeephavenDashboard from '@deephaven/dashboard';
15
- import * as DeephavenDashboardCorePlugins from '@deephaven/dashboard-core-plugins';
16
15
  import * as DeephavenIcons from '@deephaven/icons';
17
16
  import * as DeephavenIrisGrid from '@deephaven/iris-grid';
18
17
  import * as DeephavenJsapiBootstrap from '@deephaven/jsapi-bootstrap';
@@ -30,7 +29,6 @@ export declare const resolve: {
30
29
  '@deephaven/chart': typeof DeephavenChart;
31
30
  '@deephaven/components': typeof DeephavenComponents;
32
31
  '@deephaven/dashboard': typeof DeephavenDashboard;
33
- '@deephaven/dashboard-core-plugins': typeof DeephavenDashboardCorePlugins;
34
32
  '@deephaven/icons': typeof DeephavenIcons;
35
33
  '@deephaven/iris-grid': typeof DeephavenIrisGrid;
36
34
  '@deephaven/jsapi-bootstrap': typeof DeephavenJsapiBootstrap;
@@ -1 +1 @@
1
- {"version":3,"file":"remote-component.config.d.ts","sourceRoot":"","sources":["../../src/plugins/remote-component.config.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,UAAU,MAAM,aAAa,CAAC;AAC1C,OAAO,QAAQ,MAAM,WAAW,CAAC;AACjC,OAAO,KAAK,kBAAkB,MAAM,uBAAuB,CAAC;AAC5D,OAAO,KAAK,oBAAoB,MAAM,yBAAyB,CAAC;AAChE,OAAO,KAAK,cAAc,MAAM,kBAAkB,CAAC;AACnD,OAAO,KAAK,mBAAmB,MAAM,uBAAuB,CAAC;AAC7D,OAAO,KAAK,kBAAkB,MAAM,sBAAsB,CAAC;AAC3D,OAAO,KAAK,6BAA6B,MAAM,mCAAmC,CAAC;AACnF,OAAO,KAAK,cAAc,MAAM,kBAAkB,CAAC;AACnD,OAAO,KAAK,iBAAiB,MAAM,sBAAsB,CAAC;AAC1D,OAAO,KAAK,uBAAuB,MAAM,4BAA4B,CAAC;AACtE,OAAO,KAAK,wBAAwB,MAAM,6BAA6B,CAAC;AACxE,OAAO,KAAK,mBAAmB,MAAM,wBAAwB,CAAC;AAE9D,OAAO,KAAK,mBAAmB,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,eAAe,MAAM,mBAAmB,CAAC;AAGrD,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;CAmBnB,CAAC"}
1
+ {"version":3,"file":"remote-component.config.d.ts","sourceRoot":"","sources":["../../src/plugins/remote-component.config.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,UAAU,MAAM,aAAa,CAAC;AAC1C,OAAO,QAAQ,MAAM,WAAW,CAAC;AACjC,OAAO,KAAK,kBAAkB,MAAM,uBAAuB,CAAC;AAC5D,OAAO,KAAK,oBAAoB,MAAM,yBAAyB,CAAC;AAChE,OAAO,KAAK,cAAc,MAAM,kBAAkB,CAAC;AACnD,OAAO,KAAK,mBAAmB,MAAM,uBAAuB,CAAC;AAC7D,OAAO,KAAK,kBAAkB,MAAM,sBAAsB,CAAC;AAC3D,OAAO,KAAK,cAAc,MAAM,kBAAkB,CAAC;AACnD,OAAO,KAAK,iBAAiB,MAAM,sBAAsB,CAAC;AAC1D,OAAO,KAAK,uBAAuB,MAAM,4BAA4B,CAAC;AACtE,OAAO,KAAK,wBAAwB,MAAM,6BAA6B,CAAC;AACxE,OAAO,KAAK,mBAAmB,MAAM,wBAAwB,CAAC;AAE9D,OAAO,KAAK,mBAAmB,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,eAAe,MAAM,mBAAmB,CAAC;AAGrD,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;CAkBnB,CAAC"}
@@ -12,7 +12,6 @@ import * as DeephavenAuthPlugins from '@deephaven/auth-plugins';
12
12
  import * as DeephavenChart from '@deephaven/chart';
13
13
  import * as DeephavenComponents from '@deephaven/components';
14
14
  import * as DeephavenDashboard from '@deephaven/dashboard';
15
- import * as DeephavenDashboardCorePlugins from '@deephaven/dashboard-core-plugins';
16
15
  import * as DeephavenIcons from '@deephaven/icons';
17
16
  import * as DeephavenIrisGrid from '@deephaven/iris-grid';
18
17
  import * as DeephavenJsapiBootstrap from '@deephaven/jsapi-bootstrap';
@@ -33,7 +32,6 @@ export var resolve = {
33
32
  '@deephaven/chart': DeephavenChart,
34
33
  '@deephaven/components': DeephavenComponents,
35
34
  '@deephaven/dashboard': DeephavenDashboard,
36
- '@deephaven/dashboard-core-plugins': DeephavenDashboardCorePlugins,
37
35
  '@deephaven/icons': DeephavenIcons,
38
36
  '@deephaven/iris-grid': DeephavenIrisGrid,
39
37
  '@deephaven/jsapi-bootstrap': DeephavenJsapiBootstrap,
@@ -1 +1 @@
1
- {"version":3,"file":"remote-component.config.js","names":["react","redux","reactRedux","ReactDOM","AdobeReactSpectrum","DeephavenAuthPlugins","DeephavenChart","DeephavenComponents","DeephavenDashboard","DeephavenDashboardCorePlugins","DeephavenIcons","DeephavenIrisGrid","DeephavenJsapiBootstrap","DeephavenJsapiComponents","DeephavenJsapiUtils","DeephavenLog","DeephavenReactHooks","DeephavenPlugin","resolve"],"sources":["../../src/plugins/remote-component.config.ts"],"sourcesContent":["/**\n * remote-component.config.js\n *\n * Dependencies for Remote Components\n */\nimport react from 'react';\nimport * as redux from 'redux';\nimport * as reactRedux from 'react-redux';\nimport ReactDOM from 'react-dom';\nimport * as AdobeReactSpectrum from '@adobe/react-spectrum';\nimport * as DeephavenAuthPlugins from '@deephaven/auth-plugins';\nimport * as DeephavenChart from '@deephaven/chart';\nimport * as DeephavenComponents from '@deephaven/components';\nimport * as DeephavenDashboard from '@deephaven/dashboard';\nimport * as DeephavenDashboardCorePlugins from '@deephaven/dashboard-core-plugins';\nimport * as DeephavenIcons from '@deephaven/icons';\nimport * as DeephavenIrisGrid from '@deephaven/iris-grid';\nimport * as DeephavenJsapiBootstrap from '@deephaven/jsapi-bootstrap';\nimport * as DeephavenJsapiComponents from '@deephaven/jsapi-components';\nimport * as DeephavenJsapiUtils from '@deephaven/jsapi-utils';\nimport DeephavenLog from '@deephaven/log';\nimport * as DeephavenReactHooks from '@deephaven/react-hooks';\nimport * as DeephavenPlugin from '@deephaven/plugin';\n\n// eslint-disable-next-line import/prefer-default-export\nexport const resolve = {\n react,\n 'react-dom': ReactDOM,\n redux,\n 'react-redux': reactRedux,\n '@adobe/react-spectrum': AdobeReactSpectrum,\n '@deephaven/auth-plugins': DeephavenAuthPlugins,\n '@deephaven/chart': DeephavenChart,\n '@deephaven/components': DeephavenComponents,\n '@deephaven/dashboard': DeephavenDashboard,\n '@deephaven/dashboard-core-plugins': DeephavenDashboardCorePlugins,\n '@deephaven/icons': DeephavenIcons,\n '@deephaven/iris-grid': DeephavenIrisGrid,\n '@deephaven/jsapi-bootstrap': DeephavenJsapiBootstrap,\n '@deephaven/jsapi-components': DeephavenJsapiComponents,\n '@deephaven/jsapi-utils': DeephavenJsapiUtils,\n '@deephaven/log': DeephavenLog,\n '@deephaven/plugin': DeephavenPlugin,\n '@deephaven/react-hooks': DeephavenReactHooks,\n};\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA,OAAOA,KAAK,MAAM,OAAO;AACzB,OAAO,KAAKC,KAAK,MAAM,OAAO;AAC9B,OAAO,KAAKC,UAAU,MAAM,aAAa;AACzC,OAAOC,QAAQ,MAAM,WAAW;AAChC,OAAO,KAAKC,kBAAkB,MAAM,uBAAuB;AAC3D,OAAO,KAAKC,oBAAoB,MAAM,yBAAyB;AAC/D,OAAO,KAAKC,cAAc,MAAM,kBAAkB;AAClD,OAAO,KAAKC,mBAAmB,MAAM,uBAAuB;AAC5D,OAAO,KAAKC,kBAAkB,MAAM,sBAAsB;AAC1D,OAAO,KAAKC,6BAA6B,MAAM,mCAAmC;AAClF,OAAO,KAAKC,cAAc,MAAM,kBAAkB;AAClD,OAAO,KAAKC,iBAAiB,MAAM,sBAAsB;AACzD,OAAO,KAAKC,uBAAuB,MAAM,4BAA4B;AACrE,OAAO,KAAKC,wBAAwB,MAAM,6BAA6B;AACvE,OAAO,KAAKC,mBAAmB,MAAM,wBAAwB;AAC7D,OAAOC,YAAY,MAAM,gBAAgB;AACzC,OAAO,KAAKC,mBAAmB,MAAM,wBAAwB;AAC7D,OAAO,KAAKC,eAAe,MAAM,mBAAmB;;AAEpD;AACA,OAAO,IAAMC,OAAO,GAAG;EACrBlB,KAAK;EACL,WAAW,EAAEG,QAAQ;EACrBF,KAAK;EACL,aAAa,EAAEC,UAAU;EACzB,uBAAuB,EAAEE,kBAAkB;EAC3C,yBAAyB,EAAEC,oBAAoB;EAC/C,kBAAkB,EAAEC,cAAc;EAClC,uBAAuB,EAAEC,mBAAmB;EAC5C,sBAAsB,EAAEC,kBAAkB;EAC1C,mCAAmC,EAAEC,6BAA6B;EAClE,kBAAkB,EAAEC,cAAc;EAClC,sBAAsB,EAAEC,iBAAiB;EACzC,4BAA4B,EAAEC,uBAAuB;EACrD,6BAA6B,EAAEC,wBAAwB;EACvD,wBAAwB,EAAEC,mBAAmB;EAC7C,gBAAgB,EAAEC,YAAY;EAC9B,mBAAmB,EAAEE,eAAe;EACpC,wBAAwB,EAAED;AAC5B,CAAC"}
1
+ {"version":3,"file":"remote-component.config.js","names":["react","redux","reactRedux","ReactDOM","AdobeReactSpectrum","DeephavenAuthPlugins","DeephavenChart","DeephavenComponents","DeephavenDashboard","DeephavenIcons","DeephavenIrisGrid","DeephavenJsapiBootstrap","DeephavenJsapiComponents","DeephavenJsapiUtils","DeephavenLog","DeephavenReactHooks","DeephavenPlugin","resolve"],"sources":["../../src/plugins/remote-component.config.ts"],"sourcesContent":["/**\n * remote-component.config.js\n *\n * Dependencies for Remote Components\n */\nimport react from 'react';\nimport * as redux from 'redux';\nimport * as reactRedux from 'react-redux';\nimport ReactDOM from 'react-dom';\nimport * as AdobeReactSpectrum from '@adobe/react-spectrum';\nimport * as DeephavenAuthPlugins from '@deephaven/auth-plugins';\nimport * as DeephavenChart from '@deephaven/chart';\nimport * as DeephavenComponents from '@deephaven/components';\nimport * as DeephavenDashboard from '@deephaven/dashboard';\nimport * as DeephavenIcons from '@deephaven/icons';\nimport * as DeephavenIrisGrid from '@deephaven/iris-grid';\nimport * as DeephavenJsapiBootstrap from '@deephaven/jsapi-bootstrap';\nimport * as DeephavenJsapiComponents from '@deephaven/jsapi-components';\nimport * as DeephavenJsapiUtils from '@deephaven/jsapi-utils';\nimport DeephavenLog from '@deephaven/log';\nimport * as DeephavenReactHooks from '@deephaven/react-hooks';\nimport * as DeephavenPlugin from '@deephaven/plugin';\n\n// eslint-disable-next-line import/prefer-default-export\nexport const resolve = {\n react,\n 'react-dom': ReactDOM,\n redux,\n 'react-redux': reactRedux,\n '@adobe/react-spectrum': AdobeReactSpectrum,\n '@deephaven/auth-plugins': DeephavenAuthPlugins,\n '@deephaven/chart': DeephavenChart,\n '@deephaven/components': DeephavenComponents,\n '@deephaven/dashboard': DeephavenDashboard,\n '@deephaven/icons': DeephavenIcons,\n '@deephaven/iris-grid': DeephavenIrisGrid,\n '@deephaven/jsapi-bootstrap': DeephavenJsapiBootstrap,\n '@deephaven/jsapi-components': DeephavenJsapiComponents,\n '@deephaven/jsapi-utils': DeephavenJsapiUtils,\n '@deephaven/log': DeephavenLog,\n '@deephaven/plugin': DeephavenPlugin,\n '@deephaven/react-hooks': DeephavenReactHooks,\n};\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA,OAAOA,KAAK,MAAM,OAAO;AACzB,OAAO,KAAKC,KAAK,MAAM,OAAO;AAC9B,OAAO,KAAKC,UAAU,MAAM,aAAa;AACzC,OAAOC,QAAQ,MAAM,WAAW;AAChC,OAAO,KAAKC,kBAAkB,MAAM,uBAAuB;AAC3D,OAAO,KAAKC,oBAAoB,MAAM,yBAAyB;AAC/D,OAAO,KAAKC,cAAc,MAAM,kBAAkB;AAClD,OAAO,KAAKC,mBAAmB,MAAM,uBAAuB;AAC5D,OAAO,KAAKC,kBAAkB,MAAM,sBAAsB;AAC1D,OAAO,KAAKC,cAAc,MAAM,kBAAkB;AAClD,OAAO,KAAKC,iBAAiB,MAAM,sBAAsB;AACzD,OAAO,KAAKC,uBAAuB,MAAM,4BAA4B;AACrE,OAAO,KAAKC,wBAAwB,MAAM,6BAA6B;AACvE,OAAO,KAAKC,mBAAmB,MAAM,wBAAwB;AAC7D,OAAOC,YAAY,MAAM,gBAAgB;AACzC,OAAO,KAAKC,mBAAmB,MAAM,wBAAwB;AAC7D,OAAO,KAAKC,eAAe,MAAM,mBAAmB;;AAEpD;AACA,OAAO,IAAMC,OAAO,GAAG;EACrBjB,KAAK;EACL,WAAW,EAAEG,QAAQ;EACrBF,KAAK;EACL,aAAa,EAAEC,UAAU;EACzB,uBAAuB,EAAEE,kBAAkB;EAC3C,yBAAyB,EAAEC,oBAAoB;EAC/C,kBAAkB,EAAEC,cAAc;EAClC,uBAAuB,EAAEC,mBAAmB;EAC5C,sBAAsB,EAAEC,kBAAkB;EAC1C,kBAAkB,EAAEC,cAAc;EAClC,sBAAsB,EAAEC,iBAAiB;EACzC,4BAA4B,EAAEC,uBAAuB;EACrD,6BAA6B,EAAEC,wBAAwB;EACvD,wBAAwB,EAAEC,mBAAmB;EAC7C,gBAAgB,EAAEC,YAAY;EAC9B,mBAAmB,EAAEE,eAAe;EACpC,wBAAwB,EAAED;AAC5B,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deephaven/app-utils",
3
- "version": "0.60.1-beta.5+b047fa36",
3
+ "version": "0.60.1-object-fetcher.6+6a7af1e6",
4
4
  "description": "Deephaven App Utils",
5
5
  "author": "Deephaven Data Labs LLC",
6
6
  "license": "Apache-2.0",
@@ -29,23 +29,22 @@
29
29
  },
30
30
  "dependencies": {
31
31
  "@adobe/react-spectrum": "^3.29.0",
32
- "@deephaven/auth-plugins": "^0.60.1-beta.5+b047fa36",
33
- "@deephaven/chart": "^0.60.1-beta.5+b047fa36",
34
- "@deephaven/components": "^0.60.1-beta.5+b047fa36",
35
- "@deephaven/console": "^0.60.1-beta.5+b047fa36",
36
- "@deephaven/dashboard": "^0.60.1-beta.5+b047fa36",
37
- "@deephaven/dashboard-core-plugins": "^0.60.1-beta.5+b047fa36",
38
- "@deephaven/icons": "^0.60.1-beta.5+b047fa36",
39
- "@deephaven/iris-grid": "^0.60.1-beta.5+b047fa36",
40
- "@deephaven/jsapi-bootstrap": "^0.60.1-beta.5+b047fa36",
41
- "@deephaven/jsapi-components": "^0.60.1-beta.5+b047fa36",
42
- "@deephaven/jsapi-types": "^0.60.1-beta.5+b047fa36",
43
- "@deephaven/jsapi-utils": "^0.60.1-beta.5+b047fa36",
44
- "@deephaven/log": "^0.60.1-beta.5+b047fa36",
45
- "@deephaven/plugin": "^0.60.1-beta.5+b047fa36",
46
- "@deephaven/react-hooks": "^0.60.1-beta.5+b047fa36",
47
- "@deephaven/redux": "^0.60.1-beta.5+b047fa36",
48
- "@deephaven/utils": "^0.60.1-beta.5+b047fa36",
32
+ "@deephaven/auth-plugins": "^0.60.1-object-fetcher.6+6a7af1e6",
33
+ "@deephaven/chart": "^0.60.1-object-fetcher.6+6a7af1e6",
34
+ "@deephaven/components": "^0.60.1-object-fetcher.6+6a7af1e6",
35
+ "@deephaven/console": "^0.60.1-object-fetcher.6+6a7af1e6",
36
+ "@deephaven/dashboard": "^0.60.1-object-fetcher.6+6a7af1e6",
37
+ "@deephaven/icons": "^0.60.1-object-fetcher.6+6a7af1e6",
38
+ "@deephaven/iris-grid": "^0.60.1-object-fetcher.6+6a7af1e6",
39
+ "@deephaven/jsapi-bootstrap": "^0.60.1-object-fetcher.6+6a7af1e6",
40
+ "@deephaven/jsapi-components": "^0.60.1-object-fetcher.6+6a7af1e6",
41
+ "@deephaven/jsapi-types": "^0.60.1-object-fetcher.6+6a7af1e6",
42
+ "@deephaven/jsapi-utils": "^0.60.1-object-fetcher.6+6a7af1e6",
43
+ "@deephaven/log": "^0.60.1-object-fetcher.6+6a7af1e6",
44
+ "@deephaven/plugin": "^0.60.1-object-fetcher.6+6a7af1e6",
45
+ "@deephaven/react-hooks": "^0.60.1-object-fetcher.6+6a7af1e6",
46
+ "@deephaven/redux": "^0.60.1-object-fetcher.6+6a7af1e6",
47
+ "@deephaven/utils": "^0.60.1-object-fetcher.6+6a7af1e6",
49
48
  "@paciolan/remote-component": "2.13.0",
50
49
  "@paciolan/remote-module-loader": "^3.0.2",
51
50
  "fira": "mozilla/fira#4.202"
@@ -65,5 +64,5 @@
65
64
  "publishConfig": {
66
65
  "access": "public"
67
66
  },
68
- "gitHead": "b047fa36de3a285be925736ef73722a60d1d9ed7"
67
+ "gitHead": "6a7af1e6366a33dddcd7534fbc0d50d82509a137"
69
68
  }