This commit is contained in:
@@ -17,6 +17,7 @@ import {
|
|||||||
faAddressCard,
|
faAddressCard,
|
||||||
faArrowsAltH,
|
faArrowsAltH,
|
||||||
faArrowsAltV,
|
faArrowsAltV,
|
||||||
|
faBackward,
|
||||||
faBars,
|
faBars,
|
||||||
faBell,
|
faBell,
|
||||||
faBinoculars,
|
faBinoculars,
|
||||||
@@ -70,6 +71,7 @@ import {
|
|||||||
faFileWord,
|
faFileWord,
|
||||||
faFilter,
|
faFilter,
|
||||||
faFolder,
|
faFolder,
|
||||||
|
faForward,
|
||||||
faGenderless,
|
faGenderless,
|
||||||
faGlasses,
|
faGlasses,
|
||||||
faGlobe,
|
faGlobe,
|
||||||
@@ -109,6 +111,8 @@ import {
|
|||||||
faSitemap,
|
faSitemap,
|
||||||
faSlidersH,
|
faSlidersH,
|
||||||
faSquareFull,
|
faSquareFull,
|
||||||
|
faStepBackward,
|
||||||
|
faStepForward,
|
||||||
faStickyNote,
|
faStickyNote,
|
||||||
faStore,
|
faStore,
|
||||||
faStrikethrough,
|
faStrikethrough,
|
||||||
@@ -135,6 +139,7 @@ library.add(
|
|||||||
faAddressCard,
|
faAddressCard,
|
||||||
faArrowsAltH,
|
faArrowsAltH,
|
||||||
faArrowsAltV,
|
faArrowsAltV,
|
||||||
|
faBackward,
|
||||||
faBars,
|
faBars,
|
||||||
faBell,
|
faBell,
|
||||||
faBinoculars,
|
faBinoculars,
|
||||||
@@ -188,6 +193,7 @@ library.add(
|
|||||||
faFileWord,
|
faFileWord,
|
||||||
faFilter,
|
faFilter,
|
||||||
faFolder,
|
faFolder,
|
||||||
|
faForward,
|
||||||
faGenderless,
|
faGenderless,
|
||||||
faGlasses,
|
faGlasses,
|
||||||
faGlobe,
|
faGlobe,
|
||||||
@@ -228,6 +234,8 @@ library.add(
|
|||||||
faSlidersH,
|
faSlidersH,
|
||||||
farSquare,
|
farSquare,
|
||||||
faSquareFull,
|
faSquareFull,
|
||||||
|
faStepBackward,
|
||||||
|
faStepForward,
|
||||||
faStickyNote,
|
faStickyNote,
|
||||||
faStore,
|
faStore,
|
||||||
faStrikethrough,
|
faStrikethrough,
|
||||||
@@ -272,6 +280,12 @@ const CUSTOM_ICONS = {
|
|||||||
icon: ["fas", "arrows-alt-v"]
|
icon: ["fas", "arrows-alt-v"]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
ayiBackward: {
|
||||||
|
component: FontAwesomeIcon,
|
||||||
|
props: {
|
||||||
|
icon: ["fas", "backward"]
|
||||||
|
}
|
||||||
|
},
|
||||||
ayiBell: {
|
ayiBell: {
|
||||||
component: FontAwesomeIcon,
|
component: FontAwesomeIcon,
|
||||||
props: {
|
props: {
|
||||||
@@ -578,6 +592,12 @@ const CUSTOM_ICONS = {
|
|||||||
icon: ["fas", "folder"]
|
icon: ["fas", "folder"]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
ayiForward: {
|
||||||
|
component: FontAwesomeIcon,
|
||||||
|
props: {
|
||||||
|
icon: ["fas", "forward"]
|
||||||
|
}
|
||||||
|
},
|
||||||
ayiGenderless: {
|
ayiGenderless: {
|
||||||
component: FontAwesomeIcon,
|
component: FontAwesomeIcon,
|
||||||
props: {
|
props: {
|
||||||
@@ -812,6 +832,18 @@ const CUSTOM_ICONS = {
|
|||||||
icon: ["fas", "square-full"]
|
icon: ["fas", "square-full"]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
ayiStepBackward: {
|
||||||
|
component: FontAwesomeIcon,
|
||||||
|
props: {
|
||||||
|
icon: ["fas", "step-backward"]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
ayiStepForward: {
|
||||||
|
component: FontAwesomeIcon,
|
||||||
|
props: {
|
||||||
|
icon: ["fas", "step-forward"]
|
||||||
|
}
|
||||||
|
},
|
||||||
ayiStickyNote: {
|
ayiStickyNote: {
|
||||||
component: FontAwesomeIcon,
|
component: FontAwesomeIcon,
|
||||||
props: {
|
props: {
|
||||||
|
|||||||
@@ -57,16 +57,16 @@
|
|||||||
<!-- RE-ORDER CONTROL -->
|
<!-- RE-ORDER CONTROL -->
|
||||||
<div class="d-flex justify-space-between">
|
<div class="d-flex justify-space-between">
|
||||||
<v-btn large icon @click="move('start', index)"
|
<v-btn large icon @click="move('start', index)"
|
||||||
><v-icon large>fa-step-backward</v-icon></v-btn
|
><v-icon large>$ayiStepBackward</v-icon></v-btn
|
||||||
>
|
>
|
||||||
<v-btn large icon @click="move('left', index)"
|
<v-btn large icon @click="move('left', index)"
|
||||||
><v-icon large>fa-backward</v-icon></v-btn
|
><v-icon large>$ayiBackward</v-icon></v-btn
|
||||||
>
|
>
|
||||||
<v-btn large icon @click="move('right', index)"
|
<v-btn large icon @click="move('right', index)"
|
||||||
><v-icon large>fa-forward</v-icon></v-btn
|
><v-icon large>$ayiForward</v-icon></v-btn
|
||||||
>
|
>
|
||||||
<v-btn large icon @click="move('end', index)"
|
<v-btn large icon @click="move('end', index)"
|
||||||
><v-icon large>fa-step-forward</v-icon></v-btn
|
><v-icon large>$ayiStepForward</v-icon></v-btn
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</v-card-text>
|
</v-card-text>
|
||||||
|
|||||||
@@ -61,17 +61,17 @@
|
|||||||
<div class="d-flex justify-space-between">
|
<div class="d-flex justify-space-between">
|
||||||
<v-btn large icon @click="move('start', index)"
|
<v-btn large icon @click="move('start', index)"
|
||||||
><v-icon large :data-cy="!!$ay.dev ? 'movestart' : false"
|
><v-icon large :data-cy="!!$ay.dev ? 'movestart' : false"
|
||||||
>fa-step-backward</v-icon
|
>$ayiStepBackward</v-icon
|
||||||
></v-btn
|
></v-btn
|
||||||
>
|
>
|
||||||
<v-btn large icon @click="move('left', index)"
|
<v-btn large icon @click="move('left', index)"
|
||||||
><v-icon large>fa-backward</v-icon></v-btn
|
><v-icon large>$ayiBackward</v-icon></v-btn
|
||||||
>
|
>
|
||||||
<v-btn large icon @click="move('right', index)"
|
<v-btn large icon @click="move('right', index)"
|
||||||
><v-icon large>fa-forward</v-icon></v-btn
|
><v-icon large>$ayiForward</v-icon></v-btn
|
||||||
>
|
>
|
||||||
<v-btn large icon @click="move('end', index)"
|
<v-btn large icon @click="move('end', index)"
|
||||||
><v-icon large>fa-step-forward</v-icon></v-btn
|
><v-icon large>$ayiStepForward</v-icon></v-btn
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
<!-- SORT CONTROL -->
|
<!-- SORT CONTROL -->
|
||||||
|
|||||||
Reference in New Issue
Block a user