@beacon-interactive-systems-llc/beacon-platform-ui 19.2.18 → 19.2.20

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beacon-interactive-systems-llc/beacon-platform-ui",
3
- "version": "19.2.18",
3
+ "version": "19.2.20",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.14",
6
6
  "@angular/core": "^19.2.14",
@@ -6,7 +6,8 @@ $platform_tab_contrasts: (
6
6
  tabBackgroundActive: $beacon-dark-blue-400,
7
7
  tabBackgroundActiveAlt: $beacon-orange-200,
8
8
  tabDividerBorder: $beacon-gray-300,
9
- tabRedCircleIcon: $beacon-orange-500
9
+ tabRedCircleIcon: $beacon-orange-500,
10
+ tabOrangeCircleIcon: $beacon-orange-400,
10
11
  ),
11
12
  dark: (
12
13
  popoverHeaderBackground: $beacon-gray-500,
@@ -15,7 +16,8 @@ $platform_tab_contrasts: (
15
16
  tabBackgroundActive: $beacon-dark-blue-700,
16
17
  tabBackgroundActiveAlt: $beacon-orange-700,
17
18
  tabDividerBorder: $beacon-gray-700,
18
- tabRedCircleIcon: $beacon-orange-500
19
+ tabRedCircleIcon: $beacon-orange-500,
20
+ tabOrangeCircleIcon: $beacon-orange-400,
19
21
  ),
20
22
  highcontrast: (
21
23
  popoverHeaderBackground: $beacon-gray-700,
@@ -24,7 +26,8 @@ $platform_tab_contrasts: (
24
26
  tabBackgroundActive: $beacon-dark-blue-700,
25
27
  tabBackgroundActiveAlt: $highcontrast-bright-orange-200,
26
28
  tabDividerBorder: $beacon-gray-100,
27
- tabRedCircleIcon: $beacon-orange-500
29
+ tabRedCircleIcon: $highcontrast-bright-orange-300,
30
+ tabOrangeCircleIcon: $highcontrast-bright-orange-100,
28
31
  )
29
32
  );
30
33
 
@@ -142,16 +145,25 @@ $platform_tab_contrasts: (
142
145
  }
143
146
  }
144
147
 
145
- @mixin tab-circle-icon-red {
148
+ @mixin tab-circle-icon {
146
149
  &.tab-with-circle-icon {
147
150
  &.red::after {
148
151
  @include material-icons-circle-sm();
149
- top: -13px;
150
- left: 40px;
152
+ top: -12px;
153
+ right: 3px;
151
154
  @include themify($platform_tab_contrasts) {
152
155
  color: apply('tabRedCircleIcon');
153
156
  }
154
157
  }
158
+
159
+ &.orange::after {
160
+ @include material-icons-circle-sm();
161
+ top: -12px;
162
+ right: 3px;
163
+ @include themify($platform_tab_contrasts) {
164
+ color: apply('tabOrangeCircleIcon');
165
+ }
166
+ }
155
167
  }
156
168
  }
157
169
 
@@ -167,6 +179,12 @@ $platform_tab_contrasts: (
167
179
  position: fixed;
168
180
 
169
181
  @include platform-tab-label-styles();
182
+
183
+ .mat-mdc-tab-labels {
184
+ .mat-mdc-tab {
185
+ @include tab-circle-icon();
186
+ }
187
+ }
170
188
  }
171
189
  }
172
190
 
@@ -185,6 +203,12 @@ $platform_tab_contrasts: (
185
203
  @include platform-tab-label-styles();
186
204
 
187
205
  margin-bottom: 12px;
206
+
207
+ .mat-mdc-tab-labels {
208
+ .mat-mdc-tab {
209
+ @include tab-circle-icon();
210
+ }
211
+ }
188
212
  }
189
213
  }
190
214
  }
@@ -202,7 +226,7 @@ $platform_tab_contrasts: (
202
226
  .mat-mdc-tab-labels {
203
227
  .mat-mdc-tab {
204
228
  @include platform-alt-tab-common-styles();
205
- @include tab-circle-icon-red();
229
+ @include tab-circle-icon();
206
230
 
207
231
  &:first-of-type {
208
232
  margin-left: 12px;
@@ -235,7 +259,7 @@ $platform_tab_contrasts: (
235
259
  .mat-mdc-tab-labels {
236
260
  .mat-mdc-tab {
237
261
  @include platform-alt-tab-common-styles();
238
- @include tab-circle-icon-red();
262
+ @include tab-circle-icon();
239
263
  }
240
264
  }
241
265
  }
@@ -792,6 +792,10 @@ $platform_widget_contrasts: (
792
792
  }
793
793
  }
794
794
 
795
+ &.availability-widget {
796
+ @include widget-filter-container();
797
+ }
798
+
795
799
  @include with-circle-icon-red();
796
800
  }
797
801