@monoui/vuejs 1.1.36 → 1.1.38

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": "@monoui/vuejs",
3
- "version": "1.1.36",
3
+ "version": "1.1.38",
4
4
  "description": "This project will contain MonoFor UI Framework",
5
5
  "main": "./dist/main.js",
6
6
  "repository": "git@gitlab.com:monoui/vuejs.git",
@@ -1,5 +1,9 @@
1
1
  <template>
2
- <font-awesome-icon fw :icon="iconList" :class="iconClass" />
2
+ <font-awesome-icon
3
+ :fixed-width="fixedWidth"
4
+ :icon="iconList"
5
+ :class="iconClass"
6
+ />
3
7
  </template>
4
8
 
5
9
  <script>
@@ -30,6 +34,10 @@ export default {
30
34
  iconClass: {
31
35
  type: String,
32
36
  default: ""
37
+ },
38
+ fixedWidth: {
39
+ type: Boolean,
40
+ default: false
33
41
  }
34
42
  },
35
43
  computed: {
@@ -1,3 +1,6 @@
1
+ <template>
2
+ <div></div>
3
+ </template>
1
4
  <script>
2
5
  /**
3
6
  * Integration Alert Modal Component
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <b-tabs v-on="$listeners" v-bind="$props" v-model="tabIndex">
2
+ <b-tabs v-on="$listeners" v-bind="$props">
3
3
  <slot></slot>
4
4
  </b-tabs>
5
5
  </template>
@@ -10,11 +10,6 @@
10
10
  */
11
11
  export default {
12
12
  name: "mui-tabs",
13
- watch: {
14
- tabIndex(val) {
15
- this.$emit("input", val);
16
- }
17
- },
18
13
  props: {
19
14
  /**
20
15
  * Tabs change state value.
@@ -31,14 +26,6 @@ export default {
31
26
  "active-nav-item-class": {},
32
27
  "active-tab-class": {},
33
28
  "no-fade": {}
34
- },
35
- data() {
36
- return {
37
- tabIndex: 0
38
- };
39
- },
40
- mounted() {
41
- this.tabIndex = this.value;
42
29
  }
43
30
  };
44
31
  </script>