ps-toolkit-ui 1.20.37 → 1.20.39
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 +14 -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 +2 -2
- package/esm2015/lib/components/form/select/form.select.component.js +6 -2
- package/esm2015/lib/components/table/table.component.js +9 -8
- package/fesm2015/ps-toolkit-ui.js +14 -9
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -2599,7 +2599,7 @@
|
|
|
2599
2599
|
if (s) {
|
|
2600
2600
|
_this.value = s.Id.toString();
|
|
2601
2601
|
}
|
|
2602
|
-
|
|
2602
|
+
// this.setOptions(r);
|
|
2603
2603
|
}
|
|
2604
2604
|
else if (_this.type === exports.InputType.Tree || _this.type === exports.InputType.TreeRadio) {
|
|
2605
2605
|
_this.rows = _this.getRows(result, null);
|
|
@@ -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';
|
|
@@ -6059,6 +6060,7 @@
|
|
|
6059
6060
|
}
|
|
6060
6061
|
else {
|
|
6061
6062
|
if (v != null) {
|
|
6063
|
+
console.log(v.map(String), 'v.map(String)');
|
|
6062
6064
|
_this.setValue(v.map(String));
|
|
6063
6065
|
}
|
|
6064
6066
|
}
|
|
@@ -6293,7 +6295,10 @@
|
|
|
6293
6295
|
if (v !== null) {
|
|
6294
6296
|
this.inp.rel.url = this.inp.relUrl.replace('{}', this.inp.value);
|
|
6295
6297
|
if (this.inp.rel.type !== exports.InputType.SelectAutoComplete) {
|
|
6296
|
-
this.inp.rel.load
|
|
6298
|
+
console.log('this.inp.rel.load');
|
|
6299
|
+
this.inp.rel.load(null, function () {
|
|
6300
|
+
console.log('this.inp.rel.load done');
|
|
6301
|
+
});
|
|
6297
6302
|
}
|
|
6298
6303
|
else {
|
|
6299
6304
|
this.inp.rel.url += '_{}';
|