isobit-ui 0.2.41 → 0.2.43
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 +7 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* isobit-ui v0.2.
|
|
2
|
+
* isobit-ui v0.2.42
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -3165,6 +3165,7 @@ var script$a = {
|
|
|
3165
3165
|
me.$children[j].getIndexByValue(v, function (ii, found) {
|
|
3166
3166
|
if (ii > -1) {
|
|
3167
3167
|
select.selectedIndex = ii + 1;
|
|
3168
|
+
var ffound = me.$children[j].getValueByIndex(select.selectedIndex - 1);
|
|
3168
3169
|
/*if(me.$el.id){
|
|
3169
3170
|
for(k=0;k<select.length;k++){
|
|
3170
3171
|
console.log(k+'--'+select[k].value);
|
|
@@ -3188,7 +3189,11 @@ var script$a = {
|
|
|
3188
3189
|
}
|
|
3189
3190
|
|
|
3190
3191
|
if (!a) {
|
|
3191
|
-
if (me.$el.id)
|
|
3192
|
+
if (me.$el.id) {
|
|
3193
|
+
console.log('emit input .' + me.$el.id + '=' + JSON.stringify(v));
|
|
3194
|
+
console.log('ffound=', ffound);
|
|
3195
|
+
}
|
|
3196
|
+
|
|
3192
3197
|
me.$emit('input', v, found);
|
|
3193
3198
|
}
|
|
3194
3199
|
}
|