@asd20/ui 3.2.411 → 3.2.414

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
@@ -5,7 +5,7 @@
5
5
  "*.scss",
6
6
  "*.vue"
7
7
  ],
8
- "version": "3.2.411",
8
+ "version": "3.2.414",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -64,7 +64,7 @@ export default {
64
64
  @include fluid-type($base-font-size * 1.5, $base-font-size * 2);
65
65
  color: var(--website-homepage-header__title-color) !important;
66
66
  padding-bottom: space(0.25);
67
- border-bottom: 5px solid var(--color__accent);
67
+ border-bottom: 5px solid var(--website-homepage-header__accent);
68
68
  }
69
69
  &::v-deep .asd20-messaging__body-content {
70
70
  display: none;
@@ -137,7 +137,7 @@ export default {
137
137
  content: '';
138
138
  display: block;
139
139
  position: absolute;
140
- width: 45%;
140
+ width: 75%;
141
141
  bottom: space(-.75);
142
142
  left: space(1.25);
143
143
  height: 60%;
@@ -174,6 +174,7 @@ export default {
174
174
  );
175
175
  flex-direction: row;
176
176
  width: inherit;
177
+ border: none;
177
178
  }
178
179
  }
179
180
  }
@@ -7,14 +7,11 @@ const formattedTime = event => {
7
7
  if (event.allDay) return 'All Day'
8
8
 
9
9
  if (event.multiDay) {
10
- return `${format(
11
- parse(event.originalStart),
12
- '<b>h:mm aa</b>, MMM.#DD,#YYYY'
13
- )
10
+ return `${format(parse(event.originalStart), '<b>h:mm aa</b>')
14
11
  .replace(/#/g, '&nbsp;')
15
12
  .replace(/:00/g, '')}<br>ending ${format(
16
13
  parse(event.end),
17
- '<b>h:mm aa</b>, MMM.#DD,#YYYY'
14
+ '<b>h:mm aa</b>'
18
15
  )
19
16
  .replace(/#/g, '&nbsp;')
20
17
  .replace(/:00/g, '')}`
@@ -25,9 +22,9 @@ const formattedTime = event => {
25
22
  ''
26
23
  )}`
27
24
  if (event.endTimeUndetermined) {
28
- time += `${format(parse(event.end), ', MMM. DD, YYYY').replace(/:00/g, '')}`
25
+ time += `${format(parse(event.end)).replace(/:00/g, '')}`
29
26
  } else {
30
- time += ` - ${format(parse(event.end), '<b>h:mm aa</b>, MMM.#DD,#YYYY')
27
+ time += ` - ${format(parse(event.end), '<b>h:mm aa</b>')
31
28
  .replace(/#/g, '&nbsp;')
32
29
  .replace(/:00/g, '')}`
33
30
  }