ps-toolkit-ui 1.3.68 → 1.3.71
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 +3 -1
- 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/classes/form.class.js +2 -1
- package/esm2015/lib/components/form/car/form.car.component.js +2 -1
- package/esm2015/lib/components/form/plaque/form.plaque.component.js +2 -2
- package/fesm2015/ps-toolkit-ui.js +3 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -1737,6 +1737,7 @@
|
|
|
1737
1737
|
this.url = null;
|
|
1738
1738
|
this.queryParams = null;
|
|
1739
1739
|
this.urlNewTab = false;
|
|
1740
|
+
this.placeholder = null;
|
|
1740
1741
|
this.addNew = false;
|
|
1741
1742
|
this.description = null;
|
|
1742
1743
|
this.disabled = false;
|
|
@@ -4637,7 +4638,7 @@
|
|
|
4637
4638
|
FormPlaqueComponent.prototype.ngOnInit = function () {
|
|
4638
4639
|
var _this = this;
|
|
4639
4640
|
this.part1 = new InputClass(this.inp.environment, this.inp.l, 'Part1', null, exports.InputType.Number, 'plaque-part-1 plaque-part-item', null, true);
|
|
4640
|
-
this.part2 = new InputClass(this.inp.environment, this.inp.l, 'Part2', null, exports.InputType.Select, 'plaque-part-2 plaque-part-item',
|
|
4641
|
+
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);
|
|
4641
4642
|
this.part3 = new InputClass(this.inp.environment, this.inp.l, 'Part3', null, exports.InputType.Number, 'plaque-part-3 plaque-part-item', null, true);
|
|
4642
4643
|
this.part4 = new InputClass(this.inp.environment, this.inp.l, 'Part4', null, exports.InputType.Number, 'plaque-part-4 plaque-part-item', null, true, 10, 99);
|
|
4643
4644
|
this.part2.options = this.alphas.map(function (x) { return new OptionClass(x, x); });
|
|
@@ -6617,6 +6618,7 @@
|
|
|
6617
6618
|
this.carF = new InputClass(this.inp.environment, this.inp.l, this.inp.name + 'Item', 'fa-earth-asia', exports.InputType.PlaqueF, 'plaque-inp', null, this.inp.required);
|
|
6618
6619
|
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);
|
|
6619
6620
|
this.car.displayLabel = this.carF.displayLabel = this.motor.displayLabel = false;
|
|
6621
|
+
this.car.placeholder = this.inp.placeholder;
|
|
6620
6622
|
this.inp.setValue = function (v) {
|
|
6621
6623
|
if (v != null) {
|
|
6622
6624
|
if (v.split('_').length === 2 && v.split('_').some(function (x) { return !isNaN(parseInt(x, 10)); })) {
|