iptdevs-design-system 3.1.356 → 3.1.357
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/esm2020/lib/components/atoms/input/input.component.mjs +5 -5
- package/fesm2015/iptdevs-design-system.mjs +4 -4
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +4 -4
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/components/atoms/input/input.component.d.ts +3 -3
- package/package.json +1 -1
|
@@ -286,9 +286,9 @@ class InputComponent {
|
|
|
286
286
|
this.thousands = '.';
|
|
287
287
|
this.decimal = ',';
|
|
288
288
|
this.dateSelected = new EventEmitter();
|
|
289
|
+
this.typingStopped = new EventEmitter();
|
|
289
290
|
this.disabledSel = false;
|
|
290
291
|
this.doneTypingInterval = 500; // Milisegundos
|
|
291
|
-
this.typingStopped = new EventEmitter();
|
|
292
292
|
}
|
|
293
293
|
set control(value) {
|
|
294
294
|
if (this.formControl !== value) {
|
|
@@ -313,7 +313,7 @@ class InputComponent {
|
|
|
313
313
|
}
|
|
314
314
|
onBlur() {
|
|
315
315
|
clearTimeout(this.typingTimer);
|
|
316
|
-
this.typingStopped.emit();
|
|
316
|
+
this.typingStopped.emit();
|
|
317
317
|
}
|
|
318
318
|
}
|
|
319
319
|
InputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: InputComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -437,10 +437,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImpor
|
|
|
437
437
|
type: Input
|
|
438
438
|
}], dateSelected: [{
|
|
439
439
|
type: Output
|
|
440
|
-
}], disabledSel: [{
|
|
441
|
-
type: Input
|
|
442
440
|
}], typingStopped: [{
|
|
443
441
|
type: Output
|
|
442
|
+
}], disabledSel: [{
|
|
443
|
+
type: Input
|
|
444
444
|
}] } });
|
|
445
445
|
|
|
446
446
|
class LevelButtonComponent {
|