mapa-library-ui 1.1.0 → 1.1.2
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-group-report.mjs +2 -2
- package/fesm2022/mapa-library-ui-src-lib-components-group-report.mjs.map +1 -1
- package/fesm2022/mapa-library-ui-src-lib-components-table.mjs +5 -2
- package/fesm2022/mapa-library-ui-src-lib-components-table.mjs.map +1 -1
- package/fesm2022/mapa-library-ui.mjs +7 -4
- package/fesm2022/mapa-library-ui.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/mapa-library-ui-1.1.2.tgz +0 -0
- package/package.json +1 -1
- package/src/lib/components/table/index.d.ts +1 -0
- package/mapa-library-ui-1.1.0.tgz +0 -0
package/index.d.ts
CHANGED
|
@@ -1750,6 +1750,7 @@ declare class MapaTableComponent implements AfterViewInit, OnChanges {
|
|
|
1750
1750
|
get texts(): mapa_library_ui.MapaUiTexts;
|
|
1751
1751
|
get selectAllLabel(): string;
|
|
1752
1752
|
get paginatorPageIndex(): number;
|
|
1753
|
+
get shouldShowPaginator(): boolean;
|
|
1753
1754
|
get resolvedEmptyTitle(): string;
|
|
1754
1755
|
get resolvedEmptySubtitle(): string | null;
|
|
1755
1756
|
get skeletonRows(): number[];
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -233,6 +233,7 @@ declare class MapaTableComponent implements AfterViewInit, OnChanges {
|
|
|
233
233
|
get texts(): MapaUiTexts;
|
|
234
234
|
get selectAllLabel(): string;
|
|
235
235
|
get paginatorPageIndex(): number;
|
|
236
|
+
get shouldShowPaginator(): boolean;
|
|
236
237
|
get resolvedEmptyTitle(): string;
|
|
237
238
|
get resolvedEmptySubtitle(): string | null;
|
|
238
239
|
get skeletonRows(): number[];
|
|
Binary file
|