# pureprime

> PurePrime é um Template baseado no PrimeNG.

Latest version **0.0.94** (published 2019-12-11) · 0 weekly downloads

## Install

```sh
npm install pureprime
pnpm add pureprime
yarn add pureprime
bun add pureprime
```

## 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.94 |
| Published | 2019-12-11 |
| First published | 2019-07-17 |
| Weekly downloads | 0 |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 1 |
| Unpacked size | 1.4 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | mre-solucoes |

## Links

- npm: https://www.npmjs.com/package/pureprime
- npm.io page: https://npm.io/package/pureprime

## Dependencies (1)

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

## Recent versions

- 0.0.94 (latest) — 2019-12-11
- 0.0.93 — 2019-10-03
- 0.0.92 — 2019-10-02
- 0.0.91 — 2019-10-02
- 0.0.908 — 2019-10-01
- 0.0.907 — 2019-10-01
- 0.0.906 — 2019-10-01
- 0.0.905 — 2019-10-01
- 0.0.904 — 2019-10-01
- 0.0.902 — 2019-10-01
- 0.0.901 — 2019-10-01
- 0.0.9 — 2019-10-01
- 0.0.8 — 2019-09-30
- 0.0.7 — 2019-09-30
- 0.0.6 — 2019-09-26
- … 5 more at https://npm.io/package/pureprime/versions

## README

# Pureprime

PurePrime é um Template baseado no PrimeNG.

## Instalação

 `npm i pureprime` 

## Importação

Os Módulos de componentes do PurePrime precisarão ser importados no arquivo de módulo do Angular, como no exemplo 

```
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { PureprimeModule } from 'pureprime';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    AppRoutingModule,
    PureprimeModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }
```


## Dependências
Como o PurePrime utiliza o PrimeNG é necessário instalar o mesmo com os comandos abaixo
```
npm install primeng --save
npm install primeicons --save
```

Também será necessário adicionar as chamadas de CSS do PrimeNG no arquivo angular.json nas chamadas de estilo. Há mais de uma no arquivo.

```
"styles": [
  "node_modules/primeicons/primeicons.css",
  "node_modules/primeng/resources/themes/nova-light/theme.css",
  "node_modules/primeng/resources/primeng.min.css",
  //...
],
```

Alguns componentes do PrimeNG podem se utilizar de Animations, para tanto será necessário instalar o modulo de animation do Angular através do comando
```
npm install @angular/animations --save
```

a chamada do mesmo é feita com a importação do BrowserAnimationsModule
```
import {BrowserModule} from '@angular/platform-browser';
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';

@NgModule({
    imports: [
        BrowserModule,
        BrowserAnimationsModule,
        //...
    ],
    //...
})
export class YourAppModule { }
```
para dúvidas envie e-mail para reginaldo@mresolucoes.com.br

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