@mozaic-ds/vue 0.16.1-beta.0 → 0.16.1

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.16.1-beta.0",
3
+ "version": "0.16.1",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build ./src/index.js",
@@ -26,6 +26,8 @@ export default {
26
26
  </script>
27
27
 
28
28
  <style lang="scss">
29
- @import 'settings-tools/_all-settings';
30
- @import 'layouts/_l.container';
29
+ @import 'settings-tools/all-settings';
30
+ @import 'layouts/l.container';
31
+ @import 'utilities/u.margin';
32
+ @import 'utilities/u.padding';
31
33
  </style>
@@ -378,7 +378,7 @@ export default {
378
378
  source: {
379
379
  immediate: true,
380
380
  async handler(newValue, oldValue) {
381
- if (deepEqual(newValue, oldValue) && !(newValue instanceof Function)) {
381
+ if (deepEqual(newValue, oldValue)) {
382
382
  return;
383
383
  }
384
384