@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/dist/front-mfe-components.common.js +58 -56
- package/dist/front-mfe-components.common.js.map +1 -1
- package/dist/front-mfe-components.css +1 -1
- package/dist/front-mfe-components.umd.js +58 -56
- package/dist/front-mfe-components.umd.js.map +1 -1
- package/dist/front-mfe-components.umd.min.js +1 -1
- package/dist/front-mfe-components.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/DataTableHeader/DataTableHeader.vue +4 -2
package/package.json
CHANGED
|
@@ -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
|
|
103
|
+
return this.value;
|
|
102
104
|
},
|
|
103
105
|
set(val) {
|
|
104
106
|
this.$emit('input', val);
|