@beacon-interactive-systems-llc/beacon-platform-ui 19.3.0 → 19.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beacon-interactive-systems-llc/beacon-platform-ui",
3
- "version": "19.3.0",
3
+ "version": "19.3.2",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.14",
6
6
  "@angular/core": "^19.2.14",
@@ -162,3 +162,48 @@ $platform_checkbox_contrasts: (
162
162
  }
163
163
  }
164
164
  }
165
+
166
+ .platform-radio-checkbox {
167
+ display: inline-flex;
168
+ align-items: center;
169
+ cursor: pointer;
170
+
171
+ input {
172
+ position: absolute;
173
+ opacity: 0;
174
+ pointer-events: none;
175
+ }
176
+
177
+ &.disabled {
178
+ pointer-events: none;
179
+ }
180
+
181
+ .radio-indicator {
182
+ width: 16px;
183
+ height: 16px;
184
+ border-radius: 50%;
185
+ @include themify($platform_checkbox_contrasts) {
186
+ border: 2px solid apply('checkboxList');
187
+ }
188
+ display: inline-flex;
189
+ align-items: center;
190
+ justify-content: center;
191
+ transition: all 0.15s ease;
192
+ }
193
+
194
+ input:checked + .radio-indicator {
195
+ @include themify($platform_checkbox_contrasts) {
196
+ border-color: apply('checkboxList');
197
+ }
198
+ }
199
+
200
+ input:checked + .radio-indicator::after {
201
+ content: '';
202
+ width: 8px;
203
+ height: 8px;
204
+ border-radius: 50%;
205
+ @include themify($platform_checkbox_contrasts) {
206
+ background-color: apply('checkboxList');
207
+ }
208
+ }
209
+ }
@@ -372,6 +372,44 @@ $platform_fullcalendar_contrasts: (
372
372
  }
373
373
  }
374
374
 
375
+ .fc-more-link {
376
+ @include font-weight--semibold;
377
+ @include font-color--blue--light;
378
+ }
379
+
380
+ .fc-popover.fc-more-popover {
381
+ @include themify($platform_fullcalendar_contrasts) {
382
+ .fc-popover-header {
383
+ background: apply('fullcalendarToolbar');
384
+
385
+ .fc-popover-title {
386
+ color: apply('fullcalendarDateLabel');
387
+ }
388
+
389
+ .fc-popover-close {
390
+ color: apply('fullcalendarToolbarScroll');
391
+ }
392
+ }
393
+
394
+ .fc-popover-body {
395
+ background: apply('fullcalendarTodayMonthBackground');
396
+ }
397
+ }
398
+ border-radius: 5px;
399
+
400
+ .fc-popover-header {
401
+ border-top-right-radius: 5px;
402
+ border-top-left-radius: 5px;
403
+ }
404
+ .fc-popover-body {
405
+ border-bottom-right-radius: 5px;
406
+ border-bottom-left-radius: 5px;
407
+ max-height: 425px;
408
+ overflow: scroll;
409
+ }
410
+
411
+ }
412
+
375
413
  // Other elements on calendar view
376
414
  .cal-popover-container {
377
415
  .popover-arrow {
@@ -430,6 +430,13 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
430
430
  }
431
431
  }
432
432
 
433
+ .header-tab-button {
434
+ top: 110px;
435
+ position: absolute;
436
+ z-index: 1000 !important;
437
+ right: -5px;
438
+ }
439
+
433
440
  mat-icon.three-dot-menu-trigger {
434
441
  position: relative;
435
442
  top: 13px;
@@ -577,6 +584,15 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
577
584
  }
578
585
  }
579
586
 
587
+ .widget-pull-up-container {
588
+ margin-top: -30px;
589
+ }
590
+
591
+ .widget-detail-container {
592
+ min-width: 130px;
593
+ flex-shrink: 0;
594
+ }
595
+
580
596
  .widget-title-color {
581
597
  @include themify($platform_layout_contrasts) {
582
598
  color: apply('detailWidgetTitle');
@@ -188,6 +188,10 @@ $min-dropdown-panel-width: 215px;
188
188
  height: 24px;
189
189
  font-size: 14px;
190
190
 
191
+ &.ng-select--min {
192
+ min-width: 125px !important;
193
+ }
194
+
191
195
  .ng-select-container {
192
196
  min-height: 24px !important;
193
197
  height: 24px !important;
@@ -27,7 +27,7 @@ $platform_text_contrasts: (
27
27
  textDefaultSemiMuted: $beacon-gray-300,
28
28
  textDefaultInvert: $beacon-gray-500,
29
29
  textBlue: $beacon-dark-blue-300,
30
- textBlueLight: $beacon-blue-200,
30
+ textBlueLight: $beacon-blue-100,
31
31
  textBlueDark: $beacon-dark-blue-400,
32
32
  textBlueHighlight: $beacon-dark-blue-300,
33
33
  textBlueDarkHighlight: $beacon-dark-blue-400,