classcard-ui 0.2.215 → 0.2.216

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.215",
3
+ "version": "0.2.216",
4
4
  "main": "dist/classcard-ui.common.js",
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div>
3
3
 
4
- <div slot="table-actions" v-if="tableActions" class="bg-gray-100 rounded-lg p-3 mb-6">
4
+ <div slot="table-actions" v-if="tableActions" class="bg-gray-50 rounded-lg p-3 mb-4">
5
5
  <div class="flex justify-between">
6
6
  <div v-if="searching">
7
7
  <c-input v-model="searchTerm" :isValidate="searching" :placeholder="searchPlaceholder" class="-mt-1 w-56" type="text"></c-input>
@@ -66,7 +66,7 @@
66
66
  </div>
67
67
 
68
68
  <vue-good-table
69
- class="border-solid border-2 border-gray-200 rounded-lg"
69
+ class="border-solid border-2 border-gray-100 rounded-lg overflow-hidden"
70
70
  mode="remote"
71
71
  ref="my-table"
72
72
  :styleClass="showLoader ? 'vgt-table opacity-50 pointer-events-none' : 'vgt-table'"
@@ -11,6 +11,7 @@
11
11
  <textarea
12
12
  :value="textareaValue"
13
13
  @input="$emit('input', $event.target.value)"
14
+ @blur="$emit('blur', $event.target.value)"
14
15
  :placeholder="placeholder"
15
16
  :rows="rows"
16
17
  :class="errorClasses"