tickera-angular-components 0.0.1-dev.152 → 0.0.1-dev.153
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/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InjectionToken, EnvironmentProviders, WritableSignal, Signal, EventEmitter, OnChanges, OnDestroy, SimpleChanges, Injector, Type,
|
|
2
|
+
import { InjectionToken, EnvironmentProviders, WritableSignal, Signal, EventEmitter, OnChanges, OnDestroy, SimpleChanges, Injector, Type, ElementRef, OnInit, AfterViewInit } from '@angular/core';
|
|
3
3
|
export { TippyDirective } from '@ngneat/helipopper';
|
|
4
4
|
export * from '@ngneat/helipopper/config';
|
|
5
5
|
import { TranslocoLoader, TranslocoService } from '@jsverse/transloco';
|
|
@@ -2800,6 +2800,7 @@ declare class FormTextareaComponent implements ControlValueAccessor {
|
|
|
2800
2800
|
declare class NumberInputComponent implements ControlValueAccessor, Validator, OnChanges {
|
|
2801
2801
|
transloco: TranslocoService;
|
|
2802
2802
|
private injector;
|
|
2803
|
+
private elementRef;
|
|
2803
2804
|
label: string;
|
|
2804
2805
|
name: string;
|
|
2805
2806
|
id: string;
|
|
@@ -2815,7 +2816,7 @@ declare class NumberInputComponent implements ControlValueAccessor, Validator, O
|
|
|
2815
2816
|
onChange: any;
|
|
2816
2817
|
onTouched: any;
|
|
2817
2818
|
private _ngControl;
|
|
2818
|
-
constructor(transloco: TranslocoService, injector: Injector);
|
|
2819
|
+
constructor(transloco: TranslocoService, injector: Injector, elementRef: ElementRef);
|
|
2819
2820
|
get ngControl(): NgControl | null;
|
|
2820
2821
|
ngOnChanges(changes: SimpleChanges): void;
|
|
2821
2822
|
validate(control: AbstractControl): ValidationErrors | null;
|
|
@@ -2834,6 +2835,7 @@ declare class NumberInputComponent implements ControlValueAccessor, Validator, O
|
|
|
2834
2835
|
get fieldGroupClasses(): string;
|
|
2835
2836
|
private clamp;
|
|
2836
2837
|
private round;
|
|
2838
|
+
private emitNativeChange;
|
|
2837
2839
|
private minValidator;
|
|
2838
2840
|
private maxValidator;
|
|
2839
2841
|
static ɵfac: i0.ɵɵFactoryDeclaration<NumberInputComponent, never>;
|