isobit-ui 0.1.79 → 0.1.80
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 -2
- 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.80
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -3150,6 +3150,7 @@ 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
|
+
if (v != null && v.target) v = v.value;
|
|
3153
3154
|
var select = me.$el.childNodes[0];
|
|
3154
3155
|
|
|
3155
3156
|
if (!v || v === '') {
|
|
@@ -3245,7 +3246,8 @@ var script$a = {
|
|
|
3245
3246
|
select.selectedIndex = 0;
|
|
3246
3247
|
}
|
|
3247
3248
|
|
|
3248
|
-
me.$emit('input',
|
|
3249
|
+
me.$emit('input', {
|
|
3250
|
+
value: value,
|
|
3249
3251
|
select: select,
|
|
3250
3252
|
option: select[select.selectedIndex],
|
|
3251
3253
|
target: me,
|