@angular/cdk 11.2.5 → 11.2.6

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/fesm2015/a11y.js CHANGED
@@ -868,10 +868,10 @@ function getWindow(node) {
868
868
  *
869
869
  * This class currently uses a relatively simple approach to focus trapping.
870
870
  * It assumes that the tab order is the same as DOM order, which is not necessarily true.
871
- * Things like `tabIndex > 0`, flex `order`, and shadow roots can cause the two to misalign.
871
+ * Things like `tabIndex > 0`, flex `order`, and shadow roots can cause the two to be misaligned.
872
872
  *
873
873
  * @deprecated Use `ConfigurableFocusTrap` instead.
874
- * @breaking-change for 11.0.0 Remove this class.
874
+ * @breaking-change 11.0.0
875
875
  */
876
876
  class FocusTrap {
877
877
  constructor(_element, _checker, _ngZone, _document, deferAnchors = false) {
@@ -919,7 +919,7 @@ class FocusTrap {
919
919
  /**
920
920
  * Inserts the anchors into the DOM. This is usually done automatically
921
921
  * in the constructor, but can be deferred for cases like directives with `*ngIf`.
922
- * @returns Whether the focus trap managed to attach successfuly. This may not be the case
922
+ * @returns Whether the focus trap managed to attach successfully. This may not be the case
923
923
  * if the target element isn't currently in the DOM.
924
924
  */
925
925
  attachAnchors() {
@@ -1142,7 +1142,7 @@ class FocusTrap {
1142
1142
  /**
1143
1143
  * Factory that allows easy instantiation of focus traps.
1144
1144
  * @deprecated Use `ConfigurableFocusTrapFactory` instead.
1145
- * @breaking-change for 11.0.0 Remove this class.
1145
+ * @breaking-change 11.0.0
1146
1146
  */
1147
1147
  class FocusTrapFactory {
1148
1148
  constructor(_checker, _ngZone, _document) {