@annalib/anna-core 25.6.2 → 25.7.0
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/components/anna-no-data/anna-no-data.component.mjs +2 -2
- package/esm2022/lib/anna-core-shared-lib/services/anna-filter.service.mjs +2 -2
- package/esm2022/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.mjs +3 -3
- package/esm2022/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-checkbox-filter/anna-column-checkbox-filter.component.mjs +3 -3
- package/esm2022/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-date-range-filter/anna-column-date-range-filter.component.mjs +3 -3
- package/esm2022/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-slider-filter/anna-column-slider-filter.component.mjs +3 -3
- package/esm2022/lib/anna-generic-table-lib/components/anna-column-filters/anna-column-time-filter/anna-column-time-filter.component.mjs +3 -3
- package/esm2022/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +4 -13
- package/esm2022/lib/anna-generic-table-lib/components/anna-sort/anna-sort.component.mjs +3 -3
- package/fesm2022/annalib-anna-core.mjs +18 -27
- package/fesm2022/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.d.ts +0 -1
- package/package.json +1 -1
- package/src/lib/anna-common-scss/_bootstrap-tooltip.scss +1 -1
- package/src/lib/anna-common-scss/_customDropdown.scss +6 -7
- package/src/lib/anna-common-scss/_dashboard-partials.scss +0 -1
- package/src/lib/anna-common-scss/_easy-filter.scss +6 -6
- package/src/lib/anna-common-scss/_edit-filter-popup.scss +4 -10
- package/src/lib/anna-common-scss/_filters.scss +10 -13
- package/src/lib/anna-common-scss/_generic-table-common.scss +1 -1
- package/src/lib/anna-common-scss/_gt-table.scss +190 -326
- package/src/lib/anna-common-scss/_mat-button-toggle.scss +1 -2
- package/src/lib/anna-common-scss/_popup-filter-toggle-button.scss +3 -4
- package/src/lib/anna-common-scss/_show-hide-total-row.scss +2 -2
- package/src/lib/anna-common-scss/_sort.scss +1 -1
- package/src/lib/anna-common-scss/third-party-lib/_angular-material-mat-radio.scss +0 -1
- package/src/lib/anna-common-scss/third-party-lib/_anna-mat-button-toggle-group-size-lg.scss +3 -3
|
@@ -131,7 +131,6 @@ export declare class AnnaNonEditableGenericTableComponent implements OnInit, OnC
|
|
|
131
131
|
statusNoteTooltip: any;
|
|
132
132
|
statusNoteForTooltip: string;
|
|
133
133
|
statusNoteForPopup: string;
|
|
134
|
-
noOfRowsToCheck: number;
|
|
135
134
|
constructor(cdRef: ChangeDetectorRef, annaSortService: AnnaSortService, annaDateTimeFormatService: AnnaDateTimeFormatService, annaFilterService: AnnaFilterService);
|
|
136
135
|
ngAfterViewChecked(): void;
|
|
137
136
|
ngOnInit(): void;
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
box-shadow:
|
|
10
10
|
0 6px 10px 0 rgba(0, 0, 0, 0.3),
|
|
11
11
|
0 2px 2px 0 rgba(0, 0, 0, 0.2);
|
|
12
|
-
@include fonts(Roboto,
|
|
12
|
+
@include fonts(Roboto, 12px, normal, normal, normal, normal, normal);
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
&.bs-tooltip-top .arrow::before {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@import "./colors", "./fonts";
|
|
2
2
|
|
|
3
3
|
#dropdown-trigger {
|
|
4
|
-
height: 1.
|
|
4
|
+
height: 1.875rem;
|
|
5
5
|
background: white;
|
|
6
6
|
border-radius: 2px;
|
|
7
7
|
border: 1px solid $lightGray-8;
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
.placeholder {
|
|
23
23
|
color: $gray74;
|
|
24
24
|
width: 100%;
|
|
25
|
-
@include fonts(Roboto,
|
|
25
|
+
@include fonts(Roboto, 14px, normal, normal, normal, normal, normal);
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
// #dropdown-trigger:disabled .placeholder {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
.search-bar {
|
|
39
39
|
margin: 0 7px 8px 7px;
|
|
40
40
|
border: 1px solid $pinkSwan;
|
|
41
|
-
height:
|
|
41
|
+
height: 1.875rem;
|
|
42
42
|
border-radius: 2px;
|
|
43
43
|
input {
|
|
44
44
|
outline: none;
|
|
@@ -46,11 +46,10 @@
|
|
|
46
46
|
position: relative;
|
|
47
47
|
bottom: 4px;
|
|
48
48
|
width: calc(100% - 29px);
|
|
49
|
-
font-size: var(--dropdown-text-fs);
|
|
50
49
|
}
|
|
51
50
|
|
|
52
51
|
.search-icon {
|
|
53
|
-
font-size:
|
|
52
|
+
font-size: 1.125rem;
|
|
54
53
|
color: $lightGray-7;
|
|
55
54
|
margin: 5px;
|
|
56
55
|
}
|
|
@@ -72,7 +71,7 @@ li {
|
|
|
72
71
|
list-style-type: none;
|
|
73
72
|
cursor: pointer;
|
|
74
73
|
padding-inline: 10px;
|
|
75
|
-
@include fonts(Roboto,
|
|
74
|
+
@include fonts(Roboto, 14px, normal, normal, normal, 2.14, normal);
|
|
76
75
|
color: #4a4a4a;
|
|
77
76
|
@extend .ellipsify;
|
|
78
77
|
width: 100%;
|
|
@@ -105,7 +104,7 @@ li.active {
|
|
|
105
104
|
|
|
106
105
|
span.selected-item {
|
|
107
106
|
background: transparent;
|
|
108
|
-
@include fonts(Roboto,
|
|
107
|
+
@include fonts(Roboto, 14px, normal, normal, normal, normal, normal);
|
|
109
108
|
color: #4a4a4a;
|
|
110
109
|
@extend .ellipsify;
|
|
111
110
|
width: calc(100% - 22px);
|
|
@@ -13,9 +13,9 @@ $intelli-filter-default-map: (
|
|
|
13
13
|
|
|
14
14
|
@mixin intelli-filter-default($padding: 5px 8px) {
|
|
15
15
|
button.intelli-filter {
|
|
16
|
-
@include fonts(Roboto,
|
|
16
|
+
@include fonts(Roboto, 0.75rem, normal, 500, normal, normal, 0.6px);
|
|
17
17
|
border-radius: 0.75rem;
|
|
18
|
-
height: 1.
|
|
18
|
+
height: 1.5rem;
|
|
19
19
|
margin-right: 8px;
|
|
20
20
|
display: inline-flex;
|
|
21
21
|
align-items: center;
|
|
@@ -69,7 +69,7 @@ $only-enabled-default-map: (
|
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
$intelli-filter-icon-default-map: (
|
|
72
|
-
"icon-font-size":
|
|
72
|
+
"icon-font-size": 14.5px,
|
|
73
73
|
"icon-margin-right": 4px,
|
|
74
74
|
"active-icon-color": white,
|
|
75
75
|
);
|
|
@@ -123,14 +123,14 @@ $intelli-filter-icon-default-map: (
|
|
|
123
123
|
}
|
|
124
124
|
|
|
125
125
|
.filter-label {
|
|
126
|
-
@include fonts(Roboto,
|
|
126
|
+
@include fonts(Roboto, 0.875rem, normal, normal, normal, normal, normal);
|
|
127
127
|
color: $charcoal;
|
|
128
|
-
margin-bottom:
|
|
128
|
+
margin-bottom: 4px;
|
|
129
129
|
}
|
|
130
130
|
|
|
131
131
|
.filter-divider {
|
|
132
132
|
width: 0.5px;
|
|
133
133
|
margin-right: 8px;
|
|
134
|
-
height:
|
|
134
|
+
height: 24px;
|
|
135
135
|
background: #111;
|
|
136
136
|
}
|
|
@@ -10,7 +10,7 @@ $gap-between-headers-col: 1.5625rem !default;
|
|
|
10
10
|
display: flex;
|
|
11
11
|
flex-wrap: nowrap;
|
|
12
12
|
justify-content: space-between;
|
|
13
|
-
height:
|
|
13
|
+
height: 3.25rem;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
.filter-view {
|
|
@@ -21,19 +21,13 @@ $gap-between-headers-col: 1.5625rem !default;
|
|
|
21
21
|
.header {
|
|
22
22
|
margin-bottom: 0;
|
|
23
23
|
color: c.$darkCharcoal;
|
|
24
|
-
@include f.fonts(Roboto,
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.popup-dropdown-label {
|
|
28
|
-
margin-bottom: 0;
|
|
29
|
-
color: c.$darkCharcoal;
|
|
30
|
-
@include f.fonts(Roboto, var(--dropdown-label-fs), normal, normal, normal, normal, normal);
|
|
24
|
+
@include f.fonts(Roboto, 0.75rem, normal, normal, normal, normal, normal);
|
|
31
25
|
}
|
|
32
26
|
|
|
33
27
|
.selected-value {
|
|
34
28
|
margin-bottom: 0;
|
|
35
29
|
color: c.$grey;
|
|
36
|
-
@include f.fonts(Roboto,
|
|
30
|
+
@include f.fonts(Roboto, 0.875rem, normal, bold, normal, 1.14, normal);
|
|
37
31
|
}
|
|
38
32
|
|
|
39
33
|
@mixin filter-popup-modal-header() {
|
|
@@ -44,7 +38,7 @@ $gap-between-headers-col: 1.5625rem !default;
|
|
|
44
38
|
color: white;
|
|
45
39
|
margin-top: auto;
|
|
46
40
|
margin-bottom: 0;
|
|
47
|
-
@include f.fonts(Roboto,
|
|
41
|
+
@include f.fonts(Roboto, 1.125rem, normal, normal, normal, normal, normal);
|
|
48
42
|
}
|
|
49
43
|
|
|
50
44
|
i {
|
|
@@ -240,7 +240,7 @@ div.radio-container {
|
|
|
240
240
|
|
|
241
241
|
.search-icon {
|
|
242
242
|
margin: 0 4px 0 0;
|
|
243
|
-
font-size:
|
|
243
|
+
font-size: $fs-18;
|
|
244
244
|
color: $lightGray-7;
|
|
245
245
|
}
|
|
246
246
|
|
|
@@ -255,13 +255,13 @@ div.radio-container {
|
|
|
255
255
|
|
|
256
256
|
.data {
|
|
257
257
|
margin: 0 13px 0px 8px;
|
|
258
|
-
@include fonts(Roboto,
|
|
258
|
+
@include fonts(Roboto, $fs-14, normal, normal, normal, 1.86, "");
|
|
259
259
|
color: $charcoal;
|
|
260
260
|
}
|
|
261
261
|
|
|
262
262
|
.search-input {
|
|
263
263
|
margin: 1px 0 1px 4px;
|
|
264
|
-
@include fonts(Roboto,
|
|
264
|
+
@include fonts(Roboto, $fs-14, normal, normal, normal, normal, normal);
|
|
265
265
|
color: $lightGray-6;
|
|
266
266
|
width: calc(100% - 38px);
|
|
267
267
|
margin-left: 2px;
|
|
@@ -342,7 +342,7 @@ section.min-maxContainer {
|
|
|
342
342
|
width: 100%;
|
|
343
343
|
input {
|
|
344
344
|
width: 30%;
|
|
345
|
-
height:
|
|
345
|
+
height: $fs-30;
|
|
346
346
|
border: 1px solid lightgray;
|
|
347
347
|
color: gray;
|
|
348
348
|
}
|
|
@@ -353,7 +353,6 @@ section.min-maxContainer {
|
|
|
353
353
|
position: relative;
|
|
354
354
|
top: $fs-5;
|
|
355
355
|
color: $lightDimGray;
|
|
356
|
-
font-size: var(--page-message-content-fs);
|
|
357
356
|
}
|
|
358
357
|
}
|
|
359
358
|
|
|
@@ -383,12 +382,12 @@ section.min-maxContainer {
|
|
|
383
382
|
margin-top: $fs-6;
|
|
384
383
|
width: 9px;
|
|
385
384
|
height: 18px;
|
|
386
|
-
margin-right:
|
|
385
|
+
margin-right: $fs-19;
|
|
387
386
|
i {
|
|
388
387
|
color: black;
|
|
389
388
|
cursor: pointer;
|
|
390
389
|
max-height: 9px;
|
|
391
|
-
font-size:
|
|
390
|
+
font-size: 25px;
|
|
392
391
|
width: 10px;
|
|
393
392
|
&:before {
|
|
394
393
|
width: 0;
|
|
@@ -418,7 +417,6 @@ section.min-maxContainer {
|
|
|
418
417
|
margin-top: 0.125rem;
|
|
419
418
|
margin-left: $fs-12;
|
|
420
419
|
font-weight: 700;
|
|
421
|
-
font-size: var(--dropdown-label-fs);
|
|
422
420
|
}
|
|
423
421
|
}
|
|
424
422
|
|
|
@@ -435,7 +433,7 @@ section.min-maxContainer {
|
|
|
435
433
|
width: 94%;
|
|
436
434
|
text-align: center;
|
|
437
435
|
border: none;
|
|
438
|
-
font-size:
|
|
436
|
+
font-size: 14px;
|
|
439
437
|
background: none;
|
|
440
438
|
text-decoration: underline;
|
|
441
439
|
color: $primary-color;
|
|
@@ -498,7 +496,7 @@ span.mdi-filter-variant.active {
|
|
|
498
496
|
}
|
|
499
497
|
|
|
500
498
|
p.filter-tab {
|
|
501
|
-
@include fonts(Roboto,
|
|
499
|
+
@include fonts(Roboto, 14px, normal, normal, normal, 1.29, normal);
|
|
502
500
|
color: #1b88ff;
|
|
503
501
|
border-radius: 5px;
|
|
504
502
|
background-color: #f4f4f4;
|
|
@@ -507,7 +505,6 @@ p.filter-tab {
|
|
|
507
505
|
overflow: hidden;
|
|
508
506
|
text-align: center;
|
|
509
507
|
text-overflow: ellipsis;
|
|
510
|
-
padding-block: 3px;
|
|
511
508
|
}
|
|
512
509
|
|
|
513
510
|
p.filter-tab.active {
|
|
@@ -518,7 +515,7 @@ p.filter-tab.active {
|
|
|
518
515
|
button.filter-text-btn {
|
|
519
516
|
background: white;
|
|
520
517
|
text-decoration: underline;
|
|
521
|
-
@include fonts(Roboto,
|
|
518
|
+
@include fonts(Roboto, 14px, normal, normal, normal, normal, normal);
|
|
522
519
|
border: none;
|
|
523
520
|
color: #268bff;
|
|
524
521
|
&:disabled {
|
|
@@ -698,7 +695,7 @@ input.error-border {
|
|
|
698
695
|
|
|
699
696
|
.no-data-case {
|
|
700
697
|
padding-left: 0.4375rem !important;
|
|
701
|
-
font-size:
|
|
698
|
+
font-size: 0.875rem !important;
|
|
702
699
|
margin-top: 10px !important;
|
|
703
700
|
cursor: pointer;
|
|
704
701
|
}
|