@annalib/anna-core 30.0.11 → 30.0.13
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 +17 -1
- package/esm2022/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.mjs +2 -2
- package/esm2022/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +2 -3
- package/fesm2022/annalib-anna-core.mjs +18 -3
- package/fesm2022/annalib-anna-core.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -954,7 +954,7 @@ class AnnaCalendarFilterComponent {
|
|
|
954
954
|
this.disabled = false;
|
|
955
955
|
this.selectedDate = new EventEmitter();
|
|
956
956
|
this.showFooterTemplate = false;
|
|
957
|
-
this.placement = ["top-start", "
|
|
957
|
+
this.placement = ["top-start", "bottom-start", "left", "auto"];
|
|
958
958
|
this.apply = new EventEmitter();
|
|
959
959
|
this.cancel = new EventEmitter();
|
|
960
960
|
this.disableApplyBtn = false;
|
|
@@ -1988,6 +1988,22 @@ class AnnaFilterService {
|
|
|
1988
1988
|
"outstandingSpotsValue",
|
|
1989
1989
|
"offeredADUsValue",
|
|
1990
1990
|
"uDProjectionValue",
|
|
1991
|
+
"totalBookedGrp",
|
|
1992
|
+
"totalBookedImps",
|
|
1993
|
+
"bookedGrpToDate",
|
|
1994
|
+
"bookedImpsToDate",
|
|
1995
|
+
"deliveryThresholdPercentage",
|
|
1996
|
+
"goalGrpToDate",
|
|
1997
|
+
"goalImpsToDate",
|
|
1998
|
+
"postedGrpToDate",
|
|
1999
|
+
"postedImpsToDate",
|
|
2000
|
+
"deliveredPercentage",
|
|
2001
|
+
"udGrpToDate",
|
|
2002
|
+
"udImpsToDate",
|
|
2003
|
+
"odGrpToDate",
|
|
2004
|
+
"odImpsToDate",
|
|
2005
|
+
"scheduledADUs",
|
|
2006
|
+
"postedADUs",
|
|
1991
2007
|
];
|
|
1992
2008
|
const calendarArr = [
|
|
1993
2009
|
"period",
|
|
@@ -4948,8 +4964,7 @@ class AnnaNonEditableGenericTableComponent {
|
|
|
4948
4964
|
this.filterTabObjects = header.map((key, index) => {
|
|
4949
4965
|
// change to display name
|
|
4950
4966
|
const value = this.tooltipRadioTextMap.has(key) ? this.tooltipRadioTextMap.get(key) : key;
|
|
4951
|
-
return new RadioButtonModel(key, value, columnHeader.isSortRequired[index], columnHeader.isFilterRequired[index], columnHeader?.showSplitedOptionsInFilter?.[index] ?? false,
|
|
4952
|
-
columnHeader?.splitDelimiter?.[index]);
|
|
4967
|
+
return new RadioButtonModel(key, value, columnHeader.isSortRequired[index], columnHeader.isFilterRequired[index], columnHeader?.showSplitedOptionsInFilter?.[index] ?? false, columnHeader?.splitDelimiter?.[index]);
|
|
4953
4968
|
});
|
|
4954
4969
|
}
|
|
4955
4970
|
disableEnableEachColumnTooltipIcon() {
|