mapa-library-ui 2.0.3 → 2.0.4

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
@@ -2069,6 +2069,7 @@ declare class MapaTableComponent {
2069
2069
  protected get shouldShowPaginator(): boolean;
2070
2070
  protected get skeletonRows(): number[];
2071
2071
  protected skeletonColumnWidth(column: TableColumn): string;
2072
+ protected columnWidth(column: TableColumn): string | null;
2072
2073
  protected rowIdentity(row: unknown, index: number): unknown;
2073
2074
  protected getRowKey(row: unknown): string;
2074
2075
  protected isSelected(row: unknown): boolean;
@@ -2107,6 +2108,7 @@ declare class MapaTableComponent {
2107
2108
  private getColumnValue;
2108
2109
  private statusIndex;
2109
2110
  private normalizeCollapse;
2111
+ private isCompactColumn;
2110
2112
  private getFilterValue;
2111
2113
  private getMenuActionItems;
2112
2114
  private asRow;
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mapa-library-ui",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "^20.3.0",
6
6
  "@angular/cdk": "^20.2.0",
@@ -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