@beacon-interactive-systems-llc/beacon-platform-ui 19.2.12 → 19.2.15

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.12",
3
+ "version": "19.2.15",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.14",
6
6
  "@angular/core": "^19.2.14",
@@ -125,7 +125,7 @@ $control-width-options: 40px, 56px, 80px, 108px, 124px, 140px;
125
125
 
126
126
  .ng-select-container {
127
127
  @include themify($platform_form_contrasts) {
128
- border-color: apply('formInvalid');
128
+ border-color: apply('formInvalid') !important;
129
129
  }
130
130
  }
131
131
  }
@@ -18,6 +18,7 @@ $platform_layout_contrasts: (
18
18
  headerIconHover: $beacon-dark-blue-200,
19
19
  headerShadow: 0px 3px 6px #00000040,
20
20
  headerBorder: none,
21
+ headerBorderAlt: .5px solid $beacon-gray-300,
21
22
  platformLinkColor: $beacon-blue-200,
22
23
  platformLinkColorLight: $beacon-blue-100,
23
24
  platformLinkColorMuted: $beacon-dark-blue-300,
@@ -58,6 +59,7 @@ $platform_layout_contrasts: (
58
59
  headerIconHover: $beacon-dark-blue-400,
59
60
  headerShadow: none,
60
61
  headerBorder: none,
62
+ headerBorderAlt: .5px solid $beacon-gray-600,
61
63
  platformLinkColor: $beacon-blue-200,
62
64
  platformLinkColorLight: $beacon-green-550,
63
65
  platformLinkColorMuted: $beacon-gray-200,
@@ -98,6 +100,7 @@ $platform_layout_contrasts: (
98
100
  headerIconHover: $beacon-white,
99
101
  headerShadow: none,
100
102
  headerBorder: 1px solid $beacon-gray-500,
103
+ headerBorderAlt: .5px solid $beacon-gray-500,
101
104
  platformLinkColor: $highcontrast-bright-blue-200,
102
105
  platformLinkColorLight: $highcontrast-bright-blue-200,
103
106
  platformLinkColorMuted: $beacon-dark-blue-300,
@@ -132,12 +135,14 @@ $widths: 270px;
132
135
  $header-height: 50px;
133
136
  $header-banner-height: 24px;
134
137
  $detail-header-height: 78px;
138
+ $detail-header-sm-height: 44px;
135
139
  $detail-header-xl-height: 100px;
136
140
  $min-detail-width: 1400px;
137
141
  $leftnav-width: 212px;
138
142
  $leftnav-collapsed-width: 50px;
139
143
  $detail-sidebar-width: 212px;
140
144
  $detail-tab-body-offset: 128px;
145
+ $detail-tab-body-sm-offset: 140px;
141
146
  $detail-tab-body-xl-offset: 190px;
142
147
 
143
148
  $detail-container-padding: 1rem;
@@ -318,6 +323,23 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
318
323
  position: absolute;
319
324
  width: 100%;
320
325
 
326
+ &.border-bottom--gray {
327
+ @include themify($platform_layout_contrasts) {
328
+ border-bottom: apply('headerBorderAlt');
329
+ }
330
+ }
331
+
332
+ &.no-shadow {
333
+ box-shadow: none !important;
334
+ }
335
+
336
+ &.sm {
337
+ height: $detail-header-sm-height;
338
+ padding: 12px 12px 8px 14px !important;
339
+ display: flex;
340
+ align-items: center;
341
+ }
342
+
321
343
  &.xl {
322
344
  height: $detail-header-xl-height;
323
345
  }
@@ -428,6 +450,10 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
428
450
  top: $detail-tab-body-offset;
429
451
  width: calc(100% - 32px);
430
452
 
453
+ &.sm-header {
454
+ top: $detail-tab-body-sm-offset !important;
455
+ }
456
+
431
457
  &.xl-header {
432
458
  top: $detail-tab-body-xl-offset !important
433
459
  }
@@ -195,6 +195,8 @@ $platform_popover_contrasts: (
195
195
  padding: 0px;
196
196
 
197
197
  .form-popover {
198
+ &.width-490px { width: 490px !important; }
199
+
198
200
  &--header {
199
201
  @include themify($platform_popover_contrasts) {
200
202
  background-color: apply('popoverFormHeader');
@@ -323,6 +323,19 @@ table.platform-table {
323
323
  height: 32px !important;
324
324
  }
325
325
 
326
+ thead.no-top-bars th {
327
+ @include themify($platform_table_contrasts) {
328
+ border-top: 1px solid apply('tableBorder');
329
+ }
330
+
331
+ &:first-of-type {
332
+ border-top-left-radius: 5px !important;
333
+ }
334
+ &:last-of-type {
335
+ border-top-right-radius: 5px !important;
336
+ }
337
+ }
338
+
326
339
  th.table-title {
327
340
  @include themify($platform_table_contrasts) {
328
341
  border-top: .5px solid apply('tableBorder');
@@ -25,7 +25,8 @@ $platform_widget_contrasts: (
25
25
  selectedFilterBackground: $beacon-gray-100,
26
26
  selectedFilterAltBackground: $beacon-green-100,
27
27
  widgetLineChartText: $beacon-gray-500,
28
- widgetCircleIconRed: $beacon-orange-500
28
+ widgetCircleIconRed: $beacon-orange-500,
29
+ suggestionTextAnimation: linear-gradient(90deg,rgba(12,119,255,1), rgba(184,61,18,1),rgba(12,119,255,1))
29
30
  ),
30
31
  dark: (
31
32
  widgetText: $beacon-gray-200,
@@ -53,6 +54,7 @@ $platform_widget_contrasts: (
53
54
  selectedFilterAltBackground: $beacon-green-600,
54
55
  widgetLineChartText: $beacon-gray-700,
55
56
  widgetCircleIconRed: $beacon-orange-500,
57
+ suggestionTextAnimation: linear-gradient(to right, rgba(12, 119, 255, 1), rgba(184, 61, 18, 1))
56
58
  ),
57
59
  highcontrast: (
58
60
  widgetText: $beacon-white,
@@ -79,7 +81,8 @@ $platform_widget_contrasts: (
79
81
  selectedFilterBackground: $beacon-gray-600,
80
82
  selectedFilterAltBackground: $highcontrast-bright-green-300,
81
83
  widgetLineChartText: $beacon-white,
82
- widgetCircleIconRed: $beacon-orange-500
84
+ widgetCircleIconRed: $beacon-orange-500,
85
+ suggestionTextAnimation: linear-gradient(to right, rgba(12, 119, 255, 1), rgba(184, 61, 18, 1))
83
86
  )
84
87
  );
85
88
 
@@ -903,3 +906,37 @@ $platform_widget_contrasts: (
903
906
  }
904
907
  }
905
908
  }
909
+
910
+ .suggestion-container {
911
+ margin-top: -10px;
912
+ .header {
913
+ @include themify($platform_text_contrasts) {
914
+ color: apply('textBlueDarkHighlight');
915
+ }
916
+ &--search {
917
+ @include themify($platform_widget_contrasts) {
918
+ background: apply('suggestionTextAnimation');
919
+ }
920
+ background-size: 200% auto !important;
921
+ -webkit-background-clip: text !important;
922
+ -webkit-text-fill-color: transparent !important;
923
+ animation: gradientMove 1.5s ease-in-out infinite;
924
+
925
+ &.fade-in {
926
+ opacity: 1;
927
+ transition: opacity 600ms ease-in-out;
928
+ }
929
+
930
+ &.fade-out {
931
+ opacity: 0;
932
+ transition: opacity 600ms ease-in-out;
933
+ }
934
+ }
935
+ }
936
+ }
937
+
938
+ @keyframes gradientMove {
939
+ 0% { background-position: 0% center; }
940
+ 50% { background-position: 100% center; }
941
+ 100% { background-position: 0% center; }
942
+ }