tecnualng 21.1.4 → 21.1.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tecnualng",
3
- "version": "21.1.4",
3
+ "version": "21.1.6",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.0.0",
6
6
  "@angular/core": "^21.0.0"
@@ -54,7 +54,6 @@ declare class TecnualInputComponent implements ControlValueAccessor {
54
54
 
55
55
  declare class TngInputDirective {
56
56
  private el;
57
- private renderer;
58
57
  ngControl: NgControl | null;
59
58
  disabled: _angular_core.InputSignal<boolean>;
60
59
  placeholder: _angular_core.InputSignal<string>;
@@ -166,13 +165,15 @@ declare class TecnualDatepickerComponent implements ControlValueAccessor {
166
165
  yearsList: _angular_core.Signal<number[]>;
167
166
  get formattedValue(): string;
168
167
  get headerLabel(): string;
169
- toggleCalendar(): void;
168
+ toggleCalendar(event?: Event): void;
170
169
  onHeaderClick(): void;
171
170
  prev(e: Event): void;
172
171
  next(e: Event): void;
173
172
  selectMonth(monthIndex: number): void;
174
173
  selectYear(year: number): void;
175
- selectDate(date: Date): void;
174
+ selectDate(date: Date, closeCalendar?: boolean): void;
175
+ private parseDate;
176
+ onManualInput(event: Event): void;
176
177
  isSelected(date: Date): boolean;
177
178
  isInRange(date: Date): boolean;
178
179
  isSameDay(d1: Date | null, d2: Date | null): boolean;