@opentrace/opentrace 0.4.0-rc.545 → 0.4.0-rc.564
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/lib/app.cjs +1 -1
- package/dist/lib/app.js +1 -1
- package/dist/lib/{createLadybugStore-COsqSJ_o.js → createLadybugStore-9u5r2qih.js} +5 -5
- package/dist/lib/{createLadybugStore-COsqSJ_o.js.map → createLadybugStore-9u5r2qih.js.map} +1 -1
- package/dist/lib/{createLadybugStore-Xr3dNDtD.cjs → createLadybugStore-eSeEzDMg.cjs} +5 -5
- package/dist/lib/{createLadybugStore-Xr3dNDtD.cjs.map → createLadybugStore-eSeEzDMg.cjs.map} +1 -1
- package/dist/lib/src/store/ladybugStore.d.ts.map +1 -1
- package/dist/lib/store.cjs +1 -1
- package/dist/lib/store.js +1 -1
- package/package.json +1 -1
package/dist/lib/app.cjs
CHANGED
|
@@ -3,7 +3,7 @@ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toString
|
|
|
3
3
|
const jsxRuntime = require("react/jsx-runtime");
|
|
4
4
|
const React = require("react");
|
|
5
5
|
const browser = require("./browser-DGngmpUM.cjs");
|
|
6
|
-
const createLadybugStore = require("./createLadybugStore-
|
|
6
|
+
const createLadybugStore = require("./createLadybugStore-eSeEzDMg.cjs");
|
|
7
7
|
const useJobStream = require("./useJobStream-sNhohp_-.cjs");
|
|
8
8
|
const SettingsDrawer = require("./SettingsDrawer-CygxivWe.cjs");
|
|
9
9
|
const IndexingProgress = require("./IndexingProgress-Dgyb9B53.cjs");
|
package/dist/lib/app.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs, jsx, Fragment } from "react/jsx-runtime";
|
|
2
2
|
import { useRef, useState, useEffect, useCallback } from "react";
|
|
3
3
|
import { u as useStore, S as StoreProvider } from "./browser-DkJIwwcY.js";
|
|
4
|
-
import { c as createLadybugStore } from "./createLadybugStore-
|
|
4
|
+
import { c as createLadybugStore } from "./createLadybugStore-9u5r2qih.js";
|
|
5
5
|
import { u as useJobService, a as useJobStream, J as JobServiceProvider } from "./useJobStream-DN4tDsrE.js";
|
|
6
6
|
import { l as loadAnimationSettings, G as GraphViewer, C as ChatPanel, S as SettingsDrawer } from "./SettingsDrawer-DJ0um4WA.js";
|
|
7
7
|
import { n as normalizeRepoUrl, d as detectProvider } from "./IndexingProgress-DVYWqZhT.js";
|
|
@@ -12973,6 +12973,10 @@ class LadybugGraphStore {
|
|
|
12973
12973
|
this.flushedSourceIds.clear();
|
|
12974
12974
|
this.sourceCache.clear();
|
|
12975
12975
|
this.sourceSnippets.clear();
|
|
12976
|
+
this.pendingNodes = [];
|
|
12977
|
+
this.pendingRels = [];
|
|
12978
|
+
this.totalNodesBuffered = 0;
|
|
12979
|
+
this.totalRelsBuffered = 0;
|
|
12976
12980
|
}
|
|
12977
12981
|
async importDatabase(data, onProgress) {
|
|
12978
12982
|
await this.ensureReady();
|
|
@@ -12995,10 +12999,6 @@ class LadybugGraphStore {
|
|
|
12995
12999
|
"Archive contains no files. Make sure you are importing a .parquet.zip exported from OpenTrace."
|
|
12996
13000
|
);
|
|
12997
13001
|
}
|
|
12998
|
-
this.pendingNodes = [];
|
|
12999
|
-
this.pendingRels = [];
|
|
13000
|
-
this.totalNodesBuffered = 0;
|
|
13001
|
-
this.totalRelsBuffered = 0;
|
|
13002
13002
|
await this.clearGraph();
|
|
13003
13003
|
let totalNodes = 0;
|
|
13004
13004
|
let totalRels = 0;
|
|
@@ -13889,4 +13889,4 @@ function createLadybugStore() {
|
|
|
13889
13889
|
export {
|
|
13890
13890
|
createLadybugStore as c
|
|
13891
13891
|
};
|
|
13892
|
-
//# sourceMappingURL=createLadybugStore-
|
|
13892
|
+
//# sourceMappingURL=createLadybugStore-9u5r2qih.js.map
|