classcard-ui 0.2.805 → 0.2.807

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": "classcard-ui",
3
- "version": "0.2.805",
3
+ "version": "0.2.807",
4
4
  "main": "dist/classcard-ui.umd.min.js",
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -155,7 +155,7 @@
155
155
  {{ formatTimeFromDate(event.end) }}
156
156
  </div>
157
157
  <div
158
- class="mt-1 text-sm font-semibold flex"
158
+ class="mt-1 flex text-sm font-semibold"
159
159
  :style="{ color: event.color }"
160
160
  :class="event.status === 7 ? 'line-through' : ''"
161
161
  >
@@ -166,7 +166,7 @@
166
166
  class="mt-0.5 h-4 w-4 shrink-0"
167
167
  :style="`color:${event.color}`"
168
168
  ></c-icon>
169
- {{ event.title }} ({{ event.booked }}/{{ event.seats }})
169
+ {{ event.title }}
170
170
  </div>
171
171
  <div class="-mx-1 -my-0.5 flex flex-wrap items-center">
172
172
  <div class="mx-1 my-0.5 flex items-center space-x-0.5">
@@ -185,7 +185,7 @@ export default {
185
185
  subLabel: String,
186
186
  placeholder: {
187
187
  type: String,
188
- default: "Start typing... (min 2 characters) to search options",
188
+ default: "Type and hit enter to save...",
189
189
  },
190
190
  // whether multiple fields are allowed or not
191
191
  isMultiple: {