File tree 4 files changed +5
-7
lines changed
modifiers/hds-advanced-table-cell
4 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -253,7 +253,7 @@ export default class HdsPaginationNumbered extends Component<HdsPaginationNumber
253
253
// noop
254
254
} else {
255
255
// if `this._isControlled` is `false`
256
- this . _currentPage = value as number ;
256
+ this . _currentPage = value ;
257
257
}
258
258
}
259
259
Original file line number Diff line number Diff line change @@ -27,9 +27,9 @@ export interface HdsSideNavSignature {
27
27
* @deprecated The `@ariaLabel` argument for "Hds::SideNav" has been deprecated. It is replaced by aria-labelledby and aria-expanded on the toggle button
28
28
*/
29
29
ariaLabel ?: string | undefined ;
30
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
30
+
31
31
onToggleMinimizedStatus ?: ( arg : boolean ) => void ;
32
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
32
+
33
33
onDesktopViewportChange ?: ( arg : boolean ) => void ;
34
34
} ;
35
35
Blocks : {
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import type { HdsTabsPanelSignature } from './panel';
15
15
import type { HdsTabsTabIds , HdsTabsPanelIds , HdsTabsSizes } from './types.ts' ;
16
16
import type Owner from '@ember/owner' ;
17
17
18
- export const DEFAULT_SIZE : HdsTabsSizes = 'medium' as const ;
18
+ export const DEFAULT_SIZE : HdsTabsSizes = 'medium' ;
19
19
export const SIZES : HdsTabsSizes [ ] = Object . values ( HdsTabsSizeValues ) ;
20
20
export interface HdsTabsSignature {
21
21
Args : {
Original file line number Diff line number Diff line change @@ -35,9 +35,7 @@ export const updateTabbableChildren = (
35
35
} ;
36
36
37
37
export const didInsertGridCell = (
38
- cell :
39
- | HdsAdvancedTableThSignature [ 'Element' ]
40
- | HdsAdvancedTableTdSignature [ 'Element' ]
38
+ cell : HdsAdvancedTableThSignature [ 'Element' ]
41
39
) : void => {
42
40
updateTabbableChildren ( cell ) ;
43
41
You can’t perform that action at this time.
0 commit comments