@annalib/anna-core 28.6.19 → 28.6.21
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 +23 -4
- package/esm2022/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +17 -3
- package/fesm2022/annalib-anna-core.mjs +38 -5
- package/fesm2022/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-core-shared-lib/services/anna-filter.service.d.ts +1 -0
- package/package.json +1 -1
- package/src/lib/anna-common-scss/_email-button.scss +89 -0
|
@@ -155,6 +155,7 @@ export declare class AnnaFilterService {
|
|
|
155
155
|
setMarginLeftForFilterIcon(thElements: QueryList<ElementRef>): void;
|
|
156
156
|
checkIfUniqueValuePresentForTheHeader(header: IHeaderInfo, enabledHeaders: any[], tableData: any[], clonedTableData: any[]): void;
|
|
157
157
|
disableEnableEachColumnTooltipIcon(tableHeaders: IGtTableHeader[], tableData: any[], clonedTableData: any[]): void;
|
|
158
|
+
updateDateFilterTooltipSelectedMap(keys: string[]): void;
|
|
158
159
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnnaFilterService, never>;
|
|
159
160
|
static ɵprov: i0.ɵɵInjectableDeclaration<AnnaFilterService>;
|
|
160
161
|
}
|
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
|
+
|