@mintplayer/ng-bootstrap 20.6.1 → 20.6.2
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/dock/index.d.ts
CHANGED
|
@@ -100,10 +100,22 @@ declare class MintDockManagerElement extends HTMLElement {
|
|
|
100
100
|
private dragState;
|
|
101
101
|
private floatingDragState;
|
|
102
102
|
private floatingResizeState;
|
|
103
|
+
private intersectionRaf;
|
|
104
|
+
private intersectionHandles;
|
|
105
|
+
private cornerResizeState;
|
|
103
106
|
private pointerTrackingActive;
|
|
104
107
|
private dragPointerTrackingActive;
|
|
105
108
|
private lastDragPointerPosition;
|
|
109
|
+
private activeSnapAxis;
|
|
110
|
+
private activeSnapTargets;
|
|
111
|
+
private cornerSnapXTargets;
|
|
112
|
+
private cornerSnapYTargets;
|
|
113
|
+
private showSnapMarkers;
|
|
114
|
+
private renderSnapMarkersForDivider;
|
|
115
|
+
private renderSnapMarkersForCorner;
|
|
116
|
+
private clearSnapMarkers;
|
|
106
117
|
private pendingDragEndTimeout;
|
|
118
|
+
private previousSplitSizes;
|
|
107
119
|
constructor();
|
|
108
120
|
connectedCallback(): void;
|
|
109
121
|
disconnectedCallback(): void;
|
|
@@ -119,6 +131,13 @@ declare class MintDockManagerElement extends HTMLElement {
|
|
|
119
131
|
private render;
|
|
120
132
|
private renderNode;
|
|
121
133
|
private renderFloatingPanes;
|
|
134
|
+
private onWindowResize;
|
|
135
|
+
private scheduleRenderIntersectionHandles;
|
|
136
|
+
private renderIntersectionHandles;
|
|
137
|
+
private beginCornerResize;
|
|
138
|
+
private handleCornerResizeMove;
|
|
139
|
+
private endCornerResize;
|
|
140
|
+
private onIntersectionDoubleClick;
|
|
122
141
|
private beginFloatingDrag;
|
|
123
142
|
private beginFloatingResize;
|
|
124
143
|
private handleFloatingDragMove;
|