secondarynavigation
v18.2.0
Published
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 18.1.1.
Downloads
161
Readme
Secondarynavigation
This library was generated with Angular CLI version 18.1.1.
Getting started
Step 1: Install
Run npm install secondarynavigation
to install the module in your local Angular Application.Recommended npm install secondarynavigation --force
When attempting to install various third-party dependencies listed in your local package.json, some of them may not be compatible with the latest Angular version, Use --force inspite of normal npm install.
Step 2: Import the CloSecondaryNavigationModule
Usage
HTML
<clo-tab-navigation
class="fixed-secondary-header"
[activeId]="activeTabId"
(tabChange)="tabChange($event)"
justify="center"
>
<clo-navigation-tab
*ngFor="let tabName of tabNames"
[title]="tabName.testDetails"
>
<ng-template cloNavigationTabContent>
<test></test>(Load your selector based on your requirement)
</ng-template>
</clo-navigation-tab>
</clo-tab-navigation>
TS
backButtonClickEvent(event: any) {
Handle the click event here
}
tabChange(event: any) {
Tab Change Event
}