isobit-ui 0.2.43 → 0.2.44
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 +8 -1
- 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.43
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -3166,6 +3166,12 @@ var script$a = {
|
|
|
3166
3166
|
if (ii > -1) {
|
|
3167
3167
|
select.selectedIndex = ii + 1;
|
|
3168
3168
|
var ffound = me.$children[j].getValueByIndex(select.selectedIndex - 1);
|
|
3169
|
+
|
|
3170
|
+
if (ffound == -1) {
|
|
3171
|
+
ffound = null;
|
|
3172
|
+
} else {
|
|
3173
|
+
ffound = me.$children[j].filterList[select.selectedIndex - 1];
|
|
3174
|
+
}
|
|
3169
3175
|
/*if(me.$el.id){
|
|
3170
3176
|
for(k=0;k<select.length;k++){
|
|
3171
3177
|
console.log(k+'--'+select[k].value);
|
|
@@ -3174,6 +3180,7 @@ var script$a = {
|
|
|
3174
3180
|
console.log('select.selectedIndex .'+me.$el.id+'='+select.selectedIndex);
|
|
3175
3181
|
}*/
|
|
3176
3182
|
|
|
3183
|
+
|
|
3177
3184
|
var a = Number(oldv);
|
|
3178
3185
|
|
|
3179
3186
|
if (!isNaN(a)) {
|