@annalib/anna-core 24.0.51 → 24.0.54
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/services/anna-filter.service.mjs +1 -5
- package/esm2022/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +2 -16
- package/fesm2022/annalib-anna-core.mjs +1 -19
- package/fesm2022/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-core-shared-lib/services/anna-date-time-format.service.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1927,10 +1927,6 @@ class AnnaFilterService {
|
|
|
1927
1927
|
"Rating",
|
|
1928
1928
|
"ActualRate",
|
|
1929
1929
|
"Impressions",
|
|
1930
|
-
"AURKeyLY",
|
|
1931
|
-
"InvFillLY",
|
|
1932
|
-
"AURKeyTY",
|
|
1933
|
-
"InvFillTY",
|
|
1934
1930
|
];
|
|
1935
1931
|
const calendarArr = [
|
|
1936
1932
|
"period",
|
|
@@ -4632,8 +4628,6 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
4632
4628
|
this.tooltipRadioTextMap.set("buyerLine", "Buy Line");
|
|
4633
4629
|
this.tooltipRadioTextMap.set("sellerLine", "Sell Line");
|
|
4634
4630
|
this.tooltipRadioTextMap.set("programName", "Program Name");
|
|
4635
|
-
this.tooltipRadioTextMap.set("InvFillTY", "Inventory Fill This Year");
|
|
4636
|
-
this.tooltipRadioTextMap.set("InvFillLY", "Inventory Fill Last Year");
|
|
4637
4631
|
}
|
|
4638
4632
|
selectOrUnselectCheckbox(rowData, columnKeys, isCheckboxSelected) {
|
|
4639
4633
|
rowData[columnKeys] = !rowData[columnKeys];
|
|
@@ -4745,19 +4739,7 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
4745
4739
|
if (latestFilters.length > 0 &&
|
|
4746
4740
|
item.disableTooltipIcon &&
|
|
4747
4741
|
latestFilters[latestFilters.length - 1] === key) {
|
|
4748
|
-
|
|
4749
|
-
const uniqStartDate = uniq(this.clonedTableData.map((u) => u.startDate));
|
|
4750
|
-
const uniqEndDate = uniq(this.clonedTableData.map((u) => u.endDate));
|
|
4751
|
-
item.disableTooltipIcon = !(uniqStartDate.length > 1 || uniqEndDate.length > 1);
|
|
4752
|
-
}
|
|
4753
|
-
else {
|
|
4754
|
-
values = this.clonedTableData.map((u) => u[key]);
|
|
4755
|
-
if ((item.filter === "CHECKBOX" && uniq(values).filter((n) => n != null).length > 1) ||
|
|
4756
|
-
(item.filter !== "CHECKBOX" &&
|
|
4757
|
-
uniq(values).filter((n) => n != null && n !== "-").length > 1)) {
|
|
4758
|
-
item.disableTooltipIcon = false;
|
|
4759
|
-
}
|
|
4760
|
-
}
|
|
4742
|
+
item.disableTooltipIcon = false;
|
|
4761
4743
|
}
|
|
4762
4744
|
if (item.disableTooltipIcon) {
|
|
4763
4745
|
if (key === "period") {
|