# ngx-navigate-back-button

> The library provides a custom styled button.

Latest version **0.0.4** (published 2021-01-12) · 0 weekly downloads

## Install

```sh
npm install ngx-navigate-back-button
pnpm add ngx-navigate-back-button
yarn add ngx-navigate-back-button
bun add ngx-navigate-back-button
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.4 |
| Published | 2021-01-12 |
| First published | 2020-12-09 |
| Weekly downloads | 0 |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 1 |
| Unpacked size | 28.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | belinyakm |

## Links

- npm: https://www.npmjs.com/package/ngx-navigate-back-button
- npm.io page: https://npm.io/package/ngx-navigate-back-button

## Dependencies (1)

- [tslib](https://npm.io/package/tslib.md) ^2.0.0

## Recent versions

- 0.0.4 (latest) — 2021-01-12
- 0.0.3 — 2020-12-09
- 0.0.2 — 2020-12-09
- 0.0.1 — 2020-12-09

## README

# NgxNavigateBackButton
The library provides a custom styled button. 

This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 11.0.3.


## Installation

`npm install ngx-navigate-back-button --save`

## Usage

1. Install the library via npm

2. Import NgxNavigateBackButton into your AppModule:

```
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import { NgxNavigateBackButtonModule } from 'ngx-navigate-back-button';

@NgModule({
    declarations: [
        AppComponent
    ],
    imports: [
        BrowserModule,
        NgxNavigateBackButtonModule
    ],
    providers: [],
    bootstrap: [AppComponent]
})
export class AppModule {
}
```

3. Use <ngx-navigate-back-button> in your component's template.

```
<ngx-navigate-back-button
  [disabled]="false"
  [visible]="true"
  [title]="title"
  (backButtonClicked)="onClick()"
></ngx-navigate-back-button>
```

#### Inputs:

- `disabled` - boolean property, tells the library whether the component should be disabled
- `visible` - boolean property, tells the library whether the component should be visible
- `title` - string property, the text on the component

#### Output:
- `backButtonClicked` - click event on the component

---
_Source: https://npm.io/package/ngx-navigate-back-button · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
