@angular/cdk 11.1.2 → 11.2.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.
Files changed (48) hide show
  1. package/_overlay.scss +3 -1
  2. package/a11y/_a11y.import.scss +1 -0
  3. package/bundles/cdk-a11y.umd.js.map +1 -1
  4. package/bundles/cdk-clipboard.umd.js +7 -1
  5. package/bundles/cdk-clipboard.umd.js.map +1 -1
  6. package/bundles/cdk-clipboard.umd.min.js +2 -2
  7. package/bundles/cdk-clipboard.umd.min.js.map +1 -1
  8. package/bundles/cdk-drag-drop.umd.js +4 -1
  9. package/bundles/cdk-drag-drop.umd.js.map +1 -1
  10. package/bundles/cdk-drag-drop.umd.min.js +2 -2
  11. package/bundles/cdk-drag-drop.umd.min.js.map +1 -1
  12. package/bundles/cdk-platform.umd.js.map +1 -1
  13. package/bundles/cdk-stepper.umd.js +7 -3
  14. package/bundles/cdk-stepper.umd.js.map +1 -1
  15. package/bundles/cdk-stepper.umd.min.js +1 -1
  16. package/bundles/cdk-stepper.umd.min.js.map +1 -1
  17. package/bundles/cdk.umd.js +1 -1
  18. package/bundles/cdk.umd.js.map +1 -1
  19. package/bundles/cdk.umd.min.js +1 -1
  20. package/bundles/cdk.umd.min.js.map +1 -1
  21. package/clipboard/copy-to-clipboard.d.ts +5 -0
  22. package/clipboard/index.metadata.json +1 -1
  23. package/esm2015/a11y/focus-monitor/focus-monitor.js +1 -1
  24. package/esm2015/clipboard/copy-to-clipboard.js +7 -2
  25. package/esm2015/drag-drop/directives/drag.js +2 -2
  26. package/esm2015/drag-drop/drag-ref.js +4 -1
  27. package/esm2015/drag-drop/drop-list-ref.js +1 -1
  28. package/esm2015/platform/features/shadow-dom.js +1 -1
  29. package/esm2015/stepper/stepper.js +8 -4
  30. package/esm2015/version.js +1 -1
  31. package/fesm2015/a11y.js.map +1 -1
  32. package/fesm2015/cdk.js +1 -1
  33. package/fesm2015/cdk.js.map +1 -1
  34. package/fesm2015/clipboard.js +7 -2
  35. package/fesm2015/clipboard.js.map +1 -1
  36. package/fesm2015/drag-drop.js +4 -1
  37. package/fesm2015/drag-drop.js.map +1 -1
  38. package/fesm2015/platform.js.map +1 -1
  39. package/fesm2015/stepper.js +7 -3
  40. package/fesm2015/stepper.js.map +1 -1
  41. package/overlay/_overlay.import.scss +1 -0
  42. package/overlay/_overlay.scss +3 -1
  43. package/overlay-prebuilt.css +1 -1
  44. package/package.json +1 -1
  45. package/platform/features/shadow-dom.d.ts +1 -1
  46. package/schematics/ng-add/index.js +1 -1
  47. package/stepper/index.metadata.json +1 -1
  48. package/text-field/_text-field.import.scss +1 -0
package/_overlay.scss CHANGED
@@ -1,3 +1,5 @@
1
+ @import '../a11y/a11y';
2
+
1
3
  // We want overlays to always appear over user content, so set a baseline
2
4
  // very high z-index for the overlay container, which is where we create the new
3
5
  // stacking context for all overlays.
@@ -84,7 +86,7 @@ $backdrop-animation-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1) !default;
84
86
  // to making it opaque using `opacity`. Note that we can't use the `cdk-high-contrast`
85
87
  // mixin, because we can't normalize the import path to the _a11y.scss both for the
86
88
  // source and when this file is distributed. See #10908.
87
- @media screen and (-ms-high-contrast: active) {
89
+ @include cdk-high-contrast(active, off) {
88
90
  opacity: 0.6;
89
91
  }
90
92
  }
@@ -0,0 +1 @@
1
+ @forward 'a11y';