@beacon-interactive-systems-llc/beacon-platform-ui 17.6.3 → 17.6.5

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": "17.6.3",
3
+ "version": "17.6.5",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0",
@@ -25,7 +25,8 @@ $platform_button_contrasts: (
25
25
  buttonAmbientBorder: $beacon-gray-400,
26
26
 
27
27
  buttonDisabled: $beacon-gray-300,
28
- buttonShadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16)
28
+ buttonShadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16),
29
+ buttonBorder: $beacon-gray-border
29
30
  ),
30
31
  dark: (
31
32
  buttonBlue: $beacon-blue-200,
@@ -53,7 +54,8 @@ $platform_button_contrasts: (
53
54
  buttonAmbientBorder: $beacon-gray-300,
54
55
 
55
56
  buttonDisabled: $beacon-gray-500,
56
- buttonShadow: none
57
+ buttonShadow: none,
58
+ buttonBorder: $beacon-gray-border
57
59
  ),
58
60
  highcontrast: (
59
61
  buttonBlue: $highcontrast-bright-blue-200,
@@ -81,7 +83,8 @@ $platform_button_contrasts: (
81
83
  buttonAmbientBorder: $beacon-white,
82
84
 
83
85
  buttonDisabled: $beacon-gray-500,
84
- buttonShadow: none
86
+ buttonShadow: none,
87
+ buttonBorder: $beacon-gray-border
85
88
  )
86
89
  );
87
90
 
@@ -219,13 +222,25 @@ button.platform-btn {
219
222
  &--toggle {
220
223
  @include themify($platform_button_contrasts) {
221
224
  background-color: apply('buttonAmbient') !important;
222
- border: 1px solid apply('buttonAmbientText') !important;
225
+ border: 1px solid apply('buttonBorder') !important;
223
226
  }
224
227
  border-radius: 15px;
228
+ height: 28px;
225
229
 
226
230
  .group-btn {
227
231
  border: none !important;
228
232
  border-radius: 15px !important;
233
+ margin-top: auto;
234
+ margin-bottom: auto;
235
+ position: relative;
236
+
237
+ &:first-of-type {
238
+ margin-left: 2px;
239
+ }
240
+
241
+ &:last-of-type {
242
+ margin-right: 2px;
243
+ }
229
244
 
230
245
  &:not(.selected) {
231
246
  @include themify($platform_button_contrasts) {
@@ -1,7 +1,7 @@
1
1
  $platform_filter_contrasts: (
2
2
  light: (
3
3
  filterBackground: $beacon-dark-blue-100,
4
- filterBorder: $beacon-gray-300,
4
+ filterBorder: $beacon-gray-border,
5
5
  filterShadow: 0px 3px 3px $beacon-black,
6
6
  filterSearchIcon: $beacon-gray-400,
7
7
  filterChip: $beacon-green-100,
@@ -104,6 +104,10 @@ $date-filter-width: calc(1em * 8);
104
104
 
105
105
  .showing-label {
106
106
  @include font-size--default-md;
107
+
108
+ &:first-of-type {
109
+ padding-left: 8px;
110
+ }
107
111
  }
108
112
 
109
113
  .filter-chip-label {
@@ -115,14 +119,16 @@ $date-filter-width: calc(1em * 8);
115
119
  .filter-chip {
116
120
  @include font-size--default-md;
117
121
  @include font-weight--semibold;
118
- margin-left: 4px;
119
- padding-left: .25rem;
120
- padding-right: .25rem;
121
122
  @include themify($platform_filter_contrasts) {
122
123
  background: apply('filterChip');
123
124
  color: apply('filterChipText');
124
125
  }
125
126
 
127
+ height: 25px;
128
+ margin-left: 4px;
129
+ padding-left: .25rem;
130
+ padding-right: .25rem;
131
+
126
132
  &::after {
127
133
  @include font-color--semi-muted;
128
134
  content: "close";
@@ -138,9 +144,10 @@ $date-filter-width: calc(1em * 8);
138
144
  }
139
145
 
140
146
  .filter-input {
147
+ font-size: 14px;
141
148
  min-width: $min-filter-input-width;
142
149
  max-width: $max-filter-input-width;
143
- padding-left: 1.25rem;
150
+ padding-left: 26px;
144
151
  }
145
152
 
146
153
  .date-filter {
@@ -158,7 +165,7 @@ $date-filter-width: calc(1em * 8);
158
165
  font-family: "Material Icons";
159
166
  font-size: 16px;
160
167
  position: relative;
161
- left: .25rem;
168
+ left: 8px;
162
169
  top: 0.4rem;
163
170
  z-index: 99;
164
171
  }
@@ -143,11 +143,11 @@ $platform_form_contrasts: (
143
143
  top: 8px;
144
144
 
145
145
  &.right-icon {
146
- right: 4px;
146
+ right: 8px;
147
147
  }
148
148
 
149
149
  &.left-icon {
150
- left: 4px;
150
+ left: 8px;
151
151
  }
152
152
  }
153
153
 
@@ -38,7 +38,7 @@ $platform_layout_contrasts: (
38
38
  );
39
39
 
40
40
  $header-height: 50px;
41
- $detail-header-height: 70px;
41
+ $detail-header-height: 78px;
42
42
  $min-detail-width: 1400px;
43
43
  $leftnav-width: 212px;
44
44
  $leftnav-collapsed-width: 50px;
@@ -102,9 +102,9 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
102
102
  }
103
103
 
104
104
  mat-icon {
105
- height: 30px;
106
- width: 30px;
107
- font-size: 30px;
105
+ height: 24px;
106
+ width: 24px;
107
+ font-size: 24px;
108
108
  position: relative;
109
109
  top: 10px;
110
110
 
@@ -157,8 +157,11 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
157
157
  @include themify($platform_layout_contrasts) {
158
158
  background: apply('containerHeaderBackground');
159
159
  }
160
- height: $detail-header-height;
161
- padding: 8px 16px 0px 16px;
160
+
161
+ background-color: #f3f4f6;
162
+ box-shadow: 0 3px 6px #00000029;
163
+ height: 78px;
164
+ padding: 12px 12px 60px;
162
165
  position: absolute;
163
166
  width: 100%;
164
167
 
@@ -213,6 +216,11 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
213
216
  align-items: center;
214
217
  white-space: pre-wrap;
215
218
  }
219
+
220
+ mat-icon.three-dot-menu-trigger {
221
+ position: relative;
222
+ top: 7.5px;
223
+ }
216
224
  }
217
225
 
218
226
  &__tabs {
@@ -238,7 +246,7 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
238
246
 
239
247
  &__section {
240
248
  overflow: scroll;
241
- padding-top: 32px;
249
+ padding-top: 16px;
242
250
  position: relative;
243
251
  top: -16px;
244
252
  transition: width 0.5s ease-in-out;
@@ -261,7 +269,7 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
261
269
  padding: 16px;
262
270
  position: fixed;
263
271
  right: 0px;
264
- top: calc($header-height + $detail-header-height);
272
+ top: calc($header-height + $detail-header-height + 6px);
265
273
  width: $detail-sidebar-width;
266
274
 
267
275
  &__title {
@@ -42,7 +42,7 @@ $platform_tab_contrasts: (
42
42
 
43
43
  .detail__tabs {
44
44
  position: absolute;
45
- top: 46px;
45
+ top: 128px;
46
46
 
47
47
  mat-tab-header .mat-mdc-tab-labels .mdc-tab {
48
48
  height: 24px;
@@ -54,7 +54,10 @@ $platform_tab_contrasts: (
54
54
  .mat-mdc-tab-group {
55
55
  .mat-mdc-tab-header {
56
56
  box-shadow: none;
57
- padding-left: 14px !important;
57
+ // padding-left: 14px !important;
58
+ margin-top: -74px;
59
+ position: fixed !important;
60
+ // padding-bottom: 8px;
58
61
 
59
62
  .mat-tab-label-container {
60
63
  padding-left: 14px;
@@ -63,13 +66,15 @@ $platform_tab_contrasts: (
63
66
  .mdc-tab__text-label {
64
67
  font-size: 14px;
65
68
  height: 23px;
69
+ letter-spacing: 0.5px;
66
70
  min-width: unset;
67
- padding: 0 2px;
71
+ padding: 0 2px 6px 2px;
68
72
 
69
73
  mat-icon.tab-icon {
74
+ font-size: 15px;
70
75
  height: 16px;
76
+ margin-right: 4px;
71
77
  width: 16px;
72
- font-size: 14px;
73
78
  }
74
79
  }
75
80
 
@@ -83,6 +88,7 @@ $platform_tab_contrasts: (
83
88
 
84
89
  .mat-mdc-tab-body-wrapper {
85
90
  min-height: 324px;
91
+ margin-top: -36px;
86
92
  }
87
93
 
88
94
  // relevant connector tabs
@@ -9,3 +9,24 @@
9
9
  padding-bottom: 0px !important;
10
10
  }
11
11
  }
12
+
13
+
14
+ .mat-mdc-menu-panel {
15
+ .mat-mdc-menu-content {
16
+ .mat-mdc-menu-item {
17
+ min-height: 32px;
18
+ min-width: 132px;
19
+
20
+ mat-icon {
21
+ font-size: 18px;
22
+ height: 18px;
23
+ margin-right: 8px;
24
+ width: 18px;
25
+ }
26
+
27
+ .mat-mdc-menu-item-text {
28
+ font-size: 14px;
29
+ }
30
+ }
31
+ }
32
+ }
@@ -39,7 +39,8 @@ $min-dropdown-panel-width: 215px;
39
39
  @include themify($platform_form_contrasts) {
40
40
  background: apply('formInputBackground') !important;
41
41
  color: apply('formText') !important;
42
- border: 1px solid apply('formInputBorder') !important;
42
+ border: none;// 0.5px solid apply('formInputBorder') !important;
43
+ box-shadow: 0px 3px 7px 2px #00000029;
43
44
 
44
45
  .ng-dropdown-header {
45
46
  border-bottom: 1px solid apply('formInputBorder') !important;
@@ -90,6 +91,7 @@ $min-dropdown-panel-width: 215px;
90
91
  // For use with platform-selection-list: makes each select as wide as its placeholder text
91
92
  &.platform-filter-select {
92
93
  border-radius: 4px;
94
+ font-size: 14px;
93
95
 
94
96
  &.ng-select-multiple .ng-value {
95
97
  @include font-weight--semibold;
@@ -134,13 +136,35 @@ $min-dropdown-panel-width: 215px;
134
136
  }
135
137
 
136
138
  .ng-select .ng-arrow-wrapper::before {
137
- font-family: 'Material Icons';
138
139
  content: 'expand_more';
140
+ font-family: 'Material Icons';
141
+ position: relative;
142
+ top: 2px;
139
143
  }
140
144
 
141
145
  .ng-select.ng-select-opened .ng-arrow-wrapper::before {
142
- font-family: 'Material Icons';
143
146
  content: 'expand_less';
147
+ font-family: 'Material Icons';
148
+ position: relative;
149
+ top: 2px;
150
+ }
151
+
152
+ .ng-select .ng-clear-wrapper {
153
+ position: relative;
154
+ top: 2px;
155
+ }
156
+
157
+ .ng-select.search {
158
+ font-size: 14px;
159
+ line-height: 25px;
160
+
161
+ .ng-select-container {
162
+ width: 216px;
163
+ }
164
+
165
+ .ng-arrow-wrapper .ng-arrow {
166
+ display: none;
167
+ }
144
168
  }
145
169
 
146
170
  /* apply material form control highlight animation on focus for filter bar dropdowns */
@@ -21,6 +21,7 @@ $beacon-gray-400: #707070;
21
21
  $beacon-gray-500: #4B4A48;
22
22
  $beacon-gray-600: #2D2926;
23
23
  $beacon-gray-700: #121212;
24
+ $beacon-gray-border: #C4C4C4a1;
24
25
 
25
26
  $beacon-green-100: #D9F5E9;
26
27
  $beacon-green-200: #BFEFDB;
@@ -78,7 +78,7 @@ quill-editor {
78
78
  background: apply('formInputDisabled') !important;
79
79
  }
80
80
  }
81
- min-height: 100px;
81
+ min-height: 45px;
82
82
  }
83
83
  }
84
84
  }
@@ -104,6 +104,12 @@ quill-editor {
104
104
  }
105
105
  }
106
106
 
107
+ quill-view {
108
+ .ql-editor {
109
+ padding: 0;
110
+ }
111
+ }
112
+
107
113
  .quill-read-edit-toggle-container {
108
114
  &:hover {
109
115
  @include themify($platform_form_contrasts) {
@@ -2,7 +2,7 @@
2
2
 
3
3
  $platform_table_contrasts: (
4
4
  light: (
5
- tableBorder: $beacon-gray-300,
5
+ tableBorder: $beacon-gray-border,
6
6
  tableHeader: $beacon-dark-blue-100,
7
7
  tableHeaderText: $beacon-black,
8
8
  tableHeaderSortingColor: $beacon-white,