apical-store
Advanced tools
Comparing version 0.0.74 to 0.0.75
@@ -816,2 +816,5 @@ (function (global, factory) { | ||
this.$$decode = (x) => x; | ||
/** | ||
* List of all items in the store (including deleted items) However, the list is not observable | ||
*/ | ||
this.copy = this.$$observableObject.copy; | ||
@@ -1114,8 +1117,2 @@ this.new = this.$$model.new; | ||
} | ||
/** | ||
* List of all items in the store (including deleted items) | ||
*/ | ||
get all() { | ||
return this.$$observableObject.target; | ||
} | ||
getByID(id) { | ||
@@ -1122,0 +1119,0 @@ return this.$$observableObject.target.find((x) => x.id === id); |
@@ -90,5 +90,4 @@ import { LocalPersistence } from "./persistence/local"; | ||
/** | ||
* List of all items in the store (including deleted items) | ||
* List of all items in the store (including deleted items) However, the list is not observable | ||
*/ | ||
get all(): import("./observable").observed<T[]>; | ||
copy: T[]; | ||
@@ -95,0 +94,0 @@ getByID(id: string): T | undefined; |
@@ -27,2 +27,5 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
this.$$decode = (x) => x; | ||
/** | ||
* List of all items in the store (including deleted items) However, the list is not observable | ||
*/ | ||
this.copy = this.$$observableObject.copy; | ||
@@ -325,8 +328,2 @@ this.new = this.$$model.new; | ||
} | ||
/** | ||
* List of all items in the store (including deleted items) | ||
*/ | ||
get all() { | ||
return this.$$observableObject.target; | ||
} | ||
getByID(id) { | ||
@@ -333,0 +330,0 @@ return this.$$observableObject.target.find((x) => x.id === id); |
{ | ||
"name": "apical-store", | ||
"version": "0.0.74", | ||
"version": "0.0.75", | ||
"description": "Mobx-Syncable-IndexedDB", | ||
@@ -13,3 +13,3 @@ "main": "dist/bundle.js", | ||
}, | ||
"author": "elselawi", | ||
"author": "alselawi", | ||
"license": "MIT", | ||
@@ -16,0 +16,0 @@ "devDependencies": { |
@@ -372,8 +372,4 @@ import { Change, Observable } from "./observable"; | ||
/** | ||
* List of all items in the store (including deleted items) | ||
* List of all items in the store (including deleted items) However, the list is not observable | ||
*/ | ||
get all() { | ||
return this.$$observableObject.target; | ||
} | ||
copy = this.$$observableObject.copy; | ||
@@ -380,0 +376,0 @@ |
247674
6715