classcard-ui 0.2.532 → 0.2.535
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/dist/classcard-ui.common.js +54 -60
- package/dist/classcard-ui.common.js.map +1 -1
- package/dist/classcard-ui.umd.js +54 -60
- package/dist/classcard-ui.umd.js.map +1 -1
- package/dist/classcard-ui.umd.min.js +1 -1
- package/dist/classcard-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/CCalendar/CCalendar.vue +9 -15
package/package.json
CHANGED
|
@@ -146,8 +146,8 @@
|
|
|
146
146
|
>
|
|
147
147
|
{{ event.title }} ({{ event.booked }}/{{ event.seats }})
|
|
148
148
|
</div>
|
|
149
|
-
<div class="-m-
|
|
150
|
-
<div class="m-
|
|
149
|
+
<div class="-m-0.5 flex flex-wrap items-center">
|
|
150
|
+
<div class="m-0.5 flex items-center space-x-0.5">
|
|
151
151
|
<svg
|
|
152
152
|
xmlns="http://www.w3.org/2000/svg"
|
|
153
153
|
class="h-4 w-4 text-gray-400"
|
|
@@ -162,13 +162,13 @@
|
|
|
162
162
|
d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"
|
|
163
163
|
/>
|
|
164
164
|
</svg>
|
|
165
|
-
<span class="
|
|
165
|
+
<span class="text-sm text-gray-500"
|
|
166
166
|
>{{ event.duration }} mins</span
|
|
167
167
|
>
|
|
168
168
|
</div>
|
|
169
169
|
<div
|
|
170
170
|
v-if="event.subject && event.subject.length"
|
|
171
|
-
class="m-
|
|
171
|
+
class="m-0.5 flex items-center space-x-0.5"
|
|
172
172
|
>
|
|
173
173
|
<svg
|
|
174
174
|
xmlns="http://www.w3.org/2000/svg"
|
|
@@ -184,13 +184,11 @@
|
|
|
184
184
|
d="M5 5a2 2 0 012-2h10a2 2 0 012 2v16l-7-3.5L5 21V5z"
|
|
185
185
|
/>
|
|
186
186
|
</svg>
|
|
187
|
-
<span class="
|
|
188
|
-
event.subject
|
|
189
|
-
}}</span>
|
|
187
|
+
<span class="text-sm text-gray-500">{{ event.subject }}</span>
|
|
190
188
|
</div>
|
|
191
189
|
<div
|
|
192
190
|
v-if="event.location && event.location.length"
|
|
193
|
-
class="m-
|
|
191
|
+
class="m-0.5 flex items-center space-x-0.5"
|
|
194
192
|
>
|
|
195
193
|
<svg
|
|
196
194
|
xmlns="http://www.w3.org/2000/svg"
|
|
@@ -206,13 +204,11 @@
|
|
|
206
204
|
d="M9 20l-5.447-2.724A1 1 0 013 16.382V5.618a1 1 0 011.447-.894L9 7m0 13l6-3m-6 3V7m6 10l4.553 2.276A1 1 0 0021 18.382V7.618a1 1 0 00-.553-.894L15 4m0 13V4m0 0L9 7"
|
|
207
205
|
/>
|
|
208
206
|
</svg>
|
|
209
|
-
<span class="
|
|
210
|
-
event.location
|
|
211
|
-
}}</span>
|
|
207
|
+
<span class="text-sm text-gray-500">{{ event.location }}</span>
|
|
212
208
|
</div>
|
|
213
209
|
<div
|
|
214
210
|
v-if="event.staff && event.staff.length"
|
|
215
|
-
class="m-
|
|
211
|
+
class="m-0.5 flex items-center space-x-0.5"
|
|
216
212
|
>
|
|
217
213
|
<svg
|
|
218
214
|
xmlns="http://www.w3.org/2000/svg"
|
|
@@ -228,9 +224,7 @@
|
|
|
228
224
|
d="M21 13.255A23.931 23.931 0 0112 15c-3.183 0-6.22-.62-9-1.745M16 6V4a2 2 0 00-2-2h-4a2 2 0 00-2 2v2m4 6h.01M5 20h14a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"
|
|
229
225
|
/>
|
|
230
226
|
</svg>
|
|
231
|
-
<span class="
|
|
232
|
-
event.staff
|
|
233
|
-
}}</span>
|
|
227
|
+
<span class="text-sm text-gray-500">{{ event.staff }}</span>
|
|
234
228
|
</div>
|
|
235
229
|
</div>
|
|
236
230
|
</li>
|