@live-change/vue3-components 0.2.23 → 0.2.25

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.
@@ -287,6 +287,7 @@
287
287
  } else if(this.ignoreError) {
288
288
  if((typeof this.ignoreError) == 'function') {
289
289
  if(this.ignoreError(error)) {
290
+ this.state = 'ready'
290
291
  this.workingZone.finished(this.workingTask)
291
292
  } else {
292
293
  this.state = 'error'
@@ -295,6 +296,7 @@
295
296
  }
296
297
  } else if(Array.isArray(this.ignoreError)) {
297
298
  if(this.ignoreError.indexOf(error) != -1) {
299
+ this.state = 'ready'
298
300
  this.workingZone.finished(this.workingTask)
299
301
  } else {
300
302
  this.state = 'error'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/vue3-components",
3
- "version": "0.2.23",
3
+ "version": "0.2.25",
4
4
  "description": "Live Change Framework - vue components",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -21,10 +21,10 @@
21
21
  },
22
22
  "homepage": "https://github.com/live-change/live-change-framework-vue3",
23
23
  "dependencies": {
24
- "@live-change/vue3-ssr": "^0.2.23",
24
+ "@live-change/vue3-ssr": "^0.2.25",
25
25
  "debug": "^4.3.4",
26
26
  "mitt": "3.0.0",
27
27
  "vue": "^3.2.47"
28
28
  },
29
- "gitHead": "c002858d831272da05315d3d1ec94d6ade7271d7"
29
+ "gitHead": "78f33443348a3a1136e415226f130ce43277151d"
30
30
  }