isobit-ui 0.0.123 → 0.0.127
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/index.js +4 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* isobit-ui v0.0.
|
|
2
|
+
* isobit-ui v0.0.127
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -2094,8 +2094,9 @@ var script$a = {
|
|
|
2094
2094
|
updated: function updated() {
|
|
2095
2095
|
var me = this;
|
|
2096
2096
|
var v = me.$attrs.value;
|
|
2097
|
+
console.log('updated.' + me.$el.id + '=' + JSON.stringify(v));
|
|
2097
2098
|
var p = me.$el.childNodes[0];
|
|
2098
|
-
var old = p.selectedIndex;
|
|
2099
|
+
var old = p.selectedIndex; //Si el valor es vacio se debe escoger 0
|
|
2099
2100
|
|
|
2100
2101
|
if (!v || v === '') {
|
|
2101
2102
|
p.selectedIndex = 0;
|
|
@@ -2136,7 +2137,6 @@ var script$a = {
|
|
|
2136
2137
|
}
|
|
2137
2138
|
});
|
|
2138
2139
|
}
|
|
2139
|
-
me.lll();
|
|
2140
2140
|
},
|
|
2141
2141
|
methods: {
|
|
2142
2142
|
lll: function lll() {
|
|
@@ -2533,6 +2533,7 @@ var script$8 = {
|
|
|
2533
2533
|
watch: {
|
|
2534
2534
|
data: function data(v, ov) {
|
|
2535
2535
|
console.log('data changed');
|
|
2536
|
+
this.$parent.$forceUpdate();
|
|
2536
2537
|
}
|
|
2537
2538
|
},
|
|
2538
2539
|
data: function data() {
|