Merge pull request #108 from themesberg/modal_fixes

Modal component fixes
This commit is contained in:
Ilya Artamonov
2022-11-21 21:10:48 +03:00
committed by GitHub
6 changed files with 13 additions and 13 deletions

View File

@@ -11,5 +11,5 @@
</div>
</template>
<script setup>
import { Progress } from 'flowbite-vue'
import { Progress } from '../../../../src/index'
</script>

View File

@@ -4,5 +4,5 @@
</div>
</template>
<script setup>
import { Progress } from 'flowbite-vue'
import { Progress } from '../../../../src/index'
</script>

View File

@@ -2,5 +2,5 @@
<Progress labelProgress="true" labelPosition="inside" size="lg" progress="45"></Progress>
</template>
<script setup>
import { Progress } from 'flowbite-vue'
</script>
import { Progress } from '../../../../src/index'
</script>

View File

@@ -2,5 +2,5 @@
<Progress labelProgress="true" labelPosition="outside" label="Flowbite Vue 3" progress="45"></Progress>
</template>
<script setup>
import { Progress } from 'flowbite-vue'
</script>
import { Progress } from '../../../../src/index'
</script>

View File

@@ -7,5 +7,5 @@
</div>
</template>
<script setup>
import { Progress } from 'flowbite-vue'
</script>
import { Progress } from '../../../../src/index'
</script>

View File

@@ -9,13 +9,13 @@
<!-- Modal content -->
<div class="relative bg-white rounded-lg shadow dark:bg-gray-700">
<!-- Modal header -->
<div class="p-4 rounded-t flex justify-between items-center" :class="$slots.header ? 'border-b dark:border-gray-600' : ''">
<div class="p-4 rounded-t flex justify-between items-center" :class="$slots.header ? 'border-b border-gray-200 dark:border-gray-600' : ''">
<slot name="header" />
<div>
<button @click="closeModal" type="button" class="text-gray-400 bg-transparent hover:bg-gray-200 hover:text-gray-900 rounded-lg text-sm p-1.5 ml-auto inline-flex items-center dark:hover:bg-gray-600 dark:hover:text-white">
<button @click="closeModal" type="button" class="text-gray-400 bg-transparent hover:bg-gray-200 hover:text-gray-900 rounded-lg text-sm p-1.5 ml-auto inline-flex items-center dark:hover:bg-gray-600 dark:hover:text-white">
<slot name="close-icon">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z" clip-rule="evenodd"></path></svg>
</button>
</div>
</slot>
</button>
</div>
<!-- Modal body -->
<div class="p-6" :class="$slots.header ? '' : 'pt-0'">