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.
@@ -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
- var _this = this;
4028
- this.inp.setValue = function (v) {
4029
- _this.inp.value = v;
4030
- };
4031
- this.inp.isValid = function () {
4032
- return true;
4033
- };
4034
- this.inp.clear = function () {
4035
- };
4036
- };
4037
- FormLabelComponent.prototype.onClick = function () {
4038
- if (this.inp.onClick) {
4039
- this.inp.onClick(this.inp);
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
  }());