i-tech-shared-components 1.3.0 → 1.3.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.
@@ -17,6 +17,7 @@ export declare class AutocompleteSelectComponent implements OnChanges, AfterView
17
17
  set configs(data: AutocompleteConfigsInterface);
18
18
  detectChanges: boolean;
19
19
  selectionChange: EventEmitter<any>;
20
+ multiSelectSelectionChange: EventEmitter<any>;
20
21
  emitAction: EventEmitter<any>;
21
22
  allSelected: MatSelect;
22
23
  pending: boolean;
@@ -30,6 +31,7 @@ export declare class AutocompleteSelectComponent implements OnChanges, AfterView
30
31
  isNeededForRecall: boolean;
31
32
  showingValue: any;
32
33
  selectedOptionForMultipleSelection: Array<any>;
34
+ multiSelectedValues: Array<any>;
33
35
  searchTimeoutId: any;
34
36
  tabVisibility: boolean;
35
37
  accessToNextRequest: boolean;
@@ -83,5 +85,5 @@ export declare class AutocompleteSelectComponent implements OnChanges, AfterView
83
85
  isErrorState: (control: any, form: any) => boolean;
84
86
  };
85
87
  static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteSelectComponent, never>;
86
- static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteSelectComponent, "i-tech-autocomplete-select", never, { "className": { "alias": "className"; "required": false; }; "submitValue": { "alias": "submitValue"; "required": false; }; "configs": { "alias": "configs"; "required": false; }; "detectChanges": { "alias": "detectChanges"; "required": false; }; }, { "selectionChange": "selectionChange"; "emitAction": "emitAction"; }, never, never, true, never>;
88
+ static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteSelectComponent, "i-tech-autocomplete-select", never, { "className": { "alias": "className"; "required": false; }; "submitValue": { "alias": "submitValue"; "required": false; }; "configs": { "alias": "configs"; "required": false; }; "detectChanges": { "alias": "detectChanges"; "required": false; }; }, { "selectionChange": "selectionChange"; "multiSelectSelectionChange": "multiSelectSelectionChange"; "emitAction": "emitAction"; }, never, never, true, never>;
87
89
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "i-tech-shared-components",
3
- "version": "1.3.0",
3
+ "version": "1.3.2",
4
4
  "peerDependencies": {
5
5
  "@angular/material": "^19.0.0",
6
6
  "@angular/animations": "^19.0.0",
@@ -1,5 +1,5 @@
1
1
  @use '@angular/material' as mat;
2
- @import "./color_themes.scss";
2
+ @use "./color_themes.scss" as color-themes;
3
3
 
4
4
  body {
5
5
 
@@ -11,27 +11,27 @@ body {
11
11
 
12
12
  // Success theme
13
13
  .ag-row.success-row {
14
- background-color: #{mat.get-theme-color($m3-light-theme, primary, 99)};
14
+ background-color: #{mat.get-theme-color(color-themes.$m3-light-theme, primary, 99)};
15
15
  }
16
16
  .ag-row.success-row:hover:before {
17
- background-color: #{mat.get-theme-color($m3-light-theme, primary, 98)};
17
+ background-color: #{mat.get-theme-color(color-themes.$m3-light-theme, primary, 98)};
18
18
  }
19
19
 
20
20
  // Change theme
21
21
  .ag-cell-changed {
22
- background-color: #{mat.get-theme-color($m3-light-theme, secondary, 99)};
22
+ background-color: #{mat.get-theme-color(color-themes.$m3-light-theme, secondary, 99)};
23
23
  &.ag-cell-focus,
24
24
  &:hover {
25
- background-color: #{mat.get-theme-color($m3-light-theme, secondary, 98)};
25
+ background-color: #{mat.get-theme-color(color-themes.$m3-light-theme, secondary, 98)};
26
26
  }
27
27
  }
28
28
 
29
29
  // Error theme
30
30
  .ag-row.error-row {
31
- background-color: #{mat.get-theme-color($m3-light-theme, error, 99)};
31
+ background-color: #{mat.get-theme-color(color-themes.$m3-light-theme, error, 99)};
32
32
  }
33
33
  .ag-row.error-row:hover:before {
34
- background-color: #{mat.get-theme-color($m3-light-theme, error, 98)};
34
+ background-color: #{mat.get-theme-color(color-themes.$m3-light-theme, error, 98)};
35
35
  }
36
36
 
37
37
  .ag-row.not-found-row-even {
@@ -124,7 +124,7 @@ body {
124
124
  }
125
125
 
126
126
  .ag-header, .ag-advanced-filter-header {
127
- --ag-header-background-color: #{mat.get-theme-color($m3-light-theme, neutral, 99)};
127
+ --ag-header-background-color: #{mat.get-theme-color(color-themes.$m3-light-theme, neutral, 99)};
128
128
  }
129
129
  }
130
130
 
@@ -141,8 +141,8 @@ body {
141
141
  }
142
142
 
143
143
  .grid-with-selection {
144
- --ag-selected-row-background-color: #{mat.get-theme-color($m3-light-theme, primary, 98)};
145
- --ag-row-hover-color: #{mat.get-theme-color($m3-light-theme, primary, 99)};
144
+ --ag-selected-row-background-color: #{mat.get-theme-color(color-themes.$m3-light-theme, primary, 98)};
145
+ --ag-row-hover-color: #{mat.get-theme-color(color-themes.$m3-light-theme, primary, 99)};
146
146
  }
147
147
 
148
148
  // Overrides for master/detail grid row group for payments
@@ -1,6 +1,6 @@
1
-
2
1
  @use '@angular/material' as mat;
3
- @import "./color_themes.scss";
2
+ @use 'sass:color';
3
+ @use "./color_themes.scss" as color-themes;
4
4
 
5
5
  body {
6
6
  $borderRadius: 5px;
@@ -51,8 +51,18 @@ body {
51
51
 
52
52
  // DEFINE TERTIARY BUTTON
53
53
  .mdc-button.tertiary {
54
- @include mat.button-color($m3-light-theme, $color-variant: tertiary);
55
- --mdc-text-button-label-text-color: mat.get-theme-color($m3-light-theme, 'tertiary', 30) !important;
54
+ @include mat.button-color(color-themes.$m3-light-theme, $color-variant: tertiary);
55
+ & {
56
+ --mdc-text-button-label-text-color: mat.get-theme-color(color-themes.$m3-light-theme, 'tertiary', 30) !important;
57
+ }
56
58
  }
57
59
  // END OF DEFINE TERTIARY BUTTON
58
60
  }
61
+
62
+ // Light Theme Button
63
+ .button_light_theme {
64
+ @include mat.button-color(color-themes.$m3-light-theme, $color-variant: tertiary);
65
+ & {
66
+ --mdc-text-button-label-text-color: mat.get-theme-color(color-themes.$m3-light-theme, 'tertiary', 30) !important;
67
+ }
68
+ }
@@ -1,12 +1,12 @@
1
1
  @use '@angular/material' as mat;
2
- @import "./color_themes.scss";
2
+ @use "./_color_themes.scss" as color-themes;
3
3
 
4
4
  body {
5
- --mat-datepicker-calendar-container-background-color: #{mat.get-theme-color($m3-light-theme, primary, 100)} !important;
6
- --mat-datepicker-calendar-period-button-text-color: #{mat.get-theme-color($m3-light-theme, primary, 35)} !important;
7
- --mat-datepicker-calendar-date-hover-state-background-color: #{mat.get-theme-color($m3-light-theme, primary, 99)} !important;
8
- --mat-datepicker-calendar-date-today-background-color: #{mat.get-theme-color($m3-light-theme, primary, 99)} !important;
9
- --mat-datepicker-range-input-separator-color: #{mat.get-theme-color($m3-light-theme, neutral, 50)} !important;
5
+ --mat-datepicker-calendar-container-background-color: #{mat.get-theme-color(color-themes.$m3-light-theme, primary, 100)} !important;
6
+ --mat-datepicker-calendar-period-button-text-color: #{mat.get-theme-color(color-themes.$m3-light-theme, primary, 35)} !important;
7
+ --mat-datepicker-calendar-date-hover-state-background-color: #{mat.get-theme-color(color-themes.$m3-light-theme, primary, 99)} !important;
8
+ --mat-datepicker-calendar-date-today-background-color: #{mat.get-theme-color(color-themes.$m3-light-theme, primary, 99)} !important;
9
+ --mat-datepicker-range-input-separator-color: #{mat.get-theme-color(color-themes.$m3-light-theme, neutral, 50)} !important;
10
10
  --mat-datepicker-calendar-body-label-text-size: 16px;
11
11
  --mat-datepicker-calendar-body-label-text-weight: 400;
12
12
  --mat-datepicker-calendar-period-button-text-size: 16px;
@@ -29,7 +29,7 @@ body {
29
29
  }
30
30
 
31
31
  .mat-date-range-input-inner::placeholder {
32
- color: #{mat.get-theme-color($m3-light-theme, neutral, 50)};
32
+ color: #{mat.get-theme-color(color-themes.$m3-light-theme, neutral, 50)};
33
33
  }
34
34
 
35
35
  .mat-mdc-input-element::placeholder {
@@ -53,8 +53,8 @@ body {
53
53
 
54
54
  .mat-datepicker-content {
55
55
  background-color: var(--white-color) !important;
56
- --mat-datepicker-calendar-navigation-button-icon-color: #{mat.get-theme-color($m3-light-theme, primary, 80)};
57
- --mat-datepicker-calendar-period-button-icon-color: #{mat.get-theme-color($m3-light-theme, primary, 80)};
56
+ --mat-datepicker-calendar-navigation-button-icon-color: #{mat.get-theme-color(color-themes.$m3-light-theme, primary, 80)};
57
+ --mat-datepicker-calendar-period-button-icon-color: #{mat.get-theme-color(color-themes.$m3-light-theme, primary, 80)};
58
58
  box-shadow: 0 2px 6px 2px rgba(48, 70, 102, 0.10);
59
59
  border: 1px solid var(--Outline, #D7D9DE);
60
60
 
@@ -1,17 +1,17 @@
1
1
  @use '@angular/material' as mat;
2
- @import "./color_themes.scss";
2
+ @use "./color_themes.scss" as color-themes;;
3
3
 
4
4
  .date_time_picker_container {
5
5
 
6
6
  &.readonly_field {
7
7
  .date_time_picker {
8
- border-color: #{mat.get-theme-color($m3-light-theme, tertiary, 90)};
9
- --mdc-outlined-text-field-hover-outline-color: #{mat.get-theme-color($m3-light-theme, tertiary, 90)};
10
- --mdc-outlined-text-field-focus-outline-color: #{mat.get-theme-color($m3-light-theme, tertiary, 90)};
8
+ border-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)};
9
+ --mdc-outlined-text-field-hover-outline-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)};
10
+ --mdc-outlined-text-field-focus-outline-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)};
11
11
  }
12
12
 
13
13
  mat-label, .required-input {
14
- color: #{mat.get-theme-color($m3-light-theme, tertiary, 90)} !important;
14
+ color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)} !important;
15
15
  }
16
16
  }
17
17
 
@@ -36,7 +36,7 @@
36
36
  letter-spacing: 0.2px;
37
37
 
38
38
  &:disabled {
39
- color: #{mat.get-theme-color($m3-light-theme, tertiary, 90)} !important;
39
+ color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)} !important;
40
40
  }
41
41
  }
42
42
 
@@ -48,13 +48,13 @@
48
48
  }
49
49
 
50
50
  &.disabled {
51
- border-color: #{mat.get-theme-color($m3-light-theme, tertiary, 90)};
51
+ border-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)};
52
52
  opacity: 0.7;
53
53
 
54
54
  input {
55
- color: #{mat.get-theme-color($m3-light-theme, tertiary, 90)} !important;
55
+ color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)} !important;
56
56
  &::placeholder {
57
- color: #{mat.get-theme-color($m3-light-theme, tertiary, 90)} !important;
57
+ color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)} !important;
58
58
  }
59
59
  }
60
60
  }
@@ -1,24 +1,24 @@
1
1
  @use '@angular/material' as mat;
2
- @import "./color_themes.scss";
2
+ @use "./color_themes.scss" as color-themes;
3
3
 
4
4
  body {
5
5
  .mat-mdc-form-field {
6
6
  width: 100%;
7
- --mdc-outlined-text-field-input-text-placeholder-color: #{mat.get-theme-color($m3-light-theme, tertiary, 50)};
7
+ --mdc-outlined-text-field-input-text-placeholder-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 50)};
8
8
  // Custom outline color intentionally outside of color palette
9
9
  --mdc-outlined-text-field-focus-outline-color: #0060DF;
10
- --mdc-outlined-text-field-outline-color: #{mat.get-theme-color($m3-light-theme, tertiary, 90)};
11
- --mdc-outlined-text-field-hover-outline-color: #{mat.get-theme-color($m3-light-theme, tertiary, 70)};
10
+ --mdc-outlined-text-field-outline-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 90)};
11
+ --mdc-outlined-text-field-hover-outline-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 70)};
12
12
  // Set/focused values should be a slightly darker tertiary30
13
- --mat-select-focused-arrow-color: #{mat.get-theme-color($m3-light-theme, tertiary, 30)};
14
- --mat-select-enabled-trigger-text-color: #{mat.get-theme-color($m3-light-theme, tertiary, 30)};
15
- --mdc-filled-text-field-caret-color: #{mat.get-theme-color($m3-light-theme, tertiary, 30)};
16
- --mdc-filled-text-field-focus-active-indicator-color: #{mat.get-theme-color($m3-light-theme, tertiary, 30)};
17
- --mdc-filled-text-field-focus-label-text-color: #{mat.get-theme-color($m3-light-theme, tertiary, 30)};
18
- --mdc-outlined-text-field-caret-color: #{mat.get-theme-color($m3-light-theme, tertiary, 30)};
19
- --mdc-outlined-text-field-focus-label-text-color: #{mat.get-theme-color($m3-light-theme, tertiary, 30)};
20
- --mat-form-field-focus-select-arrow-color: #{mat.get-theme-color($m3-light-theme, tertiary, 30)};
21
- --mdc-outlined-text-field-input-text-color: #{mat.get-theme-color($m3-light-theme, tertiary, 30)};
13
+ --mat-select-focused-arrow-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 30)};
14
+ --mat-select-enabled-trigger-text-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 30)};
15
+ --mdc-filled-text-field-caret-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 30)};
16
+ --mdc-filled-text-field-focus-active-indicator-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 30)};
17
+ --mdc-filled-text-field-focus-label-text-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 30)};
18
+ --mdc-outlined-text-field-caret-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 30)};
19
+ --mdc-outlined-text-field-focus-label-text-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 30)};
20
+ --mat-form-field-focus-select-arrow-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 30)};
21
+ --mdc-outlined-text-field-input-text-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 30)};
22
22
  --mdc-outlined-text-field-focus-outline-width: 3px !important;
23
23
  --mat-form-field-subscript-text-weight: 500;
24
24
  --mat-form-field-container-text-size: 13px;
@@ -27,7 +27,7 @@ body {
27
27
 
28
28
 
29
29
  mat-hint {
30
- color: #{mat.get-theme-color($m3-light-theme, tertiary, 50)};
30
+ color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 50)};
31
31
  font-size: 11px;
32
32
  font-weight: 500;
33
33
  letter-spacing: 0.022px;
@@ -38,7 +38,7 @@ body {
38
38
  }
39
39
 
40
40
  mat-label:not(.meu_item_label) {
41
- color: #{mat.get-theme-color($m3-light-theme, tertiary, 50)};
41
+ color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 50)};
42
42
  position: relative;
43
43
  bottom: 5px;
44
44
  padding-left: 16px;
@@ -47,7 +47,7 @@ body {
47
47
  }
48
48
 
49
49
  .invalid-label-color {
50
- color: #{mat.get-theme-color($m3-light-theme, error, 40)} !important;
50
+ color: #{mat.get-theme-color(color-themes.$m3-light-theme, error, 40)} !important;
51
51
  }
52
52
 
53
53
  .mat-mdc-menu-item {
@@ -55,7 +55,7 @@ body {
55
55
  --mat-menu-item-label-text-weight: 500 !important;
56
56
  --mat-menu-item-label-text-line-height: 20px !important;
57
57
  --mat-menu-item-label-text-tracking: 0.2px !important;
58
- --mat-menu-item-label-text-color: #{mat.get-theme-color($m3-light-theme,tertiary, 30)} !important;
58
+ --mat-menu-item-label-text-color: #{mat.get-theme-color(color-themes.$m3-light-theme,tertiary, 30)} !important;
59
59
  .meu_item_label {
60
60
  text-align: left;
61
61
  text-underline-position: from-font;
@@ -64,7 +64,7 @@ body {
64
64
  }
65
65
 
66
66
  .required-input {
67
- color: #{mat.get-theme-color($m3-light-theme, error, 40)};
67
+ color: #{mat.get-theme-color(color-themes.$m3-light-theme, error, 40)};
68
68
  position: relative;
69
69
  bottom: 5px;
70
70
  font-size: 11px;
@@ -74,15 +74,15 @@ body {
74
74
  .mat-form-field-invalid {
75
75
  --mdc-outlined-text-field-outline-width: 3px !important;
76
76
  // See if we can remove this after updating date-picker scss
77
- --mdc-outlined-text-field-error-outline-color: #{mat.get-theme-color($m3-light-theme,error,40)} !important;
77
+ --mdc-outlined-text-field-error-outline-color: #{mat.get-theme-color(color-themes.$m3-light-theme,error,40)} !important;
78
78
  }
79
79
 
80
80
  .default-form-icon-color {
81
- color: #{mat.get-theme-color($m3-light-theme, tertiary, 50)} !important;
81
+ color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 50)} !important;
82
82
  .mat-mdc-icon-button.tonal mat-icon {
83
- color: #{mat.get-theme-color($m3-light-theme, tertiary, 50)} !important;
83
+ color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 50)} !important;
84
84
  & svg path {
85
- fill: #{mat.get-theme-color($m3-light-theme, tertiary, 50)} !important;
85
+ fill: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 50)} !important;
86
86
  }
87
87
  }
88
88
  }
@@ -97,7 +97,7 @@ body {
97
97
 
98
98
  .mat-mdc-input-element {
99
99
  overflow: hidden;
100
- color: var(--Text, #{mat.get-theme-color($m3-light-theme,tertiary, 30)});
100
+ color: var(--Text, #{mat.get-theme-color(color-themes.$m3-light-theme,tertiary, 30)});
101
101
  text-overflow: ellipsis;
102
102
  font-size: 13px;
103
103
  font-style: normal;
@@ -1,5 +1,5 @@
1
1
  @use '@angular/material' as mat;
2
- @import "./color_themes.scss";
2
+ @use "./_color_themes.scss" as color-themes;
3
3
 
4
4
  body {
5
5
  $buttonSize: 40;
@@ -81,23 +81,23 @@ body {
81
81
  // BUTTON ICON TYPES
82
82
 
83
83
  .mat-mdc-icon-button.tonal {
84
- --mat-icon-button-state-layer-color: #{mat.get-theme-color($m3-light-theme, tertiary, 60)};
84
+ --mat-icon-button-state-layer-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 60)};
85
85
 
86
86
  mat-icon {
87
- color: mat.get-theme-color($m3-light-theme, tertiary, 30);
87
+ color: mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 30);
88
88
  & svg path {
89
- fill: mat.get-theme-color($m3-light-theme, tertiary, 30);
89
+ fill: mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 30);
90
90
  }
91
91
  }
92
92
  }
93
93
 
94
94
  .mat-mdc-icon-button.standard {
95
- --mat-icon-button-state-layer-color: #{mat.get-theme-color($m3-light-theme, primary, 60)};
95
+ --mat-icon-button-state-layer-color: #{mat.get-theme-color(color-themes.$m3-light-theme, primary, 60)};
96
96
 
97
97
  mat-icon {
98
- color: mat.get-theme-color($m3-light-theme, primary, 50);
98
+ color: mat.get-theme-color(color-themes.$m3-light-theme, primary, 50);
99
99
  & svg path {
100
- fill: mat.get-theme-color($m3-light-theme, primary, 50);
100
+ fill: mat.get-theme-color(color-themes.$m3-light-theme, primary, 50);
101
101
  }
102
102
  }
103
103
  }
@@ -109,8 +109,8 @@ body {
109
109
  --mdc-fab-hover-container-elevation-shadow: none !important;
110
110
  --mdc-fab-pressed-container-elevation-shadow: none !important;
111
111
  --mdc-fab-focus-container-elevation-shadow: none !important;
112
- --mdc-fab-container-color: #{mat.get-theme-color($m3-light-theme, primary, 50)};
113
- --mat-fab-state-layer-color: #{mat.get-theme-color($m3-light-theme, primary, 50)};
112
+ --mdc-fab-container-color: #{mat.get-theme-color(color-themes.$m3-light-theme, primary, 50)};
113
+ --mat-fab-state-layer-color: #{mat.get-theme-color(color-themes.$m3-light-theme, primary, 50)};
114
114
  mat-icon {
115
115
  color: white;
116
116
  & svg path {
@@ -121,17 +121,29 @@ body {
121
121
  // END OF BUTTON ICON TYPES
122
122
 
123
123
  //.mat-mdc-icon-button:disabled, .mat-mdc-fab-base:disabled {
124
- // background-color: mat.get-theme-color($m3-light-theme, neutral, 95);
124
+ // background-color: mat.get-theme-color(color-themes.$m3-light-theme, neutral, 95);
125
125
  //}
126
126
 
127
127
  .mat-mdc-icon-button:disabled mat-icon,
128
128
  .mat-mdc-fab-base:disabled mat-icon {
129
- color: mat.get-theme-color($m3-light-theme, neutral, 60) !important;
129
+ color: mat.get-theme-color(color-themes.$m3-light-theme, neutral, 60) !important;
130
130
  }
131
131
 
132
132
  // For small size
133
133
  .mat-mdc-icon-button.small:disabled, .mat-mdc-fab-base.small:disabled {
134
- background-color: mat.get-theme-color($m3-light-theme, neutral, 95);
134
+ background-color: mat.get-theme-color(color-themes.$m3-light-theme, neutral, 95);
135
135
  }
136
136
 
137
137
  }
138
+
139
+ .icon_button_tertiary {
140
+ --mat-icon-button-state-layer-color: #{mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 60)};
141
+
142
+ &.mat-mdc-icon-button {
143
+ color: mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 30);
144
+
145
+ mat-icon {
146
+ fill: mat.get-theme-color(color-themes.$m3-light-theme, tertiary, 30);
147
+ }
148
+ }
149
+ }
package/theme/_label.scss CHANGED
@@ -1,160 +1,182 @@
1
- @use "sass:map";
2
1
  @use '@angular/material' as mat;
3
- @import "./color_themes.scss";
2
+ @use 'sass:map';
3
+ @use "./_color_themes.scss" as color-themes;
4
+
5
+ // Define colors with proper hex values to avoid interpolation warnings
6
+ $label-colors: (
7
+ "aqua": #00ffff,
8
+ "blue": #0000ff,
9
+ "gray": #808080,
10
+ "green": #008000,
11
+ "olive": #808000,
12
+ "orange": #ffa500,
13
+ "purple": #800080,
14
+ "red": #ff0000,
15
+ "teal": #008080,
16
+ "white": #ffffff,
17
+ "yellow": #ffff00
18
+ );
19
+
20
+ @each $type-name, $color in $label-colors {
21
+ .label_#{$type-name} {
22
+ background-color: $color;
23
+ color: if($type-name == "white", #000000, #ffffff); // Black text for white labels, white text for others
24
+ }
25
+ }
4
26
 
5
27
  body {
6
28
  $types: (
7
- purple: (
29
+ "purple": (
8
30
  main: #DBD4F3,
9
31
  hover: #E5E0F6,
10
32
  border: #6F5BBF,
11
33
  text: #140063
12
34
  ),
13
- teal: (
35
+ "teal": (
14
36
  main: #D2F3F2,
15
37
  hover: #DFF6F6,
16
38
  border: #00CAC3,
17
39
  text: #006B67
18
40
  ),
19
- olive: (
41
+ "olive": (
20
42
  main: #EFF2D4,
21
43
  hover: #F3F6E0,
22
44
  border: #CDD968,
23
45
  text: #606C00
24
46
  ),
25
- orange: (
47
+ "orange": (
26
48
  main: #FFE4DB,
27
49
  hover: #FFECE5,
28
50
  border: #FC8156,
29
51
  text: #A42B00
30
52
  ),
31
- blue: (
53
+ "blue": (
32
54
  main: #D1E9FF,
33
55
  hover: #DEEFFF,
34
56
  border: #42A5FF,
35
57
  text: #003E77
36
58
  ),
37
- cyan: (
59
+ "cyan": (
38
60
  main: #DBF8FF,
39
61
  hover: #E5FAFF,
40
62
  border: #42D8FF,
41
63
  text: #006681
42
64
  ),
43
- raspberry: (
65
+ "raspberry": (
44
66
  main: #EBD6DB,
45
67
  hover: #F1E1E5,
46
68
  border: #711A2E,
47
69
  text: #4B0011
48
70
  ),
49
- yellow: (
71
+ "yellow": (
50
72
  main: #FFFCCB,
51
73
  hover: #FFFDDA,
52
74
  border: #FFF000,
53
75
  text: #847700
54
76
  ),
55
- wine: (
77
+ "wine": (
56
78
  main: #EDD3E5,
57
79
  hover: #F2DFEC,
58
80
  border: #9D4280,
59
81
  text: #680047
60
82
  ),
61
- green: (
83
+ "green": (
62
84
  main: #CFF1DD,
63
85
  hover: #DCF5E7,
64
86
  border: #2EB265,
65
87
  text: #005D27
66
88
  ),
67
- primary: (
89
+ "primary": (
68
90
  main: #C0E5C7,
69
91
  hover: #EFFAF1,
70
92
  border: #42B963,
71
93
  text: #003A0C
72
94
  ),
73
- red: (
95
+ "red": (
74
96
  main: #FFE5E5,
75
97
  hover: #FFD9D9,
76
98
  border: #FF4D4D,
77
99
  text: #8B0000
78
100
  ),
79
- neutral: (
101
+ "neutral": (
80
102
  main: #E8E8E8,
81
103
  hover: #F2F2F2,
82
104
  border: #B3B3B3,
83
105
  text: #575757
84
106
  ),
85
- white: (
107
+ "white": (
86
108
  main: #FFFFFF,
87
109
  hover: #F8F9FA,
88
110
  border: #D7D9DE,
89
111
  text: #1A1A1A
90
112
  ),
91
- gray: (
113
+ "gray": (
92
114
  main: #F0F0F4,
93
115
  hover: #E5E0F6,
94
116
  border: #fff,
95
117
  text: #647081
96
118
  ),
97
- canceled: (
98
- main: white,
119
+ "canceled": (
120
+ main: #ffffff,
99
121
  hover: #E5E0F6,
100
122
  border: #C11A39,
101
123
  text: #C11A39
102
124
  ),
103
- starts_2m: (
125
+ "starts_2m": (
104
126
  main: rgba(182, 140, 255, 0.7),
105
127
  hover: rgba(195, 167, 255, 0.7),
106
128
  border: #320088,
107
129
  text: #320088
108
130
  ),
109
- starts_10m: (
131
+ "starts_10m": (
110
132
  main: rgba(195, 167, 243, 0.7),
111
133
  hover: rgba(205, 182, 248, 0.7),
112
134
  border: #3E1585,
113
135
  text: #3E1585
114
136
  ),
115
- starts_20m: (
137
+ "starts_20m": (
116
138
  main: rgba(200, 176, 241, 0.7),
117
139
  hover: rgba(210, 190, 246, 0.7),
118
140
  border: #44227D,
119
141
  text: #44227D
120
142
  ),
121
- starts_60m: (
143
+ "starts_60m": (
122
144
  main: rgba(215, 203, 237, 0.7),
123
145
  hover: rgba(225, 215, 242, 0.7),
124
146
  border: #44227D,
125
147
  text: #44227D
126
148
  ),
127
- starts_2h: (
149
+ "starts_2h": (
128
150
  main: rgba(223, 215, 235, 0.7),
129
151
  hover: rgba(230, 224, 240, 0.7),
130
152
  border: #493076,
131
153
  text: #493076
132
154
  ),
133
- starts_5h: (
155
+ "starts_5h": (
134
156
  main: rgba(226, 222, 234, 0.7),
135
157
  hover: rgba(235, 230, 240, 0.7),
136
158
  border: #503E6D,
137
159
  text: #503E6D
138
160
  ),
139
- starts_12h: (
161
+ "starts_12h": (
140
162
  main: rgba(156, 166, 179, 0.16),
141
163
  hover: rgba(170, 180, 190, 0.16),
142
164
  border: #424954,
143
165
  text: #424954
144
166
  ),
145
- starts_24h: (
167
+ "starts_24h": (
146
168
  main: rgba(156, 166, 179, 0.16),
147
169
  hover: rgba(170, 180, 190, 0.16),
148
170
  border: #424954,
149
171
  text: #424954
150
172
  ),
151
- late: (
173
+ "late": (
152
174
  main: #FFE4DB,
153
175
  hover: #FFECE5,
154
176
  border: #FC8156,
155
177
  text: #A42B00
156
178
  ),
157
- late_warning: (
179
+ "late_warning": (
158
180
  main: #A42B00,
159
181
  hover: #FFECE5,
160
182
  border: #FC8156,