This commit is contained in:
@@ -14,9 +14,12 @@ Vue.component("font-awesome-icon", FontAwesomeIcon); // Register component globa
|
||||
import {
|
||||
faAddressBook,
|
||||
faAddressCard,
|
||||
faArrowsAltH,
|
||||
faArrowsAltV,
|
||||
faBars,
|
||||
faBell,
|
||||
faBinoculars,
|
||||
faBold,
|
||||
faBox,
|
||||
faBoxes,
|
||||
faBullhorn,
|
||||
@@ -27,13 +30,16 @@ import {
|
||||
faCalendarDay,
|
||||
faCaretDown,
|
||||
faCheckCircle,
|
||||
faCheckSquare,
|
||||
faChevronDown,
|
||||
faChild,
|
||||
faCogs,
|
||||
faColumns,
|
||||
faDiceD20,
|
||||
faDolly,
|
||||
faDollyFlatbed,
|
||||
faDoorOpen,
|
||||
faEdit,
|
||||
faEllipsisV,
|
||||
faEye,
|
||||
faEyeSlash,
|
||||
@@ -58,12 +64,19 @@ import {
|
||||
faGenderless,
|
||||
faGlasses,
|
||||
faGlobe,
|
||||
faHeading,
|
||||
faHistory,
|
||||
faHome,
|
||||
faImage,
|
||||
faInbox,
|
||||
faInfoCircle,
|
||||
faItalic,
|
||||
faKey,
|
||||
faLanguage,
|
||||
faLink,
|
||||
faListOl,
|
||||
faListUl,
|
||||
faMinus,
|
||||
faPallet,
|
||||
faPaperclip,
|
||||
faPaperPlane,
|
||||
@@ -71,6 +84,7 @@ import {
|
||||
faPencilRuler,
|
||||
faPlug,
|
||||
faQuestionCircle,
|
||||
faQuoteLeft,
|
||||
faRobot,
|
||||
faRocket,
|
||||
faSearch,
|
||||
@@ -83,6 +97,8 @@ import {
|
||||
faSlidersH,
|
||||
faStickyNote,
|
||||
faStore,
|
||||
faStrikethrough,
|
||||
faTable,
|
||||
faTachometerAlt,
|
||||
faThList,
|
||||
faTicketAlt,
|
||||
@@ -100,9 +116,12 @@ Vue.component("font-awesome-icon", FontAwesomeIcon);
|
||||
library.add(
|
||||
faAddressBook,
|
||||
faAddressCard,
|
||||
faArrowsAltH,
|
||||
faArrowsAltV,
|
||||
faBars,
|
||||
faBell,
|
||||
faBinoculars,
|
||||
faBold,
|
||||
faBox,
|
||||
faBoxes,
|
||||
faBullhorn,
|
||||
@@ -113,13 +132,16 @@ library.add(
|
||||
faCalendarDay,
|
||||
faCaretDown,
|
||||
faCheckCircle,
|
||||
faCheckSquare,
|
||||
faChevronDown,
|
||||
faChild,
|
||||
faCogs,
|
||||
faColumns,
|
||||
faDiceD20,
|
||||
faDolly,
|
||||
faDollyFlatbed,
|
||||
faDoorOpen,
|
||||
faEdit,
|
||||
faEllipsisV,
|
||||
faEye,
|
||||
faEyeSlash,
|
||||
@@ -144,12 +166,19 @@ library.add(
|
||||
faGenderless,
|
||||
faGlasses,
|
||||
faGlobe,
|
||||
faHeading,
|
||||
faHistory,
|
||||
faHome,
|
||||
faImage,
|
||||
faInbox,
|
||||
faInfoCircle,
|
||||
faItalic,
|
||||
faKey,
|
||||
faLanguage,
|
||||
faLink,
|
||||
faListOl,
|
||||
faListUl,
|
||||
faMinus,
|
||||
faPallet,
|
||||
faPaperclip,
|
||||
faPaperPlane,
|
||||
@@ -157,6 +186,7 @@ library.add(
|
||||
faPencilRuler,
|
||||
faPlug,
|
||||
faQuestionCircle,
|
||||
faQuoteLeft,
|
||||
faRobot,
|
||||
faRocket,
|
||||
faSearch,
|
||||
@@ -169,6 +199,8 @@ library.add(
|
||||
faSlidersH,
|
||||
faStickyNote,
|
||||
faStore,
|
||||
faStrikethrough,
|
||||
faTable,
|
||||
faTachometerAlt,
|
||||
faThList,
|
||||
faTicketAlt,
|
||||
@@ -194,6 +226,18 @@ const CUSTOM_ICONS = {
|
||||
icon: ["fas", "address-card"]
|
||||
}
|
||||
},
|
||||
ayiArrowsAltH: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
icon: ["fas", "arrows-alt-h"]
|
||||
}
|
||||
},
|
||||
ayiArrowsAltV: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
icon: ["fas", "arrows-alt-v"]
|
||||
}
|
||||
},
|
||||
ayiBell: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
@@ -206,6 +250,12 @@ const CUSTOM_ICONS = {
|
||||
icon: ["fas", "binoculars"]
|
||||
}
|
||||
},
|
||||
ayiBold: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
icon: ["fas", "bold"]
|
||||
}
|
||||
},
|
||||
ayiBox: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
@@ -260,6 +310,12 @@ const CUSTOM_ICONS = {
|
||||
icon: ["fas", "check-circle"]
|
||||
}
|
||||
},
|
||||
ayiCheckSquare: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
icon: ["fas", "check-square"]
|
||||
}
|
||||
},
|
||||
ayiChild: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
@@ -272,6 +328,12 @@ const CUSTOM_ICONS = {
|
||||
icon: ["fas", "cogs"]
|
||||
}
|
||||
},
|
||||
ayiColumns: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
icon: ["fas", "columns"]
|
||||
}
|
||||
},
|
||||
ayiCustomize: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
@@ -302,6 +364,12 @@ const CUSTOM_ICONS = {
|
||||
icon: ["fas", "door-open"]
|
||||
}
|
||||
},
|
||||
ayiEdit: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
icon: ["fas", "edit"]
|
||||
}
|
||||
},
|
||||
ayiEye: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
@@ -446,6 +514,12 @@ const CUSTOM_ICONS = {
|
||||
icon: ["fas", "globe"]
|
||||
}
|
||||
},
|
||||
ayiHeading: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
icon: ["fas", "heading"]
|
||||
}
|
||||
},
|
||||
ayiHistory: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
@@ -458,6 +532,12 @@ const CUSTOM_ICONS = {
|
||||
icon: ["fas", "home"]
|
||||
}
|
||||
},
|
||||
ayiImage: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
icon: ["fas", "image"]
|
||||
}
|
||||
},
|
||||
ayiInbox: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
@@ -470,6 +550,12 @@ const CUSTOM_ICONS = {
|
||||
icon: ["fas", "info-circle"]
|
||||
}
|
||||
},
|
||||
ayiItalic: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
icon: ["fas", "italic"]
|
||||
}
|
||||
},
|
||||
ayiKey: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
@@ -482,6 +568,30 @@ const CUSTOM_ICONS = {
|
||||
icon: ["fas", "language"]
|
||||
}
|
||||
},
|
||||
ayiLink: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
icon: ["fas", "link"]
|
||||
}
|
||||
},
|
||||
ayiListOl: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
icon: ["fas", "list-ol"]
|
||||
}
|
||||
},
|
||||
ayiListUl: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
icon: ["fas", "list-ul"]
|
||||
}
|
||||
},
|
||||
ayiMinus: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
icon: ["fas", "minus"]
|
||||
}
|
||||
},
|
||||
ayiPallet: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
@@ -524,6 +634,12 @@ const CUSTOM_ICONS = {
|
||||
icon: ["fas", "question-circle"]
|
||||
}
|
||||
},
|
||||
ayiQuoteLeft: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
icon: ["fas", "quote-left"]
|
||||
}
|
||||
},
|
||||
ayiRobot: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
@@ -590,6 +706,18 @@ const CUSTOM_ICONS = {
|
||||
icon: ["fas", "store"]
|
||||
}
|
||||
},
|
||||
ayiStrikethrough: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
icon: ["fas", "strikethrough"]
|
||||
}
|
||||
},
|
||||
ayiTable: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
icon: ["fas", "table"]
|
||||
}
|
||||
},
|
||||
ayiTachometer: {
|
||||
component: FontAwesomeIcon,
|
||||
props: {
|
||||
|
||||
Reference in New Issue
Block a user