@beacon-interactive-systems-llc/beacon-platform-ui 19.3.1 → 19.3.4

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.1",
3
+ "version": "19.3.4",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.14",
6
6
  "@angular/core": "^19.2.14",
@@ -7,11 +7,13 @@ $platform_filter_contrasts: (
7
7
  filterChip: $beacon-green-100,
8
8
  filterChipText: $beacon-black,
9
9
  filterDropdownFocus: $beacon-dark-blue-200,
10
+ filterDropdownActiveText: $beacon-cyan-600,
10
11
  filterDropdownText: $beacon-cyan-600,
11
12
  showingRowBg: $beacon-white,
12
13
  showingRowColor: $beacon-green-500,
13
14
  superTitleBg: $beacon-white,
14
15
  superTitleColor: $beacon-dark-blue-300,
16
+ filterChipClearIcon: $beacon-gray-400
15
17
  ),
16
18
  dark: (
17
19
  filterBackground: $beacon-gray-700,
@@ -21,25 +23,29 @@ $platform_filter_contrasts: (
21
23
  filterChip: $beacon-dark-blue-400,
22
24
  filterChipText: $beacon-gray-300,
23
25
  filterDropdownFocus: $beacon-gray-600,
26
+ filterDropdownActiveText: $beacon-green-650,
24
27
  filterDropdownText: $beacon-green-650,
25
28
  showingRowBg: $beacon-gray-700,
26
29
  showingRowColor: $beacon-green-650,
27
30
  superTitleBg: $beacon-gray-700,
28
31
  superTitleColor: $beacon-gray-300,
32
+ filterChipClearIcon: $beacon-gray-300
29
33
  ),
30
34
  highcontrast: (
31
35
  filterBackground: $beacon-black,
32
36
  filterBorder: $beacon-white,
33
37
  filterShadow: none,
34
38
  filterSearchIcon: $beacon-white,
35
- filterChip: $highcontrast-bright-green-300,
39
+ filterChip: $highcontrast-bright-green-100,
36
40
  filterChipText: $beacon-black,
37
- filterDropdownFocus: $highcontrast-bright-blue-200,
41
+ filterDropdownFocus: $highcontrast-teal-100,
42
+ filterDropdownActiveText: $beacon-black,
38
43
  filterDropdownText: $highcontrast-bright-green-200,
39
44
  showingRowBg: $beacon-black,
40
45
  showingRowColor: $highcontrast-bright-green-200,
41
46
  superTitleBg: $beacon-black,
42
47
  superTitleColor: $beacon-white,
48
+ filterChipClearIcon: $beacon-gray-400
43
49
  )
44
50
  );
45
51
 
@@ -160,7 +166,7 @@ $date-filter-width: calc(1em * 8);
160
166
 
161
167
  .filter-chip {
162
168
  @include font-size--default-md;
163
- @include font-weight--semibold;
169
+ @include font-weight--regular;
164
170
  @include themify($platform_filter_contrasts) {
165
171
  background: apply('filterChip');
166
172
  color: apply('filterChipText');
@@ -173,13 +179,15 @@ $date-filter-width: calc(1em * 8);
173
179
  padding-right: .25rem;
174
180
 
175
181
  &::after {
176
- @include font-color--semi-muted;
177
182
  content: "close";
178
183
  font-family: "Material Icons";
179
184
  position: relative;
180
185
  text-align: end;
181
186
  top: 0.1rem;
182
187
  z-index: 99;
188
+ @include themify($platform_filter_contrasts) {
189
+ color: apply('filterChipClearIcon');
190
+ }
183
191
  }
184
192
  }
185
193
  }
@@ -21,13 +21,14 @@ $platform_form_contrasts: (
21
21
  quillToolbar: $beacon-dark-blue-50,
22
22
  quillButton: $beacon-gray-400,
23
23
  quillInlineContainerBorder: $beacon-dark-blue-200,
24
+ pencilEditIconColor: $beacon-gray-300
24
25
  ),
25
26
  dark: (
26
27
  formText: $beacon-gray-300,
27
28
  formPlaceholderText: $beacon-gray-400,
28
29
  formInputBackground: $beacon-gray-600,
29
30
  formInputBackgroundHover: $beacon-gray-600,
30
- formInputBorder: $beacon-gray-300,
31
+ formInputBorder: $beacon-gray-400,
31
32
  formInputBorderActive: $beacon-dark-blue-400,
32
33
  formControlSelected: $beacon-dark-blue-400,
33
34
  formControlSelectedText: $beacon-cyan-300,
@@ -42,11 +43,12 @@ $platform_form_contrasts: (
42
43
  quillToolbar: $beacon-green-700,
43
44
  quillButton: $beacon-gray-300,
44
45
  quillInlineContainerBorder: $beacon-gray-400,
46
+ pencilEditIconColor: $beacon-gray-300
45
47
  ),
46
48
  highcontrast: (
47
49
  formText: $beacon-white,
48
50
  formPlaceholderText: $beacon-white,
49
- formInputBackground: $beacon-gray-700,
51
+ formInputBackground: $beacon-black,
50
52
  formInputBackgroundHover: $beacon-gray-700,
51
53
  formInputBorder: $beacon-white,
52
54
  formInputBorderActive: $highcontrast-teal-100,
@@ -62,7 +64,8 @@ $platform_form_contrasts: (
62
64
  formHighlightOrangeText: $beacon-black,
63
65
  quillToolbar: $beacon-black,
64
66
  quillButton: $beacon-white,
65
- quillInlineContainerBorder: $beacon-white
67
+ quillInlineContainerBorder: $beacon-white,
68
+ pencilEditIconColor: $beacon-white
66
69
  )
67
70
  );
68
71
 
@@ -218,3 +221,15 @@ $control-width-options: 40px, 56px, 80px, 108px, 124px, 140px;
218
221
  border-radius: 5px;
219
222
  padding: 0.25rem;
220
223
  }
224
+
225
+ .pencil-edit-icon {
226
+ height: 15px !important;
227
+ width: 15px !important;
228
+ font-size: 15px !important;
229
+ @include themify($platform_form_contrasts) {
230
+ color: apply('pencilEditIconColor') !important;
231
+ }
232
+ &:hover {
233
+ cursor: pointer;
234
+ }
235
+ }
@@ -317,6 +317,10 @@ $platform_fullcalendar_contrasts: (
317
317
  &.fc-event.is-subevent {
318
318
  margin-left: 16px;
319
319
  }
320
+
321
+ .event-info {
322
+ overflow: hidden !important;
323
+ }
320
324
  }
321
325
 
322
326
  .fc-daygrid-event, .fc-timegrid-event {
@@ -372,6 +376,44 @@ $platform_fullcalendar_contrasts: (
372
376
  }
373
377
  }
374
378
 
379
+ .fc-more-link {
380
+ @include font-weight--semibold;
381
+ @include font-color--blue--light;
382
+ }
383
+
384
+ .fc-popover.fc-more-popover {
385
+ @include themify($platform_fullcalendar_contrasts) {
386
+ .fc-popover-header {
387
+ background: apply('fullcalendarToolbar');
388
+
389
+ .fc-popover-title {
390
+ color: apply('fullcalendarDateLabel');
391
+ }
392
+
393
+ .fc-popover-close {
394
+ color: apply('fullcalendarToolbarScroll');
395
+ }
396
+ }
397
+
398
+ .fc-popover-body {
399
+ background: apply('fullcalendarTodayMonthBackground');
400
+ }
401
+ }
402
+ border-radius: 5px;
403
+
404
+ .fc-popover-header {
405
+ border-top-right-radius: 5px;
406
+ border-top-left-radius: 5px;
407
+ }
408
+ .fc-popover-body {
409
+ border-bottom-right-radius: 5px;
410
+ border-bottom-left-radius: 5px;
411
+ max-height: 425px;
412
+ overflow: scroll;
413
+ }
414
+
415
+ }
416
+
375
417
  // Other elements on calendar view
376
418
  .cal-popover-container {
377
419
  .popover-arrow {
@@ -23,7 +23,7 @@ $platform_gridstack_contrasts: (
23
23
  scrollerBorder: 0.5px solid $beacon-gray-300,
24
24
  scrollerIcon: $beacon-cyan-600,
25
25
  optionsButton: $beacon-orange-500,
26
- optionsButtonText: $beacon-white,
26
+ optionsButtonText: $beacon-gray-300,
27
27
  optionsRowBorder: $beacon-gray-300,
28
28
  optionsTypeRow: $beacon-gray-600,
29
29
  ),
@@ -76,6 +76,9 @@ $platform_gridstack_contrasts: (
76
76
  margin-top: -12px;
77
77
  margin-left: -16px;
78
78
  margin-right: -16px;
79
+ position: sticky !important;
80
+ top: -11.7px !important;
81
+ z-index: 101 !important;
79
82
 
80
83
  .dashboard-buttons {
81
84
  display: flex;
@@ -96,7 +99,6 @@ $platform_gridstack_contrasts: (
96
99
  height: 30px;
97
100
  padding: 0px;
98
101
  width: 32px;
99
-
100
102
  }
101
103
 
102
104
  .dashboard-select {
@@ -74,7 +74,7 @@ $platform_layout_contrasts: (
74
74
  fullDetailParentBackground: $beacon-gray-700,
75
75
  fullDetailParentText: $beacon-gray-400,
76
76
  fullDetailTitleBackground: $beacon-dark-blue-600,
77
- fullDetailTitleText: $beacon-white,
77
+ fullDetailTitleText: $beacon-gray-300,
78
78
  fullDetailStatusBackground: $beacon-gray-600,
79
79
  fullDetailScroller: $beacon-dark-blue-500,
80
80
  fullDetailScrollerBorder: none,
@@ -144,6 +144,8 @@ $detail-sidebar-width: 212px;
144
144
  $detail-tab-body-offset: 128px;
145
145
  $detail-tab-body-sm-offset: 140px;
146
146
  $detail-tab-body-xl-offset: 190px;
147
+ $sidebar-sm-offset: 159px;
148
+ $sidebar-xl-offset: 208px;
147
149
 
148
150
  $detail-container-padding: 1rem;
149
151
  $detail-view-width: calc(100vw - $leftnav-width);
@@ -319,7 +321,7 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
319
321
  }
320
322
 
321
323
  height: $detail-header-height;
322
- padding: 12px 12px 0px;
324
+ padding: 12px 16px;
323
325
  position: absolute;
324
326
  width: 100%;
325
327
 
@@ -342,6 +344,9 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
342
344
 
343
345
  &.xl {
344
346
  height: $detail-header-xl-height;
347
+ .entity-info-header {
348
+ min-height: 31px !important;
349
+ }
345
350
  }
346
351
 
347
352
  .label {
@@ -418,8 +423,9 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
418
423
  }
419
424
 
420
425
  &.header-status {
421
- margin-left: -12px !important;
422
- margin-right: -20px !important;
426
+ margin-left: -16px;
427
+ margin-right: -16px;
428
+ padding-left: 16px;
423
429
  height: 48px;
424
430
  margin-top: 4px;
425
431
  margin-bottom: 4px;
@@ -427,6 +433,10 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
427
433
  @include themify($platform_layout_contrasts) {
428
434
  border-bottom: apply('headerBorder');
429
435
  }
436
+
437
+ button.platform-btn--pill {
438
+ padding: 0px 12px !important;
439
+ }
430
440
  }
431
441
  }
432
442
 
@@ -499,10 +509,10 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
499
509
 
500
510
  &--no-side-bar {
501
511
  display: inline !important;
502
- width: calc(100vw - $leftnav-width - 24px) !important;
512
+ width: calc(100vw - $leftnav-width - 24px);
503
513
 
504
514
  &--expanded {
505
- width: calc(100vw - $leftnav-collapsed-width - 24px) !important;
515
+ width: calc(100vw - $leftnav-collapsed-width - 24px);
506
516
  }
507
517
  }
508
518
  }
@@ -512,6 +522,15 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
512
522
  background: apply('containerSidebarBackground');
513
523
  border-left: apply('containerSidebarBorderLeft')
514
524
  }
525
+
526
+ &.sm-header {
527
+ top: $sidebar-sm-offset;
528
+ }
529
+
530
+ &.xl-header {
531
+ top: $sidebar-xl-offset;
532
+ }
533
+
515
534
  height: calc(100vh - $header-height - $detail-header-height);
516
535
  margin-left: 12px;
517
536
  overflow-y: auto;
@@ -623,10 +642,15 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
623
642
  }
624
643
  }
625
644
 
626
- // do not modify detail__body__section width for mobile based on leftnav open or closed
627
- .main-view-container.main-view-container--expanded.platform-mobile .detail-view-container .detail__body__section {
628
- width: calc(100vw - $detail-sidebar-width - $leftnav-collapsed-width - 24px) !important;
629
- }
645
+ // Do not modify detail__body__section width for mobile based on leftnav open or closed
646
+ .main-view-container.main-view-container--expanded.platform-mobile .detail-view-container {
647
+ .detail__body__section {
648
+ width: calc(100vw - $detail-sidebar-width - $leftnav-collapsed-width - 24px) !important;
649
+ }
650
+ .detail__body__section--no-side-bar, .detail__body__section--no-side-bar--expanded {
651
+ width: calc(100vw - $leftnav-collapsed-width - 24px) !important;
652
+ }
653
+ }
630
654
 
631
655
  .list-view-container {
632
656
  @include themify($platform_layout_contrasts) {