nexheal-lib 0.0.37 → 0.0.39
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/fesm2022/nexheal-lib.mjs +4 -2
- package/fesm2022/nexheal-lib.mjs.map +1 -1
- package/index.d.ts +2 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -174,6 +174,8 @@ declare class CalendarControl implements ControlValueAccessor, OnInit, OnDestroy
|
|
|
174
174
|
isInHoverWeek(date: Date): boolean;
|
|
175
175
|
onDayHover(cell: CalendarCell): void;
|
|
176
176
|
onDayLeave(): void;
|
|
177
|
+
/** Stable identity for day cells so they aren't re-created every change-detection. */
|
|
178
|
+
trackByDate: (_: number, cell: CalendarCell) => number;
|
|
177
179
|
goToMonthView(): void;
|
|
178
180
|
months: string[];
|
|
179
181
|
selectMonth(index: number): void;
|