This commit is contained in:
2020-10-06 14:41:33 +00:00
parent 12f9f6aec2
commit d7b9b94804
6 changed files with 32 additions and 8 deletions

View File

@@ -46,7 +46,7 @@
v-on="on"
v-model="formatTime"
label
prepend-icon="fa-clock"
prepend-icon="$ayiClock"
@click:prepend="dlgtime = true"
readonly
:error="!!error"

View File

@@ -5,7 +5,7 @@
:data-cy="!!$ay.dev ? 'errorbox' : false"
v-show="errorBoxMessage"
color="error"
icon="fa-exclamation-circle "
icon="$ayiExclamationCircle"
transition="scale-transition"
class="multi-line"
outlined

View File

@@ -112,7 +112,7 @@
<template v-else-if="c.t == 6">
<!-- BOOL -->
<div class="text-center">
<v-icon v-if="c.v === false" small>far fa-square</v-icon>
<v-icon v-if="c.v === false" small>$ayiSquare</v-icon>
<v-icon v-else-if="c.v === true" small
>far $ayiCheckSquare</v-icon
>
@@ -199,7 +199,7 @@
@click="props.toggleSelectAll(!props.everyItem)"
class="pl-2 pt-2"
>
<v-icon v-if="!props.someItems" large>far fa-square</v-icon>
<v-icon v-if="!props.someItems" large>$ayiSquare</v-icon>
<v-icon v-if="props.someItems && !props.everyItem" large
>far $ayiMinus-square</v-icon
>
@@ -285,7 +285,7 @@
<!-- BOOL -->
<div>
<v-icon v-if="c.v === false" small
>far fa-square</v-icon
>$ayiSquare</v-icon
>
<v-icon v-else-if="c.v === true" small
>far $ayiCheckSquare</v-icon

View File

@@ -17,7 +17,7 @@
<v-icon large color="info">$ayiInfoCircle</v-icon>
</template>
<template v-if="options.type == 'warning'">
<v-icon large color="warning">fa-exclamation-circle</v-icon>
<v-icon large color="warning">$ayiExclamationCircle</v-icon>
</template>
<template v-if="options.type == 'error'">
<v-icon large color="error">fa-exclamation-triangle</v-icon>

View File

@@ -8,7 +8,7 @@
v-on="on"
v-model="formatTime"
v-bind:label="label"
prepend-icon="fa-clock"
prepend-icon="$ayiClock"
@click:prepend="dlgtime = true"
readonly
:error="!!error"