@lensmcp/react-instrumentation 1.18.3 → 1.18.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.
@@ -9,4 +9,3 @@ export declare function tracedUseEffect(hookLogicalId: string, effect: () => voi
9
9
  export declare function tracedUseMemo<T>(hookLogicalId: string, compute: () => T, deps: readonly unknown[] | undefined): T;
10
10
  /** Drop-in `useCallback` with the same accounting as `tracedUseMemo`. */
11
11
  export declare function tracedUseCallback<T extends (...args: never[]) => unknown>(hookLogicalId: string, cb: T, deps: readonly unknown[] | undefined): T;
12
- //# sourceMappingURL=traced-hooks.d.ts.map
@@ -1,143 +1 @@
1
- import { useCallback as reactUseCallback, useEffect as reactUseEffect, useMemo as reactUseMemo, useRef, } from 'react';
2
- import { useLensmcpContext } from './context.js';
3
- import { depsHash } from './identity.js';
4
- import { publish } from './publish.js';
5
- /**
6
- * Drop-in replacement for `useEffect` that emits an `effect-run` event
7
- * on every run + a separate event on cleanup. The transform (T5.1)
8
- * rewrites bare `useEffect(fn, deps)` calls to
9
- * `tracedUseEffect("<file>:<line>:<index>", fn, deps)`.
10
- */
11
- export function tracedUseEffect(hookLogicalId, effect, deps) {
12
- const ctx = useLensmcpContext();
13
- const hookInstanceId = useStableHookInstance(hookLogicalId);
14
- const prevHashRef = useRef(undefined);
15
- reactUseEffect(() => {
16
- const startedAt = typeof performance !== 'undefined' && performance.now
17
- ? performance.now()
18
- : Date.now();
19
- const hash = depsHash(deps);
20
- const prevHash = prevHashRef.current;
21
- prevHashRef.current = hash;
22
- let cleanup;
23
- try {
24
- cleanup = effect();
25
- }
26
- finally {
27
- const endedAt = typeof performance !== 'undefined' && performance.now
28
- ? performance.now()
29
- : Date.now();
30
- publish({
31
- source: 'react',
32
- category: 'render',
33
- severity: 'info',
34
- title: `effect-run ${hookLogicalId}`,
35
- fingerprint: `effect-run:${hookLogicalId}`,
36
- raw: {
37
- kind: 'effect-run',
38
- effect: {
39
- hookInstanceId,
40
- hookLogicalId,
41
- componentInstanceId: ctx.componentInstanceId,
42
- depsHash: hash,
43
- prevDepsHash: prevHash,
44
- durationMs: Math.max(0, endedAt - startedAt),
45
- },
46
- },
47
- });
48
- }
49
- return () => {
50
- if (typeof cleanup === 'function')
51
- cleanup();
52
- publish({
53
- source: 'react',
54
- category: 'render',
55
- severity: 'info',
56
- title: `effect-cleanup ${hookLogicalId}`,
57
- fingerprint: `effect-cleanup:${hookLogicalId}`,
58
- raw: {
59
- kind: 'effect-run',
60
- effect: {
61
- hookInstanceId,
62
- hookLogicalId,
63
- componentInstanceId: ctx.componentInstanceId,
64
- depsHash: prevHashRef.current ?? hash,
65
- durationMs: 0,
66
- cleanupRan: true,
67
- },
68
- },
69
- });
70
- };
71
- }, deps);
72
- }
73
- /** Same idea for `useMemo` — emits a `hook-run` event with `recomputed`. */
74
- export function tracedUseMemo(hookLogicalId, compute, deps) {
75
- const ctx = useLensmcpContext();
76
- const hookInstanceId = useStableHookInstance(hookLogicalId);
77
- const prevHashRef = useRef(undefined);
78
- const hash = depsHash(deps);
79
- const recomputed = hash !== prevHashRef.current;
80
- const value = reactUseMemo(compute, deps ?? []);
81
- if (recomputed) {
82
- publish({
83
- source: 'react',
84
- category: 'render',
85
- severity: 'debug',
86
- title: `useMemo recomputed ${hookLogicalId}`,
87
- fingerprint: `hook-run:${hookLogicalId}`,
88
- raw: {
89
- kind: 'hook-run',
90
- hook: {
91
- hookInstanceId,
92
- hookLogicalId,
93
- componentInstanceId: ctx.componentInstanceId,
94
- hookType: 'useMemo',
95
- depsHash: hash,
96
- prevDepsHash: prevHashRef.current,
97
- recomputed: true,
98
- },
99
- },
100
- });
101
- }
102
- prevHashRef.current = hash;
103
- return value;
104
- }
105
- /** Drop-in `useCallback` with the same accounting as `tracedUseMemo`. */
106
- export function tracedUseCallback(hookLogicalId, cb, deps) {
107
- const ctx = useLensmcpContext();
108
- const hookInstanceId = useStableHookInstance(hookLogicalId);
109
- const prevHashRef = useRef(undefined);
110
- const hash = depsHash(deps);
111
- const recomputed = hash !== prevHashRef.current;
112
- const memoised = reactUseCallback(cb, deps ?? []);
113
- if (recomputed) {
114
- publish({
115
- source: 'react',
116
- category: 'render',
117
- severity: 'debug',
118
- title: `useCallback recomputed ${hookLogicalId}`,
119
- fingerprint: `hook-run:${hookLogicalId}`,
120
- raw: {
121
- kind: 'hook-run',
122
- hook: {
123
- hookInstanceId,
124
- hookLogicalId,
125
- componentInstanceId: ctx.componentInstanceId,
126
- hookType: 'useCallback',
127
- depsHash: hash,
128
- prevDepsHash: prevHashRef.current,
129
- recomputed: true,
130
- },
131
- },
132
- });
133
- }
134
- prevHashRef.current = hash;
135
- return memoised;
136
- }
137
- function useStableHookInstance(hookLogicalId) {
138
- const ref = useRef(undefined);
139
- if (!ref.current) {
140
- ref.current = `${hookLogicalId}#${(Math.random() * 1e9) | 0}`;
141
- }
142
- return ref.current;
143
- }
1
+ "use strict";var y=Object.defineProperty;var u=(e,n)=>y(e,"name",{value:n,configurable:!0});var g=Object.defineProperty,f=u((e,n)=>g(e,"name",{value:n,configurable:!0}),"f");import{useCallback as v,useEffect as b,useMemo as w,useRef as d}from"react";import{useLensmcpContext as l}from"./context.js";import{depsHash as h}from"./identity.js";import{publish as i}from"./publish.js";export function tracedUseEffect(e,n,t){const a=l(),s=m(e),r=d(void 0);b(()=>{const o=typeof performance<"u"&&performance.now?performance.now():Date.now(),c=h(t),p=r.current;r.current=c;let I;try{I=n()}finally{const k=typeof performance<"u"&&performance.now?performance.now():Date.now();i({source:"react",category:"render",severity:"info",title:`effect-run ${e}`,fingerprint:`effect-run:${e}`,raw:{kind:"effect-run",effect:{hookInstanceId:s,hookLogicalId:e,componentInstanceId:a.componentInstanceId,depsHash:c,prevDepsHash:p,durationMs:Math.max(0,k-o)}}})}return()=>{typeof I=="function"&&I(),i({source:"react",category:"render",severity:"info",title:`effect-cleanup ${e}`,fingerprint:`effect-cleanup:${e}`,raw:{kind:"effect-run",effect:{hookInstanceId:s,hookLogicalId:e,componentInstanceId:a.componentInstanceId,depsHash:r.current??c,durationMs:0,cleanupRan:!0}}})}},t)}u(tracedUseEffect,"tracedUseEffect"),f(tracedUseEffect,"tracedUseEffect");export function tracedUseMemo(e,n,t){const a=l(),s=m(e),r=d(void 0),o=h(t),c=o!==r.current,p=w(n,t??[]);return c&&i({source:"react",category:"render",severity:"debug",title:`useMemo recomputed ${e}`,fingerprint:`hook-run:${e}`,raw:{kind:"hook-run",hook:{hookInstanceId:s,hookLogicalId:e,componentInstanceId:a.componentInstanceId,hookType:"useMemo",depsHash:o,prevDepsHash:r.current,recomputed:!0}}}),r.current=o,p}u(tracedUseMemo,"tracedUseMemo"),f(tracedUseMemo,"tracedUseMemo");export function tracedUseCallback(e,n,t){const a=l(),s=m(e),r=d(void 0),o=h(t),c=o!==r.current,p=v(n,t??[]);return c&&i({source:"react",category:"render",severity:"debug",title:`useCallback recomputed ${e}`,fingerprint:`hook-run:${e}`,raw:{kind:"hook-run",hook:{hookInstanceId:s,hookLogicalId:e,componentInstanceId:a.componentInstanceId,hookType:"useCallback",depsHash:o,prevDepsHash:r.current,recomputed:!0}}}),r.current=o,p}u(tracedUseCallback,"tracedUseCallback"),f(tracedUseCallback,"tracedUseCallback");function m(e){const n=d(void 0);return n.current||(n.current=`${e}#${Math.random()*1e9|0}`),n.current}u(m,"y"),f(m,"useStableHookInstance");
package/lib/types.d.ts CHANGED
@@ -80,4 +80,3 @@ export type ReactPublishPayload = {
80
80
  kind: 'component-unmount';
81
81
  component: ComponentMountRecord;
82
82
  };
83
- //# sourceMappingURL=types.d.ts.map
package/lib/types.js CHANGED
@@ -1 +1 @@
1
- export {};
1
+ "use strict";export{};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lensmcp/react-instrumentation",
3
- "version": "1.18.3",
3
+ "version": "1.18.6",
4
4
  "type": "module",
5
5
  "main": "./index.js",
6
6
  "module": "./index.js",
@@ -19,7 +19,7 @@
19
19
  }
20
20
  },
21
21
  "dependencies": {
22
- "@lensmcp/protocol-types": "1.18.3",
22
+ "@lensmcp/protocol-types": "1.18.6",
23
23
  "tslib": "^2.3.0"
24
24
  },
25
25
  "peerDependencies": {
package/index.d.ts.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,KAAK,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAC3E,OAAO,EAAE,cAAc,EAAE,iBAAiB,EAAE,KAAK,sBAAsB,EAAE,MAAM,kBAAkB,CAAC;AAClG,OAAO,EACL,eAAe,EACf,aAAa,EACb,iBAAiB,GAClB,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EAAE,SAAS,EAAE,KAAK,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrE,OAAO,EAAE,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,cAAc,CAAC;AACzE,OAAO,EAAE,gBAAgB,EAAE,KAAK,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAC9E,OAAO,EAAE,2BAA2B,EAAE,iCAAiC,EAAE,MAAM,wBAAwB,CAAC;AACxG,OAAO,EACL,OAAO,EACP,YAAY,EACZ,UAAU,EACV,SAAS,EACT,WAAW,EACX,UAAU,EACV,gBAAgB,EAChB,mBAAmB,EACnB,QAAQ,EACR,KAAK,eAAe,EACpB,KAAK,eAAe,EACpB,KAAK,QAAQ,GACd,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EACL,kBAAkB,EAClB,aAAa,EACb,aAAa,EACb,cAAc,EACd,QAAQ,EACR,kBAAkB,GACnB,MAAM,mBAAmB,CAAC;AAC3B,YAAY,EACV,YAAY,EACZ,YAAY,EACZ,UAAU,EACV,gBAAgB,EAChB,oBAAoB,EACpB,mBAAmB,GACpB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,KAAK,mBAAmB,EAAE,MAAM,uBAAuB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"babel-plugin.d.ts","sourceRoot":"","sources":["../../src/lib/babel-plugin.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,OAAO,KAAK,EACV,SAAS,EACT,UAAU,EAEV,KAAK,IAAI,CAAC,EACX,MAAM,aAAa,CAAC;AAErB,MAAM,WAAW,mBAAmB;IAClC,qFAAqF;IACrF,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,iEAAiE;IACjE,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,yEAAyE;IACzE,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,sEAAsE;IACtE,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,kGAAkG;IAClG,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB;oEACgE;IAChE,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,8EAA8E;IAC9E,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;CACvB;AAuBD,UAAU,KAAM,SAAQ,UAAU;IAChC,IAAI,EAAE,mBAAmB,CAAC;IAC1B,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,uDAAuD;IACvD,WAAW,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC;IAC1B,8EAA8E;IAC9E,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,yDAAyD;IACzD,UAAU,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC;IACzB,mFAAmF;IACnF,QAAQ,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC;CACxB;AAED,UAAU,QAAQ;IAChB,KAAK,EAAE,OAAO,CAAC,CAAC;CACjB;AAED,MAAM,CAAC,OAAO,UAAU,kBAAkB,CAAC,GAAG,EAAE,QAAQ,GAAG,SAAS,CAAC,KAAK,CAAC,CA4M1E"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../../src/lib/context.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,sBAAsB;IACrC,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;6EACyE;IACzE,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,0DAA0D;IAC1D,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,0EAA0E;IAC1E,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAID,eAAO,MAAM,cAAc,iDAAoD,CAAC;AAEhF,wBAAgB,iBAAiB,IAAI,sBAAsB,CAE1D"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"fiber-renders.d.ts","sourceRoot":"","sources":["../../src/lib/fiber-renders.ts"],"names":[],"mappings":"AAuMA;;;GAGG;AACH,wBAAgB,2BAA2B,IAAI,IAAI,CAsDlD;AAED,mDAAmD;AACnD,wBAAgB,iCAAiC,IAAI,IAAI,CAGxD"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"flow-fetch.d.ts","sourceRoot":"","sources":["../../src/lib/flow-fetch.ts"],"names":[],"mappings":"AAgBA,MAAM,WAAW,gBAAgB;IAC/B,gEAAgE;IAChE,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,8EAA8E;IAC9E,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAWD,wBAAgB,gBAAgB,CAAC,OAAO,GAAE,gBAAqB,GAAG,MAAM,IAAI,CA+C3E"}
package/lib/hoc.d.ts.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"hoc.d.ts","sourceRoot":"","sources":["../../src/lib/hoc.tsx"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,aAAa,EAGnB,MAAM,OAAO,CAAC;AAKf,MAAM,WAAW,gBAAgB;IAC/B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,oFAAoF;IACpF,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED;;;;GAIG;AACH,wBAAgB,kBAAkB,CAAC,CAAC,SAAS,MAAM,EACjD,OAAO,EAAE,aAAa,CAAC,CAAC,CAAC,EACzB,IAAI,GAAE,gBAAqB,GAC1B,aAAa,CAAC,CAAC,CAAC,CA+ClB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"identity.d.ts","sourceRoot":"","sources":["../../src/lib/identity.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAKH,wBAAgB,cAAc,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAIxD;AAED,wBAAgB,SAAS,IAAI,MAAM,CAGlC;AAED,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,CAErE;AAED,wBAAgB,aAAa,CAC3B,IAAI,EAAE,MAAM,EACZ,aAAa,EAAE,MAAM,EACrB,QAAQ,EAAE,MAAM,EAChB,KAAK,EAAE,MAAM,GACZ,MAAM,CAER;AAED,wBAAgB,aAAa,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,CAE9E;AAED,wBAAgB,cAAc,CAAC,SAAS,EAAE,MAAM,GAAG;IACjD,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;CACpB,CAMA;AAED;;;;GAIG;AACH,wBAAgB,QAAQ,CAAC,IAAI,EAAE,SAAS,OAAO,EAAE,GAAG,SAAS,GAAG,MAAM,CAUrE;AAoBD,uEAAuE;AACvE,wBAAgB,kBAAkB,IAAI,IAAI,CAGzC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"lensmcp-root.d.ts","sourceRoot":"","sources":["../../src/lib/lensmcp-root.tsx"],"names":[],"mappings":"AAAA,OAAO,EAGL,KAAK,SAAS,EAGf,MAAM,OAAO,CAAC;AAYf,MAAM,WAAW,gBAAgB;IAC/B,gEAAgE;IAChE,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,wEAAwE;IACxE,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,SAAS,CAAC;CACrB;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,WAAW,CAAC,KAAK,EAAE,gBAAgB,GAAG,SAAS,CAuD9D"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"publish.d.ts","sourceRoot":"","sources":["../../src/lib/publish.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AACH,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAC;AAEtD,MAAM,MAAM,eAAe,GACvB,QAAQ,GACR,OAAO,GACP,SAAS,GACT,SAAS,GACT,QAAQ,GACR,OAAO,CAAC;AAEZ,MAAM,WAAW,QAAQ;IACvB,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB;AAED,MAAM,WAAW,eAAe;IAC9B,MAAM,EAAE,OAAO,GAAG,QAAQ,GAAG,gBAAgB,GAAG,QAAQ,CAAC;IACzD,QAAQ,EAAE,eAAe,CAAC;IAC1B,QAAQ,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,SAAS,GAAG,OAAO,CAAC;IAClD,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,kFAAkF;IAClF,OAAO,CAAC,EAAE,OAAO,CAAC;QAChB,MAAM,EAAE,MAAM,CAAC;QACf,UAAU,EAAE,MAAM,CAAC;QACnB,YAAY,EAAE,MAAM,CAAC;QACrB,cAAc,EAAE,MAAM,CAAC;QACvB,KAAK,EAAE,MAAM,CAAC;QACd,GAAG,EAAE,MAAM,CAAC;KACb,CAAC,CAAC;IACH,GAAG,EAAE,mBAAmB,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACpD;AAED,KAAK,SAAS,GAAG,CAAC,KAAK,EAAE,eAAe,KAAK,IAAI,CAAC;AAElD,OAAO,CAAC,MAAM,CAAC;IACb,IAAI,mBAAmB,EAAE,SAAS,GAAG,SAAS,CAAC;CAChD;AAmBD,wBAAgB,gBAAgB,CAAC,IAAI,CAAC,EAAE,QAAQ,GAAG,IAAI,CAGtD;AAMD,gFAAgF;AAChF,wBAAgB,UAAU,IAAI,QAAQ,GAAG,SAAS,CAEjD;AAED;;;;;GAKG;AACH,wBAAgB,mBAAmB,CAAC,MAAM,EAAE;IAAE,UAAU,EAAE,MAAM,CAAC;IAAC,YAAY,CAAC,EAAE,MAAM,CAAA;CAAE,GAAG,QAAQ,CAgBnG;AAED,wBAAgB,YAAY,CAAC,EAAE,EAAE,SAAS,GAAG,SAAS,GAAG,IAAI,CAc5D;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,SAAS,CAAC,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,MAAM,CAAC,GAAG,CAAC,CAQ3D;AAED,wBAAgB,WAAW,IAAI,QAAQ,GAAG,SAAS,CAElD;AAqCD;;;;;;;;;;;;GAYG;AACH,wBAAgB,QAAQ,CAAC,KAAK,SAAS,OAAO,EAAE,EAAE,OAAO,EACvD,OAAO,EAAE,CAAC,GAAG,IAAI,EAAE,KAAK,KAAK,OAAO,EACpC,IAAI,GAAE;IAAE,UAAU,CAAC,EAAE,MAAM,CAAC;IAAC,YAAY,CAAC,EAAE,MAAM,CAAA;CAAO,GACxD,CAAC,GAAG,IAAI,EAAE,KAAK,KAAK,OAAO,CA4D7B;AAQD,wBAAgB,OAAO,CAAC,GAAG,EAAE,eAAe,GAAG,IAAI,CA6BlD;AAED,sDAAsD;AACtD,wBAAgB,UAAU,IAAI,eAAe,EAAE,CAE9C"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"trace-slot.d.ts","sourceRoot":"","sources":["../../src/lib/trace-slot.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAsB,KAAK,SAAS,EAAqB,MAAM,OAAO,CAAC;AAK9E,MAAM,WAAW,cAAc;IAC7B,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,EAAE,SAAS,CAAC;CACrB;AAED;;;;GAIG;AACH,wBAAgB,SAAS,CAAC,KAAK,EAAE,cAAc,GAAG,SAAS,CAsC1D"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"traced-hooks.d.ts","sourceRoot":"","sources":["../../src/lib/traced-hooks.ts"],"names":[],"mappings":"AAUA;;;;;GAKG;AACH,wBAAgB,eAAe,CAC7B,aAAa,EAAE,MAAM,EACrB,MAAM,EAAE,MAAM,IAAI,GAAG,CAAC,MAAM,IAAI,CAAC,EACjC,IAAI,EAAE,SAAS,OAAO,EAAE,GAAG,SAAS,GACnC,IAAI,CA6DN;AAED,4EAA4E;AAC5E,wBAAgB,aAAa,CAAC,CAAC,EAC7B,aAAa,EAAE,MAAM,EACrB,OAAO,EAAE,MAAM,CAAC,EAChB,IAAI,EAAE,SAAS,OAAO,EAAE,GAAG,SAAS,GACnC,CAAC,CA8BH;AAED,yEAAyE;AACzE,wBAAgB,iBAAiB,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,KAAK,EAAE,KAAK,OAAO,EACvE,aAAa,EAAE,MAAM,EACrB,EAAE,EAAE,CAAC,EACL,IAAI,EAAE,SAAS,OAAO,EAAE,GAAG,SAAS,GACnC,CAAC,CA8BH"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/lib/types.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,OAAO,KAAK,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;AAEtE,YAAY,EAAE,WAAW,EAAE,SAAS,EAAE,CAAC;AAEvC,MAAM,WAAW,YAAY;IAC3B,EAAE,EAAE,MAAM,CAAC;IACX,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,mBAAmB,EAAE,MAAM,CAAC;IAC5B,kBAAkB,EAAE,MAAM,CAAC;IAC3B,aAAa,EAAE,MAAM,CAAC;IACtB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,WAAW,CAAC;IACnB,gBAAgB,EAAE,MAAM,CAAC;IACzB,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,GAAG,EAAE,SAAS,EAAE,CAAC;CAClB;AAED,MAAM,WAAW,YAAY;IAC3B,cAAc,EAAE,MAAM,CAAC;IACvB,aAAa,EAAE,MAAM,CAAC;IACtB,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,UAAU;IACzB,cAAc,EAAE,MAAM,CAAC;IACvB,aAAa,EAAE,MAAM,CAAC;IACtB,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,QAAQ,EAAE,SAAS,GAAG,aAAa,CAAC;IACpC,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,UAAU,EAAE,OAAO,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,gBAAgB;IAC/B,aAAa,EAAE,MAAM,CAAC;IACtB,cAAc,EAAE,MAAM,CAAC;IACvB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,oBAAoB;IACnC,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,mEAAmE;AACnE,MAAM,MAAM,mBAAmB,GAC3B;IAAE,IAAI,EAAE,QAAQ,CAAC;IAAC,MAAM,EAAE,YAAY,CAAA;CAAE,GACxC;IAAE,IAAI,EAAE,YAAY,CAAC;IAAC,MAAM,EAAE,YAAY,CAAA;CAAE,GAC5C;IAAE,IAAI,EAAE,UAAU,CAAC;IAAC,IAAI,EAAE,UAAU,CAAA;CAAE,GACtC;IAAE,IAAI,EAAE,sBAAsB,CAAC;IAAC,IAAI,EAAE,gBAAgB,CAAA;CAAE,GACxD;IAAE,IAAI,EAAE,iBAAiB,CAAC;IAAC,SAAS,EAAE,oBAAoB,CAAA;CAAE,GAC5D;IAAE,IAAI,EAAE,mBAAmB,CAAC;IAAC,SAAS,EAAE,oBAAoB,CAAA;CAAE,CAAC"}