tecnualng 21.1.4 → 21.1.5

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.5",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.0.0",
6
6
  "@angular/core": "^21.0.0"
@@ -166,13 +166,15 @@ declare class TecnualDatepickerComponent implements ControlValueAccessor {
166
166
  yearsList: _angular_core.Signal<number[]>;
167
167
  get formattedValue(): string;
168
168
  get headerLabel(): string;
169
- toggleCalendar(): void;
169
+ toggleCalendar(event?: Event): void;
170
170
  onHeaderClick(): void;
171
171
  prev(e: Event): void;
172
172
  next(e: Event): void;
173
173
  selectMonth(monthIndex: number): void;
174
174
  selectYear(year: number): void;
175
- selectDate(date: Date): void;
175
+ selectDate(date: Date, closeCalendar?: boolean): void;
176
+ private parseDate;
177
+ onManualInput(event: Event): void;
176
178
  isSelected(date: Date): boolean;
177
179
  isInRange(date: Date): boolean;
178
180
  isSameDay(d1: Date | null, d2: Date | null): boolean;