@igo2/core 19.0.0-next.9 → 19.0.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/environment/environment.interface.d.ts +2 -0
- package/fesm2022/igo2-core-activity.mjs +10 -10
- package/fesm2022/igo2-core-activity.mjs.map +1 -1
- package/fesm2022/igo2-core-analytics.mjs +3 -3
- package/fesm2022/igo2-core-analytics.mjs.map +1 -1
- package/fesm2022/igo2-core-config.mjs +9 -9
- package/fesm2022/igo2-core-config.mjs.map +1 -1
- package/fesm2022/igo2-core-language.mjs +66 -24
- package/fesm2022/igo2-core-language.mjs.map +1 -1
- package/fesm2022/igo2-core-media.mjs +3 -3
- package/fesm2022/igo2-core-media.mjs.map +1 -1
- package/fesm2022/igo2-core-message.mjs +8 -8
- package/fesm2022/igo2-core-message.mjs.map +1 -1
- package/fesm2022/igo2-core-monitoring.mjs +52 -53
- package/fesm2022/igo2-core-monitoring.mjs.map +1 -1
- package/fesm2022/igo2-core-network.mjs +3 -3
- package/fesm2022/igo2-core-network.mjs.map +1 -1
- package/fesm2022/igo2-core-regex.mjs +3 -3
- package/fesm2022/igo2-core-regex.mjs.map +1 -1
- package/fesm2022/igo2-core-request.mjs +14 -14
- package/fesm2022/igo2-core-request.mjs.map +1 -1
- package/fesm2022/igo2-core-route.mjs +45 -29
- package/fesm2022/igo2-core-route.mjs.map +1 -1
- package/fesm2022/igo2-core-storage.mjs +3 -3
- package/fesm2022/igo2-core-storage.mjs.map +1 -1
- package/fesm2022/igo2-core.mjs +4 -4
- package/fesm2022/igo2-core.mjs.map +1 -1
- package/language/shared/language.loader.d.ts +2 -0
- package/language/shared/language.provider.d.ts +8 -2
- package/locale/en.json +1 -1
- package/locale/fr.json +1 -1
- package/message/src/message.theme.scss +21 -0
- package/monitoring/public_api.d.ts +0 -1
- package/monitoring/sentry/sentry.interface.d.ts +3 -1
- package/monitoring/sentry/sentry.provider.d.ts +14 -2
- package/monitoring/sentry/sentry.utils.d.ts +0 -3
- package/monitoring/shared/index.d.ts +1 -0
- package/monitoring/shared/monitoring.d.ts +3 -0
- package/package.json +11 -6
- package/route/route.interface.d.ts +34 -21
- package/route/route.service.d.ts +5 -1
- package/src/core.theme.scss +5 -0
- package/src/packages.import.scss +4 -5
- package/src/theming/all-theme.scss +1 -6
- package/src/theming/prebuilt-themes/blue-theme.scss +5 -27
- package/src/theming/prebuilt-themes/bluedark-theme.scss +10 -61
- package/src/theming/prebuilt-themes/bluedq-theme.scss +10 -61
- package/src/theming/prebuilt-themes/teal-theme.scss +5 -26
- package/src/theming/themes/_blue-theme.scss +139 -0
- package/src/theming/themes/_bluedark-theme.scss +139 -0
- package/src/theming/themes/_bluedq-theme.scss +139 -0
- package/src/theming/themes/_index.scss +5 -0
- package/src/theming/themes/_teal-theme.scss +157 -0
- package/src/theming/themes/_theme.scss +49 -0
- package/src/theming/themes/overrides/_button.scss +79 -0
- package/src/theming/themes/overrides/_index.scss +7 -0
- package/src/theming/themes/overrides/_sidenav.scss +9 -0
- package/style/all-style.css +4 -0
- package/theming/prebuilt-themes/blue-theme.css +1000 -2741
- package/theming/prebuilt-themes/bluedark-theme.css +1000 -2741
- package/theming/prebuilt-themes/bluedq-theme.css +1000 -2741
- package/theming/prebuilt-themes/teal-theme.css +1000 -2741
- package/message/src/message.theming.scss +0 -26
- package/monitoring/monitoring.provider.d.ts +0 -4
- package/src/core-theme.scss +0 -5
- package/src/theming/material-theme-override.scss +0 -39
- package/src/theming/prebuilt-themes/bluegrey-theme.scss +0 -27
- package/src/theming/prebuilt-themes/dark-theme.scss +0 -27
- package/src/theming/prebuilt-themes/deeppurple-theme.scss +0 -27
- package/src/theming/prebuilt-themes/indigo-theme.scss +0 -27
- package/src/theming/prebuilt-themes/orange-theme.scss +0 -27
- package/src/theming/typography.scss +0 -28
- package/theming/prebuilt-themes/bluegrey-theme.css +0 -2964
- package/theming/prebuilt-themes/dark-theme.css +0 -2964
- package/theming/prebuilt-themes/deeppurple-theme.css +0 -2964
- package/theming/prebuilt-themes/indigo-theme.css +0 -2964
- package/theming/prebuilt-themes/orange-theme.css +0 -2964
|
@@ -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,4 +0,0 @@
|
|
|
1
|
-
import { EnvironmentProviders, InjectionToken, Provider } from '@angular/core';
|
|
2
|
-
import { AnyMonitoringOptions, MonitoringOptions } from './shared';
|
|
3
|
-
export declare const MONITORING_OPTIONS: InjectionToken<MonitoringOptions>;
|
|
4
|
-
export declare function provideMonitoring(options: AnyMonitoringOptions | null): (EnvironmentProviders | Provider)[];
|
package/src/core-theme.scss
DELETED
|
@@ -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
|
-
}
|