classcard-ui 0.2.226 → 0.2.227
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 +52 -53
- package/dist/classcard-ui.common.js.map +1 -1
- package/dist/classcard-ui.umd.js +52 -53
- 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/CCollapsibleSection/CCollapsibleSection.vue +4 -5
package/package.json
CHANGED
|
@@ -1,14 +1,10 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div>
|
|
3
3
|
<div
|
|
4
|
+
:class="divider || showSection ? 'border-b border-gray-200 pb-2' : ''"
|
|
4
5
|
class="flex flex-row items-center justify-between cursor-pointer"
|
|
5
6
|
@click="collapse"
|
|
6
7
|
>
|
|
7
|
-
<div class="text-sm text-gray-500 mt-5"
|
|
8
|
-
:class="divider || showSection ? 'border-b border-gray-200 pb-8' : ''"
|
|
9
|
-
v-if="showSection">
|
|
10
|
-
<slot></slot>
|
|
11
|
-
</div>
|
|
12
8
|
<!-- left and right arrow icon as per opening and closing of collapsible -->
|
|
13
9
|
<div class="flex flex-row items-center">
|
|
14
10
|
<c-icon
|
|
@@ -39,6 +35,9 @@
|
|
|
39
35
|
></c-anchor-tag>
|
|
40
36
|
</div>
|
|
41
37
|
<!-- content to render in collapsible section -->
|
|
38
|
+
<div class="text-sm text-gray-500 mt-5" v-if="showSection">
|
|
39
|
+
<slot></slot>
|
|
40
|
+
</div>
|
|
42
41
|
</div>
|
|
43
42
|
</template>
|
|
44
43
|
|