1
0

feat: camelcase global components

This commit is contained in:
Dominik Pschenitschni
2024-06-18 17:48:04 +02:00
committed by konrad
parent 1977a7bee0
commit f36115871c
74 changed files with 236 additions and 236 deletions

View File

@ -18,7 +18,7 @@
@click="$emit('close')"
>
<span class="icon">
<icon :icon="closeIcon" />
<Icon :icon="closeIcon" />
</span>
</BaseButton>
</header>

View File

@ -1,10 +1,10 @@
<template>
<modal
<Modal
:overflow="true"
:wide="wide"
@close="$router.back()"
>
<card
<Card
:title="title"
:shadow="false"
:padding="false"
@ -45,8 +45,8 @@
</x-button>
</slot>
</template>
</card>
</modal>
</Card>
</Modal>
</template>
<script setup lang="ts">

View File

@ -13,7 +13,7 @@
class="dropdown-trigger is-flex"
@click="toggleOpen"
>
<icon
<Icon
:icon="triggerIcon"
class="icon"
/>

View File

@ -31,7 +31,7 @@
class="close"
@click="$emit('close')"
>
<icon icon="times" />
<Icon icon="times" />
</BaseButton>
<slot>

View File

@ -1,5 +1,5 @@
<template>
<notifications
<Notifications
position="bottom left"
:max="2"
class="global-notification"
@ -44,7 +44,7 @@
</div>
</div>
</template>
</notifications>
</Notifications>
</template>
<style scoped>

View File

@ -35,6 +35,6 @@ function openQuickActions() {
:title="$t('keyboardShortcuts.quickSearch')"
@click="openQuickActions"
>
<icon icon="search" />
<Icon icon="search" />
</BaseButton>
</template>

View File

@ -26,7 +26,7 @@
@click="changeSubscription"
>
<span class="icon">
<icon :icon="iconName" />
<Icon :icon="iconName" />
</span>
{{ buttonText }}
</BaseButton>

View File

@ -1,6 +1,6 @@
<template>
<modal @close="close()">
<card
<Modal @close="close()">
<Card
class="has-background-white keyboard-shortcuts"
:shadow="false"
:title="$t('keyboardShortcuts.title')"
@ -43,8 +43,8 @@
</template>
</dl>
</template>
</card>
</modal>
</Card>
</Modal>
</template>
<script lang="ts" setup>