@angular/cdk 18.0.0-next.4 → 18.0.0-next.5
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/drag-drop/index.d.ts +1 -1
- package/esm2022/drag-drop/drag-ref.mjs +24 -7
- package/esm2022/observers/observe-content.mjs +59 -31
- package/esm2022/scrolling/virtual-scroll-viewport.mjs +17 -24
- package/esm2022/version.mjs +1 -1
- package/fesm2022/cdk.mjs +1 -1
- package/fesm2022/cdk.mjs.map +1 -1
- package/fesm2022/drag-drop.mjs +23 -6
- package/fesm2022/drag-drop.mjs.map +1 -1
- package/fesm2022/observers.mjs +57 -29
- package/fesm2022/observers.mjs.map +1 -1
- package/fesm2022/scrolling.mjs +15 -22
- package/fesm2022/scrolling.mjs.map +1 -1
- package/observers/index.d.ts +2 -3
- package/package.json +1 -1
- package/schematics/ng-add/index.js +1 -1
- package/schematics/ng-add/index.mjs +1 -1
- package/scrolling/index.d.ts +0 -2
package/drag-drop/index.d.ts
CHANGED
|
@@ -935,7 +935,7 @@ export declare class DragRef<T = any> {
|
|
|
935
935
|
/** Updates the item's sort order based on the last-known pointer position. */
|
|
936
936
|
_sortFromLastPointerPosition(): void;
|
|
937
937
|
/** Unsubscribes from the global subscriptions. */
|
|
938
|
-
private
|
|
938
|
+
private _removeListeners;
|
|
939
939
|
/** Destroys the preview element and its ViewRef. */
|
|
940
940
|
private _destroyPreview;
|
|
941
941
|
/** Destroys the placeholder element and its ViewRef. */
|