ps-toolkit-ui 0.0.147 → 0.0.152
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 +15 -15
- 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/components/form/label/form.label.component.js +16 -14
- package/esm2015/lib/components/table/row/table.row.component.js +1 -2
- package/fesm2015/ps-toolkit-ui.js +15 -14
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/lib/components/form/label/form.label.component.d.ts +0 -1
- package/package.json +1 -1
- package/ps-toolkit-ui.metadata.json +1 -1
|
@@ -2855,7 +2855,6 @@
|
|
|
2855
2855
|
_this.table.form.inputs.filter(function (x) { return x.inEditDisabled; }).forEach(function (x) { return x.disabled = true; });
|
|
2856
2856
|
_this.table.form.inputs.filter(function (x) { return !x.inEditVisible; }).forEach(function (x) { return x.visible = false; });
|
|
2857
2857
|
if (_this.table.modal) {
|
|
2858
|
-
console.log(_this.table.modal, 'this.table.modal');
|
|
2859
2858
|
_this.table.modal.show();
|
|
2860
2859
|
}
|
|
2861
2860
|
});
|
|
@@ -4024,20 +4023,21 @@
|
|
|
4024
4023
|
function FormLabelComponent() {
|
|
4025
4024
|
}
|
|
4026
4025
|
FormLabelComponent.prototype.ngOnInit = function () {
|
|
4027
|
-
|
|
4028
|
-
this.inp.
|
|
4029
|
-
|
|
4030
|
-
|
|
4031
|
-
|
|
4032
|
-
|
|
4033
|
-
|
|
4034
|
-
|
|
4035
|
-
|
|
4036
|
-
|
|
4037
|
-
|
|
4038
|
-
|
|
4039
|
-
|
|
4040
|
-
|
|
4026
|
+
// console.log(this.inp.value, 'this.inp.value');
|
|
4027
|
+
// console.log(this.inp.l(this.inp.value), 'this.inp.l(this.inp.value)');
|
|
4028
|
+
// this.inp.setValue = (v) => {
|
|
4029
|
+
// this.inp.value = v;
|
|
4030
|
+
// };
|
|
4031
|
+
// this.inp.isValid = () => {
|
|
4032
|
+
// return true;
|
|
4033
|
+
// };
|
|
4034
|
+
// this.inp.clear = () => {
|
|
4035
|
+
// };
|
|
4036
|
+
// }
|
|
4037
|
+
// onClick(): void{
|
|
4038
|
+
// if (this.inp.onClick){
|
|
4039
|
+
// this.inp.onClick(this.inp);
|
|
4040
|
+
// }
|
|
4041
4041
|
};
|
|
4042
4042
|
return FormLabelComponent;
|
|
4043
4043
|
}());
|