js.foresight-devtools 1.0.2 → 1.0.3
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/index.d.mts +2 -4
- package/dist/index.d.ts +2 -4
- package/dist/index.js +70 -65
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +75 -70
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -530,14 +530,12 @@ declare global {
|
|
|
530
530
|
}
|
|
531
531
|
|
|
532
532
|
declare class ElementOverlays extends LitElement {
|
|
533
|
-
private
|
|
533
|
+
private overlayDataMap;
|
|
534
534
|
private callbackAnimations;
|
|
535
|
-
private
|
|
535
|
+
private showNameTags;
|
|
536
536
|
static styles: lit.CSSResult[];
|
|
537
537
|
private _abortController;
|
|
538
538
|
connectedCallback(): void;
|
|
539
|
-
private createElementOverlays;
|
|
540
|
-
private updateElementOverlays;
|
|
541
539
|
private createOrUpdateElementOverlay;
|
|
542
540
|
private removeElementOverlay;
|
|
543
541
|
private clearCallbackAnimationTimeout;
|
package/dist/index.d.ts
CHANGED
|
@@ -530,14 +530,12 @@ declare global {
|
|
|
530
530
|
}
|
|
531
531
|
|
|
532
532
|
declare class ElementOverlays extends LitElement {
|
|
533
|
-
private
|
|
533
|
+
private overlayDataMap;
|
|
534
534
|
private callbackAnimations;
|
|
535
|
-
private
|
|
535
|
+
private showNameTags;
|
|
536
536
|
static styles: lit.CSSResult[];
|
|
537
537
|
private _abortController;
|
|
538
538
|
connectedCallback(): void;
|
|
539
|
-
private createElementOverlays;
|
|
540
|
-
private updateElementOverlays;
|
|
541
539
|
private createOrUpdateElementOverlay;
|
|
542
540
|
private removeElementOverlay;
|
|
543
541
|
private clearCallbackAnimationTimeout;
|