@farm-investimentos/front-mfe-components 2.4.6 → 2.4.7

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": "@farm-investimentos/front-mfe-components",
3
- "version": "2.4.6",
3
+ "version": "2.4.7",
4
4
  "author": "farm investimentos",
5
5
  "private": false,
6
6
  "main": "./dist/front-mfe-components.common.js",
@@ -87,7 +87,9 @@ export default Vue.extend({
87
87
  /**
88
88
  * v-model for data-table-select
89
89
  */
90
- value: {},
90
+ value: {
91
+ default: false,
92
+ },
91
93
  /**
92
94
  * Original header props
93
95
  */
@@ -98,7 +100,7 @@ export default Vue.extend({
98
100
  computed: {
99
101
  inputVal: {
100
102
  get() {
101
- return this.value ? this.value : '';
103
+ return this.value;
102
104
  },
103
105
  set(val) {
104
106
  this.$emit('input', val);