This library was generated with Angular CLI version 18.1.1.
Run npm install secondaryheader-backbutton
to install the module in your local Angular Application.Recommended npm install secondaryheader-backbutton --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.
import { CloSecondaryBackNavigationModule } from 'secondaryheader-backbutton';
`Import the above module based on your usage in the particular component as standalone or Global level `
HTML
<clo-tab-navigation-back
id="nav"
[labelName]="title"
class="fixed-secondary-header"
(backButtonClickEmit)="backButtonClickEvent($event)"
>
<clo-navigation-tab-back>
<ng-template cloNavigationTabContentBack> </ng-template>
</clo-navigation-tab-back>
</clo-tab-navigation-back>
TS
title:string = "Back";
backButtonClickEvent(event: any) {
Handle the click event here
}