Merge pull request #36 from modrinth/fixes-modal-xicon

Imports XIcon in Modal component.
This commit is contained in:
Zach Baird 2023-04-12 11:12:11 -04:00 committed by GitHub
commit 2ef333c66d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 4 deletions

View File

@ -1,8 +1,8 @@
<template>
<div
ref="dropdown"
tabindex="0"
role="combobox"
ref="dropdown"
:aria-expanded="dropdownVisible"
class="animated-dropdown"
@focus="onFocus"

View File

@ -22,8 +22,13 @@
</div>
</template>
<script setup>
import { XIcon } from '@/components'
</script>
<script>
export default {
import { defineComponent } from 'vue'
export default defineComponent({
props: {
header: {
type: String,
@ -47,7 +52,7 @@ export default {
this.shown = false
},
},
}
})
</script>
<style lang="scss" scoped>

View File

@ -1,7 +1,7 @@
{
"name": "omorphia",
"type": "module",
"version": "0.4.4",
"version": "0.4.5",
"files": [
"dist"
],