@beacon-interactive-systems-llc/beacon-platform-ui 19.2.3 → 19.2.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.2.3",
3
+ "version": "19.2.4",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.14",
6
6
  "@angular/core": "^19.2.14",
@@ -86,6 +86,13 @@ $platform_form_contrasts: (
86
86
  }
87
87
  }
88
88
 
89
+ $control-width-options: 40px, 56px, 80px, 108px, 124px, 140px;
90
+ @each $width-opt in $control-width-options {
91
+ .width--#{$width-opt} {
92
+ width: $width-opt !important;
93
+ }
94
+ }
95
+
89
96
  .form {
90
97
  .form__group {
91
98
  position: relative;
@@ -137,6 +144,10 @@ $platform_form_contrasts: (
137
144
  @include font-color--default;
138
145
  content: "*";
139
146
  }
147
+
148
+ &.red-label {
149
+ @include font-color--red;
150
+ }
140
151
  }
141
152
 
142
153
  input.form-control {
@@ -11,6 +11,7 @@ $platform_widget_contrasts: (
11
11
  widgetTitle: $beacon-dark-blue-300,
12
12
  widgetTitleDark: $beacon-dark-blue-500,
13
13
  widgetInfoBox: $beacon-gray-50,
14
+ widgetInfoBoxBorder: $beacon-dark-blue-200,
14
15
  pendingNotificationBackground: $beacon-gray-100,
15
16
  eventContainerBg: $beacon-gray-300,
16
17
  loginContainerBackground: $beacon-dark-blue-500,
@@ -36,6 +37,7 @@ $platform_widget_contrasts: (
36
37
  widgetTitle: $beacon-gray-300,
37
38
  widgetTitleDark: $beacon-dark-blue-300,
38
39
  widgetInfoBox: $beacon-gray-600,
40
+ widgetInfoBoxBorder: $beacon-gray-700,
39
41
  pendingNotificationBackground: $beacon-gray-700,
40
42
  eventContainerBg: $beacon-gray-400,
41
43
  loginContainerBackground: $beacon-dark-blue-500,
@@ -61,6 +63,7 @@ $platform_widget_contrasts: (
61
63
  widgetTitle: $beacon-white,
62
64
  widgetTitleDark: $highcontrast-bright-blue-200,
63
65
  widgetInfoBox: $beacon-gray-700,
66
+ widgetInfoBoxBorder: $beacon-gray-500,
64
67
  pendingNotificationBackground: $beacon-gray-700,
65
68
  eventContainerBg: $beacon-gray-400,
66
69
  loginContainerBackground: $beacon-dark-blue-500,
@@ -77,6 +80,15 @@ $platform_widget_contrasts: (
77
80
  )
78
81
  );
79
82
 
83
+ .platform-widget-subcontainer {
84
+ @include themify($platform_widget_contrasts) {
85
+ background: apply('widgetInfoBox') !important;
86
+ border: 1px solid apply('widgetInfoBoxBorder');
87
+ }
88
+ border-radius: 5px;
89
+ padding: 12px;
90
+ }
91
+
80
92
  .platform-widget {
81
93
  @include themify($platform_widget_contrasts) {
82
94
  background: apply('widgetBackground') !important;
@@ -265,3 +265,12 @@ $border-radii: 3px, 5px, 8px, 10px, 12px;
265
265
  right: 0;
266
266
  z-index: 1050;
267
267
  }
268
+
269
+ .text-align {
270
+ &-right {
271
+ text-align: right;
272
+ }
273
+ &-center {
274
+ text-align: center;
275
+ }
276
+ }