@annalib/anna-core 33.2.2 → 33.2.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.
@@ -57,7 +57,8 @@ export declare enum SvgOrIconNames {
57
57
  ALPHA_B_CIRCLE = "ALPHA_B_CIRCLE",
58
58
  ALPHA_R_CIRCLE = "ALPHA_R_CIRCLE",
59
59
  ALPHA_E_CIRCLE = "ALPHA_E_CIRCLE",
60
- ALPHA_A_CIRCLE = "ALPHA_A_CIRCLE"
60
+ ALPHA_A_CIRCLE = "ALPHA_A_CIRCLE",
61
+ CALENDAR = "CALENDAR"
61
62
  }
62
63
  export interface ITotalRowInfo {
63
64
  colspan: number;
@@ -163,7 +164,7 @@ export interface IActionItemTypeWithStringIconOrTextAction {
163
164
  enableTooltipForAdditionalText?: boolean;
164
165
  additionalTextAfterLink?: string;
165
166
  }
166
- export type IconToShow = "LIVE" | "PAY_FOR_PERFORMANCE_ACTIVE" | "PAY_FOR_PERFORMANCE" | "REJECTED" | "NOTIFY" | "AWAITING_APPROVAL" | "DELETED_ORDER" | "NEED_SELLER_CONFIRMATION" | "NEED_BUYER_CONFIRMATION" | "AUTOMATED" | "WARNING_ICON" | "INFORMATION_OUTLINE_ICON" | "ALERT_OCTAGON_ICON" | "CANCEL_ICON" | "ALPHA_B_CIRCLE" | "ALPHA_R_CIRCLE" | "ALPHA_E_CIRCLE" | "ALPHA_A_CIRCLE" | "MESSAGE";
167
+ export type IconToShow = "LIVE" | "PAY_FOR_PERFORMANCE_ACTIVE" | "PAY_FOR_PERFORMANCE" | "REJECTED" | "NOTIFY" | "AWAITING_APPROVAL" | "DELETED_ORDER" | "NEED_SELLER_CONFIRMATION" | "NEED_BUYER_CONFIRMATION" | "AUTOMATED" | "WARNING_ICON" | "INFORMATION_OUTLINE_ICON" | "ALERT_OCTAGON_ICON" | "CANCEL_ICON" | "ALPHA_B_CIRCLE" | "ALPHA_R_CIRCLE" | "ALPHA_E_CIRCLE" | "ALPHA_A_CIRCLE" | "MESSAGE" | "CALENDAR";
167
168
  export declare class TableClassNameConstant {
168
169
  static readonly defaultClass = "table-body-row ";
169
170
  static readonly selectedRow = "selected-row ";
@@ -33,9 +33,9 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
33
33
  tableHeight?: string;
34
34
  };
35
35
  extraHeaderRowForAdjustingColumnWidths: {
36
- objectKeys: string[];
37
- widths: string[];
38
- };
36
+ objectKey: string;
37
+ width: string;
38
+ }[];
39
39
  tableClass: string;
40
40
  maximumRowsWhichCanBeRenderedWithoutScroll: number;
41
41
  fixNumberOfRowsForPopup: boolean;
@@ -96,10 +96,14 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
96
96
  disableColumnClearAllBtn: boolean;
97
97
  margin: number;
98
98
  multiWeekPickerConfig: IWeekCalendar;
99
- tableHeadersOfEachRow: string[][];
99
+ tableColumnsOfEachRow: string[][];
100
100
  tableColumns: string[];
101
101
  totalRowColumns: string[];
102
102
  bindValueFuncCalled: boolean;
103
+ modifiedExtraHeaderRowForAdjustingColumnWidths: {
104
+ objectKeys: string[];
105
+ widths: string[];
106
+ };
103
107
  hierarchyTooltip: {
104
108
  open: () => void;
105
109
  close: () => void;
@@ -153,6 +157,7 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
153
157
  ngOnInit(): void;
154
158
  detectChanges(): void;
155
159
  ngOnChanges(changes: SimpleChanges): void;
160
+ initTableColumns(): void;
156
161
  setFilterAlignmentBasedOnScreenResolution(): void;
157
162
  setTableBottomBorder(): void;
158
163
  checkIfAllTheElementsAreZero(): boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@annalib/anna-core",
3
- "version": "33.2.2",
3
+ "version": "33.2.5",
4
4
  "peerDependencies": {
5
5
  "@angular-slider/ngx-slider": "^17.0.2",
6
6
  "@angular/common": "^17.3.12",