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

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.9",
3
+ "version": "19.2.12",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.14",
6
6
  "@angular/core": "^19.2.14",
@@ -545,6 +545,10 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
545
545
  &--fixed-height {
546
546
  min-height: 160px !important;
547
547
  }
548
+
549
+ &--no-min-height {
550
+ min-height: unset;
551
+ }
548
552
  }
549
553
 
550
554
  .widget-title-color {
@@ -731,6 +735,10 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
731
735
  }
732
736
  }
733
737
  }
738
+
739
+ .list-view-container.nested-list-container {
740
+ height: unset !important;
741
+ }
734
742
  }
735
743
 
736
744
  .list-view-container-widget {
@@ -7,7 +7,12 @@ $platform_popover_contrasts: (
7
7
  popoverListBody: $beacon-white,
8
8
  popoverListFooter: $beacon-white,
9
9
  popoverListBorder: transparent,
10
- popoverListSectionBorder: $beacon-gray-300
10
+ popoverListSectionBorder: $beacon-gray-300,
11
+ popoverFormHeader: $beacon-dark-blue-50,
12
+ popoverFormBody: $beacon-white,
13
+ popoverFormFooter: $beacon-white,
14
+ popoverFormBorder: transparent,
15
+ popoverFormSectionBorder: $beacon-gray-300,
11
16
  ),
12
17
  dark: (
13
18
  popoverBackground: $beacon-black,
@@ -17,7 +22,12 @@ $platform_popover_contrasts: (
17
22
  popoverListBody: $beacon-gray-700,
18
23
  popoverListFooter: $beacon-gray-700,
19
24
  popoverListBorder: $beacon-gray-400,
20
- popoverListSectionBorder: $beacon-gray-400
25
+ popoverListSectionBorder: $beacon-gray-400,
26
+ popoverFormHeader: $beacon-gray-600,
27
+ popoverFormBody: $beacon-gray-700,
28
+ popoverFormFooter: $beacon-gray-700,
29
+ popoverFormBorder: $beacon-gray-400,
30
+ popoverFormSectionBorder: $beacon-gray-400,
21
31
  ),
22
32
  highcontrast: (
23
33
  popoverBackground: $beacon-black,
@@ -27,7 +37,12 @@ $platform_popover_contrasts: (
27
37
  popoverListBody: $beacon-black,
28
38
  popoverListFooter: $beacon-black,
29
39
  popoverListBorder: $beacon-white,
30
- popoverListSectionBorder: $beacon-white
40
+ popoverListSectionBorder: $beacon-white,
41
+ popoverFormHeader: $beacon-black,
42
+ popoverFormBody: $beacon-black,
43
+ popoverFormFooter: $beacon-black,
44
+ popoverFormBorder: $beacon-white,
45
+ popoverFormSectionBorder: $beacon-white,
31
46
  )
32
47
  );
33
48
 
@@ -169,3 +184,58 @@ $platform_popover_contrasts: (
169
184
  }
170
185
  }
171
186
  }
187
+
188
+ .form-popover-container {
189
+ .popover-arrow {
190
+ display: none;
191
+ }
192
+
193
+ .popover-content {
194
+ border-radius: 8px;
195
+ padding: 0px;
196
+
197
+ .form-popover {
198
+ &--header {
199
+ @include themify($platform_popover_contrasts) {
200
+ background-color: apply('popoverFormHeader');
201
+ border-bottom: 0.5px solid apply('popoverFormSectionBorder');
202
+ }
203
+
204
+ border-top-right-radius: 8px;
205
+ border-top-left-radius: 8px;
206
+ display: flex;
207
+ min-height: 48px;
208
+ padding-left: 16px;
209
+ padding-right: 8px;
210
+ }
211
+
212
+ .modal-content {
213
+ @include themify($platform_popover_contrasts) {
214
+ border: 1px solid apply('popoverFormBorder');
215
+ }
216
+ border-radius: 8px;
217
+ }
218
+
219
+ &--body {
220
+ @include themify($platform_popover_contrasts) {
221
+ background-color: apply('popoverFormBody');
222
+ }
223
+
224
+ padding: 16px;
225
+ }
226
+
227
+ &--footer {
228
+ @include themify($platform_popover_contrasts) {
229
+ background-color: apply('popoverFormFooter');
230
+ }
231
+ border-bottom-right-radius: 8px;
232
+ border-bottom-left-radius: 8px;
233
+ display: flex;
234
+ align-items: center;
235
+ height: 65px;
236
+ padding: 8px 16px;
237
+ border-top: none;
238
+ }
239
+ }
240
+ }
241
+ }
@@ -126,6 +126,18 @@ quill-editor {
126
126
  min-height: 100px;
127
127
  }
128
128
 
129
+ .highlighted-inline-edit-container {
130
+ @include themify($platform_form_contrasts) {
131
+ border: 2px solid apply('formInputBorderActive');
132
+ }
133
+ border-radius: 5px;
134
+ padding: 12px;
135
+
136
+ .quill-inline-container {
137
+ border: none;
138
+ }
139
+ }
140
+
129
141
  quill-view {
130
142
  .ql-editor {
131
143
  padding: 0;
@@ -18,6 +18,7 @@ $platform_table_contrasts: (
18
18
  tableDotGray: $beacon-gray-300,
19
19
  tableDotGreen: $beacon-green-400,
20
20
  tableDotYellow: $beacon-yellow-400,
21
+ tableDotOrange: $beacon-orange-300,
21
22
  tableDotRed: $beacon-orange-500,
22
23
  tableDotDarkRed: $beacon-orange-700
23
24
  ),
@@ -35,6 +36,7 @@ $platform_table_contrasts: (
35
36
  tableDotGray: $beacon-gray-300,
36
37
  tableDotGreen: $beacon-green-400,
37
38
  tableDotYellow: $beacon-yellow-400,
39
+ tableDotOrange: $beacon-orange-400,
38
40
  tableDotRed: $beacon-orange-500,
39
41
  tableDotDarkRed: $beacon-orange-700
40
42
  ),
@@ -52,6 +54,7 @@ $platform_table_contrasts: (
52
54
  tableDotGray: $beacon-gray-300,
53
55
  tableDotGreen: $beacon-green-400,
54
56
  tableDotYellow: $beacon-yellow-400,
57
+ tableDotOrange: $highcontrast-bright-orange-200,
55
58
  tableDotRed: $beacon-orange-500,
56
59
  tableDotDarkRed: $beacon-orange-700
57
60
  )
@@ -171,6 +174,13 @@ table.platform-table {
171
174
  }
172
175
  }
173
176
  padding: 4px 16px;
177
+
178
+ &.truncate-cell {
179
+ white-space: nowrap;
180
+ overflow: hidden;
181
+ text-overflow: ellipsis;
182
+ max-width: 300px;
183
+ }
174
184
  }
175
185
  }
176
186
 
@@ -386,6 +396,15 @@ table.platform-table {
386
396
  }
387
397
  }
388
398
 
399
+ &.orange {
400
+ &::before {
401
+ @include status-dot-positioning();
402
+ @include themify($platform_table_contrasts) {
403
+ color: apply('tableDotOrange');
404
+ }
405
+ }
406
+ }
407
+
389
408
  &.red {
390
409
  &::before {
391
410
  @include status-dot-positioning();
@@ -111,6 +111,7 @@ $font-sizes: 8px, 10px, 12px, 14px, 16px, 18px, 20px, 22px, 24px, 28px, 32px;
111
111
  &--blue { color: apply('textBlue') !important; }
112
112
  &--dark-blue { color: apply('textBlueDark') !important; }
113
113
  &--light-blue { color: apply('textBlueHighlight') !important; }
114
+ &--blue-light { color: apply('textBlueLight') !important; }
114
115
  &--green { color: apply('textGreen') !important; }
115
116
  &--dark-green { color: apply('textGreenDark') !important; }
116
117
  &--cyan { color: apply('textCyan') !important; }
@@ -434,6 +434,29 @@ $platform_widget_contrasts: (
434
434
  }
435
435
  }
436
436
 
437
+ @mixin widget-filter-chip {
438
+ .filter-chip {
439
+ @include themify($platform_widget_contrasts) {
440
+ background-color: apply('selectedFilterAltBackground');
441
+ }
442
+ height: 18px;
443
+ border-radius: 2px;
444
+ margin-left: 4px !important;
445
+ padding: 2px 4px 2px 4px;
446
+ display: flex;
447
+ align-items: center;
448
+
449
+ &.clear-icon::after {
450
+ content: "close";
451
+ font-family: "Material Icons";
452
+ height: 8.5px;
453
+ width: 8.5px;
454
+ font-size: 8.5px;
455
+ margin: 0px 2px 2px 4px !important;
456
+ }
457
+ }
458
+ }
459
+
437
460
  &.pie-chart-widget {
438
461
  height: 414px;
439
462
  width: 100%;
@@ -477,30 +500,10 @@ $platform_widget_contrasts: (
477
500
  }
478
501
 
479
502
  &.dual-pie-chart-widget {
480
- min-height: 338px;
503
+ height: 445px !important;
481
504
  width: 100%;
482
505
  @include widget-filter-container();
483
-
484
- .filter-chip {
485
- @include themify($platform_widget_contrasts) {
486
- background-color: apply('selectedFilterAltBackground');
487
- }
488
- height: 18px;
489
- border-radius: 2px;
490
- margin-left: 4px !important;
491
- padding: 2px 4px 2px 4px;
492
- display: flex;
493
- align-items: center;
494
-
495
- &.clear-icon::after {
496
- content: "close";
497
- font-family: "Material Icons";
498
- height: 8.5px;
499
- width: 8.5px;
500
- font-size: 8.5px;
501
- margin: 0px 2px 2px 4px !important;
502
- }
503
- }
506
+ @include widget-filter-chip();
504
507
 
505
508
  .chart-container {
506
509
  height: 205px;
@@ -718,6 +721,50 @@ $platform_widget_contrasts: (
718
721
  }
719
722
  }
720
723
 
724
+ &.line-chart-widget-lg {
725
+ height: 555px !important;
726
+ width: 100% !important;
727
+
728
+ @include widget-filter-container();
729
+ @include widget-filter-chip();
730
+ .gridline-path {
731
+ stroke-dasharray: 1, 4;
732
+ }
733
+
734
+ .partial-border--bottom-dark {
735
+ border-bottom: 1px solid #707070 !important;
736
+ }
737
+
738
+ .tick text {
739
+ font-size: 9px !important;
740
+ transform: rotate(0);
741
+ @include themify($platform_widget_contrasts) {
742
+ fill: apply('widgetLineChartText') !important;
743
+ }
744
+ @include font-weight--bold;
745
+ }
746
+
747
+ ngx-charts-line-chart {
748
+ path.area {
749
+ fill-opacity: 0 !important;
750
+ }
751
+ }
752
+
753
+ .chart-wrapper {
754
+ width: 100%;
755
+ flex: 1 1 auto;
756
+ height: 100px;
757
+ }
758
+
759
+ .hidden-datpicker-input {
760
+ position: absolute;
761
+ top: -8px;
762
+ right: -28px;
763
+ opacity: 0;
764
+ pointer-events: none !important;
765
+ }
766
+ }
767
+
721
768
  .with-circle-icon {
722
769
  &.red::after {
723
770
  @include material-icons-circle-sm();