@igo2/core 16.0.2 → 16.1.1
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/esm2022/lib/activity/activity.interceptor.mjs +6 -6
- package/esm2022/lib/activity/activity.module.mjs +12 -12
- package/esm2022/lib/activity/activity.service.mjs +9 -9
- package/esm2022/lib/analytics/shared/analytics.interface.mjs +1 -1
- package/esm2022/lib/analytics/shared/analytics.service.mjs +12 -9
- package/esm2022/lib/compression/compression.service.mjs +9 -9
- package/esm2022/lib/config/config.module.mjs +12 -12
- package/esm2022/lib/config/config.service.mjs +14 -10
- package/esm2022/lib/config/version.mjs +3 -3
- package/esm2022/lib/core.module.mjs +32 -33
- package/esm2022/lib/environment/environment.interface.mjs +1 -1
- package/esm2022/lib/gesture/gesture.module.mjs +12 -13
- package/esm2022/lib/gesture/gesture.provider.mjs +6 -6
- package/esm2022/lib/language/language.module.mjs +19 -20
- package/esm2022/lib/language/shared/language.service.mjs +9 -9
- package/esm2022/lib/media/media.service.mjs +9 -9
- package/esm2022/lib/message/message.module.mjs +30 -31
- package/esm2022/lib/message/shared/message.service.mjs +12 -12
- package/esm2022/lib/monitoring/index.mjs +4 -0
- package/esm2022/lib/monitoring/monitoring.provider.mjs +20 -0
- package/esm2022/lib/monitoring/sentry/index.mjs +4 -0
- package/esm2022/lib/monitoring/sentry/sentry.interface.mjs +2 -0
- package/esm2022/lib/monitoring/sentry/sentry.mjs +29 -0
- package/esm2022/lib/monitoring/sentry/sentry.provider.mjs +31 -0
- package/esm2022/lib/monitoring/sentry/sentry.utils.mjs +12 -0
- package/esm2022/lib/monitoring/shared/any-monitoring.interface.mjs +2 -0
- package/esm2022/lib/monitoring/shared/index.mjs +3 -0
- package/esm2022/lib/monitoring/shared/monitoring.interface.mjs +2 -0
- package/esm2022/lib/network/network.service.mjs +9 -9
- package/esm2022/lib/regex/regex.service.mjs +9 -9
- package/esm2022/lib/request/error.interceptor.mjs +9 -9
- package/esm2022/lib/request/error.module.mjs +16 -16
- package/esm2022/lib/request/logging.interceptor.mjs +6 -6
- package/esm2022/lib/request/logging.module.mjs +12 -12
- package/esm2022/lib/route/route.service.mjs +14 -14
- package/esm2022/lib/storage/storage.service.mjs +9 -9
- package/esm2022/lib/user/index.mjs +2 -0
- package/esm2022/lib/user/user.interface.mjs +2 -0
- package/esm2022/public_api.mjs +3 -1
- package/fesm2022/igo2-core.mjs +351 -264
- package/fesm2022/igo2-core.mjs.map +1 -1
- package/lib/analytics/shared/analytics.interface.d.ts +4 -0
- package/lib/analytics/shared/analytics.service.d.ts +5 -6
- package/lib/config/config.service.d.ts +2 -0
- package/lib/environment/environment.interface.d.ts +2 -0
- package/lib/monitoring/index.d.ts +3 -0
- package/lib/monitoring/monitoring.provider.d.ts +4 -0
- package/lib/monitoring/sentry/index.d.ts +3 -0
- package/lib/monitoring/sentry/sentry.d.ts +4 -0
- package/lib/monitoring/sentry/sentry.interface.d.ts +7 -0
- package/lib/monitoring/sentry/sentry.provider.d.ts +3 -0
- package/lib/monitoring/sentry/sentry.utils.d.ts +4 -0
- package/lib/monitoring/shared/any-monitoring.interface.d.ts +2 -0
- package/lib/monitoring/shared/index.d.ts +2 -0
- package/lib/monitoring/shared/monitoring.interface.d.ts +7 -0
- package/lib/user/index.d.ts +1 -0
- package/lib/user/user.interface.d.ts +6 -0
- package/locale/en.json +1 -1
- package/locale/fr.json +1 -1
- package/package.json +14 -15
- package/public_api.d.ts +2 -0
- package/{_index.scss → src/index.scss} +0 -2
- package/{theming → src/theming}/prebuilt-themes/blue-theme.scss +4 -11
- package/{theming → src/theming}/prebuilt-themes/bluedark-theme.scss +4 -11
- package/{theming → src/theming}/prebuilt-themes/bluedq-theme.scss +4 -10
- package/{theming → src/theming}/prebuilt-themes/bluegrey-theme.scss +4 -3
- package/{theming → src/theming}/prebuilt-themes/dark-theme.scss +4 -3
- package/{theming → src/theming}/prebuilt-themes/deeppurple-theme.scss +4 -3
- package/{theming → src/theming}/prebuilt-themes/indigo-theme.scss +4 -3
- package/{theming → src/theming}/prebuilt-themes/orange-theme.scss +4 -3
- package/{theming → src/theming}/prebuilt-themes/qcca-theme.scss +3 -1
- package/{theming → src/theming}/prebuilt-themes/teal-theme.scss +4 -3
- package/theming/prebuilt-themes/blue-theme.css +12 -3
- package/theming/prebuilt-themes/bluedark-theme.css +12 -3
- package/theming/prebuilt-themes/bluedq-theme.css +12 -3
- package/theming/prebuilt-themes/bluegrey-theme.css +9 -0
- package/theming/prebuilt-themes/dark-theme.css +9 -0
- package/theming/prebuilt-themes/deeppurple-theme.css +9 -0
- package/theming/prebuilt-themes/indigo-theme.css +9 -0
- package/theming/prebuilt-themes/orange-theme.css +9 -0
- package/theming/prebuilt-themes/qcca-theme.css +9 -0
- package/theming/prebuilt-themes/teal-theme.css +9 -0
- /package/{core-theme.scss → src/core-theme.scss} +0 -0
- /package/{lib → src/lib}/message/message.theming.scss +0 -0
- /package/{style → src/style}/all-style.scss +0 -0
- /package/{style → src/style}/layout.scss +0 -0
- /package/{style → src/style}/partial/core-utils.scss +0 -0
- /package/{style → src/style}/partial/core.variables.scss +0 -0
- /package/{style → src/style}/partial/media.scss +0 -0
- /package/{style → src/style}/style.scss +0 -0
- /package/{theming → src/theming}/all-theme.scss +0 -0
- /package/{theming → src/theming}/material-theme-override.scss +0 -0
- /package/{theming → src/theming}/prebuilt-themes/qcca/_index.scss +0 -0
- /package/{theming → src/theming}/prebuilt-themes/qcca/base/_index.scss +0 -0
- /package/{theming → src/theming}/prebuilt-themes/qcca/base/breakpoints.scss +0 -0
- /package/{theming → src/theming}/prebuilt-themes/qcca/base/colors.scss +0 -0
- /package/{theming → src/theming}/prebuilt-themes/qcca/base/palette.scss +0 -0
- /package/{theming → src/theming}/prebuilt-themes/qcca/base/typography/_index.scss +0 -0
- /package/{theming → src/theming}/prebuilt-themes/qcca/base/typography/typography.scss +0 -0
- /package/{theming → src/theming}/prebuilt-themes/qcca/base/typography/typography.utils.scss +0 -0
- /package/{theming → src/theming}/prebuilt-themes/qcca/components/_index.scss +0 -0
- /package/{theming → src/theming}/prebuilt-themes/qcca/components/_index.theme.scss +0 -0
- /package/{theming → src/theming}/prebuilt-themes/qcca/components/button.scss +0 -0
- /package/{theming → src/theming}/prebuilt-themes/qcca/components/dialog.scss +0 -0
- /package/{theming → src/theming}/prebuilt-themes/qcca/components/form-field.scss +0 -0
- /package/{theming → src/theming}/prebuilt-themes/qcca/components/input.scss +0 -0
- /package/{theming → src/theming}/prebuilt-themes/qcca/components/list.scss +0 -0
- /package/{theming → src/theming}/prebuilt-themes/qcca/components/panel.scss +0 -0
- /package/{theming → src/theming}/prebuilt-themes/qcca/components/scrollbar.scss +0 -0
- /package/{theming → src/theming}/prebuilt-themes/qcca/components/search-bar.scss +0 -0
- /package/{theming → src/theming}/prebuilt-themes/qcca/components/search-bar.theme.scss +0 -0
- /package/{theming → src/theming}/typography.scss +0 -0
- /package/{theming → src/theming}/utils/_foreground.scss +0 -0
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
@use '@angular/material' as mat;
|
|
2
|
-
@use '
|
|
2
|
+
@use '../all-theme';
|
|
3
|
+
@use '../typography';
|
|
3
4
|
|
|
4
5
|
$primary: mat.define-palette(mat.$indigo-palette);
|
|
5
6
|
$accent: mat.define-palette(mat.$pink-palette, A200, A100, A400);
|
|
6
7
|
$warn: mat.define-palette(mat.$red-palette);
|
|
7
|
-
$typography:
|
|
8
|
+
$typography: typography.$igo-typography;
|
|
8
9
|
|
|
9
10
|
$theme: mat.define-light-theme(
|
|
10
11
|
(
|
|
@@ -22,4 +23,4 @@ $theme: mat.define-light-theme(
|
|
|
22
23
|
@include mat.typography-hierarchy($typography);
|
|
23
24
|
@include mat.all-component-themes($theme);
|
|
24
25
|
|
|
25
|
-
@include
|
|
26
|
+
@include all-theme.all-component-themes($theme);
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
@use '@angular/material' as mat;
|
|
2
|
-
@use '
|
|
2
|
+
@use '../all-theme';
|
|
3
|
+
@use '../typography';
|
|
3
4
|
|
|
4
5
|
$primary: mat.define-palette(mat.$orange-palette, 800);
|
|
5
6
|
$accent: mat.define-palette(mat.$light-blue-palette, 600, 100, 800);
|
|
6
7
|
$warn: mat.define-palette(mat.$red-palette, 600);
|
|
7
|
-
$typography:
|
|
8
|
+
$typography: typography.$igo-typography;
|
|
8
9
|
|
|
9
10
|
$theme: mat.define-light-theme(
|
|
10
11
|
(
|
|
@@ -22,4 +23,4 @@ $theme: mat.define-light-theme(
|
|
|
22
23
|
@include mat.typography-hierarchy($typography);
|
|
23
24
|
@include mat.all-component-themes($theme);
|
|
24
25
|
|
|
25
|
-
@include
|
|
26
|
+
@include all-theme.all-component-themes($theme);
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
@use 'sass:map';
|
|
2
2
|
@use '@angular/material' as mat;
|
|
3
|
+
@use '../all-theme';
|
|
3
4
|
@use '../../' as igo;
|
|
5
|
+
|
|
4
6
|
@use './qcca';
|
|
5
7
|
|
|
6
8
|
// https://design.quebec.ca/a-propos-systeme-design
|
|
@@ -37,7 +39,7 @@ $theme: map.merge(
|
|
|
37
39
|
@include mat.typography-hierarchy(qcca.$typo-typography);
|
|
38
40
|
@include mat.all-component-themes($theme);
|
|
39
41
|
|
|
40
|
-
@include
|
|
42
|
+
@include all-theme.all-component-themes($theme);
|
|
41
43
|
@include qcca.all-component-themes($theme);
|
|
42
44
|
|
|
43
45
|
@media (max-width: 1200px) {
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
@use '@angular/material' as mat;
|
|
2
|
-
@use '
|
|
2
|
+
@use '../all-theme';
|
|
3
|
+
@use '../typography';
|
|
3
4
|
|
|
4
5
|
$primary: mat.define-palette(mat.$teal-palette, 600, 400, 900);
|
|
5
6
|
$accent: mat.define-palette(mat.$teal-palette, 400);
|
|
6
7
|
$warn: mat.define-palette(mat.$red-palette);
|
|
7
|
-
$typography:
|
|
8
|
+
$typography: typography.$igo-typography;
|
|
8
9
|
|
|
9
10
|
$theme: mat.define-light-theme(
|
|
10
11
|
(
|
|
@@ -22,4 +23,4 @@ $theme: mat.define-light-theme(
|
|
|
22
23
|
@include mat.typography-hierarchy($typography);
|
|
23
24
|
@include mat.all-component-themes($theme);
|
|
24
25
|
|
|
25
|
-
@include
|
|
26
|
+
@include all-theme.all-component-themes($theme);
|
|
@@ -2767,7 +2767,7 @@ igo-draw-popup-component .igo-map-tooltip-draw,
|
|
|
2767
2767
|
igo-draw-popup-component .igo-map-tooltip-draw,
|
|
2768
2768
|
igo-draw-shorcuts .igo-map-tooltip-draw,
|
|
2769
2769
|
igo-draw .igo-map-tooltip-draw {
|
|
2770
|
-
color: rgba(
|
|
2770
|
+
color: rgba(0, 0, 0, 0.87);
|
|
2771
2771
|
font-weight: bold;
|
|
2772
2772
|
font-size: 16px;
|
|
2773
2773
|
}
|
|
@@ -2874,10 +2874,10 @@ igo-layer-item.igo-layer-item-focused > mat-list-item {
|
|
|
2874
2874
|
color: white;
|
|
2875
2875
|
}
|
|
2876
2876
|
igo-layer-item button:not(.mat-primary) mat-icon {
|
|
2877
|
-
color:
|
|
2877
|
+
color: black;
|
|
2878
2878
|
}
|
|
2879
2879
|
igo-layer-item button mat-icon.disabled {
|
|
2880
|
-
color: rgba(
|
|
2880
|
+
color: rgba(0, 0, 0, 0.38);
|
|
2881
2881
|
}
|
|
2882
2882
|
|
|
2883
2883
|
igo-map-browser div.ol-attribution > button {
|
|
@@ -2961,6 +2961,15 @@ igo-search-bar .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc
|
|
|
2961
2961
|
igo-search-bar .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-floating-label {
|
|
2962
2962
|
display: none;
|
|
2963
2963
|
}
|
|
2964
|
+
igo-search-bar .mat-mdc-icon-button.mat-mdc-button-base {
|
|
2965
|
+
--mdc-icon-button-state-layer-size: 40px;
|
|
2966
|
+
width: var(--mdc-icon-button-state-layer-size);
|
|
2967
|
+
height: var(--mdc-icon-button-state-layer-size);
|
|
2968
|
+
padding: 8px;
|
|
2969
|
+
}
|
|
2970
|
+
igo-search-bar .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target {
|
|
2971
|
+
display: none;
|
|
2972
|
+
}
|
|
2964
2973
|
|
|
2965
2974
|
igo-search-bar mat-form-field .mdc-line-ripple {
|
|
2966
2975
|
display: none;
|
|
@@ -2767,7 +2767,7 @@ igo-draw-popup-component .igo-map-tooltip-draw,
|
|
|
2767
2767
|
igo-draw-popup-component .igo-map-tooltip-draw,
|
|
2768
2768
|
igo-draw-shorcuts .igo-map-tooltip-draw,
|
|
2769
2769
|
igo-draw .igo-map-tooltip-draw {
|
|
2770
|
-
color: rgba(
|
|
2770
|
+
color: rgba(0, 0, 0, 0.87);
|
|
2771
2771
|
font-weight: bold;
|
|
2772
2772
|
font-size: 16px;
|
|
2773
2773
|
}
|
|
@@ -2874,10 +2874,10 @@ igo-layer-item.igo-layer-item-focused > mat-list-item {
|
|
|
2874
2874
|
color: white;
|
|
2875
2875
|
}
|
|
2876
2876
|
igo-layer-item button:not(.mat-primary) mat-icon {
|
|
2877
|
-
color:
|
|
2877
|
+
color: black;
|
|
2878
2878
|
}
|
|
2879
2879
|
igo-layer-item button mat-icon.disabled {
|
|
2880
|
-
color: rgba(
|
|
2880
|
+
color: rgba(0, 0, 0, 0.38);
|
|
2881
2881
|
}
|
|
2882
2882
|
|
|
2883
2883
|
igo-map-browser div.ol-attribution > button {
|
|
@@ -2961,6 +2961,15 @@ igo-search-bar .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc
|
|
|
2961
2961
|
igo-search-bar .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-floating-label {
|
|
2962
2962
|
display: none;
|
|
2963
2963
|
}
|
|
2964
|
+
igo-search-bar .mat-mdc-icon-button.mat-mdc-button-base {
|
|
2965
|
+
--mdc-icon-button-state-layer-size: 40px;
|
|
2966
|
+
width: var(--mdc-icon-button-state-layer-size);
|
|
2967
|
+
height: var(--mdc-icon-button-state-layer-size);
|
|
2968
|
+
padding: 8px;
|
|
2969
|
+
}
|
|
2970
|
+
igo-search-bar .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target {
|
|
2971
|
+
display: none;
|
|
2972
|
+
}
|
|
2964
2973
|
|
|
2965
2974
|
igo-search-bar mat-form-field .mdc-line-ripple {
|
|
2966
2975
|
display: none;
|
|
@@ -2767,7 +2767,7 @@ igo-draw-popup-component .igo-map-tooltip-draw,
|
|
|
2767
2767
|
igo-draw-popup-component .igo-map-tooltip-draw,
|
|
2768
2768
|
igo-draw-shorcuts .igo-map-tooltip-draw,
|
|
2769
2769
|
igo-draw .igo-map-tooltip-draw {
|
|
2770
|
-
color: rgba(
|
|
2770
|
+
color: rgba(0, 0, 0, 0.87);
|
|
2771
2771
|
font-weight: bold;
|
|
2772
2772
|
font-size: 16px;
|
|
2773
2773
|
}
|
|
@@ -2874,10 +2874,10 @@ igo-layer-item.igo-layer-item-focused > mat-list-item {
|
|
|
2874
2874
|
color: white;
|
|
2875
2875
|
}
|
|
2876
2876
|
igo-layer-item button:not(.mat-primary) mat-icon {
|
|
2877
|
-
color:
|
|
2877
|
+
color: black;
|
|
2878
2878
|
}
|
|
2879
2879
|
igo-layer-item button mat-icon.disabled {
|
|
2880
|
-
color: rgba(
|
|
2880
|
+
color: rgba(0, 0, 0, 0.38);
|
|
2881
2881
|
}
|
|
2882
2882
|
|
|
2883
2883
|
igo-map-browser div.ol-attribution > button {
|
|
@@ -2961,6 +2961,15 @@ igo-search-bar .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc
|
|
|
2961
2961
|
igo-search-bar .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-floating-label {
|
|
2962
2962
|
display: none;
|
|
2963
2963
|
}
|
|
2964
|
+
igo-search-bar .mat-mdc-icon-button.mat-mdc-button-base {
|
|
2965
|
+
--mdc-icon-button-state-layer-size: 40px;
|
|
2966
|
+
width: var(--mdc-icon-button-state-layer-size);
|
|
2967
|
+
height: var(--mdc-icon-button-state-layer-size);
|
|
2968
|
+
padding: 8px;
|
|
2969
|
+
}
|
|
2970
|
+
igo-search-bar .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target {
|
|
2971
|
+
display: none;
|
|
2972
|
+
}
|
|
2964
2973
|
|
|
2965
2974
|
igo-search-bar mat-form-field .mdc-line-ripple {
|
|
2966
2975
|
display: none;
|
|
@@ -2961,6 +2961,15 @@ igo-search-bar .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc
|
|
|
2961
2961
|
igo-search-bar .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-floating-label {
|
|
2962
2962
|
display: none;
|
|
2963
2963
|
}
|
|
2964
|
+
igo-search-bar .mat-mdc-icon-button.mat-mdc-button-base {
|
|
2965
|
+
--mdc-icon-button-state-layer-size: 40px;
|
|
2966
|
+
width: var(--mdc-icon-button-state-layer-size);
|
|
2967
|
+
height: var(--mdc-icon-button-state-layer-size);
|
|
2968
|
+
padding: 8px;
|
|
2969
|
+
}
|
|
2970
|
+
igo-search-bar .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target {
|
|
2971
|
+
display: none;
|
|
2972
|
+
}
|
|
2964
2973
|
|
|
2965
2974
|
igo-search-bar mat-form-field .mdc-line-ripple {
|
|
2966
2975
|
display: none;
|
|
@@ -2968,6 +2968,15 @@ igo-search-bar .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc
|
|
|
2968
2968
|
igo-search-bar .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-floating-label {
|
|
2969
2969
|
display: none;
|
|
2970
2970
|
}
|
|
2971
|
+
igo-search-bar .mat-mdc-icon-button.mat-mdc-button-base {
|
|
2972
|
+
--mdc-icon-button-state-layer-size: 40px;
|
|
2973
|
+
width: var(--mdc-icon-button-state-layer-size);
|
|
2974
|
+
height: var(--mdc-icon-button-state-layer-size);
|
|
2975
|
+
padding: 8px;
|
|
2976
|
+
}
|
|
2977
|
+
igo-search-bar .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target {
|
|
2978
|
+
display: none;
|
|
2979
|
+
}
|
|
2971
2980
|
|
|
2972
2981
|
igo-search-bar mat-form-field .mdc-line-ripple {
|
|
2973
2982
|
display: none;
|
|
@@ -2961,6 +2961,15 @@ igo-search-bar .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc
|
|
|
2961
2961
|
igo-search-bar .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-floating-label {
|
|
2962
2962
|
display: none;
|
|
2963
2963
|
}
|
|
2964
|
+
igo-search-bar .mat-mdc-icon-button.mat-mdc-button-base {
|
|
2965
|
+
--mdc-icon-button-state-layer-size: 40px;
|
|
2966
|
+
width: var(--mdc-icon-button-state-layer-size);
|
|
2967
|
+
height: var(--mdc-icon-button-state-layer-size);
|
|
2968
|
+
padding: 8px;
|
|
2969
|
+
}
|
|
2970
|
+
igo-search-bar .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target {
|
|
2971
|
+
display: none;
|
|
2972
|
+
}
|
|
2964
2973
|
|
|
2965
2974
|
igo-search-bar mat-form-field .mdc-line-ripple {
|
|
2966
2975
|
display: none;
|
|
@@ -2961,6 +2961,15 @@ igo-search-bar .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc
|
|
|
2961
2961
|
igo-search-bar .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-floating-label {
|
|
2962
2962
|
display: none;
|
|
2963
2963
|
}
|
|
2964
|
+
igo-search-bar .mat-mdc-icon-button.mat-mdc-button-base {
|
|
2965
|
+
--mdc-icon-button-state-layer-size: 40px;
|
|
2966
|
+
width: var(--mdc-icon-button-state-layer-size);
|
|
2967
|
+
height: var(--mdc-icon-button-state-layer-size);
|
|
2968
|
+
padding: 8px;
|
|
2969
|
+
}
|
|
2970
|
+
igo-search-bar .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target {
|
|
2971
|
+
display: none;
|
|
2972
|
+
}
|
|
2964
2973
|
|
|
2965
2974
|
igo-search-bar mat-form-field .mdc-line-ripple {
|
|
2966
2975
|
display: none;
|
|
@@ -2961,6 +2961,15 @@ igo-search-bar .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc
|
|
|
2961
2961
|
igo-search-bar .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-floating-label {
|
|
2962
2962
|
display: none;
|
|
2963
2963
|
}
|
|
2964
|
+
igo-search-bar .mat-mdc-icon-button.mat-mdc-button-base {
|
|
2965
|
+
--mdc-icon-button-state-layer-size: 40px;
|
|
2966
|
+
width: var(--mdc-icon-button-state-layer-size);
|
|
2967
|
+
height: var(--mdc-icon-button-state-layer-size);
|
|
2968
|
+
padding: 8px;
|
|
2969
|
+
}
|
|
2970
|
+
igo-search-bar .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target {
|
|
2971
|
+
display: none;
|
|
2972
|
+
}
|
|
2964
2973
|
|
|
2965
2974
|
igo-search-bar mat-form-field .mdc-line-ripple {
|
|
2966
2975
|
display: none;
|
|
@@ -3085,6 +3085,15 @@ igo-search-bar .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc
|
|
|
3085
3085
|
igo-search-bar .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-floating-label {
|
|
3086
3086
|
display: none;
|
|
3087
3087
|
}
|
|
3088
|
+
igo-search-bar .mat-mdc-icon-button.mat-mdc-button-base {
|
|
3089
|
+
--mdc-icon-button-state-layer-size: 40px;
|
|
3090
|
+
width: var(--mdc-icon-button-state-layer-size);
|
|
3091
|
+
height: var(--mdc-icon-button-state-layer-size);
|
|
3092
|
+
padding: 8px;
|
|
3093
|
+
}
|
|
3094
|
+
igo-search-bar .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target {
|
|
3095
|
+
display: none;
|
|
3096
|
+
}
|
|
3088
3097
|
|
|
3089
3098
|
igo-search-bar mat-form-field .mdc-line-ripple {
|
|
3090
3099
|
display: none;
|
|
@@ -2961,6 +2961,15 @@ igo-search-bar .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc
|
|
|
2961
2961
|
igo-search-bar .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-floating-label {
|
|
2962
2962
|
display: none;
|
|
2963
2963
|
}
|
|
2964
|
+
igo-search-bar .mat-mdc-icon-button.mat-mdc-button-base {
|
|
2965
|
+
--mdc-icon-button-state-layer-size: 40px;
|
|
2966
|
+
width: var(--mdc-icon-button-state-layer-size);
|
|
2967
|
+
height: var(--mdc-icon-button-state-layer-size);
|
|
2968
|
+
padding: 8px;
|
|
2969
|
+
}
|
|
2970
|
+
igo-search-bar .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target {
|
|
2971
|
+
display: none;
|
|
2972
|
+
}
|
|
2964
2973
|
|
|
2965
2974
|
igo-search-bar mat-form-field .mdc-line-ripple {
|
|
2966
2975
|
display: none;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|