@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.
- package/esm2022/lib/anna-core-shared-lib/components/anna-icon-column/anna-icon-column.component.mjs +3 -3
- package/esm2022/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.mjs +2 -1
- package/esm2022/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +29 -38
- package/fesm2022/annalib-anna-core.mjs +31 -39
- package/fesm2022/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.d.ts +3 -2
- package/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.d.ts +9 -4
- package/package.json +1 -1
|
@@ -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
|
-
|
|
37
|
-
|
|
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
|
-
|
|
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;
|