classcard-ui 0.2.479 → 0.2.480

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.479",
3
+ "version": "0.2.480",
4
4
  "main": "dist/classcard-ui.umd.min.js",
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -44,7 +44,7 @@
44
44
  </h3>
45
45
  <div class="mt-2 max-w-xl text-sm text-gray-500">
46
46
  <p>{{ message }}</p>
47
- <p v-if="description" class="mt-1">{{ description }}</p>
47
+ <p v-if="description" class="mt-1 text-xs text-gray-500">{{ description }}</p>
48
48
  </div>
49
49
  <div class="mt-5 flex justify-end space-x-2">
50
50
  <c-button
@@ -90,7 +90,9 @@
90
90
  </div>
91
91
 
92
92
  <vue-good-table
93
- class="overflow-hidden rounded-lg border-2 border-solid border-gray-100"
93
+ :class="`overflow-hidden rounded-lg ${
94
+ hideBorder ? '' : 'border-2 border-solid border-gray-100'
95
+ }`"
94
96
  mode="remote"
95
97
  ref="my-table"
96
98
  :styleClass="
@@ -331,6 +333,10 @@ export default {
331
333
  type: Boolean,
332
334
  default: false,
333
335
  },
336
+ hideBorder: {
337
+ type: Boolean,
338
+ default: false,
339
+ },
334
340
  },
335
341
  mounted() {
336
342
  // to add drag and drop in table