@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.
- 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 +28 -37
- package/fesm2022/annalib-anna-core.mjs +30 -38
- 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;
|
|
@@ -92,10 +92,14 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
|
|
|
92
92
|
disableColumnClearAllBtn: boolean;
|
|
93
93
|
margin: number;
|
|
94
94
|
multiWeekPickerConfig: IWeekCalendar;
|
|
95
|
-
|
|
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;
|