- Introduced a new 'searchSelect' component to the form builder, allowing users to search and select options from a dropdown. - Updated FormBuilderComponents.vue to include the new searchable select component with default properties and options. - Enhanced form validation rules in various components to support the new searchable select input type. - Adjusted z-index values in multiple components and styles for improved layering and visibility. - Refined CSS styles for modal and header components to ensure consistent appearance across the application.
21 lines
560 B
Vue
21 lines
560 B
Vue
<script setup></script>
|
|
|
|
<template>
|
|
<div>
|
|
<div
|
|
class="w-full h-14 z-[1000] bg-white dark:bg-slate-800 fixed top-0 right-0 px-5 py-3 duration-300 shadow-md shadow-slate-200 dark:shadow-slate-900"
|
|
>
|
|
<div class="flex justify-between">
|
|
<div>
|
|
<h1 class="text-2xl font-semibold text-gray-800 dark:text-white">
|
|
<Icon
|
|
name="material-symbols:chevron-left-rounded"
|
|
class="inline-block w-6 h-6 mr-2"
|
|
/>
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|