@angular/cdk 10.2.0-rc.0 → 10.2.0
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/bundles/cdk-drag-drop.umd.js +17 -17
- package/bundles/cdk-drag-drop.umd.js.map +1 -1
- package/bundles/cdk-drag-drop.umd.min.js +11 -11
- package/bundles/cdk-drag-drop.umd.min.js.map +1 -1
- package/bundles/cdk-overlay.umd.js +5 -2
- package/bundles/cdk-overlay.umd.js.map +1 -1
- package/bundles/cdk-overlay.umd.min.js +5 -5
- package/bundles/cdk-overlay.umd.min.js.map +1 -1
- package/bundles/cdk-testing-testbed.umd.js +15 -26
- package/bundles/cdk-testing-testbed.umd.js.map +1 -1
- package/bundles/cdk-testing-testbed.umd.min.js +6 -6
- package/bundles/cdk-testing-testbed.umd.min.js.map +1 -1
- package/bundles/cdk.umd.js +1 -1
- package/bundles/cdk.umd.js.map +1 -1
- package/bundles/cdk.umd.min.js +1 -1
- package/bundles/cdk.umd.min.js.map +1 -1
- package/drag-drop/index.d.ts +1 -2
- package/drag-drop/index.metadata.json +1 -1
- package/drag-drop/public-api.d.ts +2 -1
- package/esm2015/drag-drop/index.js +1 -3
- package/esm2015/drag-drop/public-api.js +3 -2
- package/esm2015/overlay/dispatchers/overlay-outside-click-dispatcher.js +6 -3
- package/esm2015/testing/testbed/unit-test-element.js +2 -8
- package/esm2015/version.js +1 -1
- package/fesm2015/cdk.js +1 -1
- package/fesm2015/cdk.js.map +1 -1
- package/fesm2015/drag-drop.js +16 -16
- package/fesm2015/drag-drop.js.map +1 -1
- package/fesm2015/overlay.js +5 -2
- package/fesm2015/overlay.js.map +1 -1
- package/fesm2015/testing/testbed.js +1 -7
- package/fesm2015/testing/testbed.js.map +1 -1
- package/package.json +1 -1
- package/schematics/ng-add/index.js +1 -1
|
@@ -2705,6 +2705,21 @@
|
|
|
2705
2705
|
{ type: DragDropRegistry }
|
|
2706
2706
|
]; };
|
|
2707
2707
|
|
|
2708
|
+
/**
|
|
2709
|
+
* @license
|
|
2710
|
+
* Copyright Google LLC All Rights Reserved.
|
|
2711
|
+
*
|
|
2712
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
2713
|
+
* found in the LICENSE file at https://angular.io/license
|
|
2714
|
+
*/
|
|
2715
|
+
/**
|
|
2716
|
+
* Injection token that can be used for a `CdkDrag` to provide itself as a parent to the
|
|
2717
|
+
* drag-specific child directive (`CdkDragHandle`, `CdkDragPreview` etc.). Used primarily
|
|
2718
|
+
* to avoid circular imports.
|
|
2719
|
+
* @docs-private
|
|
2720
|
+
*/
|
|
2721
|
+
var CDK_DRAG_PARENT = new i0.InjectionToken('CDK_DRAG_PARENT');
|
|
2722
|
+
|
|
2708
2723
|
/**
|
|
2709
2724
|
* @license
|
|
2710
2725
|
* Copyright Google LLC All Rights Reserved.
|
|
@@ -3059,21 +3074,6 @@
|
|
|
3059
3074
|
sorted: [{ type: i0.Output, args: ['cdkDropListSorted',] }]
|
|
3060
3075
|
};
|
|
3061
3076
|
|
|
3062
|
-
/**
|
|
3063
|
-
* @license
|
|
3064
|
-
* Copyright Google LLC All Rights Reserved.
|
|
3065
|
-
*
|
|
3066
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
3067
|
-
* found in the LICENSE file at https://angular.io/license
|
|
3068
|
-
*/
|
|
3069
|
-
/**
|
|
3070
|
-
* Injection token that can be used for a `CdkDrag` to provide itself as a parent to the
|
|
3071
|
-
* drag-specific child directive (`CdkDragHandle`, `CdkDragPreview` etc.). Used primarily
|
|
3072
|
-
* to avoid circular imports.
|
|
3073
|
-
* @docs-private
|
|
3074
|
-
*/
|
|
3075
|
-
var CDK_DRAG_PARENT = new i0.InjectionToken('CDK_DRAG_PARENT');
|
|
3076
|
-
|
|
3077
3077
|
/**
|
|
3078
3078
|
* @license
|
|
3079
3079
|
* Copyright Google LLC All Rights Reserved.
|
|
@@ -3612,8 +3612,10 @@
|
|
|
3612
3612
|
|
|
3613
3613
|
exports.CDK_DRAG_CONFIG = CDK_DRAG_CONFIG;
|
|
3614
3614
|
exports.CDK_DRAG_HANDLE = CDK_DRAG_HANDLE;
|
|
3615
|
+
exports.CDK_DRAG_PARENT = CDK_DRAG_PARENT;
|
|
3615
3616
|
exports.CDK_DRAG_PLACEHOLDER = CDK_DRAG_PLACEHOLDER;
|
|
3616
3617
|
exports.CDK_DRAG_PREVIEW = CDK_DRAG_PREVIEW;
|
|
3618
|
+
exports.CDK_DROP_LIST = CDK_DROP_LIST;
|
|
3617
3619
|
exports.CDK_DROP_LIST_GROUP = CDK_DROP_LIST_GROUP;
|
|
3618
3620
|
exports.CdkDrag = CdkDrag;
|
|
3619
3621
|
exports.CdkDragHandle = CdkDragHandle;
|
|
@@ -3629,8 +3631,6 @@
|
|
|
3629
3631
|
exports.copyArrayItem = copyArrayItem;
|
|
3630
3632
|
exports.moveItemInArray = moveItemInArray;
|
|
3631
3633
|
exports.transferArrayItem = transferArrayItem;
|
|
3632
|
-
exports.ɵangular_material_src_cdk_drag_drop_drag_drop_b = CDK_DROP_LIST;
|
|
3633
|
-
exports.ɵangular_material_src_cdk_drag_drop_drag_drop_c = CDK_DRAG_PARENT;
|
|
3634
3634
|
|
|
3635
3635
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
3636
3636
|
|