@igo2/core 19.0.0-next.29 → 19.0.0-next.30

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/fesm2022/igo2-core-config.mjs +2 -2
  2. package/fesm2022/igo2-core-config.mjs.map +1 -1
  3. package/fesm2022/igo2-core-message.mjs +1 -1
  4. package/fesm2022/igo2-core-message.mjs.map +1 -1
  5. package/fesm2022/igo2-core-monitoring.mjs.map +1 -1
  6. package/message/src/message.theme.scss +21 -0
  7. package/monitoring/sentry/sentry.interface.d.ts +1 -1
  8. package/package.json +8 -3
  9. package/src/core.theme.scss +5 -0
  10. package/src/packages.import.scss +4 -5
  11. package/src/theming/all-theme.scss +1 -6
  12. package/src/theming/prebuilt-themes/blue-theme.scss +5 -27
  13. package/src/theming/prebuilt-themes/bluedark-theme.scss +10 -61
  14. package/src/theming/prebuilt-themes/bluedq-theme.scss +10 -61
  15. package/src/theming/prebuilt-themes/teal-theme.scss +5 -26
  16. package/src/theming/themes/_blue-theme.scss +139 -0
  17. package/src/theming/themes/_bluedark-theme.scss +139 -0
  18. package/src/theming/themes/_bluedq-theme.scss +139 -0
  19. package/src/theming/themes/_index.scss +5 -0
  20. package/src/theming/themes/_teal-theme.scss +157 -0
  21. package/src/theming/themes/_theme.scss +49 -0
  22. package/src/theming/themes/overrides/_button.scss +79 -0
  23. package/src/theming/themes/overrides/_index.scss +7 -0
  24. package/src/theming/themes/overrides/_sidenav.scss +9 -0
  25. package/theming/prebuilt-themes/blue-theme.css +1000 -2749
  26. package/theming/prebuilt-themes/bluedark-theme.css +1000 -2749
  27. package/theming/prebuilt-themes/bluedq-theme.css +1000 -2749
  28. package/theming/prebuilt-themes/teal-theme.css +1000 -2749
  29. package/message/src/message.theming.scss +0 -26
  30. package/src/core-theme.scss +0 -5
  31. package/src/theming/material-theme-override.scss +0 -39
  32. package/src/theming/prebuilt-themes/bluegrey-theme.scss +0 -27
  33. package/src/theming/prebuilt-themes/dark-theme.scss +0 -27
  34. package/src/theming/prebuilt-themes/deeppurple-theme.scss +0 -27
  35. package/src/theming/prebuilt-themes/indigo-theme.scss +0 -27
  36. package/src/theming/prebuilt-themes/orange-theme.scss +0 -27
  37. package/src/theming/typography.scss +0 -28
  38. package/theming/prebuilt-themes/bluegrey-theme.css +0 -2972
  39. package/theming/prebuilt-themes/dark-theme.css +0 -2972
  40. package/theming/prebuilt-themes/deeppurple-theme.css +0 -2972
  41. package/theming/prebuilt-themes/indigo-theme.css +0 -2972
  42. package/theming/prebuilt-themes/orange-theme.css +0 -2972
@@ -1,26 +0,0 @@
1
- @use 'sass:map';
2
- @use '@angular/material' as mat;
3
-
4
- @mixin igo-message-theming($theme) {
5
- $primary: map.get($theme, primary);
6
- $accent: map.get($theme, accent);
7
- $warn: map.get($theme, warn);
8
- $typography: mat.m2-get-typography-config($theme);
9
-
10
- .toast-error {
11
- background-color: mat.m2-get-color-from-palette($warn) !important;
12
- }
13
-
14
- .toast-info {
15
- background-color: mat.m2-get-color-from-palette($primary) !important;
16
- }
17
-
18
- .toast-no-icon {
19
- background-image: none;
20
- padding-left: 6%;
21
- }
22
-
23
- .toast-title {
24
- font-weight: bold;
25
- }
26
- }
@@ -1,5 +0,0 @@
1
- @use '../message/src/message.theming.scss' as message;
2
-
3
- @mixin core-component-themes($theme) {
4
- @include message.igo-message-theming($theme);
5
- }
@@ -1,39 +0,0 @@
1
- @use 'sass:map';
2
- @use '@angular/material' as mat;
3
-
4
- @mixin material-override($theme) {
5
- @include mat-button-toggle($theme);
6
- @include mat-tab-group($theme);
7
- }
8
-
9
- @mixin mat-tab-group($theme) {
10
- mat-tab-group,
11
- mat-tab-group ::ng-deep .mat-mdc-tab-body-wrapper {
12
- height: 100%;
13
- overflow: hidden;
14
- }
15
- }
16
-
17
- @mixin mat-button-toggle($theme) {
18
- $accent: map.get($theme, accent);
19
- $dark: mat.m2-define-palette(mat.$m2-grey-palette, 800, 700, 900);
20
- $density: mat.m2-get-density-config($theme);
21
-
22
- $theme: map.merge(
23
- $theme,
24
- (
25
- density: $density - 3
26
- )
27
- );
28
-
29
- @include mat.button-toggle-density($theme);
30
-
31
- mat-button-toggle {
32
- color: black !important;
33
-
34
- &.mat-button-toggle-checked {
35
- background-color: mat.m2-get-color-from-palette($accent);
36
- color: mat.m2-get-color-from-palette($dark);
37
- }
38
- }
39
- }
@@ -1,27 +0,0 @@
1
- @use '@angular/material' as mat;
2
- @use '../all-theme';
3
- @use '../typography';
4
-
5
- $primary: mat.m2-define-palette(mat.$m2-blue-grey-palette);
6
- $accent: mat.m2-define-palette(mat.$m2-pink-palette, A200, A100, A400);
7
- $warn: mat.m2-define-palette(mat.$m2-deep-orange-palette);
8
- $typography: typography.$igo-typography;
9
-
10
- $theme: mat.m2-define-light-theme(
11
- (
12
- color: (
13
- primary: $primary,
14
- accent: $accent,
15
- warn: $warn
16
- ),
17
- typography: $typography,
18
- density: 0
19
- )
20
- );
21
-
22
- @include mat.elevation-classes();
23
- @include mat.app-background();
24
- @include mat.typography-hierarchy($typography);
25
- @include mat.all-component-themes($theme);
26
-
27
- @include all-theme.all-component-themes($theme);
@@ -1,27 +0,0 @@
1
- @use '@angular/material' as mat;
2
- @use '../all-theme';
3
- @use '../typography';
4
-
5
- $primary: mat.m2-define-palette(mat.$m2-blue-grey-palette);
6
- $accent: mat.m2-define-palette(mat.$m2-pink-palette, A200, A100, A400);
7
- $warn: mat.m2-define-palette(mat.$m2-deep-orange-palette);
8
- $typography: typography.$igo-typography;
9
-
10
- $theme: mat.m2-define-dark-theme(
11
- (
12
- color: (
13
- primary: $primary,
14
- accent: $accent,
15
- warn: $warn
16
- ),
17
- typography: $typography,
18
- density: 0
19
- )
20
- );
21
-
22
- @include mat.elevation-classes();
23
- @include mat.app-background();
24
- @include mat.typography-hierarchy($typography);
25
- @include mat.all-component-themes($theme);
26
-
27
- @include all-theme.all-component-themes($theme);
@@ -1,27 +0,0 @@
1
- @use '@angular/material' as mat;
2
- @use '../all-theme';
3
- @use '../typography';
4
-
5
- $primary: mat.m2-define-palette(mat.$m2-deep-purple-palette);
6
- $accent: mat.m2-define-palette(mat.$m2-amber-palette, A200, A100, A400);
7
- $warn: mat.m2-define-palette(mat.$m2-red-palette);
8
- $typography: typography.$igo-typography;
9
-
10
- $theme: mat.m2-define-light-theme(
11
- (
12
- color: (
13
- primary: $primary,
14
- accent: $accent,
15
- warn: $warn
16
- ),
17
- typography: $typography,
18
- density: 0
19
- )
20
- );
21
-
22
- @include mat.elevation-classes();
23
- @include mat.app-background();
24
- @include mat.typography-hierarchy($typography);
25
- @include mat.all-component-themes($theme);
26
-
27
- @include all-theme.all-component-themes($theme);
@@ -1,27 +0,0 @@
1
- @use '@angular/material' as mat;
2
- @use '../all-theme';
3
- @use '../typography';
4
-
5
- $primary: mat.m2-define-palette(mat.$m2-indigo-palette);
6
- $accent: mat.m2-define-palette(mat.$m2-pink-palette, A200, A100, A400);
7
- $warn: mat.m2-define-palette(mat.$m2-red-palette);
8
- $typography: typography.$igo-typography;
9
-
10
- $theme: mat.m2-define-light-theme(
11
- (
12
- color: (
13
- primary: $primary,
14
- accent: $accent,
15
- warn: $warn
16
- ),
17
- typography: $typography,
18
- density: 0
19
- )
20
- );
21
-
22
- @include mat.elevation-classes();
23
- @include mat.app-background();
24
- @include mat.typography-hierarchy($typography);
25
- @include mat.all-component-themes($theme);
26
-
27
- @include all-theme.all-component-themes($theme);
@@ -1,27 +0,0 @@
1
- @use '@angular/material' as mat;
2
- @use '../all-theme';
3
- @use '../typography';
4
-
5
- $primary: mat.m2-define-palette(mat.$m2-orange-palette, 800);
6
- $accent: mat.m2-define-palette(mat.$m2-light-blue-palette, 600, 100, 800);
7
- $warn: mat.m2-define-palette(mat.$m2-red-palette, 600);
8
- $typography: typography.$igo-typography;
9
-
10
- $theme: mat.m2-define-light-theme(
11
- (
12
- color: (
13
- primary: $primary,
14
- accent: $accent,
15
- warn: $warn
16
- ),
17
- typography: $typography,
18
- density: 0
19
- )
20
- );
21
-
22
- @include mat.elevation-classes();
23
- @include mat.app-background();
24
- @include mat.typography-hierarchy($typography);
25
- @include mat.all-component-themes($theme);
26
-
27
- @include all-theme.all-component-themes($theme);
@@ -1,28 +0,0 @@
1
- @use '@angular/material' as mat;
2
-
3
- $igo-typography: mat.m2-define-typography-config(
4
- $headline-1: mat.m2-define-typography-level(110px, 110px, 500),
5
- $headline-2: mat.m2-define-typography-level(54px, 54px, 500),
6
- $headline-3: mat.m2-define-typography-level(43px, 46px, 500),
7
- $headline-4: mat.m2-define-typography-level(32px, 38px, 500),
8
- // h1
9
- $headline-5: mat.m2-define-typography-level(24px, 32px, 400),
10
- // h2
11
- $headline-6: mat.m2-define-typography-level(20px, 30px, 400),
12
- // h3
13
- $subtitle-1: mat.m2-define-typography-level(16px, 26px, 500),
14
- // h4
15
- $subtitle-2: mat.m2-define-typography-level(12px, 22px, 500),
16
- $body-1: mat.m2-define-typography-level(14px, 22px, 400),
17
- $body-2: mat.m2-define-typography-level(12px, 18px, 400),
18
- $caption: mat.m2-define-typography-level(12px, 18px, 400),
19
- $button: mat.m2-define-typography-level(13px, 13px, 500)
20
- );
21
-
22
- // WORKAROUND, mat-typography bad area of intersection, h4 is using mat-body-1
23
- // https://github.com/angular/components/issues/26351
24
- h4 {
25
- font-size: 14px !important;
26
- line-height: 22px !important;
27
- font-weight: 500 !important;
28
- }