I get this error since I upgraded Angular to version 17, I'm importing the RouterModule at the root of the project, it worked fine before the upgrade and I didn't find how to fix this error. Could you please help?
app-bar-menu component
<kendo-appbar position="top">
...
<kendo-appbar-section class="horizontal-menu">
<ul class="nav menu">
<li routerLinkActive="active">
<a [routerLink]="['/menu1']">Menu1</a>
</li>
<li routerLinkActive="active">
<a [routerLink]="['/menu2']">Menu2</a>
</li>
<li routerLinkActive="active">
<a [routerLink]="['/menu3']">Menu3</a>
</li>
</ul>
</kendo-appbar-section>
...
</kendo-appbar>
app component html
<ng-container>
<app-bar-menu></app-bar-menu>
<body>
<div class="app-container">
<div kendoDialogContainer></div>
<router-outlet></router-outlet>
</div>
</body>
</ng-container>
app component ts
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
standalone: true,
imports: [
NgIf,
AppBarMenuComponent,
DialogModule,
RouterOutlet,
],
}) export class AppComponent {}
Edit1: I changed the app-bar-menu component to standalone but I still have the same error.
@Component({
selector: 'app-bar-menu',
standalone: true,
imports: [RouterModule, RouterLink, RouterLinkActive, KendoUiAngularModule, TranslateModule],
templateUrl: './app-bar-menu.component.html',
styleUrls: ['./app-bar-menu.component.scss'],
})
export class AppBarMenuComponent implements OnInit {...}
Edit2: I changed all the component of my application to standalone and still have the same error and the ones I add bellow. The application build and run without problem but these errors appears in red in the html.
Can't bind to 'routerLink' since it isn't a known property of 'a'.
Can't bind to 'formControl' since it isn't a known property of 'kendo-textbox'
Can't bind to 'formGroup' since it isn't a known property of 'form'.
Can't bind to 'formControl' since it isn't a known property of 'kendo-dateinput'.
Can't bind to 'ngClass' since it isn't a known property of 'button'.
Can't bind to 'ngClass' since it isn't a known property of 'div'.
I used npm-check-updates to update the @progress components but I don't know if these errors have something to do with wrong dependencies versions or something else, could someone please help?
"dependencies": {
"@angular/animations": "~17.3.7",
"@angular/common": "~17.3.7",
"@angular/compiler": "~17.3.7",
"@angular/core": "~17.3.7",
"@angular/forms": "~17.3.7",
"@angular/localize": "~17.3.7",
"@angular/platform-browser": "~17.3.7",
"@angular/platform-browser-dynamic": "~17.3.7",
"@angular/platform-server": "~17.3.7",
"@angular/router": "~17.3.7",
"@fortawesome/angular-fontawesome": "^0.14.1",
"@fortawesome/fontawesome-common-types": "^6.5.2",
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@ngx-translate/core": "^15.0.0",
"@ngx-translate/http-loader": "^8.0.0",
"@progress/kendo-angular-buttons": "^15.5.0",
"@progress/kendo-angular-common": "^15.5.0",
"@progress/kendo-angular-dateinputs": "^15.5.0",
"@progress/kendo-angular-dialog": "^15.5.0",
"@progress/kendo-angular-dropdowns": "^15.5.0",
"@progress/kendo-angular-excel-export": "^15.5.0",
"@progress/kendo-angular-grid": "^15.5.0",
"@progress/kendo-angular-icons": "^15.5.0",
"@progress/kendo-angular-indicators": "^15.5.0",
"@progress/kendo-angular-inputs": "^15.5.0",
"@progress/kendo-angular-intl": "^15.5.0",
"@progress/kendo-angular-l10n": "^15.5.0",
"@progress/kendo-angular-label": "^15.5.0",
"@progress/kendo-angular-layout": "^15.5.0",
"@progress/kendo-angular-listview": "^15.5.0",
"@progress/kendo-angular-menu": "^15.5.0",
"@progress/kendo-angular-navigation": "^15.5.0",
"@progress/kendo-angular-notification": "^15.5.0",
"@progress/kendo-angular-pdf-export": "^15.5.0",
"@progress/kendo-angular-popup": "^15.5.0",
"@progress/kendo-angular-progressbar": "^15.5.0",
"@progress/kendo-angular-ripple": "^15.5.0",
"@progress/kendo-angular-tooltip": "^15.5.0",
"@progress/kendo-angular-treeview": "^15.5.0",
"@progress/kendo-data-query": "^1.7.0",
"@progress/kendo-drawing": "^1.20.1",
"@progress/kendo-licensing": "^1.3.5",
"@progress/kendo-svg-icons": "^2.3.0",
"@progress/kendo-theme-default": "^7.2.1",
"@types/lodash": "^4.17.1",
"angular-oauth2-oidc": "^17.0.2",
"bootstrap": "^5.3.3",
"cldr-core": "^45.0.0",
"cldr-dates-full": "^45.0.0",
"cldr-numbers-full": "^45.0.0",
"jquery": "^3.7.1",
"kendo-ui-license": "^1.0.1",
"locale-codes": "^1.3.1",
"npm-check-updates": "^16.14.20",
"oidc-client": "^1.11.5",
"popper.js": "^1.16.0",
"run-script-os": "^1.1.6",
"rxjs": "~7.8.1",
"zone.js": "~0.14.5"
},
"devDependencies": {
"@angular-devkit/build-angular": "~17.3.6",
"@angular-eslint/builder": "17.3.0",
"@angular-eslint/eslint-plugin": "17.3.0",
"@angular-eslint/eslint-plugin-template": "17.3.0",
"@angular-eslint/schematics": "17.3.0",
"@angular-eslint/template-parser": "17.3.0",
"@angular/cli": "~17.3.6",
"@angular/compiler-cli": "~17.3.7",
"@types/jasmine": "~5.1.4",
"@types/jasminewd2": "~2.0.13",
"@types/jquery": "^3.5.29",
"@types/node": "^20.12.8",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^9.2.0",
"jasmine-core": "~5.1.2",
"karma": "~6.4.3",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ngx-translate-testing": "^7.0.0",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
}
RouterLinkandRouterLinkActiveinto theimportsarray for yourAppBarMenuComponent.