Version 1.0.0 - Ajout du design et début search bar

This commit is contained in:
2025-08-07 15:58:18 +02:00
parent 7b25fcfa5c
commit b5dc2a9e37
15 changed files with 333 additions and 23 deletions

View File

@@ -86,9 +86,10 @@ defineExpose({
<section>
<div ref="box" :class="showMenu ? `showed firstbox` : 'firstbox'" @click="showMenu = !showMenu">
<template v-if="firstSlot">
<component :is="firstSlot" />
<component style="white-space: break-spaces;" :is="firstSlot" />
</template>
<IconAction
class="icon"
:icon="showMenu ? 'fa-solid fa-angle-up' : 'fa-solid fa-angle-down'"
/>
</div>
@@ -114,6 +115,7 @@ defineExpose({
font-size: 14px;
display: flex;
justify-content: space-between;
align-items: center;
}
.container {
@@ -148,6 +150,7 @@ defineExpose({
padding: 5px;
background-color: var(--tertiary);
cursor: pointer;
white-space: break-spaces;
}
.option:hover {
@@ -160,4 +163,9 @@ defineExpose({
padding-bottom: 0; */
border-radius: 5px 5px 0 0 !important;
}
.icon {
display: flex;
align-items: center;
}
</style>