edvoyui-component-library-test-flight 0.0.54 → 0.0.55
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
|
@@ -18,7 +18,17 @@
|
|
|
18
18
|
:collapse="true"
|
|
19
19
|
accordionStyle="separated"
|
|
20
20
|
@update:activeItem="handleActiveItem"
|
|
21
|
-
|
|
21
|
+
>
|
|
22
|
+
<template #title="{ item}">
|
|
23
|
+
<div>{{ item.title }}</div>
|
|
24
|
+
</template>
|
|
25
|
+
<template #right-icon="{item}">
|
|
26
|
+
<div :key="item" class="w-10 h-10 bg-red-100 border border-red-500 rounded-full" />
|
|
27
|
+
</template>
|
|
28
|
+
<template #content="{item}">
|
|
29
|
+
<div>{{ item.content }}</div>
|
|
30
|
+
</template>
|
|
31
|
+
</EUIAccordion>
|
|
22
32
|
|
|
23
33
|
<Delete />
|
|
24
34
|
<UTableview />
|
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
:class="[
|
|
26
26
|
accordionStyle === 'grouped'
|
|
27
27
|
? 'p-4'
|
|
28
|
-
: 'group-open:pb-4
|
|
29
|
-
'flex items-center font-semibold list-none cursor-pointer select-none focus:outline-none',
|
|
28
|
+
: 'group-open:pb-4 gap-6 group-open:border-b group-open:border-gray-200',
|
|
29
|
+
'flex items-center font-semibold list-none cursor-pointer select-none focus:outline-none max-w-full justify-between',
|
|
30
30
|
]"
|
|
31
31
|
:aria-expanded="openAccordions[index]"
|
|
32
32
|
>
|
|
33
33
|
<div
|
|
34
34
|
:class="[
|
|
35
|
-
accordionStyle === 'grouped' ? 'w-11/12' : 'flex-initial w-
|
|
35
|
+
accordionStyle === 'grouped' ? 'w-11/12' : 'flex-initial w-[calc(75%-1.5rem)]',
|
|
36
36
|
'text-gray-700 transition-all duration-200 ease-in-out faq-title group-hover:text-gray-900 group-open:text-gray-900',
|
|
37
37
|
]"
|
|
38
38
|
>
|
|
@@ -56,10 +56,8 @@
|
|
|
56
56
|
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
|
|
57
57
|
<path d="M9 6l6 6l-6 6"></path>
|
|
58
58
|
</svg>
|
|
59
|
-
<div v-else class="flex-1
|
|
60
|
-
|
|
61
|
-
<slot name="right-icon" :item="item"></slot>
|
|
62
|
-
</div>
|
|
59
|
+
<div v-else class="flex-1 max-w-[25%] flex items-center justify-end">
|
|
60
|
+
<slot name="right-icon" :item="item"></slot>
|
|
63
61
|
</div>
|
|
64
62
|
</summary>
|
|
65
63
|
<div
|