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/dist/classcard-ui.common.js +64 -58
- package/dist/classcard-ui.common.js.map +1 -1
- package/dist/classcard-ui.umd.js +64 -58
- 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/CConfirmActionModal/CConfirmActionModal.vue +1 -1
- package/src/components/CTable/CTable.vue +7 -1
package/package.json
CHANGED
|
@@ -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
|
|
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
|