mapa-library-ui 2.0.3 → 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 +9 -3
- package/fesm2022/mapa-library-ui-src-lib-components-table.mjs.map +1 -1
- package/fesm2022/mapa-library-ui.mjs +37 -5
- package/fesm2022/mapa-library-ui.mjs.map +1 -1
- package/index.d.ts +5 -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/src/lib/components/table/index.d.ts +2 -0
- package/mapa-library-ui-2.0.3.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`.
|
|
@@ -2069,6 +2072,7 @@ declare class MapaTableComponent {
|
|
|
2069
2072
|
protected get shouldShowPaginator(): boolean;
|
|
2070
2073
|
protected get skeletonRows(): number[];
|
|
2071
2074
|
protected skeletonColumnWidth(column: TableColumn): string;
|
|
2075
|
+
protected columnWidth(column: TableColumn): string | null;
|
|
2072
2076
|
protected rowIdentity(row: unknown, index: number): unknown;
|
|
2073
2077
|
protected getRowKey(row: unknown): string;
|
|
2074
2078
|
protected isSelected(row: unknown): boolean;
|
|
@@ -2107,6 +2111,7 @@ declare class MapaTableComponent {
|
|
|
2107
2111
|
private getColumnValue;
|
|
2108
2112
|
private statusIndex;
|
|
2109
2113
|
private normalizeCollapse;
|
|
2114
|
+
private isCompactColumn;
|
|
2110
2115
|
private getFilterValue;
|
|
2111
2116
|
private getMenuActionItems;
|
|
2112
2117
|
private asRow;
|
|
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`.
|
|
@@ -255,6 +255,7 @@ declare class MapaTableComponent {
|
|
|
255
255
|
protected get shouldShowPaginator(): boolean;
|
|
256
256
|
protected get skeletonRows(): number[];
|
|
257
257
|
protected skeletonColumnWidth(column: TableColumn): string;
|
|
258
|
+
protected columnWidth(column: TableColumn): string | null;
|
|
258
259
|
protected rowIdentity(row: unknown, index: number): unknown;
|
|
259
260
|
protected getRowKey(row: unknown): string;
|
|
260
261
|
protected isSelected(row: unknown): boolean;
|
|
@@ -293,6 +294,7 @@ declare class MapaTableComponent {
|
|
|
293
294
|
private getColumnValue;
|
|
294
295
|
private statusIndex;
|
|
295
296
|
private normalizeCollapse;
|
|
297
|
+
private isCompactColumn;
|
|
296
298
|
private getFilterValue;
|
|
297
299
|
private getMenuActionItems;
|
|
298
300
|
private asRow;
|
|
Binary file
|