classcard-ui 0.2.480 → 0.2.483

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.480",
3
+ "version": "0.2.483",
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 text-xs text-gray-500">{{ description }}</p>
47
+ <p v-if="description" class="mt-1 text-gray-500">{{ description }}</p>
48
48
  </div>
49
49
  <div class="mt-5 flex justify-end space-x-2">
50
50
  <c-button
@@ -86,6 +86,9 @@ export default {
86
86
  type: String,
87
87
  default: "",
88
88
  },
89
+ description: {
90
+ type: String,
91
+ },
89
92
  actionOneLabel: {
90
93
  type: String,
91
94
  default: "Cancel",
@@ -106,9 +109,6 @@ export default {
106
109
  type: Boolean,
107
110
  default: false,
108
111
  },
109
- description: {
110
- type: String,
111
- },
112
112
  },
113
113
  };
114
114
  </script>
@@ -91,7 +91,7 @@
91
91
 
92
92
  <vue-good-table
93
93
  :class="`overflow-hidden rounded-lg ${
94
- hideBorder ? '' : 'border-2 border-solid border-gray-100'
94
+ hideBorder ? ' border-none' : 'border-2 border-solid border-gray-100'
95
95
  }`"
96
96
  mode="remote"
97
97
  ref="my-table"