🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@solid-devtools/debugger

Package Overview
Dependencies
Maintainers
1
Versions
66
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@solid-devtools/debugger - npm Package Compare versions

Comparing version
0.24.4
to
0.24.5
+113
dist/chunk-GZ63F2ZF.js
// packages/debugger/src/inspector/types.ts
var INFINITY = "Infinity";
var NEGATIVE_INFINITY = "NegativeInfinity";
var NAN = "NaN";
var UNDEFINED = "undefined";
var ValueType = /* @__PURE__ */ ((ValueType2) => {
ValueType2["Number"] = "number";
ValueType2["Boolean"] = "boolean";
ValueType2["String"] = "string";
ValueType2["Null"] = "null";
ValueType2["Symbol"] = "symbol";
ValueType2["Array"] = "array";
ValueType2["Object"] = "object";
ValueType2["Function"] = "function";
ValueType2["Getter"] = "getter";
ValueType2["Element"] = "element";
ValueType2["Instance"] = "instance";
ValueType2["Store"] = "store";
ValueType2["Unknown"] = "unknown";
return ValueType2;
})(ValueType || {});
var PropGetterState = /* @__PURE__ */ ((PropGetterState2) => {
PropGetterState2["Live"] = "live";
PropGetterState2["Stale"] = "stale";
return PropGetterState2;
})(PropGetterState || {});
// packages/debugger/src/locator/types.ts
var WINDOW_PROJECTPATH_PROPERTY = "$sdt_projectPath";
var LOCATION_ATTRIBUTE_NAME = "data-source-loc";
// packages/debugger/src/main/constants.ts
var DevtoolsMainView = /* @__PURE__ */ ((DevtoolsMainView2) => {
DevtoolsMainView2["Structure"] = "structure";
return DevtoolsMainView2;
})(DevtoolsMainView || {});
var DEFAULT_MAIN_VIEW = "structure" /* Structure */;
var DebuggerModule = /* @__PURE__ */ ((DebuggerModule2) => {
DebuggerModule2["Locator"] = "locator";
DebuggerModule2["Structure"] = "structure";
DebuggerModule2["Dgraph"] = "dgraph";
return DebuggerModule2;
})(DebuggerModule || {});
var TreeWalkerMode = /* @__PURE__ */ ((TreeWalkerMode2) => {
TreeWalkerMode2["Owners"] = "owners";
TreeWalkerMode2["Components"] = "components";
TreeWalkerMode2["DOM"] = "dom";
return TreeWalkerMode2;
})(TreeWalkerMode || {});
var DEFAULT_WALKER_MODE = "components" /* Components */;
var NodeType = /* @__PURE__ */ ((NodeType3) => {
NodeType3["Root"] = "root";
NodeType3["Component"] = "component";
NodeType3["Element"] = "element";
NodeType3["Effect"] = "effect";
NodeType3["Render"] = "render";
NodeType3["Memo"] = "memo";
NodeType3["Computation"] = "computation";
NodeType3["Refresh"] = "refresh";
NodeType3["Context"] = "context";
NodeType3["CatchError"] = "catchError";
NodeType3["Signal"] = "signal";
NodeType3["Store"] = "store";
return NodeType3;
})(NodeType || {});
var NODE_TYPE_NAMES = {
["root" /* Root */]: "Root",
["component" /* Component */]: "Component",
["element" /* Element */]: "Element",
["effect" /* Effect */]: "Effect",
["render" /* Render */]: "Render Effect",
["memo" /* Memo */]: "Memo",
["computation" /* Computation */]: "Computation",
["refresh" /* Refresh */]: "Refresh",
["context" /* Context */]: "Context",
["catchError" /* CatchError */]: "CatchError",
["signal" /* Signal */]: "Signal",
["store" /* Store */]: "Store"
};
var ValueItemType = /* @__PURE__ */ ((ValueItemType2) => {
ValueItemType2["Signal"] = "signal";
ValueItemType2["Prop"] = "prop";
ValueItemType2["Value"] = "value";
return ValueItemType2;
})(ValueItemType || {});
var UNKNOWN = "unknown";
// packages/debugger/src/main/types.ts
var getValueItemId = (type, id) => {
if (type === "value" /* Value */) return "value" /* Value */;
return `${type}:${id}`;
};
export {
DevtoolsMainView,
DEFAULT_MAIN_VIEW,
DebuggerModule,
TreeWalkerMode,
DEFAULT_WALKER_MODE,
NodeType,
NODE_TYPE_NAMES,
ValueItemType,
UNKNOWN,
INFINITY,
NEGATIVE_INFINITY,
NAN,
UNDEFINED,
ValueType,
PropGetterState,
WINDOW_PROJECTPATH_PROPERTY,
LOCATION_ATTRIBUTE_NAME,
getValueItemId
};
+1
-1

@@ -1,2 +0,2 @@

export {};
import '../../setup.ts';
//# sourceMappingURL=collect.test.d.ts.map

@@ -1,1 +0,1 @@

{"version":3,"file":"collect.test.d.ts","sourceRoot":"","sources":["../../../src/dependency/test/collect.test.ts"],"names":[],"mappings":""}
{"version":3,"file":"collect.test.d.ts","sourceRoot":"","sources":["../../../src/dependency/test/collect.test.ts"],"names":[],"mappings":"AAAA,OAAO,gBAAgB,CAAA"}

@@ -10,5 +10,5 @@ import {

WINDOW_PROJECTPATH_PROPERTY
} from "./chunk-NURNCQIN.js";
} from "./chunk-GZ63F2ZF.js";
// src/main/index.ts
// packages/debugger/src/main/index.ts
import { createEventBus, createGlobalEmitter } from "@solid-primitives/event-bus";

@@ -20,13 +20,13 @@ import { createStaticStore } from "@solid-primitives/static-store";

// src/dependency/index.ts
// packages/debugger/src/dependency/index.ts
import "@solid-primitives/event-bus";
import { throttle as throttle2 } from "@solid-primitives/scheduled";
import { throttle } from "@solid-primitives/scheduled";
import { defer } from "@solid-primitives/utils";
import { createEffect, createMemo } from "solid-js";
// src/main/get-id.ts
// packages/debugger/src/main/get-id.ts
var LastId = 0;
var getNewSdtId = () => `#${(LastId++).toString(36)}`;
// src/main/id.ts
// packages/debugger/src/main/id.ts
var WeakIdMap = /* @__PURE__ */ new WeakMap();

@@ -58,8 +58,6 @@ var RefMapMap = {

// src/main/utils.ts
// packages/debugger/src/main/utils.ts
import { trimString } from "@solid-devtools/shared/utils";
import "@solid-primitives/event-bus";
import { throttle } from "@solid-primitives/scheduled";
// src/main/setup.ts
// packages/debugger/src/main/setup.ts
if (!globalThis.SolidDevtools$$) {

@@ -73,7 +71,5 @@ throw new Error(

// src/main/utils.ts
var isObject = (o) => typeof o === "object" && !!o;
// packages/debugger/src/main/utils.ts
var isSolidOwner = (o) => "owned" in o;
var isSolidComputation = (o) => !!o.fn;
var isObservableComputation = (o) => !!o.fn && o.context === null;
var isSolidRoot = (o) => !("fn" in o);

@@ -83,3 +79,3 @@ var isSolidMemo = (o) => "fn" in o && "comparator" in o;

var isStoreNode = (o) => setup_default.store.$NODE in o;
var isSolidStore = (o) => !("observers" in o) && "value" in o && isObject(o.value) && setup_default.solid.$PROXY in o.value;
var isSolidStore = (o) => !("observers" in o) && typeof o.value === "object" && o.value != null && setup_default.solid.$PROXY in o.value;
var isSolidSignal = (o) => "value" in o && "observers" in o && "observerSlots" in o && "comparator" in o;

@@ -118,6 +114,19 @@ function getNodeType(o) {

var getNodeName = (o) => {
if (!o.name) return;
let name = o.name;
if (name.startsWith(SOLID_REFRESH_PREFIX)) name = name.slice(SOLID_REFRESH_PREFIX.length);
return trimString(name, 20);
let name;
search: {
if (typeof o.component === "function" && typeof o.component.displayName === "string" && o.component.displayName.length > 0) {
name = o.component.displayName;
break search;
}
if (o.name != null && o.name.length > 0) {
name = o.name;
break search;
}
return void 0;
}
if (name.startsWith(SOLID_REFRESH_PREFIX)) {
name = name.slice(SOLID_REFRESH_PREFIX.length);
}
name = trimString(name, 36);
return name;
};

@@ -147,19 +156,15 @@ function markOwnerType(o) {

function resolveElements(value) {
const resolved = getResolvedElements(value);
if (Array.isArray(resolved)) return resolved.length ? resolved : null;
return resolved ? [resolved] : null;
}
function getResolvedElements(value) {
if (typeof value === "function" && !value.length && value.name === "bound readSignal")
return getResolvedElements(value());
if (typeof value === "function" && !value.length && value.name === "bound readSignal") {
return resolveElements(value());
}
if (Array.isArray(value)) {
const results = [];
for (const item of value) {
const result = getResolvedElements(item);
const result = resolveElements(item);
if (result)
Array.isArray(result) ? results.push.apply(results, result) : results.push(result);
}
return results;
return results.length ? results : null;
}
return value instanceof HTMLElement ? value : null;
return value instanceof HTMLElement ? [value] : null;
}

@@ -200,21 +205,10 @@ function lookupOwner(owner, predicate) {

}
function createBatchedUpdateEmitter(emit) {
const updates = /* @__PURE__ */ new Set();
const triggerUpdateEmit = throttle(() => {
emit([...updates]);
updates.clear();
});
return (update) => {
updates.add(update);
triggerUpdateEmit();
};
}
// src/main/observe.ts
// packages/debugger/src/main/observe.ts
import { chain, tryOnCleanup } from "@solid-primitives/utils";
// src/main/roots.ts
// packages/debugger/src/main/roots.ts
import { warn } from "@solid-devtools/shared/utils";
// src/main/component-registry.ts
// packages/debugger/src/main/component-registry.ts
var $CLEANUP = Symbol("component-registry-cleanup");

@@ -296,3 +290,3 @@ var ComponentMap = /* @__PURE__ */ new Map();

// src/main/roots.ts
// packages/debugger/src/main/roots.ts
var RootMap = /* @__PURE__ */ new Map();

@@ -407,3 +401,3 @@ var getCurrentRoots = () => RootMap.values();

// src/main/observe.ts
// packages/debugger/src/main/observe.ts
for (const e of setup_default.get_created_owners()) {

@@ -474,3 +468,3 @@ attachDebugger(e);

// src/dependency/collect.ts
// packages/debugger/src/dependency/collect.ts
var $DGRAPH = Symbol("dependency-graph");

@@ -564,3 +558,3 @@ var Graph;

// src/dependency/index.ts
// packages/debugger/src/dependency/index.ts
function createDependencyGraph(props) {

@@ -599,3 +593,3 @@ let clearListeners = null;

}
const triggerInspect = throttle2(inspectDGraph, 200);
const triggerInspect = throttle(inspectDGraph, 200);
createEffect(

@@ -611,13 +605,13 @@ defer([props.enabled, inspectedNode], () => {

// src/inspector/index.ts
// packages/debugger/src/inspector/index.ts
import { warn as warn3 } from "@solid-devtools/shared/utils";
import "@solid-primitives/event-bus";
import { scheduleIdle as scheduleIdle2, throttle as throttle3 } from "@solid-primitives/scheduled";
import { scheduleIdle as scheduleIdle2, throttle as throttle2 } from "@solid-primitives/scheduled";
import { createEffect as createEffect3, onCleanup as onCleanup3 } from "solid-js";
// src/inspector/inspector.ts
// packages/debugger/src/inspector/inspector.ts
import { misc } from "@nothing-but/utils";
import { untrackedCallback } from "@solid-devtools/shared/primitives";
// src/locator/index.ts
// packages/debugger/src/locator/index.ts
import { makeHoverElementListener } from "@solid-devtools/shared/primitives";

@@ -639,3 +633,3 @@ import { warn as warn2 } from "@solid-devtools/shared/utils";

// src/locator/element-overlay.tsx
// packages/debugger/src/locator/element-overlay.tsx
import { template as _$template } from "solid-js/web";

@@ -791,3 +785,3 @@ import { className as _$className } from "solid-js/web";

// src/locator/find-components.ts
// packages/debugger/src/locator/find-components.ts
import { isWindows } from "@solid-primitives/platform";

@@ -831,3 +825,3 @@ var LOC_ATTR_REGEX_WIN = /^((?:\\?[^\s][^/\\:\"\?\*<>\|]+)+):([0-9]+):([0-9]+)$/;

// src/locator/index.ts
// packages/debugger/src/locator/index.ts
function createLocator(props) {

@@ -945,3 +939,3 @@ const [enabledByPressingSignal, setEnabledByPressingSignal] = createSignal(() => false);

// src/inspector/serialize.ts
// packages/debugger/src/inspector/serialize.ts
import "@solid-primitives/utils";

@@ -1048,3 +1042,3 @@ var Deep;

// src/inspector/inspector.ts
// packages/debugger/src/inspector/inspector.ts
var ValueNode = class {

@@ -1245,2 +1239,3 @@ constructor(getValue) {

getValue = () => refresh.value;
details.hmr = true;
}

@@ -1286,3 +1281,3 @@ ;

// src/inspector/store.ts
// packages/debugger/src/inspector/store.ts
var Nodes = /* @__PURE__ */ new WeakMap();

@@ -1348,3 +1343,3 @@ var OnNodeUpdate2 = null;

// src/inspector/index.ts
// packages/debugger/src/inspector/index.ts
function createInspector(props) {

@@ -1398,3 +1393,3 @@ let lastDetails;

});
const flushPropsCheck = throttle3(flush, 200);
const flushPropsCheck = throttle2(flush, 200);
setOnStoreNodeUpdate((...payload) => {

@@ -1478,8 +1473,9 @@ storeUpdates.push(payload);

// src/structure/index.ts
// packages/debugger/src/structure/index.ts
import "@solid-primitives/event-bus";
import { throttle as throttle4 } from "@solid-primitives/scheduled";
import { throttle as throttle3 } from "@solid-primitives/scheduled";
// src/structure/walker.ts
// packages/debugger/src/structure/walker.ts
import { untrackedCallback as untrackedCallback2 } from "@solid-devtools/shared/primitives";
import { asArray } from "@solid-devtools/shared/utils";
var Mode;

@@ -1491,19 +1487,14 @@ var RootId;

var $WALKER = Symbol("tree-walker");
function observeComputation(owner, attachedData) {
let isLeaf = !owner.owned || owner.owned.length === 0;
const boundHandler = OnComputationUpdate.bind(
void 0,
RootId,
attachedData,
getSdtId(attachedData, "owner" /* Owner */)
);
const handler = isLeaf && Mode !== "dom" /* DOM */ ? () => {
if (isLeaf && (!owner.owned || owner.owned.length === 0)) {
boundHandler(false);
} else {
isLeaf = false;
boundHandler(true);
}
} : boundHandler.bind(void 0, true);
observeComputationUpdate(owner, handler, $WALKER);
function observeComputation(comp, owner_to_update) {
let was_leaf = !comp.owned || comp.owned.length === 0;
let root_id = RootId;
let on_computation_update = OnComputationUpdate;
let mode = Mode;
const handler = () => {
let is_leaf = !comp.owned || comp.owned.length === 0;
let changed_structure = was_leaf !== is_leaf || !is_leaf || mode === "dom" /* DOM */;
was_leaf = is_leaf;
on_computation_update(root_id, owner_to_update, changed_structure);
};
observeComputationUpdate(comp, handler, $WALKER);
}

@@ -1526,3 +1517,3 @@ function mapChildren(owner, mappedOwner) {

} else {
if (isObservableComputation(child)) observeComputation(child, owner);
if (isSolidComputation(child)) observeComputation(child, owner);
children.push.apply(children, mapChildren(child, mappedOwner));

@@ -1576,5 +1567,5 @@ }

}
function mapOwner(owner, parent, overwriteType) {
function mapOwner(owner, parent) {
const id = getSdtId(owner, "owner" /* Owner */);
const type = overwriteType ?? markOwnerType(owner);
const type = markOwnerType(owner);
const name = getNodeName(owner);

@@ -1584,5 +1575,5 @@ const mapped = { id, type, name };

if (type === "component" /* Component */) {
let contextNode;
if (name === "provider" && owner.owned && owner.owned.length === 1 && markOwnerType(contextNode = owner.owned[0]) === "context" /* Context */) {
return mapOwner(contextNode, parent, "context" /* Context */);
let first_owned;
if (name === "provider" && owner.owned && owner.owned.length === 1 && markOwnerType(first_owned = owner.owned[0]) === "context" /* Context */) {
return mapOwner(first_owned, parent);
}

@@ -1600,5 +1591,7 @@ RegisterComponent({

}
} else if (isObservableComputation(owner)) {
} else if (isSolidComputation(owner)) {
observeComputation(owner, owner);
if (!owner.sources || owner.sources.length === 0) mapped.frozen = true;
if (type != "context" /* Context */ && (!owner.sources || owner.sources.length === 0)) {
mapped.frozen = true;
}
}

@@ -1610,9 +1603,3 @@ const children = [];

if (Mode === "dom" /* DOM */ && (resolvedElements = resolvedElements === void 0 ? resolveElements(owner.value) : resolvedElements)) {
children.push.apply(
children,
mapElements(
Array.isArray(resolvedElements) ? resolvedElements : [resolvedElements],
parent?.children
)
);
children.push.apply(children, mapElements(asArray(resolvedElements), parent?.children));
}

@@ -1643,3 +1630,3 @@ const addedToParent = AddedToParentElements;

// src/structure/index.ts
// packages/debugger/src/structure/index.ts
function getClosestIncludedOwner(owner, mode) {

@@ -1669,7 +1656,10 @@ let closest = null;

let shouldUpdateAllRoots = true;
const onComputationUpdate = (rootId, owner, ownerId, changedStructure) => {
const onComputationUpdate = (rootId, owner, changedStructure) => {
queueMicrotask(() => {
if (!props.enabled()) return;
changedStructure && updateOwner(owner, rootId);
props.onNodeUpdate(ownerId);
if (changedStructure) {
updateOwner(owner, rootId);
}
let id = getSdtId(owner, "owner" /* Owner */);
props.onNodeUpdate(id);
});

@@ -1705,3 +1695,3 @@ };

}
const flushRootUpdateQueue = throttle4(forceFlushRootUpdateQueue, 250);
const flushRootUpdateQueue = throttle3(forceFlushRootUpdateQueue, 250);
function updateOwner(node, topRootId) {

@@ -1749,3 +1739,3 @@ updateQueue.add(node);

// src/main/index.ts
// packages/debugger/src/main/index.ts
var hub = {

@@ -1827,5 +1817,14 @@ output: createGlobalEmitter(),

);
var pushNodeUpdate = createBatchedUpdateEmitter((updates) => {
hub.output.emit("NodeUpdates", updates);
});
var node_updates_ids = [];
var node_updates_timeout = 0;
function pushNodeUpdate(id) {
node_updates_ids.push(id);
if (node_updates_timeout === 0) {
node_updates_timeout = window.setTimeout(() => {
hub.output.emit("NodeUpdates", node_updates_ids);
node_updates_ids = [];
node_updates_timeout = 0;
});
}
}
var structure = createStructure({

@@ -1880,15 +1879,22 @@ onStructureUpdate(updates) {

case "HighlightElementChange":
return locator.setDevtoolsHighlightTarget(e.details);
locator.setDevtoolsHighlightTarget(e.details);
break;
case "InspectNode":
return setInspectedNode(e.details);
setInspectedNode(e.details);
break;
case "InspectValue":
return inspector.toggleValueNode(e.details);
inspector.toggleValueNode(e.details);
break;
case "OpenLocation":
return openInspectedNodeLocation();
openInspectedNodeLocation();
break;
case "TreeViewModeChange":
return structure.setTreeWalkerMode(e.details);
structure.setTreeWalkerMode(e.details);
break;
case "ViewChange":
return setView(e.details);
setView(e.details);
break;
case "ToggleModule":
return toggleModule(e.details);
toggleModule(e.details);
break;
}

@@ -1895,0 +1901,0 @@ });

@@ -1,1 +0,1 @@

{"version":3,"file":"inspector.d.ts","sourceRoot":"","sources":["../../src/inspector/inspector.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAC,MAAM,EAAU,KAAK,EAAE,WAAW,EAAC,MAAM,kBAAkB,CAAA;AAGxE,OAAO,EAAC,KAAK,kBAAkB,EAAE,eAAe,EAAC,MAAM,YAAY,CAAA;AAEnE,qBAAa,SAAS;IAGC,QAAQ,EAAE,CAAC,MAAM,OAAO,CAAC,GAAG,SAAS;IAFxD,OAAO,CAAC,aAAa,CAAqB;IAC1C,OAAO,CAAC,QAAQ,CAAQ;gBACL,QAAQ,EAAE,CAAC,MAAM,OAAO,CAAC,GAAG,SAAS;IACxD,gBAAgB,CAAC,KAAK,EAAE,YAAY;IAGpC,OAAO,CAAC,WAAW;IAInB,KAAK;IAIL,UAAU;IAGV,WAAW,CAAC,QAAQ,EAAE,OAAO;CAIhC;AAED,qBAAa,YAAY;IACrB,OAAO,CAAC,MAAM,CAAuC;IACrD,GAAG,CAAC,EAAE,EAAE,WAAW,GAAG,SAAS,GAAG,SAAS;IAG3C,GAAG,CAAC,EAAE,EAAE,WAAW,EAAE,QAAQ,EAAE,CAAC,MAAM,OAAO,CAAC,GAAG,SAAS;IAG1D,KAAK;CAGR;AAED,yBAAiB,SAAS,CAAC;IACvB,oFAAoF;IACpF,KAAY,iBAAiB,GAAG,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,eAAe,KAAK,IAAI,CAAA;IAC7E,KAAY,aAAa,GAAG,CAAC,EAAE,EAAE,WAAW,KAAK,IAAI,CAAA;CACxD;AAED,MAAM,MAAM,gBAAgB,GAAG,OAAO,CAAC,KAAK,CAAC,SAAS,CAAC,OAAO,CAAC,EAAE,aAAa,CAAC,CAAA;AAE/E,QAAA,MAAM,QAAQ,eAAoB,CAAA;AAElC;;;GAGG;AACH,qBAAa,aAAa;IACV,QAAQ,CAAC,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,OAAO,CAAC;gBAA/B,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,OAAO,CAAC;IAEpD,OAAO,CAAC,iBAAiB,CAAC,CAAyC;IACnE,OAAO,CAAC,aAAa,CAAC,CAAqC;IAC3D,OAAO,CAAC,eAAe,CAAkE;IAEzF,OAAO,CACH,iBAAiB,EAAE,SAAS,CAAC,iBAAiB,EAC9C,aAAa,EAAE,SAAS,CAAC,aAAa;IAK1C,SAAS;IAKT,WAAW,CACP,GAAG,EAAE,MAAM,EACX,EAAE,EAAE,WAAW,EACf,GAAG,EAAE,MAAM,OAAO,GACnB;QAAC,QAAQ,EAAE,MAAM,OAAO,GAAG,OAAO,QAAQ,CAAC;QAAC,OAAO,EAAE,OAAO,CAAA;KAAC;CA+BnE;AAED,QAAA,MAAM,oBAAoB,YACb,SAAS,MAAM,EAAE,WACjB,SAAS,MAAM,EAAE,KAC3B,kBAAkB,CAAC,UAAU,CAAC,GAAG,IAanC,CAAA;AAED;;;GAGG;AACH,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,KAAK,CAAC,KAAK,EAAE,gBAAgB,EAAE,gBAAgB,GAAG,IAAI,CAehG;AAmGD,eAAO,MAAM,mBAAmB,UACrB,KAAK,CAAC,KAAK,UACV;IACJ,iBAAiB,EAAE,SAAS,CAAC,iBAAiB,CAAA;IAC9C,aAAa,EAAE,SAAS,CAAC,aAAa,CAAA;IACtC,gBAAgB,EAAE,gBAAgB,CAAA;CACrC;;;4BAtD2B,UAAU,CAAC,OAAO,oBAAoB,CAAC;CAoJrE,CAAA"}
{"version":3,"file":"inspector.d.ts","sourceRoot":"","sources":["../../src/inspector/inspector.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAC,MAAM,EAAU,KAAK,EAAE,WAAW,EAAC,MAAM,kBAAkB,CAAA;AAGxE,OAAO,EAAC,KAAK,kBAAkB,EAAE,eAAe,EAAC,MAAM,YAAY,CAAA;AAEnE,qBAAa,SAAS;IAGC,QAAQ,EAAE,CAAC,MAAM,OAAO,CAAC,GAAG,SAAS;IAFxD,OAAO,CAAC,aAAa,CAAqB;IAC1C,OAAO,CAAC,QAAQ,CAAQ;gBACL,QAAQ,EAAE,CAAC,MAAM,OAAO,CAAC,GAAG,SAAS;IACxD,gBAAgB,CAAC,KAAK,EAAE,YAAY;IAGpC,OAAO,CAAC,WAAW;IAInB,KAAK;IAIL,UAAU;IAGV,WAAW,CAAC,QAAQ,EAAE,OAAO;CAIhC;AAED,qBAAa,YAAY;IACrB,OAAO,CAAC,MAAM,CAAuC;IACrD,GAAG,CAAC,EAAE,EAAE,WAAW,GAAG,SAAS,GAAG,SAAS;IAG3C,GAAG,CAAC,EAAE,EAAE,WAAW,EAAE,QAAQ,EAAE,CAAC,MAAM,OAAO,CAAC,GAAG,SAAS;IAG1D,KAAK;CAGR;AAED,yBAAiB,SAAS,CAAC;IACvB,oFAAoF;IACpF,KAAY,iBAAiB,GAAG,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,eAAe,KAAK,IAAI,CAAA;IAC7E,KAAY,aAAa,GAAG,CAAC,EAAE,EAAE,WAAW,KAAK,IAAI,CAAA;CACxD;AAED,MAAM,MAAM,gBAAgB,GAAG,OAAO,CAAC,KAAK,CAAC,SAAS,CAAC,OAAO,CAAC,EAAE,aAAa,CAAC,CAAA;AAE/E,QAAA,MAAM,QAAQ,eAAoB,CAAA;AAElC;;;GAGG;AACH,qBAAa,aAAa;IACV,QAAQ,CAAC,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,OAAO,CAAC;gBAA/B,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC,OAAO,CAAC;IAEpD,OAAO,CAAC,iBAAiB,CAAC,CAAyC;IACnE,OAAO,CAAC,aAAa,CAAC,CAAqC;IAC3D,OAAO,CAAC,eAAe,CAAkE;IAEzF,OAAO,CACH,iBAAiB,EAAE,SAAS,CAAC,iBAAiB,EAC9C,aAAa,EAAE,SAAS,CAAC,aAAa;IAK1C,SAAS;IAKT,WAAW,CACP,GAAG,EAAE,MAAM,EACX,EAAE,EAAE,WAAW,EACf,GAAG,EAAE,MAAM,OAAO,GACnB;QAAC,QAAQ,EAAE,MAAM,OAAO,GAAG,OAAO,QAAQ,CAAC;QAAC,OAAO,EAAE,OAAO,CAAA;KAAC;CA+BnE;AAED,QAAA,MAAM,oBAAoB,YACb,SAAS,MAAM,EAAE,WACjB,SAAS,MAAM,EAAE,KAC3B,kBAAkB,CAAC,UAAU,CAAC,GAAG,IAanC,CAAA;AAED;;;GAGG;AACH,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,KAAK,CAAC,KAAK,EAAE,gBAAgB,EAAE,gBAAgB,GAAG,IAAI,CAehG;AAmGD,eAAO,MAAM,mBAAmB,UACrB,KAAK,CAAC,KAAK,UACV;IACJ,iBAAiB,EAAE,SAAS,CAAC,iBAAiB,CAAA;IAC9C,aAAa,EAAE,SAAS,CAAC,aAAa,CAAA;IACtC,gBAAgB,EAAE,gBAAgB,CAAA;CACrC;;;4BAtD2B,UAAU,CAAC,OAAO,oBAAoB,CAAC;CAyJrE,CAAA"}

@@ -1,2 +0,2 @@

export {};
import '../../setup.ts';
//# sourceMappingURL=index.test.d.ts.map

@@ -1,1 +0,1 @@

{"version":3,"file":"index.test.d.ts","sourceRoot":"","sources":["../../../src/inspector/test/index.test.tsx"],"names":[],"mappings":""}
{"version":3,"file":"index.test.d.ts","sourceRoot":"","sources":["../../../src/inspector/test/index.test.tsx"],"names":[],"mappings":"AAAA,OAAO,gBAAgB,CAAA"}

@@ -1,2 +0,2 @@

export {};
import '../../setup.ts';
//# sourceMappingURL=serialize.test.d.ts.map

@@ -1,1 +0,1 @@

{"version":3,"file":"serialize.test.d.ts","sourceRoot":"","sources":["../../../src/inspector/test/serialize.test.ts"],"names":[],"mappings":""}
{"version":3,"file":"serialize.test.d.ts","sourceRoot":"","sources":["../../../src/inspector/test/serialize.test.ts"],"names":[],"mappings":"AAAA,OAAO,gBAAgB,CAAA"}

@@ -1,2 +0,2 @@

export {};
import '../../setup.ts';
//# sourceMappingURL=store.test.d.ts.map

@@ -1,1 +0,1 @@

{"version":3,"file":"store.test.d.ts","sourceRoot":"","sources":["../../../src/inspector/test/store.test.ts"],"names":[],"mappings":""}
{"version":3,"file":"store.test.d.ts","sourceRoot":"","sources":["../../../src/inspector/test/store.test.ts"],"names":[],"mappings":"AAAA,OAAO,gBAAgB,CAAA"}

@@ -1,1 +0,1 @@

{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/main/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAsC,KAAK,aAAa,EAAC,MAAM,6BAA6B,CAAA;AAGnG,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAE7B,OAAO,EAAwB,KAAK,YAAY,EAAC,MAAM,wBAAwB,CAAA;AAC/E,OAAO,EAAkB,KAAK,eAAe,EAAE,KAAK,wBAAwB,EAAC,MAAM,uBAAuB,CAAA;AAE1G,OAAO,EAAC,KAAK,uBAAuB,EAAC,MAAM,qBAAqB,CAAA;AAChE,OAAO,EAAkB,KAAK,gBAAgB,EAAC,MAAM,uBAAuB,CAAA;AAC5E,OAAO,EAAC,cAAc,EAAqB,gBAAgB,EAAE,cAAc,EAAC,MAAM,gBAAgB,CAAA;AAGlG,OAAO,EAAC,KAAK,MAAM,EAAE,KAAK,MAAM,EAAC,MAAM,YAAY,CAAA;AAGnD,yBAAiB,QAAQ,CAAC;IACtB,KAAY,cAAc,GAAG;QACzB,QAAQ,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;QAC/B,QAAQ,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAA;QAChC,oEAAoE;QACpE,QAAQ,CAAC,iBAAiB,EAAE,MAAM,GAAG,IAAI,CAAA;KAC5C,CAAA;IAED,KAAY,cAAc,GAAG;QACzB,eAAe,EAAE,OAAO,CAAA;QACxB,UAAU,EAAE,IAAI,CAAA;QAChB,cAAc,EAAE,cAAc,CAAA;QAC9B,oBAAoB,EAAE,MAAM,CAAC,YAAY,CAAA;QACzC,gBAAgB,EAAE,gBAAgB,CAAA;QAClC,WAAW,EAAE,MAAM,EAAE,CAAA;QACrB,eAAe,EAAE,eAAe,EAAE,CAAA;QAClC,iBAAiB,EAAE,OAAO,CAAA;QAC1B,gBAAgB,EAAE;YAAC,MAAM,EAAE,MAAM,CAAC;YAAC,KAAK,EAAE,OAAO,CAAA;SAAC,CAAA;QAClD,kBAAkB,EAAE,MAAM,CAAA;QAC1B,YAAY,EAAE,YAAY,CAAA;KAC7B,CAAA;IAED,KAAY,aAAa,GAAG;QACxB,UAAU,EAAE,IAAI,CAAA;QAChB,WAAW,EAAE;YAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAA;SAAC,GAAG,IAAI,CAAA;QACrE,YAAY,EAAE,wBAAwB,CAAA;QACtC,sBAAsB,EAAE,uBAAuB,CAAA;QAC/C,YAAY,EAAE,IAAI,CAAA;QAClB,kBAAkB,EAAE,cAAc,CAAA;QAClC,UAAU,EAAE,gBAAgB,CAAA;QAC5B,YAAY,EAAE;YAAC,MAAM,EAAE,cAAc,CAAC;YAAC,OAAO,EAAE,OAAO,CAAA;SAAC,CAAA;KAC3D,CAAA;CACJ;AAED,MAAM,MAAM,eAAe,GAAG;IAC1B,MAAM,EAAE,aAAa,CAAC,QAAQ,CAAC,cAAc,CAAC,CAAA;IAC9C,KAAK,EAAE,aAAa,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAA;CAC/C,CAAA;AAmND;;GAEG;AACH,wBAAgB,WAAW;;;;;;;;;6BAMM,OAAO;;;;EAKvC;AAED,eAAO,MAAM,UAAU,iEAAqB,CAAA"}
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/main/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAsC,KAAK,aAAa,EAAC,MAAM,6BAA6B,CAAA;AAGnG,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAE7B,OAAO,EAAwB,KAAK,YAAY,EAAC,MAAM,wBAAwB,CAAA;AAC/E,OAAO,EAAkB,KAAK,eAAe,EAAE,KAAK,wBAAwB,EAAC,MAAM,uBAAuB,CAAA;AAE1G,OAAO,EAAC,KAAK,uBAAuB,EAAC,MAAM,qBAAqB,CAAA;AAChE,OAAO,EAAkB,KAAK,gBAAgB,EAAC,MAAM,uBAAuB,CAAA;AAC5E,OAAO,EAAC,cAAc,EAAqB,gBAAgB,EAAE,cAAc,EAAC,MAAM,gBAAgB,CAAA;AAGlG,OAAO,EAAC,KAAK,MAAM,EAAE,KAAK,MAAM,EAAC,MAAM,YAAY,CAAA;AAEnD,yBAAiB,QAAQ,CAAC;IACtB,KAAY,cAAc,GAAG;QACzB,QAAQ,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;QAC/B,QAAQ,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAA;QAChC,oEAAoE;QACpE,QAAQ,CAAC,iBAAiB,EAAE,MAAM,GAAG,IAAI,CAAA;KAC5C,CAAA;IAED,KAAY,cAAc,GAAG;QACzB,eAAe,EAAE,OAAO,CAAA;QACxB,UAAU,EAAE,IAAI,CAAA;QAChB,cAAc,EAAE,cAAc,CAAA;QAC9B,oBAAoB,EAAE,MAAM,CAAC,YAAY,CAAA;QACzC,gBAAgB,EAAE,gBAAgB,CAAA;QAClC,WAAW,EAAE,MAAM,EAAE,CAAA;QACrB,eAAe,EAAE,eAAe,EAAE,CAAA;QAClC,iBAAiB,EAAE,OAAO,CAAA;QAC1B,gBAAgB,EAAE;YAAC,MAAM,EAAE,MAAM,CAAC;YAAC,KAAK,EAAE,OAAO,CAAA;SAAC,CAAA;QAClD,kBAAkB,EAAE,MAAM,CAAA;QAC1B,YAAY,EAAE,YAAY,CAAA;KAC7B,CAAA;IAED,KAAY,aAAa,GAAG;QACxB,UAAU,EAAE,IAAI,CAAA;QAChB,WAAW,EAAE;YAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAA;SAAC,GAAG,IAAI,CAAA;QACrE,YAAY,EAAE,wBAAwB,CAAA;QACtC,sBAAsB,EAAE,uBAAuB,CAAA;QAC/C,YAAY,EAAE,IAAI,CAAA;QAClB,kBAAkB,EAAE,cAAc,CAAA;QAClC,UAAU,EAAE,gBAAgB,CAAA;QAC5B,YAAY,EAAE;YAAC,MAAM,EAAE,cAAc,CAAC;YAAC,OAAO,EAAE,OAAO,CAAA;SAAC,CAAA;KAC3D,CAAA;CACJ;AAED,MAAM,MAAM,eAAe,GAAG;IAC1B,MAAM,EAAE,aAAa,CAAC,QAAQ,CAAC,cAAc,CAAC,CAAA;IAC9C,KAAK,EAAE,aAAa,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAA;CAC/C,CAAA;AA4OD;;GAEG;AACH,wBAAgB,WAAW;;;;;;;;;6BAMM,OAAO;;;;EAKvC;AAED,eAAO,MAAM,UAAU,iEAAqB,CAAA"}

@@ -1,2 +0,2 @@

export {};
import '../../setup.ts';
//# sourceMappingURL=update.test.d.ts.map

@@ -1,1 +0,1 @@

{"version":3,"file":"update.test.d.ts","sourceRoot":"","sources":["../../../src/main/test/update.test.ts"],"names":[],"mappings":""}
{"version":3,"file":"update.test.d.ts","sourceRoot":"","sources":["../../../src/main/test/update.test.ts"],"names":[],"mappings":"AAAA,OAAO,gBAAgB,CAAA"}

@@ -1,2 +0,2 @@

export {};
import '../../setup.ts';
//# sourceMappingURL=utils.test.d.ts.map

@@ -1,1 +0,1 @@

{"version":3,"file":"utils.test.d.ts","sourceRoot":"","sources":["../../../src/main/test/utils.test.ts"],"names":[],"mappings":""}
{"version":3,"file":"utils.test.d.ts","sourceRoot":"","sources":["../../../src/main/test/utils.test.ts"],"names":[],"mappings":"AAAA,OAAO,gBAAgB,CAAA"}

@@ -86,4 +86,5 @@ import type { EncodedValue, PropGetterState } from '../inspector/types.ts';

location?: SourceLocation;
hmr?: true;
}
}
//# sourceMappingURL=types.d.ts.map

@@ -1,1 +0,1 @@

{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/main/types.ts"],"names":[],"mappings":"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"}
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/main/types.ts"],"names":[],"mappings":"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"}

@@ -1,17 +0,17 @@

import { type Emit } from '@solid-primitives/event-bus';
import { NodeType } from './constants.ts';
import { type Solid } from './types.ts';
export declare const isObject: (o: unknown) => o is object;
export declare const isSolidOwner: (o: Readonly<Solid.Owner | Solid.Store | Solid.Signal>) => o is Solid.Owner;
export declare const isSolidComputation: (o: Readonly<Solid.Owner>) => o is Solid.Computation;
export declare const isObservableComputation: (o: Readonly<Solid.Owner>) => o is Solid.Computation;
export declare const isSolidRoot: (o: Readonly<Solid.Owner>) => o is Solid.Root;
export declare const isSolidMemo: (o: Readonly<Solid.Owner>) => o is Solid.Memo;
export declare const isSolidComponent: (o: Readonly<Solid.Owner>) => o is Solid.Component;
export declare const isSolidOwner: (o: Solid.Owner | Solid.Store | Solid.Signal) => o is Solid.Owner;
export declare const isSolidComputation: (o: Solid.Owner) => o is Solid.Computation;
export declare const isSolidRoot: (o: Solid.Owner) => o is Solid.Root;
export declare const isSolidMemo: (o: Solid.Owner) => o is Solid.Memo;
export declare const isSolidComponent: (o: Solid.Owner) => o is Solid.Component;
export declare const isStoreNode: (o: object) => o is Solid.StoreNode;
export declare const isSolidStore: (o: Solid.Owner | Solid.SourceMapValue | Solid.Store) => o is Solid.Store;
export declare const isSolidSignal: (o: Solid.SourceMapValue) => o is Solid.Signal;
export declare function getNodeType(o: Readonly<Solid.Signal | Solid.Owner | Solid.Store>): NodeType;
export declare const getOwnerType: (o: Readonly<Solid.Owner>) => NodeType;
export declare function getNodeType(o: Solid.Signal | Solid.Owner | Solid.Store): NodeType;
export declare const getOwnerType: (o: Solid.Owner) => NodeType;
export declare const getNodeName: (o: {
component?: ((..._: any) => any) & {
displayName?: string;
};
name?: string;

@@ -48,8 +48,2 @@ }) => string | undefined;

export declare function onOwnerDispose(owner: Solid.Owner, fn: VoidFunction, prepend?: boolean, symbol?: symbol): VoidFunction;
/**
* Batches series of updates to a single array of updates.
*
* The updates are deduped by `id` property
*/
export declare function createBatchedUpdateEmitter<T>(emit: Emit<T[]>): (update: T) => void;
//# sourceMappingURL=utils.d.ts.map

@@ -1,1 +0,1 @@

{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../src/main/utils.ts"],"names":[],"mappings":"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"}
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../src/main/utils.ts"],"names":[],"mappings":"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"}

@@ -1,2 +0,2 @@

// src/setup.ts
// packages/debugger/src/setup.ts
import * as s from "solid-js";

@@ -3,0 +3,0 @@ import * as store from "solid-js/store";

@@ -1,2 +0,2 @@

export {};
import '../../setup.ts';
//# sourceMappingURL=walker.test.d.ts.map

@@ -1,1 +0,1 @@

{"version":3,"file":"walker.test.d.ts","sourceRoot":"","sources":["../../../src/structure/test/walker.test.tsx"],"names":[],"mappings":""}
{"version":3,"file":"walker.test.d.ts","sourceRoot":"","sources":["../../../src/structure/test/walker.test.tsx"],"names":[],"mappings":"AAAA,OAAO,gBAAgB,CAAA"}
import type { ComponentRegisterHandler } from '../main/component-registry.ts';
import { TreeWalkerMode } from '../main/constants.ts';
import { type Mapped, type NodeID, type Solid } from '../main/types.ts';
export type ComputationUpdateHandler = (rootId: NodeID, owner: Solid.Owner, ownerId: NodeID, changedStructure: boolean) => void;
export type ComputationUpdateHandler = (rootId: NodeID, owner: Solid.Owner, changedStructure: boolean) => void;
export declare const walkSolidTree: (owner: Solid.Owner | Solid.Root, config: {

@@ -6,0 +6,0 @@ mode: TreeWalkerMode;

@@ -1,1 +0,1 @@

{"version":3,"file":"walker.d.ts","sourceRoot":"","sources":["../../src/structure/walker.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAC,wBAAwB,EAAC,MAAM,+BAA+B,CAAA;AAC3E,OAAO,EAAW,cAAc,EAAC,MAAM,sBAAsB,CAAA;AAG7D,OAAO,EAAC,KAAK,MAAM,EAAE,KAAK,MAAM,EAAE,KAAK,KAAK,EAAC,MAAM,kBAAkB,CAAA;AASrE,MAAM,MAAM,wBAAwB,GAAG,CACnC,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,OAAO,EAAE,MAAM,EACf,gBAAgB,EAAE,OAAO,KACxB,IAAI,CAAA;AAmNT,eAAO,MAAM,aAAa,UACf,KAAK,CAAC,KAAK,GAAG,KAAK,CAAC,IAAI,UACvB;IACJ,IAAI,EAAE,cAAc,CAAA;IACpB,MAAM,EAAE,MAAM,CAAA;IACd,mBAAmB,EAAE,wBAAwB,CAAA;IAC7C,iBAAiB,EAAE,wBAAwB,CAAA;CAC9C,KACF,MAAM,CAAC,KA0BR,CAAA"}
{"version":3,"file":"walker.d.ts","sourceRoot":"","sources":["../../src/structure/walker.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAC,wBAAwB,EAAC,MAAM,+BAA+B,CAAA;AAC3E,OAAO,EAAW,cAAc,EAAC,MAAM,sBAAsB,CAAA;AAG7D,OAAO,EAAC,KAAK,MAAM,EAAE,KAAK,MAAM,EAAE,KAAK,KAAK,EAAC,MAAM,kBAAkB,CAAA;AASrE,MAAM,MAAM,wBAAwB,GAAG,CACnC,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,KAAK,CAAC,KAAK,EAClB,gBAAgB,EAAE,OAAO,KACxB,IAAI,CAAA;AA8MT,eAAO,MAAM,aAAa,UACf,KAAK,CAAC,KAAK,GAAG,KAAK,CAAC,IAAI,UACvB;IACJ,IAAI,EAAE,cAAc,CAAA;IACpB,MAAM,EAAE,MAAM,CAAA;IACd,mBAAmB,EAAE,wBAAwB,CAAA;IAC7C,iBAAiB,EAAE,wBAAwB,CAAA;CAC9C,KACF,MAAM,CAAC,KA0BR,CAAA"}

@@ -20,3 +20,3 @@ import {

getValueItemId
} from "./chunk-NURNCQIN.js";
} from "./chunk-GZ63F2ZF.js";
export {

@@ -23,0 +23,0 @@ DEFAULT_MAIN_VIEW,

{
"name": "@solid-devtools/debugger",
"version": "0.24.4",
"version": "0.24.5",
"description": "Debugger of the Solid's reactivity graph — a cornerstone of all solid-devtools.",

@@ -66,3 +66,3 @@ "license": "MIT",

"@solid-primitives/utils": "^6.2.3",
"@solid-devtools/shared": "^0.16.1"
"@solid-devtools/shared": "^0.17.0"
},

@@ -77,9 +77,3 @@ "peerDependencies": {

"reactivity"
],
"scripts": {
"dev": "pnpm build --watch",
"build": "node --experimental-transform-types ./build.ts",
"test:unit": "vitest",
"test:types": "tsc --noEmit --paths null"
}
]
}
// src/inspector/types.ts
var INFINITY = "Infinity";
var NEGATIVE_INFINITY = "NegativeInfinity";
var NAN = "NaN";
var UNDEFINED = "undefined";
var ValueType = /* @__PURE__ */ ((ValueType2) => {
ValueType2["Number"] = "number";
ValueType2["Boolean"] = "boolean";
ValueType2["String"] = "string";
ValueType2["Null"] = "null";
ValueType2["Symbol"] = "symbol";
ValueType2["Array"] = "array";
ValueType2["Object"] = "object";
ValueType2["Function"] = "function";
ValueType2["Getter"] = "getter";
ValueType2["Element"] = "element";
ValueType2["Instance"] = "instance";
ValueType2["Store"] = "store";
ValueType2["Unknown"] = "unknown";
return ValueType2;
})(ValueType || {});
var PropGetterState = /* @__PURE__ */ ((PropGetterState2) => {
PropGetterState2["Live"] = "live";
PropGetterState2["Stale"] = "stale";
return PropGetterState2;
})(PropGetterState || {});
// src/locator/types.ts
var WINDOW_PROJECTPATH_PROPERTY = "$sdt_projectPath";
var LOCATION_ATTRIBUTE_NAME = "data-source-loc";
// src/main/constants.ts
var DevtoolsMainView = /* @__PURE__ */ ((DevtoolsMainView2) => {
DevtoolsMainView2["Structure"] = "structure";
return DevtoolsMainView2;
})(DevtoolsMainView || {});
var DEFAULT_MAIN_VIEW = "structure" /* Structure */;
var DebuggerModule = /* @__PURE__ */ ((DebuggerModule2) => {
DebuggerModule2["Locator"] = "locator";
DebuggerModule2["Structure"] = "structure";
DebuggerModule2["Dgraph"] = "dgraph";
return DebuggerModule2;
})(DebuggerModule || {});
var TreeWalkerMode = /* @__PURE__ */ ((TreeWalkerMode2) => {
TreeWalkerMode2["Owners"] = "owners";
TreeWalkerMode2["Components"] = "components";
TreeWalkerMode2["DOM"] = "dom";
return TreeWalkerMode2;
})(TreeWalkerMode || {});
var DEFAULT_WALKER_MODE = "components" /* Components */;
var NodeType = /* @__PURE__ */ ((NodeType3) => {
NodeType3["Root"] = "root";
NodeType3["Component"] = "component";
NodeType3["Element"] = "element";
NodeType3["Effect"] = "effect";
NodeType3["Render"] = "render";
NodeType3["Memo"] = "memo";
NodeType3["Computation"] = "computation";
NodeType3["Refresh"] = "refresh";
NodeType3["Context"] = "context";
NodeType3["CatchError"] = "catchError";
NodeType3["Signal"] = "signal";
NodeType3["Store"] = "store";
return NodeType3;
})(NodeType || {});
var NODE_TYPE_NAMES = {
["root" /* Root */]: "Root",
["component" /* Component */]: "Component",
["element" /* Element */]: "Element",
["effect" /* Effect */]: "Effect",
["render" /* Render */]: "Render Effect",
["memo" /* Memo */]: "Memo",
["computation" /* Computation */]: "Computation",
["refresh" /* Refresh */]: "Refresh",
["context" /* Context */]: "Context",
["catchError" /* CatchError */]: "CatchError",
["signal" /* Signal */]: "Signal",
["store" /* Store */]: "Store"
};
var ValueItemType = /* @__PURE__ */ ((ValueItemType2) => {
ValueItemType2["Signal"] = "signal";
ValueItemType2["Prop"] = "prop";
ValueItemType2["Value"] = "value";
return ValueItemType2;
})(ValueItemType || {});
var UNKNOWN = "unknown";
// src/main/types.ts
var getValueItemId = (type, id) => {
if (type === "value" /* Value */) return "value" /* Value */;
return `${type}:${id}`;
};
export {
DevtoolsMainView,
DEFAULT_MAIN_VIEW,
DebuggerModule,
TreeWalkerMode,
DEFAULT_WALKER_MODE,
NodeType,
NODE_TYPE_NAMES,
ValueItemType,
UNKNOWN,
INFINITY,
NEGATIVE_INFINITY,
NAN,
UNDEFINED,
ValueType,
PropGetterState,
WINDOW_PROJECTPATH_PROPERTY,
LOCATION_ATTRIBUTE_NAME,
getValueItemId
};

Sorry, the diff of this file is too big to display