@annalib/anna-core 33.2.0 → 33.2.1

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;
@@ -92,10 +92,14 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
92
92
  disableColumnClearAllBtn: boolean;
93
93
  margin: number;
94
94
  multiWeekPickerConfig: IWeekCalendar;
95
- tableHeadersOfEachRow: string[][];
95
+ tableColumnsOfEachRow: string[][];
96
96
  tableColumns: string[];
97
97
  totalRowColumns: string[];
98
98
  bindValueFuncCalled: boolean;
99
+ modifiedExtraHeaderRowForAdjustingColumnWidths: {
100
+ objectKeys: string[];
101
+ widths: string[];
102
+ };
99
103
  hierarchyTooltip: {
100
104
  open: () => void;
101
105
  close: () => void;
@@ -149,6 +153,7 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
149
153
  ngOnInit(): void;
150
154
  detectChanges(): void;
151
155
  ngOnChanges(changes: SimpleChanges): void;
156
+ initTableColumns(): void;
152
157
  setFilterAlignmentBasedOnScreenResolution(): void;
153
158
  setTableBottomBorder(): void;
154
159
  checkIfAllTheElementsAreZero(): boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@annalib/anna-core",
3
- "version": "33.2.0",
3
+ "version": "33.2.1",
4
4
  "peerDependencies": {
5
5
  "@angular-slider/ngx-slider": "^17.0.2",
6
6
  "@angular/common": "^17.3.12",