isobit-ui 0.1.91 → 0.1.94
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 +6 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* isobit-ui v0.1.
|
|
2
|
+
* isobit-ui v0.1.94
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -3092,8 +3092,8 @@ var script$a = {
|
|
|
3092
3092
|
var me = this;
|
|
3093
3093
|
var v = me.$attrs.value; //console.log(typeof v);
|
|
3094
3094
|
|
|
3095
|
-
if (v != null && v.target) v = v.value;
|
|
3096
|
-
|
|
3095
|
+
if (v != null && v.target) v = v.value; //console.log(v);
|
|
3096
|
+
//console.log('updated.'+me.$el.id+'='+JSON.stringify(v));
|
|
3097
3097
|
|
|
3098
3098
|
var select = me.$el.childNodes[0];
|
|
3099
3099
|
var old = select.selectedIndex; //Si el valor es vacio se debe escoger 0
|
|
@@ -3150,8 +3150,8 @@ var script$a = {
|
|
|
3150
3150
|
var me = this;
|
|
3151
3151
|
me.autoload_ = !(me.autoload + '' == 'false' || me.autoload * 1 == 0);
|
|
3152
3152
|
var v = me.$attrs.value;
|
|
3153
|
-
console.log(v
|
|
3154
|
-
|
|
3153
|
+
if (v != null && v.target) v = v.value; //console.log(v);
|
|
3154
|
+
|
|
3155
3155
|
var select = me.$el.childNodes[0];
|
|
3156
3156
|
|
|
3157
3157
|
if (!v || v === '') {
|
|
@@ -3247,7 +3247,7 @@ var script$a = {
|
|
|
3247
3247
|
select.selectedIndex = 0;
|
|
3248
3248
|
}
|
|
3249
3249
|
|
|
3250
|
-
me.$emit('input', {
|
|
3250
|
+
me.$emit('input', value, {
|
|
3251
3251
|
value: value,
|
|
3252
3252
|
select: select,
|
|
3253
3253
|
option: select[select.selectedIndex],
|