ps-toolkit-ui 1.4.83 → 1.4.84
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
|
@@ -4717,6 +4717,7 @@
|
|
|
4717
4717
|
this.part2.options = this.alphas.map(function (x) { return new OptionClass(x, x); });
|
|
4718
4718
|
this.part1.displayLabel = this.part2.displayLabel = this.part3.displayLabel = this.part4.displayLabel = false;
|
|
4719
4719
|
this.part1.placeholder = this.part2.placeholder = this.part3.placeholder = this.part4.placeholder = null;
|
|
4720
|
+
this.part1.disabled = this.part2.disabled = this.part3.disabled = this.part4.disabled = this.inp.disabled;
|
|
4720
4721
|
if (this.inp.type === exports.InputType.PlaqueM) {
|
|
4721
4722
|
this.part1.minLength = 100;
|
|
4722
4723
|
this.part1.maxLength = 999;
|
|
@@ -6726,6 +6727,7 @@
|
|
|
6726
6727
|
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);
|
|
6727
6728
|
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);
|
|
6728
6729
|
this.car.displayLabel = this.carF.displayLabel = this.motor.displayLabel = false;
|
|
6730
|
+
this.car.disabled = this.carF.disabled = this.motor.disabled = this.inp.disabled;
|
|
6729
6731
|
this.inp.setValue = function (v) {
|
|
6730
6732
|
if (v != null) {
|
|
6731
6733
|
if (v.split('_').length === 2 && v.split('_').every(function (x) { return /^[0-9]+$/.test(x); })) {
|