@@ -153,15 +153,15 @@ export class FocusTrap {
153153 `[cdk-focus-${ bound } ]` ) as NodeListOf < HTMLElement > ;
154154
155155 for ( let i = 0 ; i < markers . length ; i ++ ) {
156- // @breaking -change 7 .0.0
156+ // @breaking -change 8 .0.0
157157 if ( markers [ i ] . hasAttribute ( `cdk-focus-${ bound } ` ) ) {
158158 console . warn ( `Found use of deprecated attribute 'cdk-focus-${ bound } ', ` +
159159 `use 'cdkFocusRegion${ bound } ' instead. The deprecated ` +
160- `attribute will be removed in 7 .0.0.` , markers [ i ] ) ;
160+ `attribute will be removed in 8 .0.0.` , markers [ i ] ) ;
161161 } else if ( markers [ i ] . hasAttribute ( `cdk-focus-region-${ bound } ` ) ) {
162162 console . warn ( `Found use of deprecated attribute 'cdk-focus-region-${ bound } ', ` +
163163 `use 'cdkFocusRegion${ bound } ' instead. The deprecated attribute ` +
164- `will be removed in 7 .0.0.` , markers [ i ] ) ;
164+ `will be removed in 8 .0.0.` , markers [ i ] ) ;
165165 }
166166 }
167167
@@ -182,11 +182,11 @@ export class FocusTrap {
182182 `[cdkFocusInitial]` ) as HTMLElement ;
183183
184184 if ( redirectToElement ) {
185- // @breaking -change 7 .0.0
185+ // @breaking -change 8 .0.0
186186 if ( redirectToElement . hasAttribute ( `cdk-focus-initial` ) ) {
187187 console . warn ( `Found use of deprecated attribute 'cdk-focus-initial', ` +
188188 `use 'cdkFocusInitial' instead. The deprecated attribute ` +
189- `will be removed in 7 .0.0` , redirectToElement ) ;
189+ `will be removed in 8 .0.0` , redirectToElement ) ;
190190 }
191191
192192 redirectToElement . focus ( ) ;
0 commit comments