js.foresight-devtools 1.0.3 → 1.0.4
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.ts +5 -2
- package/dist/index.js +74 -81
- package/dist/index.js.map +1 -1
- package/package.json +8 -10
- package/dist/index.d.mts +0 -585
- package/dist/index.mjs +0 -1721
- package/dist/index.mjs.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -349,6 +349,7 @@ interface ElementUnregisteredPayload extends PayloadBase {
|
|
|
349
349
|
id: string;
|
|
350
350
|
registerCount: number;
|
|
351
351
|
unregisterReason: string;
|
|
352
|
+
wasLastElement: boolean;
|
|
352
353
|
}
|
|
353
354
|
interface ElementDataUpdatedPayload extends PayloadBase {
|
|
354
355
|
type: "elementDataUpdated";
|
|
@@ -530,12 +531,14 @@ declare global {
|
|
|
530
531
|
}
|
|
531
532
|
|
|
532
533
|
declare class ElementOverlays extends LitElement {
|
|
533
|
-
private
|
|
534
|
+
private overlayMap;
|
|
534
535
|
private callbackAnimations;
|
|
535
|
-
private
|
|
536
|
+
private containerElement;
|
|
536
537
|
static styles: lit.CSSResult[];
|
|
537
538
|
private _abortController;
|
|
538
539
|
connectedCallback(): void;
|
|
540
|
+
private createElementOverlays;
|
|
541
|
+
private updateElementOverlays;
|
|
539
542
|
private createOrUpdateElementOverlay;
|
|
540
543
|
private removeElementOverlay;
|
|
541
544
|
private clearCallbackAnimationTimeout;
|