@annalib/anna-core 28.6.13 → 28.6.14
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 -64
- package/esm2022/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +22 -7
- package/fesm2022/annalib-anna-core.mjs +21 -69
- package/fesm2022/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-core-shared-lib/services/anna-filter.service.d.ts +0 -3
- package/package.json +1 -1
- package/src/lib/anna-common-scss/_easy-filter.scss +1 -2
- package/src/lib/anna-common-scss/_email-button.scss +89 -0
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { ElementRef, QueryList } from "@angular/core";
|
|
2
2
|
import { Options } from "@angular-slider/ngx-slider";
|
|
3
3
|
import dayjs from "dayjs";
|
|
4
|
-
import { IGtTableHeader, IHeaderInfo } from "../models/anna-non-editable-gt-models";
|
|
5
4
|
import { SortType } from "../models/anna-sort.model";
|
|
6
5
|
import { TooltipModel } from "../models/anna-tooltip.model";
|
|
7
6
|
import { AnnaDateTimeFormatService, NgbDateType } from "./anna-date-time-format.service";
|
|
@@ -153,8 +152,6 @@ export declare class AnnaFilterService {
|
|
|
153
152
|
isMinuteValueInvalid(minute: string): boolean;
|
|
154
153
|
updateSortMap(tempSortOrder: SortType, tableData: any[], isLurAndCsrComponent: boolean): any[];
|
|
155
154
|
setMarginLeftForFilterIcon(thElements: QueryList<ElementRef>): void;
|
|
156
|
-
checkIfUniqueValuePresentForTheHeader(header: IHeaderInfo, enabledHeaders: any[], tableData: any[], clonedTableData: any[]): void;
|
|
157
|
-
disableEnableEachColumnTooltipIcon(tableHeaders: IGtTableHeader[], tableData: any[], clonedTableData: any[]): void;
|
|
158
155
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnnaFilterService, never>;
|
|
159
156
|
static ɵprov: i0.ɵɵInjectableDeclaration<AnnaFilterService>;
|
|
160
157
|
}
|
package/package.json
CHANGED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
.show-text {
|
|
2
|
+
display: none;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.hovered-email-report-button,
|
|
6
|
+
.email-report-btn {
|
|
7
|
+
display: flex;
|
|
8
|
+
flex-wrap: nowrap;
|
|
9
|
+
align-items: center;
|
|
10
|
+
z-index: 300;
|
|
11
|
+
width: 1.875rem;
|
|
12
|
+
transition: 0.5s ease-in-out;
|
|
13
|
+
height: 1.875rem;
|
|
14
|
+
border-radius: 50%;
|
|
15
|
+
border: none;
|
|
16
|
+
color: #fff;
|
|
17
|
+
background-color: #268bff;
|
|
18
|
+
top: 8.8rem;
|
|
19
|
+
right: 2.5%;
|
|
20
|
+
position: absolute;
|
|
21
|
+
box-shadow:
|
|
22
|
+
0 6px 10px 0 rgba(0, 0, 0, 0.3),
|
|
23
|
+
0 2px 2px 0 rgba(0, 0, 0, 0.2);
|
|
24
|
+
font-size: var(--page-link-fs);
|
|
25
|
+
|
|
26
|
+
.icon {
|
|
27
|
+
float: right;
|
|
28
|
+
margin-left: auto;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.show-text {
|
|
32
|
+
display: none;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.show-icon {
|
|
36
|
+
color: white;
|
|
37
|
+
font-size: 1.125rem;
|
|
38
|
+
transform: rotate(315deg);
|
|
39
|
+
margin-left: 0.125rem;
|
|
40
|
+
margin-top: -0.25rem;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
&:disabled {
|
|
44
|
+
background-color: #979797;
|
|
45
|
+
cursor: not-allowed !important;
|
|
46
|
+
opacity: 1;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.w-180.hovered-email-report-button {
|
|
51
|
+
width: 180px !important;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.hovered-email-report-button {
|
|
55
|
+
color: white;
|
|
56
|
+
width: 120px;
|
|
57
|
+
height: 1.875rem;
|
|
58
|
+
padding: 8px;
|
|
59
|
+
border-radius: 0.9375rem;
|
|
60
|
+
box-shadow:
|
|
61
|
+
0 6px 10px 0 rgba(0, 0, 0, 0.3),
|
|
62
|
+
0 2px 2px 0 rgba(0, 0, 0, 0.2);
|
|
63
|
+
|
|
64
|
+
.show-text {
|
|
65
|
+
display: block;
|
|
66
|
+
transition: fadeInRight 0.5s ease-in-out;
|
|
67
|
+
white-space: nowrap;
|
|
68
|
+
white-space: nowrap;
|
|
69
|
+
overflow: hidden;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.mdi-menu-down {
|
|
73
|
+
display: block !important;
|
|
74
|
+
font-size: 14px;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.show-icon {
|
|
78
|
+
display: none;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.send-mi {
|
|
83
|
+
color: white;
|
|
84
|
+
font-size: 1.125rem;
|
|
85
|
+
transform: rotate(315deg);
|
|
86
|
+
margin-left: 0.125rem;
|
|
87
|
+
margin-top: 0.125rem;
|
|
88
|
+
}
|
|
89
|
+
|