ps-toolkit-ui 1.18.73 → 1.18.75
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 +6 -2
- 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/plaque/form.plaque.component.js +7 -3
- package/fesm2015/ps-toolkit-ui.js +6 -2
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -5929,9 +5929,13 @@
|
|
|
5929
5929
|
}
|
|
5930
5930
|
};
|
|
5931
5931
|
FormPlaqueComponent.prototype.getValue = function () {
|
|
5932
|
+
console.log(this.part1.value, '#' + this.part1.value + '#', 'this.part1.value');
|
|
5933
|
+
console.log(this.part2.value, '#' + this.part2.value + '#', 'this.part2.value');
|
|
5934
|
+
console.log(this.part3.value, '#' + this.part3.value + '#', 'this.part3.value');
|
|
5935
|
+
console.log(this.part4.value, '#' + this.part4.value + '#', 'this.part4.value');
|
|
5932
5936
|
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();
|
|
5937
|
+
(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) :
|
|
5938
|
+
(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))).toUpperCase();
|
|
5935
5939
|
};
|
|
5936
5940
|
return FormPlaqueComponent;
|
|
5937
5941
|
}());
|