mapa-library-ui 2.0.4 → 2.0.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/index.d.ts CHANGED
@@ -1483,6 +1483,8 @@ declare class MapaDatepicker implements OnInit {
1483
1483
  private localeState;
1484
1484
  private syncing;
1485
1485
  private presetsCache?;
1486
+ private readonly minDateCache;
1487
+ private readonly maxDateCache;
1486
1488
  readonly overlayPositions: ConnectedPosition[];
1487
1489
  /**
1488
1490
  * Referências estáveis: com OnPush, devolver um literal novo a cada ciclo
@@ -1514,6 +1516,7 @@ declare class MapaDatepicker implements OnInit {
1514
1516
  maxDate(): Date | null;
1515
1517
  disabledDates(): (string | Date)[];
1516
1518
  isInvalidDate(): (date: Date) => boolean;
1519
+ private resolveDateBoundary;
1517
1520
  /**
1518
1521
  * Um mês por padrão em todos os modos, para o painel ficar na largura do
1519
1522
  * campo. Dois meses são opt-in via `element.calendars`.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mapa-library-ui",
3
- "version": "2.0.4",
3
+ "version": "2.0.5",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "^20.3.0",
6
6
  "@angular/cdk": "^20.2.0",
@@ -206,6 +206,8 @@ declare class MapaDatepicker implements OnInit {
206
206
  private localeState;
207
207
  private syncing;
208
208
  private presetsCache?;
209
+ private readonly minDateCache;
210
+ private readonly maxDateCache;
209
211
  readonly overlayPositions: ConnectedPosition[];
210
212
  /**
211
213
  * Referências estáveis: com OnPush, devolver um literal novo a cada ciclo
@@ -237,6 +239,7 @@ declare class MapaDatepicker implements OnInit {
237
239
  maxDate(): Date | null;
238
240
  disabledDates(): (string | Date)[];
239
241
  isInvalidDate(): (date: Date) => boolean;
242
+ private resolveDateBoundary;
240
243
  /**
241
244
  * Um mês por padrão em todos os modos, para o painel ficar na largura do
242
245
  * campo. Dois meses são opt-in via `element.calendars`.
Binary file