wave-ui 2.40.1 → 2.40.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": "wave-ui",
3
- "version": "2.40.1",
3
+ "version": "2.40.2",
4
4
  "description": "An emerging UI framework for Vue.js (2 & 3) with only the bright side. :sunny:",
5
5
  "author": "Antoni Andre <antoniandre.web@gmail.com>",
6
6
  "main": "./dist/wave-ui.umd.js",
@@ -10,8 +10,6 @@ component.w-icon(
10
10
  </template>
11
11
 
12
12
  <script>
13
- import config from '../utils/config'
14
-
15
13
  export default {
16
14
  name: 'w-icon',
17
15
 
@@ -47,7 +45,7 @@ export default {
47
45
 
48
46
  computed: {
49
47
  hasLigature () {
50
- return config.iconsLigature === this.fontName
48
+ return this.$waveui.config.iconsLigature === this.fontName
51
49
  },
52
50
  forcedSize () {
53
51
  return this.size && (!isNaN(this.size) ? `${this.size}px` : this.size)
@@ -16,7 +16,6 @@ transition-group(
16
16
  </template>
17
17
 
18
18
  <script>
19
- import config from '../utils/config'
20
19
  import NotificationManager from '../utils/notification-manager'
21
20
 
22
21
  export default {
@@ -28,7 +27,7 @@ export default {
28
27
 
29
28
  computed: {
30
29
  conf () {
31
- return config.notificationManager
30
+ return this.$waveui.config.notificationManager
32
31
  },
33
32
  notifications () {
34
33
  return this.notifManager?.notifications || []