@annalib/anna-core 29.1.0 → 29.1.2
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/models/anna-non-editable-gt-models.mjs +1 -1
- package/esm2022/lib/anna-core-shared-lib/services/anna-filter.service.mjs +16 -3
- package/esm2022/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +2 -63
- package/fesm2022/annalib-anna-core.mjs +15 -63
- package/fesm2022/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-core-shared-lib/services/anna-filter.service.d.ts +2 -0
- package/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.d.ts +0 -2
- package/package.json +1 -1
- package/src/lib/anna-common-scss/_edit-filter-popup.scss +5 -1
|
@@ -57,6 +57,8 @@ export declare class AnnaFilterService {
|
|
|
57
57
|
removeOrChangeLatestFilterIndex(isFiltered: boolean): void;
|
|
58
58
|
checkIfSortingIsAppliedThenSortTheData(originalData: any[]): any[];
|
|
59
59
|
filterData(originalData: any[], keyToSkip: string, isLurCsrPage?: boolean): any[];
|
|
60
|
+
getValueFromObject(obj: any, key: string): any;
|
|
61
|
+
nestedKeyExists(obj: any, key: string): boolean;
|
|
60
62
|
returnOrdersInTheRange(order: any, range: any, key: any): boolean;
|
|
61
63
|
returnDataForTimeRange(obj: any, selectedData: any): boolean;
|
|
62
64
|
returnDataForFromAndToTimeRange(obj: any, selectedData: any, key: any): boolean;
|
|
@@ -155,9 +155,7 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
|
|
|
155
155
|
closeTooltip(): void;
|
|
156
156
|
isTooltipActive(header: any[]): boolean;
|
|
157
157
|
bindTheValueToToolTip(tooltip: any, header: IHeaderInfo): void;
|
|
158
|
-
checkIfUniqueValuePresentForTheHeader(header: IHeaderInfo, enabledHeaders: any[]): void;
|
|
159
158
|
openTooltip(tooltip: any, header: any, columnHeader: IHeaderInfo): void;
|
|
160
|
-
disableEnableEachColumnTooltipIcon(): void;
|
|
161
159
|
dataRowClicked(rowData: any): void;
|
|
162
160
|
radioButtonClicked(data: any, action: string, isDisabled: boolean): void;
|
|
163
161
|
bindTheValueToSellerGroupTooltip(sellerGroupHierarchy: RatingSellerGroupHierarchy[], tooltip: any): void;
|
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@ $gap-between-headers-col: 1.5625rem !default;
|
|
|
10
10
|
display: flex;
|
|
11
11
|
flex-wrap: nowrap;
|
|
12
12
|
justify-content: space-between;
|
|
13
|
-
height:
|
|
13
|
+
height: 50px;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
.filter-view {
|
|
@@ -18,6 +18,10 @@ $gap-between-headers-col: 1.5625rem !default;
|
|
|
18
18
|
gap: $gap-between-headers-col;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
+
.edit-button {
|
|
22
|
+
margin-top: 3px;
|
|
23
|
+
}
|
|
24
|
+
|
|
21
25
|
.header {
|
|
22
26
|
margin-bottom: 0;
|
|
23
27
|
color: c.$darkCharcoal;
|