ps-toolkit-ui 1.20.40 → 1.20.42
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/bundles/ps-toolkit-ui.umd.js +3 -1
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/classes/form.class.js +3 -2
- package/fesm2015/ps-toolkit-ui.js +2 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
- package/ps-toolkit-ui.metadata.json +1 -1
|
@@ -2637,11 +2637,13 @@
|
|
|
2637
2637
|
}
|
|
2638
2638
|
};
|
|
2639
2639
|
InputClass.prototype.setOptions = function (r) {
|
|
2640
|
+
var _this = this;
|
|
2640
2641
|
this.options = r;
|
|
2642
|
+
console.log('this.value', this.value);
|
|
2641
2643
|
if (this.value != null) {
|
|
2642
2644
|
setTimeout(function () {
|
|
2643
2645
|
console.log('this.setValue(this.value, true)');
|
|
2644
|
-
|
|
2646
|
+
_this.setValue(_this.value, true);
|
|
2645
2647
|
}, 500);
|
|
2646
2648
|
}
|
|
2647
2649
|
};
|