@inspecto-dev/core 0.3.8 → 0.3.9
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/README.md +2 -2
- package/dist/{component-BLZBHHON.js → component-MYXLDDWZ.js} +1435 -613
- package/dist/component-MYXLDDWZ.js.map +1 -0
- package/dist/index.cjs +1455 -631
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +10 -6
- package/dist/index.d.ts +10 -6
- package/dist/index.js +1 -1
- package/package.json +2 -2
- package/dist/component-BLZBHHON.js.map +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -30,15 +30,20 @@ declare class InspectoElement extends BaseElement {
|
|
|
30
30
|
private annotateEditingRecord;
|
|
31
31
|
private badge;
|
|
32
32
|
private configLoadPromise;
|
|
33
|
-
private annotationResponseMode;
|
|
34
33
|
private annotateInstructionDraft;
|
|
35
34
|
private annotateErrorMessage;
|
|
36
35
|
private annotateRuntimeContextEnabled;
|
|
37
|
-
private annotateScreenshotContextEnabled;
|
|
38
36
|
private annotateCssContextEnabled;
|
|
37
|
+
private annotateDeliveryMode;
|
|
39
38
|
private annotateSendState;
|
|
39
|
+
private annotateLatestSessionSummary;
|
|
40
|
+
private annotateLatestSessionDetail;
|
|
41
|
+
private annotateLatestSessionStream;
|
|
42
|
+
private annotateLatestSessionLoading;
|
|
43
|
+
private annotateLatestSessionError;
|
|
40
44
|
private annotateSuccessScope;
|
|
41
45
|
private annotateSuccessTimeout;
|
|
46
|
+
private annotateSuccessOnClear;
|
|
42
47
|
private pendingAnnotateViewportFrame;
|
|
43
48
|
private runtimeContextCollector;
|
|
44
49
|
private cleanupRuntimeContextCapture;
|
|
@@ -55,7 +60,6 @@ declare class InspectoElement extends BaseElement {
|
|
|
55
60
|
private dismiss;
|
|
56
61
|
private getHotKeyLabel;
|
|
57
62
|
private getEffectiveHotKeys;
|
|
58
|
-
private getAnnotationResponseMode;
|
|
59
63
|
private updateBadgeContent;
|
|
60
64
|
private setActive;
|
|
61
65
|
private readonly onMouseMove;
|
|
@@ -71,7 +75,6 @@ declare class InspectoElement extends BaseElement {
|
|
|
71
75
|
private openInspectMenu;
|
|
72
76
|
private syncRuntimeContextCapture;
|
|
73
77
|
private canAttachRuntimeContext;
|
|
74
|
-
private canAttachScreenshotContext;
|
|
75
78
|
private canAttachCssContext;
|
|
76
79
|
private captureCssContextPromptForElement;
|
|
77
80
|
private isCssContextEnabledForTarget;
|
|
@@ -81,8 +84,6 @@ declare class InspectoElement extends BaseElement {
|
|
|
81
84
|
private getAnnotateRuntimeContext;
|
|
82
85
|
private formatRuntimeContextSummary;
|
|
83
86
|
private getCollectedRuntimeErrorCount;
|
|
84
|
-
private resolveAnnotateScreenshotElement;
|
|
85
|
-
private captureAnnotateScreenshotContext;
|
|
86
87
|
private addTargetToCurrentAnnotation;
|
|
87
88
|
private markTargetInAnnotateSession;
|
|
88
89
|
private getAnnotationTargetKey;
|
|
@@ -101,6 +102,9 @@ declare class InspectoElement extends BaseElement {
|
|
|
101
102
|
private clearAnnotateError;
|
|
102
103
|
private clearAnnotateSuccess;
|
|
103
104
|
private showAnnotateSuccess;
|
|
105
|
+
private refreshLatestAnnotateSession;
|
|
106
|
+
private startLatestAnnotateSessionStream;
|
|
107
|
+
private stopLatestAnnotateSessionStream;
|
|
104
108
|
private toAnnotateErrorMessage;
|
|
105
109
|
private toAnnotationTransportFromRecord;
|
|
106
110
|
private sendAnnotationBatch;
|
package/dist/index.d.ts
CHANGED
|
@@ -30,15 +30,20 @@ declare class InspectoElement extends BaseElement {
|
|
|
30
30
|
private annotateEditingRecord;
|
|
31
31
|
private badge;
|
|
32
32
|
private configLoadPromise;
|
|
33
|
-
private annotationResponseMode;
|
|
34
33
|
private annotateInstructionDraft;
|
|
35
34
|
private annotateErrorMessage;
|
|
36
35
|
private annotateRuntimeContextEnabled;
|
|
37
|
-
private annotateScreenshotContextEnabled;
|
|
38
36
|
private annotateCssContextEnabled;
|
|
37
|
+
private annotateDeliveryMode;
|
|
39
38
|
private annotateSendState;
|
|
39
|
+
private annotateLatestSessionSummary;
|
|
40
|
+
private annotateLatestSessionDetail;
|
|
41
|
+
private annotateLatestSessionStream;
|
|
42
|
+
private annotateLatestSessionLoading;
|
|
43
|
+
private annotateLatestSessionError;
|
|
40
44
|
private annotateSuccessScope;
|
|
41
45
|
private annotateSuccessTimeout;
|
|
46
|
+
private annotateSuccessOnClear;
|
|
42
47
|
private pendingAnnotateViewportFrame;
|
|
43
48
|
private runtimeContextCollector;
|
|
44
49
|
private cleanupRuntimeContextCapture;
|
|
@@ -55,7 +60,6 @@ declare class InspectoElement extends BaseElement {
|
|
|
55
60
|
private dismiss;
|
|
56
61
|
private getHotKeyLabel;
|
|
57
62
|
private getEffectiveHotKeys;
|
|
58
|
-
private getAnnotationResponseMode;
|
|
59
63
|
private updateBadgeContent;
|
|
60
64
|
private setActive;
|
|
61
65
|
private readonly onMouseMove;
|
|
@@ -71,7 +75,6 @@ declare class InspectoElement extends BaseElement {
|
|
|
71
75
|
private openInspectMenu;
|
|
72
76
|
private syncRuntimeContextCapture;
|
|
73
77
|
private canAttachRuntimeContext;
|
|
74
|
-
private canAttachScreenshotContext;
|
|
75
78
|
private canAttachCssContext;
|
|
76
79
|
private captureCssContextPromptForElement;
|
|
77
80
|
private isCssContextEnabledForTarget;
|
|
@@ -81,8 +84,6 @@ declare class InspectoElement extends BaseElement {
|
|
|
81
84
|
private getAnnotateRuntimeContext;
|
|
82
85
|
private formatRuntimeContextSummary;
|
|
83
86
|
private getCollectedRuntimeErrorCount;
|
|
84
|
-
private resolveAnnotateScreenshotElement;
|
|
85
|
-
private captureAnnotateScreenshotContext;
|
|
86
87
|
private addTargetToCurrentAnnotation;
|
|
87
88
|
private markTargetInAnnotateSession;
|
|
88
89
|
private getAnnotationTargetKey;
|
|
@@ -101,6 +102,9 @@ declare class InspectoElement extends BaseElement {
|
|
|
101
102
|
private clearAnnotateError;
|
|
102
103
|
private clearAnnotateSuccess;
|
|
103
104
|
private showAnnotateSuccess;
|
|
105
|
+
private refreshLatestAnnotateSession;
|
|
106
|
+
private startLatestAnnotateSessionStream;
|
|
107
|
+
private stopLatestAnnotateSessionStream;
|
|
104
108
|
private toAnnotateErrorMessage;
|
|
105
109
|
private toAnnotationTransportFromRecord;
|
|
106
110
|
private sendAnnotationBatch;
|
package/dist/index.js
CHANGED
|
@@ -7,7 +7,7 @@ var TAG_NAME = "inspecto-overlay";
|
|
|
7
7
|
function mountInspector() {
|
|
8
8
|
return __async(this, arguments, function* (options = {}) {
|
|
9
9
|
if (typeof document === "undefined") return null;
|
|
10
|
-
const { InspectoElement: _InspectoElement } = yield import("./component-
|
|
10
|
+
const { InspectoElement: _InspectoElement } = yield import("./component-MYXLDDWZ.js");
|
|
11
11
|
const existing = document.querySelector(TAG_NAME);
|
|
12
12
|
if (existing) {
|
|
13
13
|
;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inspecto-dev/core",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.9",
|
|
4
4
|
"description": "Core browser runtime and server logic for Inspecto",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"html2canvas": "^1.4.1",
|
|
41
41
|
"launch-ide": "^1.0.0",
|
|
42
42
|
"portfinder": "^1.0.32",
|
|
43
|
-
"@inspecto-dev/types": "0.3.
|
|
43
|
+
"@inspecto-dev/types": "0.3.9"
|
|
44
44
|
},
|
|
45
45
|
"scripts": {
|
|
46
46
|
"build": "tsup",
|