@pulse-js/tools 0.1.1 → 0.1.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/README.md +25 -13
- package/dist/index.cjs +319 -293
- package/dist/index.d.cts +26 -4
- package/dist/index.d.ts +26 -4
- package/dist/index.js +316 -292
- package/package.json +3 -8
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
declare class PulseInspector extends HTMLElement {
|
|
2
|
+
private shadow;
|
|
3
|
+
private units;
|
|
4
|
+
private isOpen;
|
|
5
|
+
private position;
|
|
6
|
+
private isDragging;
|
|
7
|
+
private offset;
|
|
8
|
+
private totalMovement;
|
|
9
|
+
private lastMousePos;
|
|
10
|
+
private unsubscribeRegistry?;
|
|
11
|
+
private unitSubscriptions;
|
|
12
|
+
constructor();
|
|
13
|
+
connectedCallback(): void;
|
|
14
|
+
disconnectedCallback(): void;
|
|
15
|
+
private loadPosition;
|
|
16
|
+
private savePosition;
|
|
17
|
+
private refreshUnits;
|
|
18
|
+
private updateUnitSubscriptions;
|
|
19
|
+
private setupListeners;
|
|
20
|
+
private handleKeyDown;
|
|
21
|
+
private toggle;
|
|
22
|
+
private startDragging;
|
|
23
|
+
private render;
|
|
24
|
+
private renderUnit;
|
|
25
|
+
}
|
|
4
26
|
|
|
5
|
-
export {
|
|
27
|
+
export { PulseInspector };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
declare class PulseInspector extends HTMLElement {
|
|
2
|
+
private shadow;
|
|
3
|
+
private units;
|
|
4
|
+
private isOpen;
|
|
5
|
+
private position;
|
|
6
|
+
private isDragging;
|
|
7
|
+
private offset;
|
|
8
|
+
private totalMovement;
|
|
9
|
+
private lastMousePos;
|
|
10
|
+
private unsubscribeRegistry?;
|
|
11
|
+
private unitSubscriptions;
|
|
12
|
+
constructor();
|
|
13
|
+
connectedCallback(): void;
|
|
14
|
+
disconnectedCallback(): void;
|
|
15
|
+
private loadPosition;
|
|
16
|
+
private savePosition;
|
|
17
|
+
private refreshUnits;
|
|
18
|
+
private updateUnitSubscriptions;
|
|
19
|
+
private setupListeners;
|
|
20
|
+
private handleKeyDown;
|
|
21
|
+
private toggle;
|
|
22
|
+
private startDragging;
|
|
23
|
+
private render;
|
|
24
|
+
private renderUnit;
|
|
25
|
+
}
|
|
4
26
|
|
|
5
|
-
export {
|
|
27
|
+
export { PulseInspector };
|