@annalib/anna-core 10.8.0 → 10.8.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.
@@ -103,7 +103,7 @@ export interface IActionItemTypeSTRING__ICON_OR_TEXT_ACTION {
103
103
  value: string;
104
104
  }[];
105
105
  tooltipClass?: string;
106
- tooltipPlacement: string;
106
+ tooltipPlacement?: string;
107
107
  typeOfData: 'STRING' | 'ICON_TEXT_ACTION';
108
108
  additionalTextBeforeLink: string;
109
109
  enableTooltipForAdditionalText: boolean;
@@ -14,11 +14,8 @@ export declare class AnnaGtHelperService {
14
14
  initColumnFilterAndSorting(): void;
15
15
  enableOrDisableClearAllBtn(): boolean;
16
16
  updateFiltersInURL(): void;
17
- prepareQueryParamsOnFilter(): {
18
- appliedFilters: string[];
19
- selectedFilterData: string;
20
- sortState: string;
21
- };
17
+ prepareQueryParamsOnFilter(): any;
18
+ checkIfSortingIsApplied(): boolean;
22
19
  initTableFilters(clonedTableData: any): void;
23
20
  initFilters(): void;
24
21
  setDataAsPerPersistingFilter(isPersistingFilter: boolean, clonedTable: any, filters: any): any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@annalib/anna-core",
3
- "version": "10.8.0",
3
+ "version": "10.8.1",
4
4
  "peerDependencies": {
5
5
  "@angular-slider/ngx-slider": "^2.0.4",
6
6
  "@angular/common": "^15.2.9",
@@ -1,6 +1,5 @@
1
1
  @import "./colors", "./fonts";
2
2
 
3
- //Common styling
4
3
  #dropdown-trigger {
5
4
  height: 1.875rem;
6
5
  background: white;
@@ -8,6 +7,8 @@
8
7
  border: 1px solid $lightGray-8;
9
8
  width: 100%;
10
9
  text-align: left;
10
+ display: flex;
11
+ align-items: center;
11
12
  &:disabled{
12
13
  background-color: $gray74;
13
14
  opacity: 0.5;
@@ -29,6 +30,7 @@
29
30
  .icon {
30
31
  font-size: 1.125rem;
31
32
  float: right;
33
+ margin-left: auto;
32
34
  }
33
35
 
34
36
  .search-bar {
@@ -61,7 +63,6 @@ ul {
61
63
  padding-bottom: 0;
62
64
  margin-bottom: 0;
63
65
  max-height: calc(50vh - 80px) !important;
64
- // min-heightw: 70px;
65
66
  }
66
67
 
67
68
  li {
@@ -126,4 +127,8 @@ span.selected-item{
126
127
  min-height: 30px !important;
127
128
  overflow-y: hidden;
128
129
  max-height: 50vh;
129
- }
130
+ .mat-menu-content:not(:empty) {
131
+ padding-top: 0;
132
+ padding-bottom: 0;
133
+ }
134
+ }