@annalib/anna-core 38.0.0 → 38.0.2

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.
Files changed (42) hide show
  1. package/README.md +28 -28
  2. package/fesm2022/annalib-anna-core.mjs +156 -156
  3. package/fesm2022/annalib-anna-core.mjs.map +1 -1
  4. package/package.json +1 -1
  5. package/src/lib/anna-common-scss/_animate.scss +27 -27
  6. package/src/lib/anna-common-scss/_application-spacing.scss +8 -8
  7. package/src/lib/anna-common-scss/_bootstrap-tooltip.scss +29 -29
  8. package/src/lib/anna-common-scss/_button.scss +18 -18
  9. package/src/lib/anna-common-scss/_colors.scss +107 -107
  10. package/src/lib/anna-common-scss/_common-order-listing-table.scss +190 -190
  11. package/src/lib/anna-common-scss/_custom-anna-datepicker.scss +14 -14
  12. package/src/lib/anna-common-scss/_customDropdown.scss +126 -126
  13. package/src/lib/anna-common-scss/_dashboard-partials.scss +107 -107
  14. package/src/lib/anna-common-scss/_date-picker-form.scss +87 -87
  15. package/src/lib/anna-common-scss/_drag-and-drop.scss +22 -22
  16. package/src/lib/anna-common-scss/_easy-filter.scss +139 -139
  17. package/src/lib/anna-common-scss/_edit-filter-popup.scss +80 -80
  18. package/src/lib/anna-common-scss/_email-button.scss +89 -89
  19. package/src/lib/anna-common-scss/_filters.scss +728 -728
  20. package/src/lib/anna-common-scss/_font.scss +9 -9
  21. package/src/lib/anna-common-scss/_fonts.scss +86 -86
  22. package/src/lib/anna-common-scss/_generic-modal.scss +63 -63
  23. package/src/lib/anna-common-scss/_generic-table-common.scss +220 -220
  24. package/src/lib/anna-common-scss/_generic-tooltip-html.scss +69 -69
  25. package/src/lib/anna-common-scss/_gt-table.scss +586 -586
  26. package/src/lib/anna-common-scss/_icons.scss +3 -3
  27. package/src/lib/anna-common-scss/_legend.scss +11 -11
  28. package/src/lib/anna-common-scss/_mat-button-toggle.scss +68 -68
  29. package/src/lib/anna-common-scss/_mat-menu.scss +17 -17
  30. package/src/lib/anna-common-scss/_mixins.scss +187 -187
  31. package/src/lib/anna-common-scss/_modal.scss +37 -37
  32. package/src/lib/anna-common-scss/_popup-filter-toggle-button.scss +37 -37
  33. package/src/lib/anna-common-scss/_scrollbar.scss +14 -14
  34. package/src/lib/anna-common-scss/_show-hide-total-row.scss +27 -27
  35. package/src/lib/anna-common-scss/_sort.scss +30 -30
  36. package/src/lib/anna-common-scss/_toggle.scss +86 -86
  37. package/src/lib/anna-common-scss/style.scss +7 -7
  38. package/src/lib/anna-common-scss/third-party-lib/_angular-material-mat-radio.scss +26 -26
  39. package/src/lib/anna-common-scss/third-party-lib/_anna-mat-button-toggle-group-size-lg.scss +39 -39
  40. package/src/lib/anna-common-scss/third-party-lib/_mat-autocomplete.scss +31 -31
  41. package/src/lib/anna-common-scss/user-module-common-scss/_user-module.scss +65 -65
  42. package/src/lib/anna-common-scss/user-module-common-scss/_user-tag-status.scss +111 -111
@@ -1,65 +1,65 @@
1
- @mixin tags($backgroundColor) {
2
- height: 18px;
3
- margin: 0px 8px;
4
- padding: 0px 6px;
5
- border-radius: 2px;
6
- background-color: $backgroundColor;
7
- color: var(--body-color);
8
- font-family: Roboto;
9
- font-size: 12px;
10
- font-weight: bold;
11
- }
12
-
13
- @mixin floatTagRight() {
14
- float: right;
15
- display: inline-block;
16
- margin: 0;
17
- }
18
-
19
- @mixin modal-button($backgroundColor, $color, $border) {
20
- color: $color;
21
- background-color: $backgroundColor;
22
- border: $border;
23
- font-family: Roboto;
24
- font-size: var(--page-link-fs);
25
- font-weight: 400;
26
- font-stretch: normal;
27
- font-style: normal;
28
- line-height: normal;
29
- letter-spacing: normal;
30
- padding: 0.375rem 2.625rem;
31
- border-radius: 0.25rem;
32
- width: 49%;
33
- }
34
-
35
- :host ::ng-deep anna-core-non-editable-generic-table-lib .mdi-pencil {
36
- cursor: pointer;
37
- color: var(--primary-blue-color);
38
- font-size: 14px;
39
- }
40
-
41
- :host ::ng-deep anna-core-non-editable-generic-table-lib .mdi-account-remove {
42
- cursor: pointer;
43
- color: var(--primary-red-color);
44
- font-size: 14px;
45
- float: right;
46
- }
47
-
48
- .count-text {
49
- font-size: var(--page-message-content-fs);
50
- font-family: Roboto;
51
- font-style: italic;
52
- margin-top: 8px;
53
- color: var(--primary-text-color-medium);
54
- b {
55
- color: var(--font-color);
56
- }
57
- }
58
-
59
- .additional-data-color-text {
60
- color: var(--disabled-text-color-darker) !important;
61
- }
62
-
63
- .italic {
64
- font-style: italic;
65
- }
1
+ @mixin tags($backgroundColor) {
2
+ height: 18px;
3
+ margin: 0px 8px;
4
+ padding: 0px 6px;
5
+ border-radius: 2px;
6
+ background-color: $backgroundColor;
7
+ color: var(--body-color);
8
+ font-family: Roboto;
9
+ font-size: 12px;
10
+ font-weight: bold;
11
+ }
12
+
13
+ @mixin floatTagRight() {
14
+ float: right;
15
+ display: inline-block;
16
+ margin: 0;
17
+ }
18
+
19
+ @mixin modal-button($backgroundColor, $color, $border) {
20
+ color: $color;
21
+ background-color: $backgroundColor;
22
+ border: $border;
23
+ font-family: Roboto;
24
+ font-size: var(--page-link-fs);
25
+ font-weight: 400;
26
+ font-stretch: normal;
27
+ font-style: normal;
28
+ line-height: normal;
29
+ letter-spacing: normal;
30
+ padding: 0.375rem 2.625rem;
31
+ border-radius: 0.25rem;
32
+ width: 49%;
33
+ }
34
+
35
+ :host ::ng-deep anna-core-non-editable-generic-table-lib .mdi-pencil {
36
+ cursor: pointer;
37
+ color: var(--primary-blue-color);
38
+ font-size: 14px;
39
+ }
40
+
41
+ :host ::ng-deep anna-core-non-editable-generic-table-lib .mdi-account-remove {
42
+ cursor: pointer;
43
+ color: var(--primary-red-color);
44
+ font-size: 14px;
45
+ float: right;
46
+ }
47
+
48
+ .count-text {
49
+ font-size: var(--page-message-content-fs);
50
+ font-family: Roboto;
51
+ font-style: italic;
52
+ margin-top: 8px;
53
+ color: var(--primary-text-color-medium);
54
+ b {
55
+ color: var(--font-color);
56
+ }
57
+ }
58
+
59
+ .additional-data-color-text {
60
+ color: var(--disabled-text-color-darker) !important;
61
+ }
62
+
63
+ .italic {
64
+ font-style: italic;
65
+ }
@@ -1,111 +1,111 @@
1
- @use "anna-common-scss/gt-table" as *;
2
-
3
- :host {
4
- --secondary-green-color: #e1ffed;
5
- --secondary-blue-color: #eef6ff;
6
- --secondary-red-color: #fff0ef;
7
- --secondary-purple-color: #f6e6f5;
8
- }
9
- $invitedPrimaryColor: var(--primary-yellow-color);
10
- $OnboardingPrimaryColor: var(--primary-purple-color);
11
- $OnboardedPrimaryColor: var(--ternary-green-color);
12
- $InactivePrimaryColor: var(--ternary-blue-color);
13
- $DeletedPrimaryColor: var(--primary-red-color);
14
- $coPilotPrimaryColor: var(--primary-green-color);
15
-
16
- $invitedSecColor: var(--secondary-yellow-color);
17
- $OnboardingSecColor: var(--secondary-purple-color);
18
- $OnboardedSecColor: var(--secondary-green-color);
19
- $InactiveSecColor: var(--secondary-blue-color);
20
- $DeletedSecColor: var(--secondary-red-color);
21
- $coPilotSecondaryColor: #e5f1c1;
22
- $adminPrivilegeIconColor: #e48a37;
23
- $ratePilotColor: #1565c0;
24
-
25
- @mixin tags($backgroundColor) {
26
- height: 18px;
27
- margin: 0px 8px;
28
- padding: 0px 6px;
29
- border-radius: 2px;
30
- background-color: $backgroundColor;
31
- color: #ffffff;
32
- font-family: Roboto;
33
- font-size: 12px;
34
- font-weight: bold;
35
- }
36
-
37
- @mixin floatTagRight() {
38
- float: right;
39
- display: inline-block;
40
- margin: 0;
41
- }
42
-
43
- @mixin rowStyling($backgroundColor, $buttonColor, $shadow-map) {
44
- // background-color: $backgroundColor !important;
45
- @include table-data((), $shadow-map, $backgroundColor);
46
- .status-btn {
47
- background-color: $buttonColor !important;
48
- }
49
- }
50
-
51
- .Invited-tag {
52
- @include tags($invitedPrimaryColor);
53
- @include floatTagRight();
54
- }
55
-
56
- .Onboarding-tag {
57
- @include tags($OnboardingPrimaryColor);
58
- @include floatTagRight();
59
- }
60
-
61
- .Active-tag {
62
- @include tags($OnboardedPrimaryColor);
63
- @include floatTagRight();
64
- }
65
-
66
- .Inactive-tag {
67
- @include tags($InactivePrimaryColor);
68
- @include floatTagRight();
69
- }
70
-
71
- .Deleted-tag {
72
- @include tags($DeletedPrimaryColor);
73
- @include floatTagRight();
74
- }
75
-
76
- @mixin user-row-status($shadow-map) {
77
- .status-btn {
78
- color: var(--body-color) !important;
79
- padding: 2px 6px !important;
80
- font-weight: bold !important;
81
- border: none !important;
82
- border-radius: 2px;
83
- line-height: normal !important;
84
- }
85
-
86
- tr.Invited {
87
- @include rowStyling($invitedSecColor, $invitedPrimaryColor, $shadow-map);
88
- }
89
- tr.Onboarding {
90
- @include rowStyling($OnboardingSecColor, $OnboardingPrimaryColor, $shadow-map);
91
- }
92
- tr.Active {
93
- @include rowStyling($OnboardedSecColor, $OnboardedPrimaryColor, $shadow-map);
94
- }
95
- tr.Inactive {
96
- @include rowStyling($InactiveSecColor, $InactivePrimaryColor, $shadow-map);
97
- }
98
- tr.CoPilot {
99
- @include rowStyling($coPilotSecondaryColor, $OnboardedPrimaryColor, $shadow-map);
100
- outline: 1px solid $coPilotPrimaryColor !important;
101
- outline-offset: -1px !important;
102
- }
103
- tr.Deleted {
104
- @include rowStyling($DeletedSecColor, $DeletedPrimaryColor, $shadow-map);
105
- }
106
- tr.Copilot-onboarding-status {
107
- @include rowStyling($coPilotSecondaryColor, $OnboardingPrimaryColor, $shadow-map);
108
- outline: 1px solid $coPilotPrimaryColor !important;
109
- outline-offset: -1px !important;
110
- }
111
- }
1
+ @use "anna-common-scss/gt-table" as *;
2
+
3
+ :host {
4
+ --secondary-green-color: #e1ffed;
5
+ --secondary-blue-color: #eef6ff;
6
+ --secondary-red-color: #fff0ef;
7
+ --secondary-purple-color: #f6e6f5;
8
+ }
9
+ $invitedPrimaryColor: var(--primary-yellow-color);
10
+ $OnboardingPrimaryColor: var(--primary-purple-color);
11
+ $OnboardedPrimaryColor: var(--ternary-green-color);
12
+ $InactivePrimaryColor: var(--ternary-blue-color);
13
+ $DeletedPrimaryColor: var(--primary-red-color);
14
+ $coPilotPrimaryColor: var(--primary-green-color);
15
+
16
+ $invitedSecColor: var(--secondary-yellow-color);
17
+ $OnboardingSecColor: var(--secondary-purple-color);
18
+ $OnboardedSecColor: var(--secondary-green-color);
19
+ $InactiveSecColor: var(--secondary-blue-color);
20
+ $DeletedSecColor: var(--secondary-red-color);
21
+ $coPilotSecondaryColor: #e5f1c1;
22
+ $adminPrivilegeIconColor: #e48a37;
23
+ $ratePilotColor: #1565c0;
24
+
25
+ @mixin tags($backgroundColor) {
26
+ height: 18px;
27
+ margin: 0px 8px;
28
+ padding: 0px 6px;
29
+ border-radius: 2px;
30
+ background-color: $backgroundColor;
31
+ color: #ffffff;
32
+ font-family: Roboto;
33
+ font-size: 12px;
34
+ font-weight: bold;
35
+ }
36
+
37
+ @mixin floatTagRight() {
38
+ float: right;
39
+ display: inline-block;
40
+ margin: 0;
41
+ }
42
+
43
+ @mixin rowStyling($backgroundColor, $buttonColor, $shadow-map) {
44
+ // background-color: $backgroundColor !important;
45
+ @include table-data((), $shadow-map, $backgroundColor);
46
+ .status-btn {
47
+ background-color: $buttonColor !important;
48
+ }
49
+ }
50
+
51
+ .Invited-tag {
52
+ @include tags($invitedPrimaryColor);
53
+ @include floatTagRight();
54
+ }
55
+
56
+ .Onboarding-tag {
57
+ @include tags($OnboardingPrimaryColor);
58
+ @include floatTagRight();
59
+ }
60
+
61
+ .Active-tag {
62
+ @include tags($OnboardedPrimaryColor);
63
+ @include floatTagRight();
64
+ }
65
+
66
+ .Inactive-tag {
67
+ @include tags($InactivePrimaryColor);
68
+ @include floatTagRight();
69
+ }
70
+
71
+ .Deleted-tag {
72
+ @include tags($DeletedPrimaryColor);
73
+ @include floatTagRight();
74
+ }
75
+
76
+ @mixin user-row-status($shadow-map) {
77
+ .status-btn {
78
+ color: var(--body-color) !important;
79
+ padding: 2px 6px !important;
80
+ font-weight: bold !important;
81
+ border: none !important;
82
+ border-radius: 2px;
83
+ line-height: normal !important;
84
+ }
85
+
86
+ tr.Invited {
87
+ @include rowStyling($invitedSecColor, $invitedPrimaryColor, $shadow-map);
88
+ }
89
+ tr.Onboarding {
90
+ @include rowStyling($OnboardingSecColor, $OnboardingPrimaryColor, $shadow-map);
91
+ }
92
+ tr.Active {
93
+ @include rowStyling($OnboardedSecColor, $OnboardedPrimaryColor, $shadow-map);
94
+ }
95
+ tr.Inactive {
96
+ @include rowStyling($InactiveSecColor, $InactivePrimaryColor, $shadow-map);
97
+ }
98
+ tr.CoPilot {
99
+ @include rowStyling($coPilotSecondaryColor, $OnboardedPrimaryColor, $shadow-map);
100
+ outline: 1px solid $coPilotPrimaryColor !important;
101
+ outline-offset: -1px !important;
102
+ }
103
+ tr.Deleted {
104
+ @include rowStyling($DeletedSecColor, $DeletedPrimaryColor, $shadow-map);
105
+ }
106
+ tr.Copilot-onboarding-status {
107
+ @include rowStyling($coPilotSecondaryColor, $OnboardingPrimaryColor, $shadow-map);
108
+ outline: 1px solid $coPilotPrimaryColor !important;
109
+ outline-offset: -1px !important;
110
+ }
111
+ }