i-tech-shared-components 1.4.41 → 1.4.42

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 (45) hide show
  1. package/README.md +26 -26
  2. package/assets/back.svg +3 -3
  3. package/assets/links/T3/audit-trail.svg +3 -3
  4. package/assets/links/T3/automation.svg +5 -5
  5. package/assets/links/T3/contact-person.svg +10 -10
  6. package/assets/links/T3/contract.svg +3 -3
  7. package/assets/links/T3/domiciles.svg +3 -3
  8. package/assets/links/T3/drivers.svg +3 -3
  9. package/assets/links/T3/general.svg +3 -3
  10. package/assets/links/T3/ile.svg +3 -3
  11. package/assets/links/T3/integrations.svg +3 -3
  12. package/assets/links/T3/license-type.svg +7 -7
  13. package/assets/links/T3/monitoring.svg +7 -7
  14. package/assets/links/T3/reports.svg +3 -3
  15. package/assets/links/T3/schedule.svg +3 -3
  16. package/assets/links/T3/settings.svg +3 -3
  17. package/assets/links/T3/units.svg +4 -4
  18. package/assets/links/T3/usps.svg +3 -3
  19. package/assets/links/TMT/audit-trail.svg +3 -3
  20. package/assets/links/TMT/loads.svg +7 -7
  21. package/assets/links/TMT/settings.svg +3 -3
  22. package/assets/logos/full/ORGANIZATION.svg +9 -9
  23. package/assets/logos/full/T3.svg +13 -13
  24. package/assets/logos/small/ORGANIZATION.svg +9 -9
  25. package/assets/logos/small/T3.svg +10 -10
  26. package/assets/selected_organization.svg +3 -3
  27. package/assets/toggle-state-left.svg +3 -3
  28. package/assets/toggle-state-right.svg +10 -10
  29. package/fesm2022/i-tech-shared-components.mjs +70 -70
  30. package/fesm2022/i-tech-shared-components.mjs.map +1 -1
  31. package/package.json +1 -1
  32. package/public-api.d.ts +1 -0
  33. package/theme/_ag-grid.scss +245 -245
  34. package/theme/_buttons.scss +68 -68
  35. package/theme/_color_themes.scss +136 -136
  36. package/theme/_date_picker.scss +77 -77
  37. package/theme/_date_time_picker.scss +87 -87
  38. package/theme/_form_fields.scss +117 -117
  39. package/theme/_icon-button.scss +165 -165
  40. package/theme/_label.scss +238 -238
  41. package/theme/_mat-selects.scss +281 -281
  42. package/theme/_menu.scss +13 -13
  43. package/theme/_text_input.scss +29 -29
  44. package/theme/variables/_colors.scss +20 -20
  45. package/theme.scss +32 -32
@@ -1,20 +1,20 @@
1
- :root{
2
- --Error-Background: #950E2B;
3
- --error30: #B41231;
4
- --error60: #DE4558;
5
- --neutral20: #30353D;
6
- --neutral30: #424954;
7
- --neutral50: #647081;
8
- --neutral80: #BBBFC7;
9
- --neutral90: #D7D9DE;
10
- --neutral99: #F9F9FC;
11
- --primary40: #008B33;
12
- --primary99: #EFFAF1;
13
- --secondary25: #1F4085;
14
- --secondary50: #4364A6;
15
- --secondary70: #718ECB;
16
- --secondary80: #97B0E3;
17
- --secondary90: #C1D2F5;
18
- --secondary95: #DDE7FC;
19
- --secondary99: #EEF4FE;
20
- }
1
+ :root{
2
+ --Error-Background: #950E2B;
3
+ --error30: #B41231;
4
+ --error60: #DE4558;
5
+ --neutral20: #30353D;
6
+ --neutral30: #424954;
7
+ --neutral50: #647081;
8
+ --neutral80: #BBBFC7;
9
+ --neutral90: #D7D9DE;
10
+ --neutral99: #F9F9FC;
11
+ --primary40: #008B33;
12
+ --primary99: #EFFAF1;
13
+ --secondary25: #1F4085;
14
+ --secondary50: #4364A6;
15
+ --secondary70: #718ECB;
16
+ --secondary80: #97B0E3;
17
+ --secondary90: #C1D2F5;
18
+ --secondary95: #DDE7FC;
19
+ --secondary99: #EEF4FE;
20
+ }
package/theme.scss CHANGED
@@ -1,32 +1,32 @@
1
- @use '@angular/material' as mat;
2
- @use "./theme/buttons.scss";
3
- @use "./theme/variables/colors.scss";
4
- @use "./theme/label.scss";
5
- @use "./theme/icon-button.scss";
6
- @use "./theme/_color_themes.scss" as color-themes;
7
- @use "./theme/date_picker.scss";
8
- @use "./theme/text_input.scss";
9
- @use "./theme/form_fields.scss";
10
- @use "./theme/mat-selects.scss";
11
- @use "./theme/menu.scss";
12
- @use "./theme/ag-grid.scss";
13
- @use "./theme/date_time_picker.scss";
14
-
15
- @import url("https://fonts.googleapis.com/icon?family=Material+Icons");
16
-
17
- @include mat.core();
18
-
19
- body {
20
- // BASE CSS PROPERTIES
21
- margin: 0;
22
- font-family: "Noto Sans";
23
- font-style: normal;
24
- font-size: 12px;
25
-
26
- @include mat.core-theme(color-themes.$m3-light-theme);
27
- @include mat.all-component-themes(color-themes.$m3-light-theme);
28
- @include mat.color-variants-backwards-compatibility(color-themes.$m3-light-theme);
29
- .new-mat-autocomplete {
30
- @include mat.button-density(-3);
31
- };
32
- }
1
+ @use '@angular/material' as mat;
2
+ @use "./theme/buttons.scss";
3
+ @use "./theme/variables/colors.scss";
4
+ @use "./theme/label.scss";
5
+ @use "./theme/icon-button.scss";
6
+ @use "./theme/_color_themes.scss" as color-themes;
7
+ @use "./theme/date_picker.scss";
8
+ @use "./theme/text_input.scss";
9
+ @use "./theme/form_fields.scss";
10
+ @use "./theme/mat-selects.scss";
11
+ @use "./theme/menu.scss";
12
+ @use "./theme/ag-grid.scss";
13
+ @use "./theme/date_time_picker.scss";
14
+
15
+ @import url("https://fonts.googleapis.com/icon?family=Material+Icons");
16
+
17
+ @include mat.core();
18
+
19
+ body {
20
+ // BASE CSS PROPERTIES
21
+ margin: 0;
22
+ font-family: "Noto Sans";
23
+ font-style: normal;
24
+ font-size: 12px;
25
+
26
+ @include mat.core-theme(color-themes.$m3-light-theme);
27
+ @include mat.all-component-themes(color-themes.$m3-light-theme);
28
+ @include mat.color-variants-backwards-compatibility(color-themes.$m3-light-theme);
29
+ .new-mat-autocomplete {
30
+ @include mat.button-density(-3);
31
+ };
32
+ }