Commits
Alexandre Vryghem authored 5682c81217c
1 1 | import { Component } from '@angular/core'; |
2 2 | import { ThemedComponent } from '../../shared/theme-support/themed.component'; |
3 3 | import { ExpandableNavbarSectionComponent } from './expandable-navbar-section.component'; |
4 4 | import { rendersSectionForMenu } from '../../shared/menu/menu-section.decorator'; |
5 - | import { MenuID } from '../../shared/menu/initial-menus-state'; |
5 + | import { MenuID } from '../../shared/menu/menu-id.model'; |
6 6 | |
7 7 | /** |
8 8 | * Themed wrapper for ExpandableNavbarSectionComponent |
9 9 | */ |
10 10 | @Component({ |
11 - | /* tslint:disable:component-selector */ |
11 + | /* eslint-disable @angular-eslint/component-selector */ |
12 12 | selector: 'li[ds-themed-expandable-navbar-section]', |
13 13 | styleUrls: [], |
14 14 | templateUrl: '../../shared/theme-support/themed.component.html', |
15 15 | }) |
16 16 | @rendersSectionForMenu(MenuID.PUBLIC, true) |
17 17 | export class ThemedExpandableNavbarSectionComponent extends ThemedComponent<ExpandableNavbarSectionComponent> { |
18 18 | protected getComponentName(): string { |
19 19 | return 'ExpandableNavbarSectionComponent'; |
20 20 | } |
21 21 | |