Uday Vunnam

Results 40 comments of Uday Vunnam

@thehaseebahmed The issue is in route definition where everything is defined flat ``` const routes: Routes = [ { path: '', component: HomeComponent }, { path: 'home', component: HomeComponent },...

Hey everyone. I will spend sometime this week to upgrade this

Sorry for the delay guys! Will speed this up and publish an update. PR is welcome too!

Just now made all demo apps and breadcrumb library moved and tested with Angular 17 and standalone components. We will release this soon after some testing!

`[email protected]` is released with support for `Angular 17`. check [version compatibility guide](https://udayvunnam.github.io/xng-breadcrumb/#/angular-version-compatibility)

@AndriesN @gabrielbergoc Can you confirm the below understanding of the requirement Instead of ``` breadcrumbService.set('mentors', 'Mentor View'); breadcrumbService.set('mentor/:id', 'Uday Vunnam'); ``` we want `breadcrumbService.add('mentors', 'Mentor View').add('mentor/:id', 'Uday Vunnam')` to make...

to be done with a different PR

@charmbv With Angular 17+, we use standalone components. https://udayvunnam.github.io/xng-breadcrumb/#/quickstart?id=standalone-components Try this - ``` import { BreadcrumbComponent, BreadcrumbItemDirective } from 'xng-breadcrumb'; @Component({ standalone: true, imports: [RouterModule, BreadcrumbComponent, BreadcrumbItemDirective], templateUrl: './app.component.html', ......