ps-toolkit-ui 1.20.38 → 1.20.40
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 +10 -9
- 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/esm2015/lib/components/table/table.component.js +9 -8
- package/fesm2015/ps-toolkit-ui.js +10 -8
- 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,11 @@
|
|
|
2637
2637
|
}
|
|
2638
2638
|
};
|
|
2639
2639
|
InputClass.prototype.setOptions = function (r) {
|
|
2640
|
-
var _this = this;
|
|
2641
2640
|
this.options = r;
|
|
2642
2641
|
if (this.value != null) {
|
|
2643
2642
|
setTimeout(function () {
|
|
2644
|
-
|
|
2643
|
+
console.log('this.setValue(this.value, true)');
|
|
2644
|
+
// this.setValue(this.value, true);
|
|
2645
2645
|
}, 500);
|
|
2646
2646
|
}
|
|
2647
2647
|
};
|
|
@@ -3961,13 +3961,14 @@
|
|
|
3961
3961
|
window.open(_this.table.environment.url + '/report' + url + '?reportId=' + result, '_blank');
|
|
3962
3962
|
}, function () { });
|
|
3963
3963
|
};
|
|
3964
|
-
$
|
|
3965
|
-
|
|
3966
|
-
|
|
3967
|
-
|
|
3968
|
-
|
|
3969
|
-
|
|
3970
|
-
}
|
|
3964
|
+
// $(document).mouseup((e) => {
|
|
3965
|
+
// const container = $(this.exportDropDown.nativeElement);
|
|
3966
|
+
// // @ts-ignore
|
|
3967
|
+
// if (!container.is(e.target) && container.has(e.target).length === 0)
|
|
3968
|
+
// {
|
|
3969
|
+
// container.slideUp(100);
|
|
3970
|
+
// }
|
|
3971
|
+
// });
|
|
3971
3972
|
this.maximum.onClick = function () {
|
|
3972
3973
|
$__namespace(_this.tableDiv.nativeElement).toggleClass('maximum');
|
|
3973
3974
|
_this.maximum.icon = _this.maximum.name === 'Minimum' ? 'fad fa-arrows-maximize' : 'fad fa-arrows-minimize';
|