classcard-ui 0.2.892 → 0.2.894
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 +57 -55
- package/dist/classcard-ui.common.js.map +1 -1
- package/dist/classcard-ui.umd.js +57 -55
- 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/CTable/CTable.vue +2 -0
package/package.json
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
class="mb-4 rounded-lg bg-gray-50 p-3"
|
|
7
7
|
>
|
|
8
8
|
<div class="flex items-center justify-between">
|
|
9
|
+
<slot name="customTableFilterActions"></slot>
|
|
9
10
|
<div v-if="searching" class="flex items-center">
|
|
10
11
|
<c-input
|
|
11
12
|
v-model="searchTerm"
|
|
@@ -156,6 +157,7 @@
|
|
|
156
157
|
</div>
|
|
157
158
|
</div>
|
|
158
159
|
</div>
|
|
160
|
+
<slot name="customTableExtraActions"></slot>
|
|
159
161
|
</div>
|
|
160
162
|
</div>
|
|
161
163
|
</div>
|