feat: camelcase global components
This commit is contained in:

committed by
konrad

parent
1977a7bee0
commit
f36115871c
@ -18,7 +18,7 @@
|
||||
@click="$emit('close')"
|
||||
>
|
||||
<span class="icon">
|
||||
<icon :icon="closeIcon" />
|
||||
<Icon :icon="closeIcon" />
|
||||
</span>
|
||||
</BaseButton>
|
||||
</header>
|
||||
|
@ -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">
|
||||
|
@ -13,7 +13,7 @@
|
||||
class="dropdown-trigger is-flex"
|
||||
@click="toggleOpen"
|
||||
>
|
||||
<icon
|
||||
<Icon
|
||||
:icon="triggerIcon"
|
||||
class="icon"
|
||||
/>
|
||||
|
@ -31,7 +31,7 @@
|
||||
class="close"
|
||||
@click="$emit('close')"
|
||||
>
|
||||
<icon icon="times" />
|
||||
<Icon icon="times" />
|
||||
</BaseButton>
|
||||
|
||||
<slot>
|
||||
|
@ -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>
|
||||
|
@ -35,6 +35,6 @@ function openQuickActions() {
|
||||
:title="$t('keyboardShortcuts.quickSearch')"
|
||||
@click="openQuickActions"
|
||||
>
|
||||
<icon icon="search" />
|
||||
<Icon icon="search" />
|
||||
</BaseButton>
|
||||
</template>
|
||||
|
@ -26,7 +26,7 @@
|
||||
@click="changeSubscription"
|
||||
>
|
||||
<span class="icon">
|
||||
<icon :icon="iconName" />
|
||||
<Icon :icon="iconName" />
|
||||
</span>
|
||||
{{ buttonText }}
|
||||
</BaseButton>
|
||||
|
@ -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>
|
||||
|
Reference in New Issue
Block a user