# meepo-swipe

> swipe for angular

Latest version **1.0.3** (published 2017-12-25) · MIT license · 0 weekly downloads

## Install

```sh
npm install meepo-swipe
pnpm add meepo-swipe
yarn add meepo-swipe
bun add meepo-swipe
```

## Health

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

Positive: has types; esm support; no vulnerabilities; high quality score.

Warnings: low downloads.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.3 |
| Published | 2017-12-25 |
| First published | 2017-12-22 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 6 |
| Known vulnerabilities | 0 (+13 in 2 direct dependencies) |
| Install scripts | no |
| GitHub stars | 0 |
| Author | imeepos |
| Maintainers | imeepos2 |

## Links

- npm: https://www.npmjs.com/package/meepo-swipe
- Repository: https://github.com/meepobrother/meepo-swipe
- Homepage: https://github.com/meepobrother/meepo-swipe/README.md
- Issues: https://github.com/meepobrother/meepo-swipe/issues
- npm.io page: https://npm.io/package/meepo-swipe

## Dependencies (6)

- [rxjs](https://npm.io/package/rxjs.md) ^5.5.5
- [zone.js](https://npm.io/package/zone.js.md) 0.8.4
- [@angular/core](https://npm.io/package/@angular/core.md) 5.2.0-beta.1
- [@angular/common](https://npm.io/package/@angular/common.md) 5.2.0-beta.1
- [reflect-metadata](https://npm.io/package/reflect-metadata.md) ^0.1.10
- [@angular/platform-browser](https://npm.io/package/@angular/platform-browser.md) 5.2.0-beta.1

## Recent versions

- 1.0.3 (latest) — 2017-12-25
- 1.0.2 — 2017-12-24
- 1.0.1 — 2017-12-22

## README

# swipe for angular

- [swipe 5kb for mini](https://github.com/thebird/Swipe/blob/master/swipe.js)

```ts
import { SwipeModule } from 'meepo-swipe';
@NgModule({
  imports: [
    SwipeModule.forRoot()
  ]
})
export class AppModule { }
```

```html
<swipe [items]="items">
    <ng-template swipeItem let-item>
        <div class="swipe-item">{{item.title}}</div>
    </ng-template>
</swipe>
```

```ts
export class AppComponent implements OnInit {
  items: any[] = [];
  constructor(
    public cd: ChangeDetectorRef
  ) { }
  ngOnInit() {
    this.items = [{ title: '1' }, { title: '2' }, { title: '3' }];
    setTimeout(() => {
      this.items.push({ title: '4' });
      this.cd.markForCheck();
    }, 1000);
  }
}
```

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