@mozaic-ds/vue 0.43.0 → 0.43.2

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": "@mozaic-ds/vue",
3
- "version": "0.43.0",
3
+ "version": "0.43.2",
4
4
  "description": "Vue.js implementation of Mozaic Design System",
5
5
  "author": "Adeo - Mozaic Design System",
6
6
  "scripts": {
@@ -142,6 +142,13 @@ export default {
142
142
  localValue: this.value ?? [],
143
143
  };
144
144
  },
145
+ watch: {
146
+ value: {
147
+ handler(newValue) {
148
+ this.localValue = newValue;
149
+ },
150
+ },
151
+ },
145
152
  methods: {
146
153
  onChange(isChecked, value) {
147
154
  let values = this.localValue;
@@ -539,9 +539,13 @@ export default {
539
539
  },
540
540
  },
541
541
  paging: {
542
+ deep: true,
542
543
  immediate: true,
543
544
  async handler(newValue, oldValue) {
544
- if (deepEqual(newValue, oldValue)) {
545
+ if (
546
+ deepEqual(newValue, oldValue) &&
547
+ !(this.source instanceof Function)
548
+ ) {
545
549
  return;
546
550
  }
547
551