ps-toolkit-ui 1.18.73 → 1.18.76

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.
@@ -5929,9 +5929,10 @@
5929
5929
  }
5930
5930
  };
5931
5931
  FormPlaqueComponent.prototype.getValue = function () {
5932
- return (this.inp.type === exports.InputType.Plaque ?
5933
- (this.part1.value ? this.part1.value : '') + "_" + (this.part2.value ? this.part2.value : '') + "_" + (this.part3.value ? this.part3.value : '') + "_" + (this.part4.value ? this.part4.value : '') :
5934
- (this.inp.type === exports.InputType.PlaqueM || this.inp.type === exports.InputType.PlaqueF ? (this.part1.value ? this.part1.value : '') + "_" + (this.part3.value ? this.part3.value : '') : "" + (this.part1.value ? this.part1.value : ''))).toUpperCase();
5932
+ var p = (this.inp.type === exports.InputType.Plaque ?
5933
+ (this.part1.value && this.part2.value && this.part3.value && this.part4.value ? (this.part1.value ? this.part1.value : '') + "_" + (this.part2.value ? this.part2.value : '') + "_" + (this.part3.value ? this.part3.value : '') + "_" + (this.part4.value ? this.part4.value : '') : null) :
5934
+ (this.part1.value && this.part3.value ? (this.inp.type === exports.InputType.PlaqueM || this.inp.type === exports.InputType.PlaqueF ? (this.part1.value ? this.part1.value : '') + "_" + (this.part3.value ? this.part3.value : '') : null) : (this.part1.value ? "" + (this.part1.value ? this.part1.value : '') : null)));
5935
+ return p === null || p === void 0 ? void 0 : p.toUpperCase();
5935
5936
  };
5936
5937
  return FormPlaqueComponent;
5937
5938
  }());