@@ -143,7 +143,7 @@ module('Integration | Component | hds/app-side-nav/index', function (hooks) {
143143 await render ( hbs `<style>:root {--hds-app-desktop-breakpoint: 10088px}</style>
144144<Hds::AppSideNav id='test-app-side-nav'>
145145 <span id='test-app-side-nav-body' />
146- <span class='hds-app-side-nav-hide-when-minimized' />
146+ <span class='hds-app-side-nav-- hide-when-minimized' />
147147</Hds::AppSideNav>` ) ;
148148 assert . dom ( '#test-app-side-nav' ) . hasClass ( 'hds-app-side-nav--is-minimized' ) ;
149149 await click ( '.hds-app-side-nav__toggle-button' ) ;
@@ -153,7 +153,7 @@ module('Integration | Component | hds/app-side-nav/index', function (hooks) {
153153
154154 await triggerKeyEvent ( '#test-app-side-nav' , 'keydown' , 'Escape' ) ;
155155 assert . dom ( '#test-app-side-nav' ) . hasClass ( 'hds-app-side-nav--is-minimized' ) ;
156- assert . dom ( '.hds-app-side-nav-hide-when-minimized' ) . hasAttribute ( 'inert' ) ;
156+ assert . dom ( '.hds-app-side-nav-- hide-when-minimized' ) . hasAttribute ( 'inert' ) ;
157157 } ) ;
158158
159159 // COLLAPSIBLE
@@ -178,7 +178,7 @@ module('Integration | Component | hds/app-side-nav/index', function (hooks) {
178178 test ( 'the "non-minimized" and "minimized" states have impact on its internal properties' , async function ( assert ) {
179179 await render ( hbs `<Hds::AppSideNav @isCollapsible={{true}} id='test-app-side-nav'>
180180 <span id='test-app-side-nav-body' />
181- <span class='hds-app-side-nav-hide-when-minimized' />
181+ <span class='hds-app-side-nav-- hide-when-minimized' />
182182</Hds::AppSideNav>` ) ;
183183 assert
184184 . dom ( '#test-app-side-nav' )
@@ -190,7 +190,7 @@ module('Integration | Component | hds/app-side-nav/index', function (hooks) {
190190 . dom ( '.hds-app-side-nav__toggle-button .hds-icon' )
191191 . hasClass ( 'hds-icon-chevrons-left' ) ;
192192 assert
193- . dom ( '.hds-app-side-nav-hide-when-minimized' )
193+ . dom ( '.hds-app-side-nav-- hide-when-minimized' )
194194 . doesNotHaveAttribute ( 'inert' ) ;
195195 assert . dom ( '#test-app-side-nav-body' ) . doesNotHaveAttribute ( 'inert' ) ;
196196 assert . dom ( 'body' , document ) . doesNotHaveStyle ( 'overflow' ) ;
@@ -204,7 +204,7 @@ module('Integration | Component | hds/app-side-nav/index', function (hooks) {
204204 assert
205205 . dom ( '.hds-app-side-nav__toggle-button .hds-icon' )
206206 . hasClass ( 'hds-icon-chevrons-right' ) ;
207- assert . dom ( '.hds-app-side-nav-hide-when-minimized' ) . hasAttribute ( 'inert' ) ;
207+ assert . dom ( '.hds-app-side-nav-- hide-when-minimized' ) . hasAttribute ( 'inert' ) ;
208208 assert . dom ( '#test-app-side-nav-body' ) . doesNotHaveAttribute ( 'inert' ) ;
209209 assert . dom ( 'body' , document ) . doesNotHaveStyle ( 'overflow' ) ;
210210 } ) ;
@@ -222,7 +222,7 @@ module('Integration | Component | hds/app-side-nav/index', function (hooks) {
222222 @onDesktopViewportChange={{this.onDesktopViewportChange}}
223223>
224224 <span id='test-app-side-nav-body' />
225- <span class='hds-app-side-nav-hide-when-minimized' />
225+ <span class='hds-app-side-nav-- hide-when-minimized' />
226226</Hds::AppSideNav>` ) ;
227227
228228 assert . strictEqual ( calls . length , 1 , 'called with initial viewport' ) ;
@@ -234,7 +234,7 @@ module('Integration | Component | hds/app-side-nav/index', function (hooks) {
234234 'resizing to mobile triggers a false event'
235235 ) ;
236236
237- assert . dom ( '.hds-app-side-nav-hide-when-minimized' ) . hasAttribute ( 'inert' ) ;
237+ assert . dom ( '.hds-app-side-nav-- hide-when-minimized' ) . hasAttribute ( 'inert' ) ;
238238 } ) ;
239239
240240 test ( 'when collapsed and the viewport changes from mobile to desktop, it automatically expands and is no longer inert' , async function ( assert ) {
@@ -250,19 +250,19 @@ module('Integration | Component | hds/app-side-nav/index', function (hooks) {
250250 @onDesktopViewportChange={{this.onDesktopViewportChange}}
251251>
252252 <span id='test-app-side-nav-body' />
253- <span class='hds-app-side-nav-hide-when-minimized' />
253+ <span class='hds-app-side-nav-- hide-when-minimized' />
254254</Hds::AppSideNav>` ) ;
255255
256256 await click ( '.hds-app-side-nav__toggle-button' ) ;
257- assert . dom ( '.hds-app-side-nav-hide-when-minimized' ) . hasAttribute ( 'inert' ) ;
257+ assert . dom ( '.hds-app-side-nav-- hide-when-minimized' ) . hasAttribute ( 'inert' ) ;
258258
259259 await this . changeBrowserSize ( false ) ;
260260 assert . deepEqual (
261261 calls [ 1 ] ,
262262 [ false ] ,
263263 'resizing to mobile triggers a false event'
264264 ) ;
265- assert . dom ( '.hds-app-side-nav-hide-when-minimized' ) . hasAttribute ( 'inert' ) ;
265+ assert . dom ( '.hds-app-side-nav-- hide-when-minimized' ) . hasAttribute ( 'inert' ) ;
266266
267267 await this . changeBrowserSize ( true ) ;
268268 assert . deepEqual (
@@ -271,7 +271,7 @@ module('Integration | Component | hds/app-side-nav/index', function (hooks) {
271271 'resizing to desktop triggers a true event'
272272 ) ;
273273 assert
274- . dom ( '.hds-app-side-nav-hide-when-minimized' )
274+ . dom ( '.hds-app-side-nav-- hide-when-minimized' )
275275 . doesNotHaveAttribute ( 'inert' ) ;
276276 assert . dom ( 'body' , document ) . doesNotHaveStyle ( 'overflow' ) ;
277277 } ) ;
@@ -289,7 +289,7 @@ module('Integration | Component | hds/app-side-nav/index', function (hooks) {
289289 @onDesktopViewportChange={{this.onDesktopViewportChange}}
290290>
291291 <span id='test-app-side-nav-body' />
292- <span class='hds-app-side-nav-hide-when-minimized' />
292+ <span class='hds-app-side-nav-- hide-when-minimized' />
293293</Hds::AppSideNav>` ) ;
294294 await this . changeBrowserSize ( false ) ;
295295 assert . deepEqual (
@@ -321,7 +321,7 @@ module('Integration | Component | hds/app-side-nav/index', function (hooks) {
321321 @onDesktopViewportChange={{this.onDesktopViewportChange}}
322322>
323323 <span id='test-app-side-nav-body' />
324- <span class='hds-app-side-nav-hide-when-minimized' />
324+ <span class='hds-app-side-nav-- hide-when-minimized' />
325325</Hds::AppSideNav><button id='button-2'>Click</button>` ) ;
326326
327327 await click ( '.hds-app-side-nav__toggle-button' ) ;
0 commit comments