@asd20/ui 3.2.947 → 3.2.949

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.947",
8
+ "version": "3.2.949",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -7,6 +7,7 @@
7
7
  :style="{ '--accent-color': event.calendarColor }"
8
8
  >
9
9
  <span class="title">
10
+ <span class="dot" :style="{ backgroundColor: event.calendarColor }"></span>
10
11
  <span>{{ sanitizedSummary }}</span>
11
12
  </span>
12
13
 
@@ -7,7 +7,7 @@
7
7
  :key="index"
8
8
  class="asd20-calendar__weekday"
9
9
  >
10
- {{ shortWeekdays ? dayName.charAt(0) : dayName }}
10
+ <span>{{ shortWeekdays ? dayName.charAt(0) : dayName }}</span>
11
11
  </div>
12
12
  </div>
13
13
  <!-- Days -->
@@ -29,20 +29,20 @@
29
29
  <span class="day">{{ day.number }}</span>
30
30
  <span class="year">{{ day.year }}</span>
31
31
  </div>
32
- <div>
33
- <div
34
- class="asd20-calendar__events"
35
- v-if="!annualView || !day.outsideOfCurrentMonth"
36
- >
37
- <Asd20CalendarEventButton
38
- v-for="(event, index) in day.events"
39
- :key="index"
40
- :event="event"
41
- :class="day.events.length > 1 ? 'small-dot' : ''"
42
- @click.native="onEventClick(event)"
43
- />
44
- </div>
32
+
33
+ <div
34
+ class="asd20-calendar__events"
35
+ v-if="!annualView || !day.outsideOfCurrentMonth"
36
+ >
37
+ <Asd20CalendarEventButton
38
+ v-for="(event, index) in day.events"
39
+ :key="index"
40
+ :event="event"
41
+ :class="day.events.length > 1 ? 'small-dot' : ''"
42
+ @click.native="onEventClick(event)"
43
+ />
45
44
  </div>
45
+
46
46
  </li>
47
47
  </ol>
48
48
  <asd20-viewport
@@ -209,6 +209,9 @@ export default {
209
209
  infinite alternate-reverse both;
210
210
  }
211
211
  }
212
+ .video-toggle-btn {
213
+ display: none;
214
+ }
212
215
 
213
216
  @keyframes slide-top {
214
217
  0% {
@@ -312,31 +315,32 @@ export default {
312
315
  .scroll-down-indicator {
313
316
  display: block;
314
317
  }
315
- }
316
- .video-toggle-btn {
317
- position: absolute;
318
- bottom: 2rem;
319
- right: 0.5rem;
320
- background-color: rgba(0, 0, 0, 0.5);
321
- color: lightgray;
322
- border: none;
323
- width: 45px;
324
- height: 45px;
325
- border-radius: 50%;
326
- display: flex;
327
- align-items: center;
328
- justify-content: center;
329
- font-size: 18px;
330
- cursor: pointer;
331
- transition: background-color 0.3s ease-in-out;
332
- }
318
+ .video-toggle-btn {
319
+ display: block;
320
+ position: absolute;
321
+ bottom: 2rem;
322
+ right: 0.5rem;
323
+ background-color: rgba(0, 0, 0, 0.5);
324
+ color: lightgray;
325
+ border: none;
326
+ width: 45px;
327
+ height: 45px;
328
+ border-radius: 50%;
329
+ display: flex;
330
+ align-items: center;
331
+ justify-content: center;
332
+ font-size: 18px;
333
+ cursor: pointer;
334
+ transition: background-color 0.3s ease-in-out;
335
+ }
333
336
 
334
- .video-toggle-btn:hover {
335
- background-color: rgba(0, 0, 0, 0.7);
336
- }
337
+ .video-toggle-btn:hover {
338
+ background-color: rgba(0, 0, 0, 0.7);
339
+ }
337
340
 
338
- .video-toggle-btn span {
339
- line-height: 1;
341
+ .video-toggle-btn span {
342
+ line-height: 1;
343
+ }
340
344
  }
341
345
  }
342
346
  </style>