@explorer-1/vue 0.2.7 → 0.2.8

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": "@explorer-1/vue",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -295,7 +295,9 @@ export default defineComponent({
295
295
  // styles for default vs transparent header
296
296
  // underline color and logo inversion styles handled within their respective components
297
297
  &.-scrolled {
298
- @apply fixed;
298
+ @media not print {
299
+ @apply fixed;
300
+ }
299
301
  }
300
302
  }
301
303
  // vue-transition classes
@@ -155,7 +155,7 @@ export const MultiDayEvent = {
155
155
  ...PageEduEventDetailData,
156
156
  startDate: '2024-08-08',
157
157
  endDate: '2024-08-12',
158
- startDatetime: '2024-08-08T14:00:00-07:00',
158
+ startDatetime: '2024-08-08T11:00:00-07:00',
159
159
  startTime: '15:00:00',
160
160
  endDatetime: '2024-08-12T22:00:00-07:00'
161
161
  }
@@ -352,7 +352,7 @@ export const mixinFormatEventTimeInHoursAndMinutes = (
352
352
  // Event is less than 24 hours and spans 1 day
353
353
  if (endTime) {
354
354
  if (startDateDayjs.format('a') === endDateDayjs.format('a')) {
355
- time = `${startDateDayjs.format('h:mm')} - ${endDateDayjs.format('h:mm a z')}`
355
+ time = `${startDateDayjs.format('h:mm')}-${endDateDayjs.format('h:mm a z')}`
356
356
  } else {
357
357
  time = `${startDateDayjs.format('h:mm a')} - ${endDateDayjs.format('h:mm a z')}`
358
358
  }