@annalib/anna-core 37.0.23 → 37.1.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/README.md +28 -28
- package/fesm2022/annalib-anna-core.mjs +50 -143
- package/fesm2022/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-core-shared-lib/models/anna-non-editable-gt-models.d.ts +5 -8
- package/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.d.ts +3 -18
- package/package.json +1 -1
- package/src/lib/anna-common-scss/_animate.scss +27 -27
- package/src/lib/anna-common-scss/_application-spacing.scss +8 -8
- package/src/lib/anna-common-scss/_bootstrap-tooltip.scss +29 -29
- package/src/lib/anna-common-scss/_button.scss +18 -18
- package/src/lib/anna-common-scss/_colors.scss +107 -107
- package/src/lib/anna-common-scss/_common-order-listing-table.scss +190 -190
- package/src/lib/anna-common-scss/_custom-anna-datepicker.scss +14 -14
- package/src/lib/anna-common-scss/_customDropdown.scss +126 -126
- package/src/lib/anna-common-scss/_dashboard-partials.scss +107 -107
- package/src/lib/anna-common-scss/_date-picker-form.scss +87 -87
- package/src/lib/anna-common-scss/_drag-and-drop.scss +22 -22
- package/src/lib/anna-common-scss/_easy-filter.scss +139 -139
- package/src/lib/anna-common-scss/_edit-filter-popup.scss +80 -80
- package/src/lib/anna-common-scss/_email-button.scss +89 -89
- package/src/lib/anna-common-scss/_filters.scss +728 -728
- package/src/lib/anna-common-scss/_font.scss +9 -9
- package/src/lib/anna-common-scss/_fonts.scss +86 -86
- package/src/lib/anna-common-scss/_generic-modal.scss +63 -63
- package/src/lib/anna-common-scss/_generic-table-common.scss +220 -220
- package/src/lib/anna-common-scss/_generic-tooltip-html.scss +69 -69
- package/src/lib/anna-common-scss/_gt-table.scss +586 -586
- package/src/lib/anna-common-scss/_icons.scss +3 -3
- package/src/lib/anna-common-scss/_legend.scss +11 -11
- package/src/lib/anna-common-scss/_mat-button-toggle.scss +68 -68
- package/src/lib/anna-common-scss/_mat-menu.scss +17 -17
- package/src/lib/anna-common-scss/_mixins.scss +187 -187
- package/src/lib/anna-common-scss/_modal.scss +37 -37
- package/src/lib/anna-common-scss/_popup-filter-toggle-button.scss +37 -37
- package/src/lib/anna-common-scss/_scrollbar.scss +14 -14
- package/src/lib/anna-common-scss/_show-hide-total-row.scss +27 -27
- package/src/lib/anna-common-scss/_sort.scss +30 -30
- package/src/lib/anna-common-scss/_toggle.scss +86 -86
- package/src/lib/anna-common-scss/style.scss +7 -7
- package/src/lib/anna-common-scss/third-party-lib/_angular-material-mat-radio.scss +26 -26
- package/src/lib/anna-common-scss/third-party-lib/_anna-mat-button-toggle-group-size-lg.scss +39 -39
- package/src/lib/anna-common-scss/third-party-lib/_mat-autocomplete.scss +31 -31
- package/src/lib/anna-common-scss/user-module-common-scss/_user-module.scss +65 -65
- package/src/lib/anna-common-scss/user-module-common-scss/_user-tag-status.scss +111 -111
|
@@ -1,107 +1,107 @@
|
|
|
1
|
-
.dashboard-heading {
|
|
2
|
-
color: #268bff;
|
|
3
|
-
font-size: 1rem;
|
|
4
|
-
font-weight: 500;
|
|
5
|
-
letter-spacing: 2.5px;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
@mixin user-card($bgColor) {
|
|
9
|
-
background-color: $bgColor;
|
|
10
|
-
box-shadow:
|
|
11
|
-
0 2px 2px 0 rgba(0, 0, 0, 0.24),
|
|
12
|
-
0 0 2px 0 rgba(0, 0, 0, 0.12);
|
|
13
|
-
cursor: default;
|
|
14
|
-
transition: 150ms;
|
|
15
|
-
position: relative;
|
|
16
|
-
border-radius: 0.25rem;
|
|
17
|
-
padding: 1.5rem;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
//orderCard issue 2
|
|
21
|
-
// .user-card:hover {
|
|
22
|
-
// box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3), 0 2px 2px 0 rgba(0, 0, 0, 0.2);
|
|
23
|
-
// top: -2px;
|
|
24
|
-
// }
|
|
25
|
-
|
|
26
|
-
@mixin view_link {
|
|
27
|
-
float: right;
|
|
28
|
-
color: #268bff;
|
|
29
|
-
cursor: pointer;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
@mixin info-box {
|
|
33
|
-
background-color: #c7e1ff;
|
|
34
|
-
border-radius: $fs-4;
|
|
35
|
-
padding: 0.1875rem 0.5rem 0 0.5rem;
|
|
36
|
-
@include fonts(Roboto, 0.9375rem, normal, 500, normal, 1.25, 0.088rem);
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.noData {
|
|
40
|
-
background-color: lightgrey;
|
|
41
|
-
padding: 0.5em;
|
|
42
|
-
width: 40%;
|
|
43
|
-
text-align: center;
|
|
44
|
-
margin: 12.5em auto;
|
|
45
|
-
border-radius: 0.2em;
|
|
46
|
-
font-size: var(--page-link-fs);
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
@mixin svg-parent-card($cardHeight, $cardBgColor) {
|
|
50
|
-
max-width: 100%;
|
|
51
|
-
height: $cardHeight;
|
|
52
|
-
width: 100%;
|
|
53
|
-
background-color: $cardBgColor;
|
|
54
|
-
border: none;
|
|
55
|
-
outline: none;
|
|
56
|
-
padding-bottom: 0;
|
|
57
|
-
margin-bottom: 0;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
@mixin svg-content-placeholder($backgroundGradient, $clipPath) {
|
|
61
|
-
animation: linear 1s placeHolderShimmer infinite;
|
|
62
|
-
background: $backgroundGradient;
|
|
63
|
-
background-size: 800px 104px;
|
|
64
|
-
|
|
65
|
-
width: 100%;
|
|
66
|
-
height: 100%;
|
|
67
|
-
-webkit-clip-path: url($clipPath);
|
|
68
|
-
clip-path: url($clipPath);
|
|
69
|
-
// Safari render fix
|
|
70
|
-
transform: translateZ(0);
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
@keyframes placeHolderShimmer {
|
|
74
|
-
0% {
|
|
75
|
-
background-position: -468px 0;
|
|
76
|
-
}
|
|
77
|
-
100% {
|
|
78
|
-
background-position: 468px 0;
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
:host::ng-deep.btn-secondary {
|
|
83
|
-
box-shadow: none;
|
|
84
|
-
border: 1px solid lightgray;
|
|
85
|
-
}
|
|
86
|
-
:host ::ng-deep .ui-select-match-text {
|
|
87
|
-
padding-top: 0;
|
|
88
|
-
display: inline-block;
|
|
89
|
-
width: 100%;
|
|
90
|
-
white-space: nowrap;
|
|
91
|
-
overflow: hidden;
|
|
92
|
-
text-overflow: ellipsis;
|
|
93
|
-
}
|
|
94
|
-
@mixin material-icons-and-expand-icon {
|
|
95
|
-
color: #268bff;
|
|
96
|
-
position: absolute;
|
|
97
|
-
float: right;
|
|
98
|
-
cursor: pointer;
|
|
99
|
-
pointer-events: none;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
@mixin dropdownContainer {
|
|
103
|
-
position: relative;
|
|
104
|
-
margin: 0 0.5625rem 0 0;
|
|
105
|
-
display: flex;
|
|
106
|
-
flex-direction: column;
|
|
107
|
-
}
|
|
1
|
+
.dashboard-heading {
|
|
2
|
+
color: #268bff;
|
|
3
|
+
font-size: 1rem;
|
|
4
|
+
font-weight: 500;
|
|
5
|
+
letter-spacing: 2.5px;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
@mixin user-card($bgColor) {
|
|
9
|
+
background-color: $bgColor;
|
|
10
|
+
box-shadow:
|
|
11
|
+
0 2px 2px 0 rgba(0, 0, 0, 0.24),
|
|
12
|
+
0 0 2px 0 rgba(0, 0, 0, 0.12);
|
|
13
|
+
cursor: default;
|
|
14
|
+
transition: 150ms;
|
|
15
|
+
position: relative;
|
|
16
|
+
border-radius: 0.25rem;
|
|
17
|
+
padding: 1.5rem;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
//orderCard issue 2
|
|
21
|
+
// .user-card:hover {
|
|
22
|
+
// box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3), 0 2px 2px 0 rgba(0, 0, 0, 0.2);
|
|
23
|
+
// top: -2px;
|
|
24
|
+
// }
|
|
25
|
+
|
|
26
|
+
@mixin view_link {
|
|
27
|
+
float: right;
|
|
28
|
+
color: #268bff;
|
|
29
|
+
cursor: pointer;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
@mixin info-box {
|
|
33
|
+
background-color: #c7e1ff;
|
|
34
|
+
border-radius: $fs-4;
|
|
35
|
+
padding: 0.1875rem 0.5rem 0 0.5rem;
|
|
36
|
+
@include fonts(Roboto, 0.9375rem, normal, 500, normal, 1.25, 0.088rem);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.noData {
|
|
40
|
+
background-color: lightgrey;
|
|
41
|
+
padding: 0.5em;
|
|
42
|
+
width: 40%;
|
|
43
|
+
text-align: center;
|
|
44
|
+
margin: 12.5em auto;
|
|
45
|
+
border-radius: 0.2em;
|
|
46
|
+
font-size: var(--page-link-fs);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
@mixin svg-parent-card($cardHeight, $cardBgColor) {
|
|
50
|
+
max-width: 100%;
|
|
51
|
+
height: $cardHeight;
|
|
52
|
+
width: 100%;
|
|
53
|
+
background-color: $cardBgColor;
|
|
54
|
+
border: none;
|
|
55
|
+
outline: none;
|
|
56
|
+
padding-bottom: 0;
|
|
57
|
+
margin-bottom: 0;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
@mixin svg-content-placeholder($backgroundGradient, $clipPath) {
|
|
61
|
+
animation: linear 1s placeHolderShimmer infinite;
|
|
62
|
+
background: $backgroundGradient;
|
|
63
|
+
background-size: 800px 104px;
|
|
64
|
+
|
|
65
|
+
width: 100%;
|
|
66
|
+
height: 100%;
|
|
67
|
+
-webkit-clip-path: url($clipPath);
|
|
68
|
+
clip-path: url($clipPath);
|
|
69
|
+
// Safari render fix
|
|
70
|
+
transform: translateZ(0);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
@keyframes placeHolderShimmer {
|
|
74
|
+
0% {
|
|
75
|
+
background-position: -468px 0;
|
|
76
|
+
}
|
|
77
|
+
100% {
|
|
78
|
+
background-position: 468px 0;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
:host::ng-deep.btn-secondary {
|
|
83
|
+
box-shadow: none;
|
|
84
|
+
border: 1px solid lightgray;
|
|
85
|
+
}
|
|
86
|
+
:host ::ng-deep .ui-select-match-text {
|
|
87
|
+
padding-top: 0;
|
|
88
|
+
display: inline-block;
|
|
89
|
+
width: 100%;
|
|
90
|
+
white-space: nowrap;
|
|
91
|
+
overflow: hidden;
|
|
92
|
+
text-overflow: ellipsis;
|
|
93
|
+
}
|
|
94
|
+
@mixin material-icons-and-expand-icon {
|
|
95
|
+
color: #268bff;
|
|
96
|
+
position: absolute;
|
|
97
|
+
float: right;
|
|
98
|
+
cursor: pointer;
|
|
99
|
+
pointer-events: none;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
@mixin dropdownContainer {
|
|
103
|
+
position: relative;
|
|
104
|
+
margin: 0 0.5625rem 0 0;
|
|
105
|
+
display: flex;
|
|
106
|
+
flex-direction: column;
|
|
107
|
+
}
|
|
@@ -1,87 +1,87 @@
|
|
|
1
|
-
@use "./fonts" as *;
|
|
2
|
-
|
|
3
|
-
.input-group-append {
|
|
4
|
-
margin: auto;
|
|
5
|
-
width: 25px;
|
|
6
|
-
background-color: #d8d8d8;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.input-group {
|
|
10
|
-
background-color: #fff;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.input-group > .form-control {
|
|
14
|
-
width: 150px;
|
|
15
|
-
font-size: 12px;
|
|
16
|
-
border: none;
|
|
17
|
-
background-color: white;
|
|
18
|
-
border-right: 1px solid #d4d4d4;
|
|
19
|
-
cursor: pointer;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.datepicker-form-group {
|
|
23
|
-
border-radius: 2px;
|
|
24
|
-
border: 1px solid #d6d6d6;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
:host ::ng-deep.ngb-dp-arrow.right {
|
|
28
|
-
width: unset !important;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
::ng-deep .ngb-dp-day.disabled {
|
|
32
|
-
opacity: 0.5;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.form-control {
|
|
36
|
-
padding: 7px;
|
|
37
|
-
color: #000;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
:host ::ng-deep .bg-primary {
|
|
41
|
-
background-color: #8bac2a !important;
|
|
42
|
-
&:focus {
|
|
43
|
-
outline: none;
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.form-control {
|
|
48
|
-
&:focus {
|
|
49
|
-
outline: none;
|
|
50
|
-
box-shadow: none;
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
textarea:focus,
|
|
55
|
-
input:focus {
|
|
56
|
-
outline: none;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
::ng-deep .custom-select {
|
|
60
|
-
cursor: pointer;
|
|
61
|
-
&:focus {
|
|
62
|
-
border-color: unset;
|
|
63
|
-
outline: 0;
|
|
64
|
-
box-shadow: unset;
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
.icon-width {
|
|
69
|
-
font-size: 16px;
|
|
70
|
-
cursor: pointer;
|
|
71
|
-
width: 25px;
|
|
72
|
-
display: flex;
|
|
73
|
-
justify-content: center;
|
|
74
|
-
background-color: #fff;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
input.form-control:disabled {
|
|
78
|
-
background-color: #fff !important;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
::ng-deep app-single-select-dropdown {
|
|
82
|
-
width: 19.5rem !important;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.form-control {
|
|
86
|
-
background-color: transparent !important;
|
|
87
|
-
}
|
|
1
|
+
@use "./fonts" as *;
|
|
2
|
+
|
|
3
|
+
.input-group-append {
|
|
4
|
+
margin: auto;
|
|
5
|
+
width: 25px;
|
|
6
|
+
background-color: #d8d8d8;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.input-group {
|
|
10
|
+
background-color: #fff;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.input-group > .form-control {
|
|
14
|
+
width: 150px;
|
|
15
|
+
font-size: 12px;
|
|
16
|
+
border: none;
|
|
17
|
+
background-color: white;
|
|
18
|
+
border-right: 1px solid #d4d4d4;
|
|
19
|
+
cursor: pointer;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.datepicker-form-group {
|
|
23
|
+
border-radius: 2px;
|
|
24
|
+
border: 1px solid #d6d6d6;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
:host ::ng-deep.ngb-dp-arrow.right {
|
|
28
|
+
width: unset !important;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
::ng-deep .ngb-dp-day.disabled {
|
|
32
|
+
opacity: 0.5;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.form-control {
|
|
36
|
+
padding: 7px;
|
|
37
|
+
color: #000;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
:host ::ng-deep .bg-primary {
|
|
41
|
+
background-color: #8bac2a !important;
|
|
42
|
+
&:focus {
|
|
43
|
+
outline: none;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.form-control {
|
|
48
|
+
&:focus {
|
|
49
|
+
outline: none;
|
|
50
|
+
box-shadow: none;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
textarea:focus,
|
|
55
|
+
input:focus {
|
|
56
|
+
outline: none;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
::ng-deep .custom-select {
|
|
60
|
+
cursor: pointer;
|
|
61
|
+
&:focus {
|
|
62
|
+
border-color: unset;
|
|
63
|
+
outline: 0;
|
|
64
|
+
box-shadow: unset;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.icon-width {
|
|
69
|
+
font-size: 16px;
|
|
70
|
+
cursor: pointer;
|
|
71
|
+
width: 25px;
|
|
72
|
+
display: flex;
|
|
73
|
+
justify-content: center;
|
|
74
|
+
background-color: #fff;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
input.form-control:disabled {
|
|
78
|
+
background-color: #fff !important;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
::ng-deep app-single-select-dropdown {
|
|
82
|
+
width: 19.5rem !important;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.form-control {
|
|
86
|
+
background-color: transparent !important;
|
|
87
|
+
}
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
|
|
2
|
-
.cdk-overlay-pane {
|
|
3
|
-
background: transparent;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
.cdk-drag-preview {
|
|
8
|
-
box-sizing: border-box;
|
|
9
|
-
border-radius: 4px;
|
|
10
|
-
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),
|
|
11
|
-
0 8px 10px 1px rgba(0, 0, 0, 0.14),
|
|
12
|
-
0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.cdk-drag-placeholder {
|
|
16
|
-
opacity: 0;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.cdk-drag-animating {
|
|
20
|
-
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
|
|
21
|
-
}
|
|
22
|
-
|
|
1
|
+
|
|
2
|
+
.cdk-overlay-pane {
|
|
3
|
+
background: transparent;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
.cdk-drag-preview {
|
|
8
|
+
box-sizing: border-box;
|
|
9
|
+
border-radius: 4px;
|
|
10
|
+
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),
|
|
11
|
+
0 8px 10px 1px rgba(0, 0, 0, 0.14),
|
|
12
|
+
0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.cdk-drag-placeholder {
|
|
16
|
+
opacity: 0;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.cdk-drag-animating {
|
|
20
|
+
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
|
|
21
|
+
}
|
|
22
|
+
|