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/fesm2022/mapa-library-ui-src-lib-components-datepicker.mjs +28 -2
- package/fesm2022/mapa-library-ui-src-lib-components-datepicker.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-form.mjs +28 -2
- package/fesm2022/mapa-library-ui-src-lib-components-form.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-table.mjs +2 -2
- package/fesm2022/mapa-library-ui.mjs +30 -4
- package/fesm2022/mapa-library-ui.mjs.map +1 -1
- package/index.d.ts +3 -0
- package/mapa-library-ui-2.0.5.tgz +0 -0
- package/package.json +1 -1
- package/src/lib/components/datepicker/index.d.ts +3 -0
- package/mapa-library-ui-2.0.4.tgz +0 -0
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
|
@@ -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
|