frappe-ui 0.0.106 → 0.0.108

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "frappe-ui",
3
- "version": "0.0.106",
3
+ "version": "0.0.108",
4
4
  "description": "A set of components and utilities for rapid UI development",
5
5
  "main": "./src/index.js",
6
6
  "scripts": {
@@ -176,6 +176,7 @@ export function createListResource(options, vm) {
176
176
  vm
177
177
  ),
178
178
  update,
179
+ fetch,
179
180
  reload,
180
181
  setData,
181
182
  transform,
@@ -216,6 +217,10 @@ export function createListResource(options, vm) {
216
217
  })
217
218
  }
218
219
 
220
+ function fetch() {
221
+ reload()
222
+ }
223
+
219
224
  function setData(data) {
220
225
  out.originalData = data
221
226
  if (typeof data === 'function') {