@beacon-interactive-systems-llc/beacon-platform-ui 19.0.11 → 19.0.13

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.0.11",
3
+ "version": "19.0.13",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.14",
6
6
  "@angular/core": "^19.2.14",
@@ -165,7 +165,7 @@ $platform_gridstack_contrasts: (
165
165
  .popover-body {
166
166
  border-radius: 7px;
167
167
  padding: 0px;
168
- width: 308px;
168
+ min-width: 320px;
169
169
 
170
170
  .widget-type-row {
171
171
  @include themify($platform_gridstack_contrasts) {
@@ -182,6 +182,7 @@ $platform_gridstack_contrasts: (
182
182
  }
183
183
  display: flex;
184
184
  align-items: center;
185
+ gap: 8px;
185
186
  justify-content: space-between;
186
187
  height: 32px;
187
188
  padding-left: 8px;
@@ -21,6 +21,7 @@ $platform_widget_contrasts: (
21
21
  widgetPieChartDown: $beacon-dark-blue-500,
22
22
  widgetSummarySelection: $beacon-dark-blue-200,
23
23
  widgetSummarySelectionText: $beacon-black,
24
+ widgetDropShadow: 0 0 4px 0 rgba(0, 0, 0, 0.12)
24
25
  ),
25
26
  dark: (
26
27
  widgetText: $beacon-gray-200,
@@ -42,6 +43,7 @@ $platform_widget_contrasts: (
42
43
  widgetPieChartDown: $beacon-dark-blue-700,
43
44
  widgetSummarySelection: $beacon-gray-500,
44
45
  widgetSummarySelectionText: $beacon-gray-300,
46
+ widgetDropShadow: none
45
47
  ),
46
48
  highcontrast: (
47
49
  widgetText: $beacon-white,
@@ -63,6 +65,7 @@ $platform_widget_contrasts: (
63
65
  widgetPieChartDown: $beacon-blue-300,
64
66
  widgetSummarySelection: $beacon-gray-700,
65
67
  widgetSummarySelectionText: $beacon-white,
68
+ widgetDropShadow: none
66
69
  )
67
70
  );
68
71
 
@@ -72,6 +75,10 @@ $platform_widget_contrasts: (
72
75
  border: 1px solid apply('widgetBorder');
73
76
  color: apply('widgetText');
74
77
 
78
+ &.dropshadow {
79
+ box-shadow: apply('widgetDropShadow') !important;
80
+ }
81
+
75
82
  &.highlight {
76
83
  background-color: apply('widgetHighlight') !important;
77
84
  }