ps-toolkit-ui 1.3.71 → 1.3.72
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 +2 -0
- 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/car/form.car.component.js +2 -1
- package/esm2015/lib/components/form/plaque/form.plaque.component.js +2 -1
- package/fesm2015/ps-toolkit-ui.js +2 -0
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -4637,6 +4637,7 @@
|
|
|
4637
4637
|
});
|
|
4638
4638
|
FormPlaqueComponent.prototype.ngOnInit = function () {
|
|
4639
4639
|
var _this = this;
|
|
4640
|
+
console.log(this.inp.placeholder, 'this.inp.placeholder');
|
|
4640
4641
|
this.part1 = new InputClass(this.inp.environment, this.inp.l, 'Part1', null, exports.InputType.Number, 'plaque-part-1 plaque-part-item', null, true);
|
|
4641
4642
|
this.part2 = new InputClass(this.inp.environment, this.inp.l, 'Part2', null, exports.InputType.Select, 'plaque-part-2 plaque-part-item', this.inp.placeholder, true);
|
|
4642
4643
|
this.part3 = new InputClass(this.inp.environment, this.inp.l, 'Part3', null, exports.InputType.Number, 'plaque-part-3 plaque-part-item', null, true);
|
|
@@ -6619,6 +6620,7 @@
|
|
|
6619
6620
|
this.motor = new InputClass(this.inp.environment, this.inp.l, this.inp.name + 'Item', 'fa-motorcycle', exports.InputType.PlaqueM, 'plaque-inp', null, this.inp.required);
|
|
6620
6621
|
this.car.displayLabel = this.carF.displayLabel = this.motor.displayLabel = false;
|
|
6621
6622
|
this.car.placeholder = this.inp.placeholder;
|
|
6623
|
+
console.log(this.car.placeholder, 'this.car.placeholder');
|
|
6622
6624
|
this.inp.setValue = function (v) {
|
|
6623
6625
|
if (v != null) {
|
|
6624
6626
|
if (v.split('_').length === 2 && v.split('_').some(function (x) { return !isNaN(parseInt(x, 10)); })) {
|