@po-ui/ng-storage 5.22.2 → 5.22.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -16
- package/bundles/po-ui-ng-storage.umd.js +1228 -1228
- package/bundles/po-ui-ng-storage.umd.js.map +1 -1
- package/esm2015/lib/drivers/lokijs/po-loki-driver.js +209 -209
- package/esm2015/lib/index.js +3 -3
- package/esm2015/lib/po-storage.module.js +29 -29
- package/esm2015/lib/services/po-storage-config.interface.js +11 -11
- package/esm2015/lib/services/po-storage.service.js +546 -546
- package/esm2015/po-ui-ng-storage.js +5 -5
- package/esm2015/public-api.js +2 -2
- package/fesm2015/po-ui-ng-storage.js +770 -770
- package/fesm2015/po-ui-ng-storage.js.map +1 -1
- package/lib/drivers/lokijs/po-loki-driver.d.ts +30 -30
- package/lib/index.d.ts +3 -3
- package/lib/po-storage.module.d.ts +10 -10
- package/lib/services/po-storage-config.interface.d.ts +27 -27
- package/lib/services/po-storage.service.d.ts +378 -378
- package/package.json +2 -2
- package/po-ui-ng-storage-5.22.3.tgz +0 -0
- package/po-ui-ng-storage.d.ts +5 -5
- package/public-api.d.ts +1 -1
- package/schematics/README.md +91 -91
- package/schematics/collection.json +10 -10
- package/schematics/ng-add/index.d.ts +7 -7
- package/schematics/ng-add/index.js +28 -28
- package/schematics/ng-add/index.spec.d.ts +1 -1
- package/schematics/ng-add/index.spec.js +50 -50
- package/schematics/ng-add/schema.json +6 -6
- package/po-ui-ng-storage-5.22.2.tgz +0 -0
package/README.md
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
# PO Storage
|
|
2
|
-
|
|
3
|
-
O **PO Storage** é uma biblioteca para aplicações Angular que fornece um serviço para armazenamento de dados no dispositivo local, sendo semelhante ao funcionamento do IonicStorage. É possível utilizar os drivers [Websql](https://dev.w3.org/html5/webdatabase/), [Indexeddb](https://www.w3.org/TR/IndexedDB/), [LocalStorage](https://html.spec.whatwg.org/multipage/webstorage.html) e também [LokiJS](https://github.com/techfort/LokiJS/wiki).
|
|
4
|
-
|
|
5
|
-
#### Instalação
|
|
6
|
-
|
|
7
|
-
Instalando com npm:
|
|
8
|
-
```
|
|
9
|
-
npm install @po-ui/ng-storage
|
|
10
|
-
```
|
|
11
|
-
|
|
12
|
-
Caso prefira instalar com o yarn:
|
|
13
|
-
```
|
|
14
|
-
yarn add @po-ui/ng-storage
|
|
15
|
-
```
|
|
16
|
-
|
|
1
|
+
# PO Storage
|
|
2
|
+
|
|
3
|
+
O **PO Storage** é uma biblioteca para aplicações Angular que fornece um serviço para armazenamento de dados no dispositivo local, sendo semelhante ao funcionamento do IonicStorage. É possível utilizar os drivers [Websql](https://dev.w3.org/html5/webdatabase/), [Indexeddb](https://www.w3.org/TR/IndexedDB/), [LocalStorage](https://html.spec.whatwg.org/multipage/webstorage.html) e também [LokiJS](https://github.com/techfort/LokiJS/wiki).
|
|
4
|
+
|
|
5
|
+
#### Instalação
|
|
6
|
+
|
|
7
|
+
Instalando com npm:
|
|
8
|
+
```
|
|
9
|
+
npm install @po-ui/ng-storage
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Caso prefira instalar com o yarn:
|
|
13
|
+
```
|
|
14
|
+
yarn add @po-ui/ng-storage
|
|
15
|
+
```
|
|
16
|
+
|
|
17
17
|
Para informações complementares sobre instalação, acesse **[documentação do PO Storage](https://po-ui.io/documentation/po-storage)**.
|