@mozaic-ds/vue 0.32.0 → 0.32.2-beta.0

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.32.0",
3
+ "version": "0.32.2-beta.0",
4
4
  "description": "Vue.js implementation of Mozaic Design System",
5
5
  "author": "Adeo - Mozaic Design System",
6
6
  "scripts": {
@@ -394,7 +394,7 @@ export default {
394
394
  source: {
395
395
  immediate: true,
396
396
  async handler(newValue, oldValue) {
397
- if (deepEqual(newValue, oldValue)) {
397
+ if (deepEqual(newValue, oldValue) && !(newValue instanceof Function)) {
398
398
  return;
399
399
  }
400
400
 
@@ -100,6 +100,8 @@ export default {
100
100
 
101
101
  <style lang="scss">
102
102
  @import 'settings-tools/all-settings';
103
+ @import 'components/c.checkbox';
104
+ @import 'components/c.radio';
103
105
  @import 'components/c.option-card';
104
106
 
105
107
  /* stylelint-disable */
@@ -107,10 +107,6 @@ export default {
107
107
  });
108
108
  }
109
109
 
110
- if (this.currentPage > this.length) {
111
- this.changePage(this.length);
112
- }
113
-
114
110
  return pageOptions;
115
111
  },
116
112
  },
@@ -136,7 +132,7 @@ export default {
136
132
  },
137
133
  changePage(newPage) {
138
134
  this.$emit('on-update-page', newPage);
139
- this.$emit('update:value',newPage);
135
+ this.$emit('update:value', newPage);
140
136
  },
141
137
  previousPage(newPage) {
142
138
  if (this.hasPreviousPageListener()) {