From 0dae265eadaed12f691794a57f1cac923d00ee09 Mon Sep 17 00:00:00 2001 From: Jeff Ohrstrom Date: Tue, 1 Feb 2022 14:41:52 -0500 Subject: [PATCH] start of a new icon picker. (#1794) * start of a new icon picker. * edit dom in one single operation * rm old file --- .../javascripts/fontawesome-iconpicker.js | 4869 ---------------- .../app/javascript/packs/fa/faIconInfo.js | 4997 ----------------- .../app/javascript/packs/fa/faIconPicker.js | 41 - .../app/javascript/packs/icon_picker.js | 48 + apps/dashboard/app/javascript/packs/icons.js | 1017 ++++ .../javascript/stylesheets/application.scss | 2 +- .../stylesheets/fontawesome-iconpicker.css | 312 - .../javascript/stylesheets/icon_picker.scss | 31 + .../app/javascript/stylesheets/products.scss | 1 + .../app/views/products/_form_icon.html.erb | 28 +- apps/dashboard/config/webpack/environment.js | 9 +- .../test/application_system_test_case.rb | 4 + .../test/system/products_dev_test.rb | 25 + 13 files changed, 1145 insertions(+), 10239 deletions(-) delete mode 100644 apps/dashboard/app/assets/javascripts/fontawesome-iconpicker.js delete mode 100644 apps/dashboard/app/javascript/packs/fa/faIconInfo.js delete mode 100644 apps/dashboard/app/javascript/packs/fa/faIconPicker.js create mode 100644 apps/dashboard/app/javascript/packs/icon_picker.js create mode 100644 apps/dashboard/app/javascript/packs/icons.js delete mode 100644 apps/dashboard/app/javascript/stylesheets/fontawesome-iconpicker.css create mode 100644 apps/dashboard/app/javascript/stylesheets/icon_picker.scss diff --git a/apps/dashboard/app/assets/javascripts/fontawesome-iconpicker.js b/apps/dashboard/app/assets/javascripts/fontawesome-iconpicker.js deleted file mode 100644 index 7973914582..0000000000 --- a/apps/dashboard/app/assets/javascripts/fontawesome-iconpicker.js +++ /dev/null @@ -1,4869 +0,0 @@ -/*! - * Font Awesome Icon Picker - * https://farbelous.github.io/fontawesome-iconpicker/ - * - * Originally written by (c) 2016 Javi Aguilar - * Licensed under the MIT License - * https://github.com/farbelous/fontawesome-iconpicker/blob/master/LICENSE - * - */ -(function(a) { - if (typeof define === "function" && define.amd) { - define([ "jquery" ], a); - } else { - a(jQuery); - } -})(function(a) { - a.ui = a.ui || {}; - var b = a.ui.version = "1.12.1"; - /*! - * jQuery UI Position 1.12.1 - * http://jqueryui.com - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - * - * http://api.jqueryui.com/position/ - */ - (function() { - var b, c = Math.max, d = Math.abs, e = /left|center|right/, f = /top|center|bottom/, g = /[\+\-]\d+(\.[\d]+)?%?/, h = /^\w+/, i = /%$/, j = a.fn.pos; - function k(a, b, c) { - return [ parseFloat(a[0]) * (i.test(a[0]) ? b / 100 : 1), parseFloat(a[1]) * (i.test(a[1]) ? c / 100 : 1) ]; - } - function l(b, c) { - return parseInt(a.css(b, c), 10) || 0; - } - function m(b) { - var c = b[0]; - if (c.nodeType === 9) { - return { - width: b.width(), - height: b.height(), - offset: { - top: 0, - left: 0 - } - }; - } - if (a.isWindow(c)) { - return { - width: b.width(), - height: b.height(), - offset: { - top: b.scrollTop(), - left: b.scrollLeft() - } - }; - } - if (c.preventDefault) { - return { - width: 0, - height: 0, - offset: { - top: c.pageY, - left: c.pageX - } - }; - } - return { - width: b.outerWidth(), - height: b.outerHeight(), - offset: b.offset() - }; - } - a.pos = { - scrollbarWidth: function() { - if (b !== undefined) { - return b; - } - var c, d, e = a("
" + "
"), f = e.children()[0]; - a("body").append(e); - c = f.offsetWidth; - e.css("overflow", "scroll"); - d = f.offsetWidth; - if (c === d) { - d = e[0].clientWidth; - } - e.remove(); - return b = c - d; - }, - getScrollInfo: function(b) { - var c = b.isWindow || b.isDocument ? "" : b.element.css("overflow-x"), d = b.isWindow || b.isDocument ? "" : b.element.css("overflow-y"), e = c === "scroll" || c === "auto" && b.width < b.element[0].scrollWidth, f = d === "scroll" || d === "auto" && b.height < b.element[0].scrollHeight; - return { - width: f ? a.pos.scrollbarWidth() : 0, - height: e ? a.pos.scrollbarWidth() : 0 - }; - }, - getWithinInfo: function(b) { - var c = a(b || window), d = a.isWindow(c[0]), e = !!c[0] && c[0].nodeType === 9, f = !d && !e; - return { - element: c, - isWindow: d, - isDocument: e, - offset: f ? a(b).offset() : { - left: 0, - top: 0 - }, - scrollLeft: c.scrollLeft(), - scrollTop: c.scrollTop(), - width: c.outerWidth(), - height: c.outerHeight() - }; - } - }; - a.fn.pos = function(b) { - if (!b || !b.of) { - return j.apply(this, arguments); - } - b = a.extend({}, b); - var i, n, o, p, q, r, s = a(b.of), t = a.pos.getWithinInfo(b.within), u = a.pos.getScrollInfo(t), v = (b.collision || "flip").split(" "), w = {}; - r = m(s); - if (s[0].preventDefault) { - b.at = "left top"; - } - n = r.width; - o = r.height; - p = r.offset; - q = a.extend({}, p); - a.each([ "my", "at" ], function() { - var a = (b[this] || "").split(" "), c, d; - if (a.length === 1) { - a = e.test(a[0]) ? a.concat([ "center" ]) : f.test(a[0]) ? [ "center" ].concat(a) : [ "center", "center" ]; - } - a[0] = e.test(a[0]) ? a[0] : "center"; - a[1] = f.test(a[1]) ? a[1] : "center"; - c = g.exec(a[0]); - d = g.exec(a[1]); - w[this] = [ c ? c[0] : 0, d ? d[0] : 0 ]; - b[this] = [ h.exec(a[0])[0], h.exec(a[1])[0] ]; - }); - if (v.length === 1) { - v[1] = v[0]; - } - if (b.at[0] === "right") { - q.left += n; - } else if (b.at[0] === "center") { - q.left += n / 2; - } - if (b.at[1] === "bottom") { - q.top += o; - } else if (b.at[1] === "center") { - q.top += o / 2; - } - i = k(w.at, n, o); - q.left += i[0]; - q.top += i[1]; - return this.each(function() { - var e, f, g = a(this), h = g.outerWidth(), j = g.outerHeight(), m = l(this, "marginLeft"), r = l(this, "marginTop"), x = h + m + l(this, "marginRight") + u.width, y = j + r + l(this, "marginBottom") + u.height, z = a.extend({}, q), A = k(w.my, g.outerWidth(), g.outerHeight()); - if (b.my[0] === "right") { - z.left -= h; - } else if (b.my[0] === "center") { - z.left -= h / 2; - } - if (b.my[1] === "bottom") { - z.top -= j; - } else if (b.my[1] === "center") { - z.top -= j / 2; - } - z.left += A[0]; - z.top += A[1]; - e = { - marginLeft: m, - marginTop: r - }; - a.each([ "left", "top" ], function(c, d) { - if (a.ui.pos[v[c]]) { - a.ui.pos[v[c]][d](z, { - targetWidth: n, - targetHeight: o, - elemWidth: h, - elemHeight: j, - collisionPosition: e, - collisionWidth: x, - collisionHeight: y, - offset: [ i[0] + A[0], i[1] + A[1] ], - my: b.my, - at: b.at, - within: t, - elem: g - }); - } - }); - if (b.using) { - f = function(a) { - var e = p.left - z.left, f = e + n - h, i = p.top - z.top, k = i + o - j, l = { - target: { - element: s, - left: p.left, - top: p.top, - width: n, - height: o - }, - element: { - element: g, - left: z.left, - top: z.top, - width: h, - height: j - }, - horizontal: f < 0 ? "left" : e > 0 ? "right" : "center", - vertical: k < 0 ? "top" : i > 0 ? "bottom" : "middle" - }; - if (n < h && d(e + f) < n) { - l.horizontal = "center"; - } - if (o < j && d(i + k) < o) { - l.vertical = "middle"; - } - if (c(d(e), d(f)) > c(d(i), d(k))) { - l.important = "horizontal"; - } else { - l.important = "vertical"; - } - b.using.call(this, a, l); - }; - } - g.offset(a.extend(z, { - using: f - })); - }); - }; - a.ui.pos = { - _trigger: function(a, b, c, d) { - if (b.elem) { - b.elem.trigger({ - type: c, - position: a, - positionData: b, - triggered: d - }); - } - }, - fit: { - left: function(b, d) { - a.ui.pos._trigger(b, d, "posCollide", "fitLeft"); - var e = d.within, f = e.isWindow ? e.scrollLeft : e.offset.left, g = e.width, h = b.left - d.collisionPosition.marginLeft, i = f - h, j = h + d.collisionWidth - g - f, k; - if (d.collisionWidth > g) { - if (i > 0 && j <= 0) { - k = b.left + i + d.collisionWidth - g - f; - b.left += i - k; - } else if (j > 0 && i <= 0) { - b.left = f; - } else { - if (i > j) { - b.left = f + g - d.collisionWidth; - } else { - b.left = f; - } - } - } else if (i > 0) { - b.left += i; - } else if (j > 0) { - b.left -= j; - } else { - b.left = c(b.left - h, b.left); - } - a.ui.pos._trigger(b, d, "posCollided", "fitLeft"); - }, - top: function(b, d) { - a.ui.pos._trigger(b, d, "posCollide", "fitTop"); - var e = d.within, f = e.isWindow ? e.scrollTop : e.offset.top, g = d.within.height, h = b.top - d.collisionPosition.marginTop, i = f - h, j = h + d.collisionHeight - g - f, k; - if (d.collisionHeight > g) { - if (i > 0 && j <= 0) { - k = b.top + i + d.collisionHeight - g - f; - b.top += i - k; - } else if (j > 0 && i <= 0) { - b.top = f; - } else { - if (i > j) { - b.top = f + g - d.collisionHeight; - } else { - b.top = f; - } - } - } else if (i > 0) { - b.top += i; - } else if (j > 0) { - b.top -= j; - } else { - b.top = c(b.top - h, b.top); - } - a.ui.pos._trigger(b, d, "posCollided", "fitTop"); - } - }, - flip: { - left: function(b, c) { - a.ui.pos._trigger(b, c, "posCollide", "flipLeft"); - var e = c.within, f = e.offset.left + e.scrollLeft, g = e.width, h = e.isWindow ? e.scrollLeft : e.offset.left, i = b.left - c.collisionPosition.marginLeft, j = i - h, k = i + c.collisionWidth - g - h, l = c.my[0] === "left" ? -c.elemWidth : c.my[0] === "right" ? c.elemWidth : 0, m = c.at[0] === "left" ? c.targetWidth : c.at[0] === "right" ? -c.targetWidth : 0, n = -2 * c.offset[0], o, p; - if (j < 0) { - o = b.left + l + m + n + c.collisionWidth - g - f; - if (o < 0 || o < d(j)) { - b.left += l + m + n; - } - } else if (k > 0) { - p = b.left - c.collisionPosition.marginLeft + l + m + n - h; - if (p > 0 || d(p) < k) { - b.left += l + m + n; - } - } - a.ui.pos._trigger(b, c, "posCollided", "flipLeft"); - }, - top: function(b, c) { - a.ui.pos._trigger(b, c, "posCollide", "flipTop"); - var e = c.within, f = e.offset.top + e.scrollTop, g = e.height, h = e.isWindow ? e.scrollTop : e.offset.top, i = b.top - c.collisionPosition.marginTop, j = i - h, k = i + c.collisionHeight - g - h, l = c.my[1] === "top", m = l ? -c.elemHeight : c.my[1] === "bottom" ? c.elemHeight : 0, n = c.at[1] === "top" ? c.targetHeight : c.at[1] === "bottom" ? -c.targetHeight : 0, o = -2 * c.offset[1], p, q; - if (j < 0) { - q = b.top + m + n + o + c.collisionHeight - g - f; - if (q < 0 || q < d(j)) { - b.top += m + n + o; - } - } else if (k > 0) { - p = b.top - c.collisionPosition.marginTop + m + n + o - h; - if (p > 0 || d(p) < k) { - b.top += m + n + o; - } - } - a.ui.pos._trigger(b, c, "posCollided", "flipTop"); - } - }, - flipfit: { - left: function() { - a.ui.pos.flip.left.apply(this, arguments); - a.ui.pos.fit.left.apply(this, arguments); - }, - top: function() { - a.ui.pos.flip.top.apply(this, arguments); - a.ui.pos.fit.top.apply(this, arguments); - } - } - }; - (function() { - var b, c, d, e, f, g = document.getElementsByTagName("body")[0], h = document.createElement("div"); - b = document.createElement(g ? "div" : "body"); - d = { - visibility: "hidden", - width: 0, - height: 0, - border: 0, - margin: 0, - background: "none" - }; - if (g) { - a.extend(d, { - position: "absolute", - left: "-1000px", - top: "-1000px" - }); - } - for (f in d) { - b.style[f] = d[f]; - } - b.appendChild(h); - c = g || document.documentElement; - c.insertBefore(b, c.firstChild); - h.style.cssText = "position: absolute; left: 10.7432222px;"; - e = a(h).offset().left; - a.support.offsetFractions = e > 10 && e < 11; - b.innerHTML = ""; - c.removeChild(b); - })(); - })(); - var c = a.ui.position; -}); - -(function(a) { - "use strict"; - if (typeof define === "function" && define.amd) { - define([ "jquery" ], a); - } else if (window.jQuery && !window.jQuery.fn.iconpicker) { - a(window.jQuery); - } -})(function(a) { - "use strict"; - var b = { - isEmpty: function(a) { - return a === false || a === "" || a === null || a === undefined; - }, - isEmptyObject: function(a) { - return this.isEmpty(a) === true || a.length === 0; - }, - isElement: function(b) { - return a(b).length > 0; - }, - isString: function(a) { - return typeof a === "string" || a instanceof String; - }, - isArray: function(b) { - return a.isArray(b); - }, - inArray: function(b, c) { - return a.inArray(b, c) !== -1; - }, - throwError: function(a) { - throw "Font Awesome Icon Picker Exception: " + a; - } - }; - var c = function(d, e) { - this._id = c._idCounter++; - this.element = a(d).addClass("iconpicker-element"); - this._trigger("iconpickerCreate", { - iconpickerValue: this.iconpickerValue - }); - this.options = a.extend({}, c.defaultOptions, this.element.data(), e); - this.options.templates = a.extend({}, c.defaultOptions.templates, this.options.templates); - this.options.originalPlacement = this.options.placement; - this.container = b.isElement(this.options.container) ? a(this.options.container) : false; - if (this.container === false) { - if (this.element.is(".dropdown-toggle")) { - this.container = a("~ .dropdown-menu:first", this.element); - } else { - this.container = this.element.is("input,textarea,button,.btn") ? this.element.parent() : this.element; - } - } - this.container.addClass("iconpicker-container"); - if (this.isDropdownMenu()) { - this.options.placement = "inline"; - } - this.input = this.element.is("input,textarea") ? this.element.addClass("iconpicker-input") : false; - if (this.input === false) { - this.input = this.container.find(this.options.input); - if (!this.input.is("input,textarea")) { - this.input = false; - } - } - this.component = this.isDropdownMenu() ? this.container.parent().find(this.options.component) : this.container.find(this.options.component); - if (this.component.length === 0) { - this.component = false; - } else { - this.component.find("i").addClass("iconpicker-component"); - } - this._createPopover(); - this._createIconpicker(); - if (this.getAcceptButton().length === 0) { - this.options.mustAccept = false; - } - if (this.isInputGroup()) { - this.container.parent().append(this.popover); - } else { - this.container.append(this.popover); - } - this._bindElementEvents(); - this._bindWindowEvents(); - this.update(this.options.selected); - if (this.isInline()) { - this.show(); - } - this._trigger("iconpickerCreated", { - iconpickerValue: this.iconpickerValue - }); - }; - c._idCounter = 0; - c.defaultOptions = { - title: false, - selected: false, - defaultValue: false, - placement: "bottom", - collision: "none", - animation: true, - hideOnSelect: false, - showFooter: false, - searchInFooter: false, - mustAccept: false, - selectedCustomClass: "bg-primary", - icons: [], - fullClassFormatter: function(a) { - return a; - }, - input: "input,.iconpicker-input", - inputSearch: false, - container: false, - component: ".input-group-addon,.iconpicker-component", - templates: { - popover: '
' + '
', - footer: '', - buttons: '' + ' ', - search: '', - iconpicker: '
', - iconpickerItem: '' - } - }; - c.batch = function(b, c) { - var d = Array.prototype.slice.call(arguments, 2); - return a(b).each(function() { - var b = a(this).data("iconpicker"); - if (!!b) { - b[c].apply(b, d); - } - }); - }; - c.prototype = { - constructor: c, - options: {}, - _id: 0, - _trigger: function(b, c) { - c = c || {}; - this.element.trigger(a.extend({ - type: b, - iconpickerInstance: this - }, c)); - }, - _createPopover: function() { - this.popover = a(this.options.templates.popover); - var c = this.popover.find(".popover-title"); - if (!!this.options.title) { - c.append(a('
' + this.options.title + "
")); - } - if (this.hasSeparatedSearchInput() && !this.options.searchInFooter) { - c.append(this.options.templates.search); - } else if (!this.options.title) { - c.remove(); - } - if (this.options.showFooter && !b.isEmpty(this.options.templates.footer)) { - var d = a(this.options.templates.footer); - if (this.hasSeparatedSearchInput() && this.options.searchInFooter) { - d.append(a(this.options.templates.search)); - } - if (!b.isEmpty(this.options.templates.buttons)) { - d.append(a(this.options.templates.buttons)); - } - this.popover.append(d); - } - if (this.options.animation === true) { - this.popover.addClass("fade"); - } - return this.popover; - }, - _createIconpicker: function() { - var b = this; - this.iconpicker = a(this.options.templates.iconpicker); - var c = function(c) { - var d = a(this); - if (d.is("i")) { - d = d.parent(); - } - b._trigger("iconpickerSelect", { - iconpickerItem: d, - iconpickerValue: b.iconpickerValue - }); - if (b.options.mustAccept === false) { - b.update(d.data("iconpickerValue")); - b._trigger("iconpickerSelected", { - iconpickerItem: this, - iconpickerValue: b.iconpickerValue - }); - } else { - b.update(d.data("iconpickerValue"), true); - } - if (b.options.hideOnSelect && b.options.mustAccept === false) { - b.hide(); - } - }; - for (var d in this.options.icons) { - if (typeof this.options.icons[d].title === "string") { - var e = a(this.options.templates.iconpickerItem); - e.find("i").addClass(this.options.fullClassFormatter(this.options.icons[d].title)); - e.data("iconpickerValue", this.options.icons[d].title).on("click.iconpicker", c); - this.iconpicker.find(".iconpicker-items").append(e.attr("title", "." + this.options.icons[d].title)); - if (this.options.icons[d].searchTerms.length > 0) { - var f = ""; - for (var g = 0; g < this.options.icons[d].searchTerms.length; g++) { - f = f + this.options.icons[d].searchTerms[g] + " "; - } - this.iconpicker.find(".iconpicker-items").append(e.attr("data-search-terms", f)); - } - } - } - this.popover.find(".popover-content").append(this.iconpicker); - return this.iconpicker; - }, - _isEventInsideIconpicker: function(b) { - var c = a(b.target); - if ((!c.hasClass("iconpicker-element") || c.hasClass("iconpicker-element") && !c.is(this.element)) && c.parents(".iconpicker-popover").length === 0) { - return false; - } - return true; - }, - _bindElementEvents: function() { - var c = this; - this.getSearchInput().on("keyup.iconpicker", function() { - c.filter(a(this).val().toLowerCase()); - }); - this.getAcceptButton().on("click.iconpicker", function() { - var a = c.iconpicker.find(".iconpicker-selected").get(0); - c.update(c.iconpickerValue); - c._trigger("iconpickerSelected", { - iconpickerItem: a, - iconpickerValue: c.iconpickerValue - }); - if (!c.isInline()) { - c.hide(); - } - }); - this.getCancelButton().on("click.iconpicker", function() { - if (!c.isInline()) { - c.hide(); - } - }); - this.element.on("focus.iconpicker", function(a) { - c.show(); - a.stopPropagation(); - }); - if (this.hasComponent()) { - this.component.on("click.iconpicker", function() { - c.toggle(); - }); - } - if (this.hasInput()) { - this.input.on("keyup.iconpicker", function(d) { - if (!b.inArray(d.keyCode, [ 38, 40, 37, 39, 16, 17, 18, 9, 8, 91, 93, 20, 46, 186, 190, 46, 78, 188, 44, 86 ])) { - c.update(); - } else { - c._updateFormGroupStatus(c.getValid(this.value) !== false); - } - if (c.options.inputSearch === true) { - c.filter(a(this).val().toLowerCase()); - } - }); - } - }, - _bindWindowEvents: function() { - var b = a(window.document); - var c = this; - var d = ".iconpicker.inst" + this._id; - a(window).on("resize.iconpicker" + d + " orientationchange.iconpicker" + d, function(a) { - if (c.popover.hasClass("in")) { - c.updatePlacement(); - } - }); - if (!c.isInline()) { - b.on("mouseup" + d, function(a) { - if (!c._isEventInsideIconpicker(a) && !c.isInline()) { - c.hide(); - } - }); - } - }, - _unbindElementEvents: function() { - this.popover.off(".iconpicker"); - this.element.off(".iconpicker"); - if (this.hasInput()) { - this.input.off(".iconpicker"); - } - if (this.hasComponent()) { - this.component.off(".iconpicker"); - } - if (this.hasContainer()) { - this.container.off(".iconpicker"); - } - }, - _unbindWindowEvents: function() { - a(window).off(".iconpicker.inst" + this._id); - a(window.document).off(".iconpicker.inst" + this._id); - }, - updatePlacement: function(b, c) { - b = b || this.options.placement; - this.options.placement = b; - c = c || this.options.collision; - c = c === true ? "flip" : c; - var d = { - at: "right bottom", - my: "right top", - of: this.hasInput() && !this.isInputGroup() ? this.input : this.container, - collision: c === true ? "flip" : c, - within: window - }; - this.popover.removeClass("inline topLeftCorner topLeft top topRight topRightCorner " + "rightTop right rightBottom bottomRight bottomRightCorner " + "bottom bottomLeft bottomLeftCorner leftBottom left leftTop"); - if (typeof b === "object") { - return this.popover.pos(a.extend({}, d, b)); - } - switch (b) { - case "inline": - { - d = false; - } - break; - - case "topLeftCorner": - { - d.my = "right bottom"; - d.at = "left top"; - } - break; - - case "topLeft": - { - d.my = "left bottom"; - d.at = "left top"; - } - break; - - case "top": - { - d.my = "center bottom"; - d.at = "center top"; - } - break; - - case "topRight": - { - d.my = "right bottom"; - d.at = "right top"; - } - break; - - case "topRightCorner": - { - d.my = "left bottom"; - d.at = "right top"; - } - break; - - case "rightTop": - { - d.my = "left bottom"; - d.at = "right center"; - } - break; - - case "right": - { - d.my = "left center"; - d.at = "right center"; - } - break; - - case "rightBottom": - { - d.my = "left top"; - d.at = "right center"; - } - break; - - case "bottomRightCorner": - { - d.my = "left top"; - d.at = "right bottom"; - } - break; - - case "bottomRight": - { - d.my = "right top"; - d.at = "right bottom"; - } - break; - - case "bottom": - { - d.my = "center top"; - d.at = "center bottom"; - } - break; - - case "bottomLeft": - { - d.my = "left top"; - d.at = "left bottom"; - } - break; - - case "bottomLeftCorner": - { - d.my = "right top"; - d.at = "left bottom"; - } - break; - - case "leftBottom": - { - d.my = "right top"; - d.at = "left center"; - } - break; - - case "left": - { - d.my = "right center"; - d.at = "left center"; - } - break; - - case "leftTop": - { - d.my = "right bottom"; - d.at = "left center"; - } - break; - - default: - { - return false; - } - break; - } - this.popover.css({ - display: this.options.placement === "inline" ? "" : "block" - }); - if (d !== false) { - this.popover.pos(d).css("maxWidth", a(window).width() - this.container.offset().left - 5); - } else { - this.popover.css({ - top: "auto", - right: "auto", - bottom: "auto", - left: "auto", - maxWidth: "none" - }); - } - this.popover.addClass(this.options.placement); - return true; - }, - _updateComponents: function() { - this.iconpicker.find(".iconpicker-item.iconpicker-selected").removeClass("iconpicker-selected " + this.options.selectedCustomClass); - if (this.iconpickerValue) { - this.iconpicker.find("." + this.options.fullClassFormatter(this.iconpickerValue).replace(/ /g, ".")).parent().addClass("iconpicker-selected " + this.options.selectedCustomClass); - } - if (this.hasComponent()) { - var a = this.component.find("i"); - if (a.length > 0) { - a.attr("class", this.options.fullClassFormatter(this.iconpickerValue)); - } else { - this.component.html(this.getHtml()); - } - } - }, - _updateFormGroupStatus: function(a) { - if (this.hasInput()) { - if (a !== false) { - this.input.parents(".form-group:first").removeClass("has-error"); - } else { - this.input.parents(".form-group:first").addClass("has-error"); - } - return true; - } - return false; - }, - getValid: function(c) { - if (!b.isString(c)) { - c = ""; - } - var d = c === ""; - c = a.trim(c); - var e = false; - for (var f = 0; f < this.options.icons.length; f++) { - if (this.options.icons[f].title === c) { - e = true; - break; - } - } - if (e || d) { - return c; - } - return false; - }, - setValue: function(a) { - var b = this.getValid(a); - if (b !== false) { - this.iconpickerValue = b; - this._trigger("iconpickerSetValue", { - iconpickerValue: b - }); - return this.iconpickerValue; - } else { - this._trigger("iconpickerInvalid", { - iconpickerValue: a - }); - return false; - } - }, - getHtml: function() { - return ''; - }, - setSourceValue: function(a) { - a = this.setValue(a); - if (a !== false && a !== "") { - if (this.hasInput()) { - this.input.val(this.iconpickerValue); - } else { - this.element.data("iconpickerValue", this.iconpickerValue); - } - this._trigger("iconpickerSetSourceValue", { - iconpickerValue: a - }); - } - return a; - }, - getSourceValue: function(a) { - a = a || this.options.defaultValue; - var b = a; - if (this.hasInput()) { - b = this.input.val(); - } else { - b = this.element.data("iconpickerValue"); - } - if (b === undefined || b === "" || b === null || b === false) { - b = a; - } - return b; - }, - hasInput: function() { - return this.input !== false; - }, - isInputSearch: function() { - return this.hasInput() && this.options.inputSearch === true; - }, - isInputGroup: function() { - return this.container.is(".input-group"); - }, - isDropdownMenu: function() { - return this.container.is(".dropdown-menu"); - }, - hasSeparatedSearchInput: function() { - return this.options.templates.search !== false && !this.isInputSearch(); - }, - hasComponent: function() { - return this.component !== false; - }, - hasContainer: function() { - return this.container !== false; - }, - getAcceptButton: function() { - return this.popover.find(".iconpicker-btn-accept"); - }, - getCancelButton: function() { - return this.popover.find(".iconpicker-btn-cancel"); - }, - getSearchInput: function() { - return this.popover.find(".iconpicker-search"); - }, - filter: function(c) { - if (b.isEmpty(c)) { - this.iconpicker.find(".iconpicker-item").show(); - return a(false); - } else { - var d = []; - this.iconpicker.find(".iconpicker-item").each(function() { - var b = a(this); - var e = b.attr("title").toLowerCase(); - var f = b.attr("data-search-terms") ? b.attr("data-search-terms").toLowerCase() : ""; - e = e + " " + f; - var g = false; - try { - g = new RegExp("(^|\\W)" + c, "g"); - } catch (a) { - g = false; - } - if (g !== false && e.match(g)) { - d.push(b); - b.show(); - } else { - b.hide(); - } - }); - return d; - } - }, - show: function() { - if (this.popover.hasClass("in")) { - return false; - } - a.iconpicker.batch(a(".iconpicker-popover.in:not(.inline)").not(this.popover), "hide"); - this._trigger("iconpickerShow", { - iconpickerValue: this.iconpickerValue - }); - this.updatePlacement(); - this.popover.addClass("in"); - setTimeout(a.proxy(function() { - this.popover.css("display", this.isInline() ? "" : "block"); - this._trigger("iconpickerShown", { - iconpickerValue: this.iconpickerValue - }); - }, this), this.options.animation ? 300 : 1); - }, - hide: function() { - if (!this.popover.hasClass("in")) { - return false; - } - this._trigger("iconpickerHide", { - iconpickerValue: this.iconpickerValue - }); - this.popover.removeClass("in"); - setTimeout(a.proxy(function() { - this.popover.css("display", "none"); - this.getSearchInput().val(""); - this.filter(""); - this._trigger("iconpickerHidden", { - iconpickerValue: this.iconpickerValue - }); - }, this), this.options.animation ? 300 : 1); - }, - toggle: function() { - if (this.popover.is(":visible")) { - this.hide(); - } else { - this.show(true); - } - }, - update: function(a, b) { - a = a ? a : this.getSourceValue(this.iconpickerValue); - this._trigger("iconpickerUpdate", { - iconpickerValue: this.iconpickerValue - }); - if (b === true) { - a = this.setValue(a); - } else { - a = this.setSourceValue(a); - this._updateFormGroupStatus(a !== false); - } - if (a !== false) { - this._updateComponents(); - } - this._trigger("iconpickerUpdated", { - iconpickerValue: this.iconpickerValue - }); - return a; - }, - destroy: function() { - this._trigger("iconpickerDestroy", { - iconpickerValue: this.iconpickerValue - }); - this.element.removeData("iconpicker").removeData("iconpickerValue").removeClass("iconpicker-element"); - this._unbindElementEvents(); - this._unbindWindowEvents(); - a(this.popover).remove(); - this._trigger("iconpickerDestroyed", { - iconpickerValue: this.iconpickerValue - }); - }, - disable: function() { - if (this.hasInput()) { - this.input.prop("disabled", true); - return true; - } - return false; - }, - enable: function() { - if (this.hasInput()) { - this.input.prop("disabled", false); - return true; - } - return false; - }, - isDisabled: function() { - if (this.hasInput()) { - return this.input.prop("disabled") === true; - } - return false; - }, - isInline: function() { - return this.options.placement === "inline" || this.popover.hasClass("inline"); - } - }; - a.iconpicker = c; - a.fn.iconpicker = function(b) { - return this.each(function() { - var d = a(this); - if (!d.data("iconpicker")) { - d.data("iconpicker", new c(this, typeof b === "object" ? b : {})); - } - }); - }; - c.defaultOptions = a.extend(c.defaultOptions, { - icons: [ { - title: "fab fa-500px", - searchTerms: [] - }, { - title: "fab fa-accessible-icon", - searchTerms: [ "accessibility", "handicap", "person", "wheelchair", "wheelchair-alt" ] - }, { - title: "fab fa-accusoft", - searchTerms: [] - }, { - title: "fas fa-address-book", - searchTerms: [] - }, { - title: "far fa-address-book", - searchTerms: [] - }, { - title: "fas fa-address-card", - searchTerms: [] - }, { - title: "far fa-address-card", - searchTerms: [] - }, { - title: "fas fa-adjust", - searchTerms: [ "contrast" ] - }, { - title: "fab fa-adn", - searchTerms: [] - }, { - title: "fab fa-adversal", - searchTerms: [] - }, { - title: "fab fa-affiliatetheme", - searchTerms: [] - }, { - title: "fab fa-algolia", - searchTerms: [] - }, { - title: "fas fa-align-center", - searchTerms: [ "middle", "text" ] - }, { - title: "fas fa-align-justify", - searchTerms: [ "text" ] - }, { - title: "fas fa-align-left", - searchTerms: [ "text" ] - }, { - title: "fas fa-align-right", - searchTerms: [ "text" ] - }, { - title: "fas fa-allergies", - searchTerms: [ "freckles", "hand", "intolerances", "pox", "spots" ] - }, { - title: "fab fa-amazon", - searchTerms: [] - }, { - title: "fab fa-amazon-pay", - searchTerms: [] - }, { - title: "fas fa-ambulance", - searchTerms: [ "help", "machine", "support", "vehicle" ] - }, { - title: "fas fa-american-sign-language-interpreting", - searchTerms: [] - }, { - title: "fab fa-amilia", - searchTerms: [] - }, { - title: "fas fa-anchor", - searchTerms: [ "link" ] - }, { - title: "fab fa-android", - searchTerms: [ "robot" ] - }, { - title: "fab fa-angellist", - searchTerms: [] - }, { - title: "fas fa-angle-double-down", - searchTerms: [ "arrows" ] - }, { - title: "fas fa-angle-double-left", - searchTerms: [ "arrows", "back", "laquo", "previous", "quote" ] - }, { - title: "fas fa-angle-double-right", - searchTerms: [ "arrows", "forward", "next", "quote", "raquo" ] - }, { - title: "fas fa-angle-double-up", - searchTerms: [ "arrows" ] - }, { - title: "fas fa-angle-down", - searchTerms: [ "arrow" ] - }, { - title: "fas fa-angle-left", - searchTerms: [ "arrow", "back", "previous" ] - }, { - title: "fas fa-angle-right", - searchTerms: [ "arrow", "forward", "next" ] - }, { - title: "fas fa-angle-up", - searchTerms: [ "arrow" ] - }, { - title: "fas fa-angry", - searchTerms: [ "disapprove", "emoticon", "face", "mad", "upset" ] - }, { - title: "far fa-angry", - searchTerms: [ "disapprove", "emoticon", "face", "mad", "upset" ] - }, { - title: "fab fa-angrycreative", - searchTerms: [] - }, { - title: "fab fa-angular", - searchTerms: [] - }, { - title: "fab fa-app-store", - searchTerms: [] - }, { - title: "fab fa-app-store-ios", - searchTerms: [] - }, { - title: "fab fa-apper", - searchTerms: [] - }, { - title: "fab fa-apple", - searchTerms: [ "food", "fruit", "osx" ] - }, { - title: "fab fa-apple-pay", - searchTerms: [] - }, { - title: "fas fa-archive", - searchTerms: [ "box", "package", "storage" ] - }, { - title: "fas fa-archway", - searchTerms: [ "arc", "monument", "road", "street" ] - }, { - title: "fas fa-arrow-alt-circle-down", - searchTerms: [ "arrow-circle-o-down", "download" ] - }, { - title: "far fa-arrow-alt-circle-down", - searchTerms: [ "arrow-circle-o-down", "download" ] - }, { - title: "fas fa-arrow-alt-circle-left", - searchTerms: [ "arrow-circle-o-left", "back", "previous" ] - }, { - title: "far fa-arrow-alt-circle-left", - searchTerms: [ "arrow-circle-o-left", "back", "previous" ] - }, { - title: "fas fa-arrow-alt-circle-right", - searchTerms: [ "arrow-circle-o-right", "forward", "next" ] - }, { - title: "far fa-arrow-alt-circle-right", - searchTerms: [ "arrow-circle-o-right", "forward", "next" ] - }, { - title: "fas fa-arrow-alt-circle-up", - searchTerms: [ "arrow-circle-o-up" ] - }, { - title: "far fa-arrow-alt-circle-up", - searchTerms: [ "arrow-circle-o-up" ] - }, { - title: "fas fa-arrow-circle-down", - searchTerms: [ "download" ] - }, { - title: "fas fa-arrow-circle-left", - searchTerms: [ "back", "previous" ] - }, { - title: "fas fa-arrow-circle-right", - searchTerms: [ "forward", "next" ] - }, { - title: "fas fa-arrow-circle-up", - searchTerms: [] - }, { - title: "fas fa-arrow-down", - searchTerms: [ "download" ] - }, { - title: "fas fa-arrow-left", - searchTerms: [ "back", "previous" ] - }, { - title: "fas fa-arrow-right", - searchTerms: [ "forward", "next" ] - }, { - title: "fas fa-arrow-up", - searchTerms: [] - }, { - title: "fas fa-arrows-alt", - searchTerms: [ "arrow", "arrows", "bigger", "enlarge", "expand", "fullscreen", "move", "position", "reorder", "resize" ] - }, { - title: "fas fa-arrows-alt-h", - searchTerms: [ "arrows-h", "resize" ] - }, { - title: "fas fa-arrows-alt-v", - searchTerms: [ "arrows-v", "resize" ] - }, { - title: "fas fa-assistive-listening-systems", - searchTerms: [] - }, { - title: "fas fa-asterisk", - searchTerms: [ "details" ] - }, { - title: "fab fa-asymmetrik", - searchTerms: [] - }, { - title: "fas fa-at", - searchTerms: [ "e-mail", "email" ] - }, { - title: "fas fa-atlas", - searchTerms: [ "book", "directions", "geography", "map", "wayfinding" ] - }, { - title: "fab fa-audible", - searchTerms: [] - }, { - title: "fas fa-audio-description", - searchTerms: [] - }, { - title: "fab fa-autoprefixer", - searchTerms: [] - }, { - title: "fab fa-avianex", - searchTerms: [] - }, { - title: "fab fa-aviato", - searchTerms: [] - }, { - title: "fas fa-award", - searchTerms: [ "honor", "praise", "prize", "recognition", "ribbon" ] - }, { - title: "fab fa-aws", - searchTerms: [] - }, { - title: "fas fa-backspace", - searchTerms: [ "command", "delete", "keyboard", "undo" ] - }, { - title: "fas fa-backward", - searchTerms: [ "previous", "rewind" ] - }, { - title: "fas fa-balance-scale", - searchTerms: [ "balanced", "justice", "legal", "measure", "weight" ] - }, { - title: "fas fa-ban", - searchTerms: [ "abort", "ban", "block", "cancel", "delete", "hide", "prohibit", "remove", "stop", "trash" ] - }, { - title: "fas fa-band-aid", - searchTerms: [ "bandage", "boo boo", "ouch" ] - }, { - title: "fab fa-bandcamp", - searchTerms: [] - }, { - title: "fas fa-barcode", - searchTerms: [ "scan" ] - }, { - title: "fas fa-bars", - searchTerms: [ "checklist", "drag", "hamburger", "list", "menu", "nav", "navigation", "ol", "reorder", "settings", "todo", "ul" ] - }, { - title: "fas fa-baseball-ball", - searchTerms: [] - }, { - title: "fas fa-basketball-ball", - searchTerms: [] - }, { - title: "fas fa-bath", - searchTerms: [] - }, { - title: "fas fa-battery-empty", - searchTerms: [ "power", "status" ] - }, { - title: "fas fa-battery-full", - searchTerms: [ "power", "status" ] - }, { - title: "fas fa-battery-half", - searchTerms: [ "power", "status" ] - }, { - title: "fas fa-battery-quarter", - searchTerms: [ "power", "status" ] - }, { - title: "fas fa-battery-three-quarters", - searchTerms: [ "power", "status" ] - }, { - title: "fas fa-bed", - searchTerms: [ "lodging", "sleep", "travel" ] - }, { - title: "fas fa-beer", - searchTerms: [ "alcohol", "bar", "drink", "liquor", "mug", "stein" ] - }, { - title: "fab fa-behance", - searchTerms: [] - }, { - title: "fab fa-behance-square", - searchTerms: [] - }, { - title: "fas fa-bell", - searchTerms: [ "alert", "notification", "reminder" ] - }, { - title: "far fa-bell", - searchTerms: [ "alert", "notification", "reminder" ] - }, { - title: "fas fa-bell-slash", - searchTerms: [] - }, { - title: "far fa-bell-slash", - searchTerms: [] - }, { - title: "fas fa-bezier-curve", - searchTerms: [ "curves", "illustrator", "lines", "path", "vector" ] - }, { - title: "fas fa-bicycle", - searchTerms: [ "bike", "gears", "transportation", "vehicle" ] - }, { - title: "fab fa-bimobject", - searchTerms: [] - }, { - title: "fas fa-binoculars", - searchTerms: [] - }, { - title: "fas fa-birthday-cake", - searchTerms: [] - }, { - title: "fab fa-bitbucket", - searchTerms: [ "bitbucket-square", "git" ] - }, { - title: "fab fa-bitcoin", - searchTerms: [] - }, { - title: "fab fa-bity", - searchTerms: [] - }, { - title: "fab fa-black-tie", - searchTerms: [] - }, { - title: "fab fa-blackberry", - searchTerms: [] - }, { - title: "fas fa-blender", - searchTerms: [] - }, { - title: "fas fa-blind", - searchTerms: [] - }, { - title: "fab fa-blogger", - searchTerms: [] - }, { - title: "fab fa-blogger-b", - searchTerms: [] - }, { - title: "fab fa-bluetooth", - searchTerms: [] - }, { - title: "fab fa-bluetooth-b", - searchTerms: [] - }, { - title: "fas fa-bold", - searchTerms: [] - }, { - title: "fas fa-bolt", - searchTerms: [ "electricity", "lightning", "weather", "zap" ] - }, { - title: "fas fa-bomb", - searchTerms: [] - }, { - title: "fas fa-bong", - searchTerms: [ "aparatus", "cannabis", "marijuana", "pipe", "smoke", "smoking" ] - }, { - title: "fas fa-book", - searchTerms: [ "documentation", "read" ] - }, { - title: "fas fa-book-open", - searchTerms: [ "flyer", "notebook", "open book", "pamphlet", "reading" ] - }, { - title: "fas fa-bookmark", - searchTerms: [ "save" ] - }, { - title: "far fa-bookmark", - searchTerms: [ "save" ] - }, { - title: "fas fa-bowling-ball", - searchTerms: [] - }, { - title: "fas fa-box", - searchTerms: [ "package" ] - }, { - title: "fas fa-box-open", - searchTerms: [] - }, { - title: "fas fa-boxes", - searchTerms: [] - }, { - title: "fas fa-braille", - searchTerms: [] - }, { - title: "fas fa-briefcase", - searchTerms: [ "bag", "business", "luggage", "office", "work" ] - }, { - title: "fas fa-briefcase-medical", - searchTerms: [ "health briefcase" ] - }, { - title: "fas fa-broadcast-tower", - searchTerms: [ "airwaves", "radio", "waves" ] - }, { - title: "fas fa-broom", - searchTerms: [] - }, { - title: "fas fa-brush", - searchTerms: [ "bristles", "color", "handle", "painting" ] - }, { - title: "fab fa-btc", - searchTerms: [] - }, { - title: "fas fa-bug", - searchTerms: [ "insect", "report" ] - }, { - title: "fas fa-building", - searchTerms: [ "apartment", "business", "company", "office", "work" ] - }, { - title: "far fa-building", - searchTerms: [ "apartment", "business", "company", "office", "work" ] - }, { - title: "fas fa-bullhorn", - searchTerms: [ "announcement", "broadcast", "louder", "megaphone", "share" ] - }, { - title: "fas fa-bullseye", - searchTerms: [ "target" ] - }, { - title: "fas fa-burn", - searchTerms: [ "energy" ] - }, { - title: "fab fa-buromobelexperte", - searchTerms: [] - }, { - title: "fas fa-bus", - searchTerms: [ "machine", "public transportation", "transportation", "vehicle" ] - }, { - title: "fas fa-bus-alt", - searchTerms: [ "machine", "public transportation", "transportation", "vehicle" ] - }, { - title: "fab fa-buysellads", - searchTerms: [] - }, { - title: "fas fa-calculator", - searchTerms: [] - }, { - title: "fas fa-calendar", - searchTerms: [ "calendar-o", "date", "event", "schedule", "time", "when" ] - }, { - title: "far fa-calendar", - searchTerms: [ "calendar-o", "date", "event", "schedule", "time", "when" ] - }, { - title: "fas fa-calendar-alt", - searchTerms: [ "calendar", "date", "event", "schedule", "time", "when" ] - }, { - title: "far fa-calendar-alt", - searchTerms: [ "calendar", "date", "event", "schedule", "time", "when" ] - }, { - title: "fas fa-calendar-check", - searchTerms: [ "accept", "agree", "appointment", "confirm", "correct", "done", "ok", "select", "success", "todo" ] - }, { - title: "far fa-calendar-check", - searchTerms: [ "accept", "agree", "appointment", "confirm", "correct", "done", "ok", "select", "success", "todo" ] - }, { - title: "fas fa-calendar-minus", - searchTerms: [] - }, { - title: "far fa-calendar-minus", - searchTerms: [] - }, { - title: "fas fa-calendar-plus", - searchTerms: [] - }, { - title: "far fa-calendar-plus", - searchTerms: [] - }, { - title: "fas fa-calendar-times", - searchTerms: [] - }, { - title: "far fa-calendar-times", - searchTerms: [] - }, { - title: "fas fa-camera", - searchTerms: [ "photo", "picture", "record" ] - }, { - title: "fas fa-camera-retro", - searchTerms: [ "photo", "picture", "record" ] - }, { - title: "fas fa-cannabis", - searchTerms: [ "bud", "chronic", "drugs", "endica", "endo", "ganja", "marijuana", "mary jane", "pot", "reefer", "sativa", "spliff", "weed", "whacky-tabacky" ] - }, { - title: "fas fa-capsules", - searchTerms: [ "drugs", "medicine" ] - }, { - title: "fas fa-car", - searchTerms: [ "machine", "transportation", "vehicle" ] - }, { - title: "fas fa-caret-down", - searchTerms: [ "arrow", "dropdown", "menu", "more", "triangle down" ] - }, { - title: "fas fa-caret-left", - searchTerms: [ "arrow", "back", "previous", "triangle left" ] - }, { - title: "fas fa-caret-right", - searchTerms: [ "arrow", "forward", "next", "triangle right" ] - }, { - title: "fas fa-caret-square-down", - searchTerms: [ "caret-square-o-down", "dropdown", "menu", "more" ] - }, { - title: "far fa-caret-square-down", - searchTerms: [ "caret-square-o-down", "dropdown", "menu", "more" ] - }, { - title: "fas fa-caret-square-left", - searchTerms: [ "back", "caret-square-o-left", "previous" ] - }, { - title: "far fa-caret-square-left", - searchTerms: [ "back", "caret-square-o-left", "previous" ] - }, { - title: "fas fa-caret-square-right", - searchTerms: [ "caret-square-o-right", "forward", "next" ] - }, { - title: "far fa-caret-square-right", - searchTerms: [ "caret-square-o-right", "forward", "next" ] - }, { - title: "fas fa-caret-square-up", - searchTerms: [ "caret-square-o-up" ] - }, { - title: "far fa-caret-square-up", - searchTerms: [ "caret-square-o-up" ] - }, { - title: "fas fa-caret-up", - searchTerms: [ "arrow", "triangle up" ] - }, { - title: "fas fa-cart-arrow-down", - searchTerms: [ "shopping" ] - }, { - title: "fas fa-cart-plus", - searchTerms: [ "add", "shopping" ] - }, { - title: "fab fa-cc-amazon-pay", - searchTerms: [] - }, { - title: "fab fa-cc-amex", - searchTerms: [ "amex" ] - }, { - title: "fab fa-cc-apple-pay", - searchTerms: [] - }, { - title: "fab fa-cc-diners-club", - searchTerms: [] - }, { - title: "fab fa-cc-discover", - searchTerms: [] - }, { - title: "fab fa-cc-jcb", - searchTerms: [] - }, { - title: "fab fa-cc-mastercard", - searchTerms: [] - }, { - title: "fab fa-cc-paypal", - searchTerms: [] - }, { - title: "fab fa-cc-stripe", - searchTerms: [] - }, { - title: "fab fa-cc-visa", - searchTerms: [] - }, { - title: "fab fa-centercode", - searchTerms: [] - }, { - title: "fas fa-certificate", - searchTerms: [ "badge", "star" ] - }, { - title: "fas fa-chalkboard", - searchTerms: [ "blackboard", "learning", "school", "teaching", "whiteboard", "writing" ] - }, { - title: "fas fa-chalkboard-teacher", - searchTerms: [ "blackboard", "instructor", "learning", "professor", "school", "whiteboard", "writing" ] - }, { - title: "fas fa-chart-area", - searchTerms: [ "analytics", "area-chart", "graph" ] - }, { - title: "fas fa-chart-bar", - searchTerms: [ "analytics", "bar-chart", "graph" ] - }, { - title: "far fa-chart-bar", - searchTerms: [ "analytics", "bar-chart", "graph" ] - }, { - title: "fas fa-chart-line", - searchTerms: [ "activity", "analytics", "dashboard", "graph", "line-chart" ] - }, { - title: "fas fa-chart-pie", - searchTerms: [ "analytics", "graph", "pie-chart" ] - }, { - title: "fas fa-check", - searchTerms: [ "accept", "agree", "checkmark", "confirm", "correct", "done", "notice", "notification", "notify", "ok", "select", "success", "tick", "todo", "yes" ] - }, { - title: "fas fa-check-circle", - searchTerms: [ "accept", "agree", "confirm", "correct", "done", "ok", "select", "success", "todo", "yes" ] - }, { - title: "far fa-check-circle", - searchTerms: [ "accept", "agree", "confirm", "correct", "done", "ok", "select", "success", "todo", "yes" ] - }, { - title: "fas fa-check-double", - searchTerms: [ "accept", "agree", "checkmark", "confirm", "correct", "done", "notice", "notification", "notify", "ok", "select", "success", "tick", "todo" ] - }, { - title: "fas fa-check-square", - searchTerms: [ "accept", "agree", "checkmark", "confirm", "correct", "done", "ok", "select", "success", "todo", "yes" ] - }, { - title: "far fa-check-square", - searchTerms: [ "accept", "agree", "checkmark", "confirm", "correct", "done", "ok", "select", "success", "todo", "yes" ] - }, { - title: "fas fa-chess", - searchTerms: [] - }, { - title: "fas fa-chess-bishop", - searchTerms: [] - }, { - title: "fas fa-chess-board", - searchTerms: [] - }, { - title: "fas fa-chess-king", - searchTerms: [] - }, { - title: "fas fa-chess-knight", - searchTerms: [] - }, { - title: "fas fa-chess-pawn", - searchTerms: [] - }, { - title: "fas fa-chess-queen", - searchTerms: [] - }, { - title: "fas fa-chess-rook", - searchTerms: [] - }, { - title: "fas fa-chevron-circle-down", - searchTerms: [ "arrow", "dropdown", "menu", "more" ] - }, { - title: "fas fa-chevron-circle-left", - searchTerms: [ "arrow", "back", "previous" ] - }, { - title: "fas fa-chevron-circle-right", - searchTerms: [ "arrow", "forward", "next" ] - }, { - title: "fas fa-chevron-circle-up", - searchTerms: [ "arrow" ] - }, { - title: "fas fa-chevron-down", - searchTerms: [] - }, { - title: "fas fa-chevron-left", - searchTerms: [ "back", "bracket", "previous" ] - }, { - title: "fas fa-chevron-right", - searchTerms: [ "bracket", "forward", "next" ] - }, { - title: "fas fa-chevron-up", - searchTerms: [] - }, { - title: "fas fa-child", - searchTerms: [] - }, { - title: "fab fa-chrome", - searchTerms: [ "browser" ] - }, { - title: "fas fa-church", - searchTerms: [ "building", "community", "religion" ] - }, { - title: "fas fa-circle", - searchTerms: [ "circle-thin", "dot", "notification" ] - }, { - title: "far fa-circle", - searchTerms: [ "circle-thin", "dot", "notification" ] - }, { - title: "fas fa-circle-notch", - searchTerms: [ "circle-o-notch" ] - }, { - title: "fas fa-clipboard", - searchTerms: [ "paste" ] - }, { - title: "far fa-clipboard", - searchTerms: [ "paste" ] - }, { - title: "fas fa-clipboard-check", - searchTerms: [ "accept", "agree", "confirm", "done", "ok", "select", "success", "todo", "yes" ] - }, { - title: "fas fa-clipboard-list", - searchTerms: [ "checklist", "completed", "done", "finished", "intinerary", "ol", "schedule", "todo", "ul" ] - }, { - title: "fas fa-clock", - searchTerms: [ "date", "late", "schedule", "timer", "timestamp", "watch" ] - }, { - title: "far fa-clock", - searchTerms: [ "date", "late", "schedule", "timer", "timestamp", "watch" ] - }, { - title: "fas fa-clone", - searchTerms: [ "copy", "duplicate" ] - }, { - title: "far fa-clone", - searchTerms: [ "copy", "duplicate" ] - }, { - title: "fas fa-closed-captioning", - searchTerms: [ "cc" ] - }, { - title: "far fa-closed-captioning", - searchTerms: [ "cc" ] - }, { - title: "fas fa-cloud", - searchTerms: [ "save" ] - }, { - title: "fas fa-cloud-download-alt", - searchTerms: [ "cloud-download" ] - }, { - title: "fas fa-cloud-upload-alt", - searchTerms: [ "cloud-upload" ] - }, { - title: "fab fa-cloudscale", - searchTerms: [] - }, { - title: "fab fa-cloudsmith", - searchTerms: [] - }, { - title: "fab fa-cloudversify", - searchTerms: [] - }, { - title: "fas fa-cocktail", - searchTerms: [ "alcohol", "drink" ] - }, { - title: "fas fa-code", - searchTerms: [ "brackets", "html" ] - }, { - title: "fas fa-code-branch", - searchTerms: [ "branch", "code-fork", "fork", "git", "github", "rebase", "svn", "vcs", "version" ] - }, { - title: "fab fa-codepen", - searchTerms: [] - }, { - title: "fab fa-codiepie", - searchTerms: [] - }, { - title: "fas fa-coffee", - searchTerms: [ "breakfast", "cafe", "drink", "morning", "mug", "tea" ] - }, { - title: "fas fa-cog", - searchTerms: [ "settings" ] - }, { - title: "fas fa-cogs", - searchTerms: [ "gears", "settings" ] - }, { - title: "fas fa-coins", - searchTerms: [] - }, { - title: "fas fa-columns", - searchTerms: [ "dashboard", "panes", "split" ] - }, { - title: "fas fa-comment", - searchTerms: [ "bubble", "chat", "conversation", "feedback", "message", "note", "notification", "sms", "speech", "texting" ] - }, { - title: "far fa-comment", - searchTerms: [ "bubble", "chat", "conversation", "feedback", "message", "note", "notification", "sms", "speech", "texting" ] - }, { - title: "fas fa-comment-alt", - searchTerms: [ "bubble", "chat", "commenting", "commenting", "conversation", "feedback", "message", "note", "notification", "sms", "speech", "texting" ] - }, { - title: "far fa-comment-alt", - searchTerms: [ "bubble", "chat", "commenting", "commenting", "conversation", "feedback", "message", "note", "notification", "sms", "speech", "texting" ] - }, { - title: "fas fa-comment-dots", - searchTerms: [] - }, { - title: "far fa-comment-dots", - searchTerms: [] - }, { - title: "fas fa-comment-slash", - searchTerms: [] - }, { - title: "fas fa-comments", - searchTerms: [ "bubble", "chat", "conversation", "feedback", "message", "note", "notification", "sms", "speech", "texting" ] - }, { - title: "far fa-comments", - searchTerms: [ "bubble", "chat", "conversation", "feedback", "message", "note", "notification", "sms", "speech", "texting" ] - }, { - title: "fas fa-compact-disc", - searchTerms: [ "bluray", "cd", "disc", "media" ] - }, { - title: "fas fa-compass", - searchTerms: [ "directory", "location", "menu", "safari" ] - }, { - title: "far fa-compass", - searchTerms: [ "directory", "location", "menu", "safari" ] - }, { - title: "fas fa-compress", - searchTerms: [ "collapse", "combine", "contract", "merge", "smaller" ] - }, { - title: "fas fa-concierge-bell", - searchTerms: [ "attention", "hotel", "service", "support" ] - }, { - title: "fab fa-connectdevelop", - searchTerms: [] - }, { - title: "fab fa-contao", - searchTerms: [] - }, { - title: "fas fa-cookie", - searchTerms: [ "baked good", "chips", "food", "snack", "sweet", "treat" ] - }, { - title: "fas fa-cookie-bite", - searchTerms: [ "baked good", "bitten", "chips", "eating", "food", "snack", "sweet", "treat" ] - }, { - title: "fas fa-copy", - searchTerms: [ "clone", "duplicate", "file", "files-o" ] - }, { - title: "far fa-copy", - searchTerms: [ "clone", "duplicate", "file", "files-o" ] - }, { - title: "fas fa-copyright", - searchTerms: [] - }, { - title: "far fa-copyright", - searchTerms: [] - }, { - title: "fas fa-couch", - searchTerms: [] - }, { - title: "fab fa-cpanel", - searchTerms: [] - }, { - title: "fab fa-creative-commons", - searchTerms: [] - }, { - title: "fab fa-creative-commons-by", - searchTerms: [] - }, { - title: "fab fa-creative-commons-nc", - searchTerms: [] - }, { - title: "fab fa-creative-commons-nc-eu", - searchTerms: [] - }, { - title: "fab fa-creative-commons-nc-jp", - searchTerms: [] - }, { - title: "fab fa-creative-commons-nd", - searchTerms: [] - }, { - title: "fab fa-creative-commons-pd", - searchTerms: [] - }, { - title: "fab fa-creative-commons-pd-alt", - searchTerms: [] - }, { - title: "fab fa-creative-commons-remix", - searchTerms: [] - }, { - title: "fab fa-creative-commons-sa", - searchTerms: [] - }, { - title: "fab fa-creative-commons-sampling", - searchTerms: [] - }, { - title: "fab fa-creative-commons-sampling-plus", - searchTerms: [] - }, { - title: "fab fa-creative-commons-share", - searchTerms: [] - }, { - title: "fas fa-credit-card", - searchTerms: [ "buy", "checkout", "credit-card-alt", "debit", "money", "payment", "purchase" ] - }, { - title: "far fa-credit-card", - searchTerms: [ "buy", "checkout", "credit-card-alt", "debit", "money", "payment", "purchase" ] - }, { - title: "fas fa-crop", - searchTerms: [ "design" ] - }, { - title: "fas fa-crop-alt", - searchTerms: [] - }, { - title: "fas fa-crosshairs", - searchTerms: [ "gpd", "picker", "position" ] - }, { - title: "fas fa-crow", - searchTerms: [ "bird", "bullfrog", "toad" ] - }, { - title: "fas fa-crown", - searchTerms: [] - }, { - title: "fab fa-css3", - searchTerms: [ "code" ] - }, { - title: "fab fa-css3-alt", - searchTerms: [] - }, { - title: "fas fa-cube", - searchTerms: [ "package" ] - }, { - title: "fas fa-cubes", - searchTerms: [ "packages" ] - }, { - title: "fas fa-cut", - searchTerms: [ "scissors", "scissors" ] - }, { - title: "fab fa-cuttlefish", - searchTerms: [] - }, { - title: "fab fa-d-and-d", - searchTerms: [] - }, { - title: "fab fa-dashcube", - searchTerms: [] - }, { - title: "fas fa-database", - searchTerms: [] - }, { - title: "fas fa-deaf", - searchTerms: [] - }, { - title: "fab fa-delicious", - searchTerms: [] - }, { - title: "fab fa-deploydog", - searchTerms: [] - }, { - title: "fab fa-deskpro", - searchTerms: [] - }, { - title: "fas fa-desktop", - searchTerms: [ "computer", "cpu", "demo", "desktop", "device", "machine", "monitor", "pc", "screen" ] - }, { - title: "fab fa-deviantart", - searchTerms: [] - }, { - title: "fas fa-diagnoses", - searchTerms: [] - }, { - title: "fas fa-dice", - searchTerms: [ "chance", "gambling", "game", "roll" ] - }, { - title: "fas fa-dice-five", - searchTerms: [ "chance", "gambling", "game", "roll" ] - }, { - title: "fas fa-dice-four", - searchTerms: [ "chance", "gambling", "game", "roll" ] - }, { - title: "fas fa-dice-one", - searchTerms: [ "chance", "gambling", "game", "roll" ] - }, { - title: "fas fa-dice-six", - searchTerms: [ "chance", "gambling", "game", "roll" ] - }, { - title: "fas fa-dice-three", - searchTerms: [ "chance", "gambling", "game", "roll" ] - }, { - title: "fas fa-dice-two", - searchTerms: [ "chance", "gambling", "game", "roll" ] - }, { - title: "fab fa-digg", - searchTerms: [] - }, { - title: "fab fa-digital-ocean", - searchTerms: [] - }, { - title: "fas fa-digital-tachograph", - searchTerms: [] - }, { - title: "fab fa-discord", - searchTerms: [] - }, { - title: "fab fa-discourse", - searchTerms: [] - }, { - title: "fas fa-divide", - searchTerms: [] - }, { - title: "fas fa-dizzy", - searchTerms: [ "dazed", "disapprove", "emoticon", "face" ] - }, { - title: "far fa-dizzy", - searchTerms: [ "dazed", "disapprove", "emoticon", "face" ] - }, { - title: "fas fa-dna", - searchTerms: [ "double helix", "helix" ] - }, { - title: "fab fa-dochub", - searchTerms: [] - }, { - title: "fab fa-docker", - searchTerms: [] - }, { - title: "fas fa-dollar-sign", - searchTerms: [ "$", "dollar-sign", "money", "price", "usd" ] - }, { - title: "fas fa-dolly", - searchTerms: [] - }, { - title: "fas fa-dolly-flatbed", - searchTerms: [] - }, { - title: "fas fa-donate", - searchTerms: [ "generosity", "give" ] - }, { - title: "fas fa-door-closed", - searchTerms: [] - }, { - title: "fas fa-door-open", - searchTerms: [] - }, { - title: "fas fa-dot-circle", - searchTerms: [ "bullseye", "notification", "target" ] - }, { - title: "far fa-dot-circle", - searchTerms: [ "bullseye", "notification", "target" ] - }, { - title: "fas fa-dove", - searchTerms: [] - }, { - title: "fas fa-download", - searchTerms: [ "import" ] - }, { - title: "fab fa-draft2digital", - searchTerms: [] - }, { - title: "fas fa-drafting-compass", - searchTerms: [ "mechanical drawing", "plot", "plotting" ] - }, { - title: "fab fa-dribbble", - searchTerms: [] - }, { - title: "fab fa-dribbble-square", - searchTerms: [] - }, { - title: "fab fa-dropbox", - searchTerms: [] - }, { - title: "fas fa-drum", - searchTerms: [ "instrument", "music", "percussion", "snare", "sound" ] - }, { - title: "fas fa-drum-steelpan", - searchTerms: [ "calypso", "instrument", "music", "percussion", "reggae", "snare", "sound", "steel", "tropical" ] - }, { - title: "fab fa-drupal", - searchTerms: [] - }, { - title: "fas fa-dumbbell", - searchTerms: [ "exercise", "gym", "strength", "weight", "weight-lifting" ] - }, { - title: "fab fa-dyalog", - searchTerms: [] - }, { - title: "fab fa-earlybirds", - searchTerms: [] - }, { - title: "fab fa-ebay", - searchTerms: [] - }, { - title: "fab fa-edge", - searchTerms: [ "browser", "ie" ] - }, { - title: "fas fa-edit", - searchTerms: [ "edit", "pen", "pencil", "update", "write" ] - }, { - title: "far fa-edit", - searchTerms: [ "edit", "pen", "pencil", "update", "write" ] - }, { - title: "fas fa-eject", - searchTerms: [] - }, { - title: "fab fa-elementor", - searchTerms: [] - }, { - title: "fas fa-ellipsis-h", - searchTerms: [ "dots", "drag", "kebab", "list", "menu", "nav", "navigation", "ol", "reorder", "settings", "ul" ] - }, { - title: "fas fa-ellipsis-v", - searchTerms: [ "dots", "drag", "kebab", "list", "menu", "nav", "navigation", "ol", "reorder", "settings", "ul" ] - }, { - title: "fab fa-ember", - searchTerms: [] - }, { - title: "fab fa-empire", - searchTerms: [] - }, { - title: "fas fa-envelope", - searchTerms: [ "e-mail", "email", "letter", "mail", "message", "notification", "support" ] - }, { - title: "far fa-envelope", - searchTerms: [ "e-mail", "email", "letter", "mail", "message", "notification", "support" ] - }, { - title: "fas fa-envelope-open", - searchTerms: [ "e-mail", "email", "letter", "mail", "message", "notification", "support" ] - }, { - title: "far fa-envelope-open", - searchTerms: [ "e-mail", "email", "letter", "mail", "message", "notification", "support" ] - }, { - title: "fas fa-envelope-square", - searchTerms: [ "e-mail", "email", "letter", "mail", "message", "notification", "support" ] - }, { - title: "fab fa-envira", - searchTerms: [ "leaf" ] - }, { - title: "fas fa-equals", - searchTerms: [] - }, { - title: "fas fa-eraser", - searchTerms: [ "delete", "remove" ] - }, { - title: "fab fa-erlang", - searchTerms: [] - }, { - title: "fab fa-ethereum", - searchTerms: [] - }, { - title: "fab fa-etsy", - searchTerms: [] - }, { - title: "fas fa-euro-sign", - searchTerms: [ "eur", "eur" ] - }, { - title: "fas fa-exchange-alt", - searchTerms: [ "arrow", "arrows", "exchange", "reciprocate", "return", "swap", "transfer" ] - }, { - title: "fas fa-exclamation", - searchTerms: [ "alert", "danger", "error", "important", "notice", "notification", "notify", "problem", "warning" ] - }, { - title: "fas fa-exclamation-circle", - searchTerms: [ "alert", "danger", "error", "important", "notice", "notification", "notify", "problem", "warning" ] - }, { - title: "fas fa-exclamation-triangle", - searchTerms: [ "alert", "danger", "error", "important", "notice", "notification", "notify", "problem", "warning" ] - }, { - title: "fas fa-expand", - searchTerms: [ "bigger", "enlarge", "resize" ] - }, { - title: "fas fa-expand-arrows-alt", - searchTerms: [ "arrows-alt", "bigger", "enlarge", "move", "resize" ] - }, { - title: "fab fa-expeditedssl", - searchTerms: [] - }, { - title: "fas fa-external-link-alt", - searchTerms: [ "external-link", "new", "open" ] - }, { - title: "fas fa-external-link-square-alt", - searchTerms: [ "external-link-square", "new", "open" ] - }, { - title: "fas fa-eye", - searchTerms: [ "optic", "see", "seen", "show", "sight", "views", "visible" ] - }, { - title: "far fa-eye", - searchTerms: [ "optic", "see", "seen", "show", "sight", "views", "visible" ] - }, { - title: "fas fa-eye-dropper", - searchTerms: [ "eyedropper" ] - }, { - title: "fas fa-eye-slash", - searchTerms: [ "blind", "hide", "show", "toggle", "unseen", "views", "visible", "visiblity" ] - }, { - title: "far fa-eye-slash", - searchTerms: [ "blind", "hide", "show", "toggle", "unseen", "views", "visible", "visiblity" ] - }, { - title: "fab fa-facebook", - searchTerms: [ "facebook-official", "social network" ] - }, { - title: "fab fa-facebook-f", - searchTerms: [ "facebook" ] - }, { - title: "fab fa-facebook-messenger", - searchTerms: [] - }, { - title: "fab fa-facebook-square", - searchTerms: [ "social network" ] - }, { - title: "fas fa-fast-backward", - searchTerms: [ "beginning", "first", "previous", "rewind", "start" ] - }, { - title: "fas fa-fast-forward", - searchTerms: [ "end", "last", "next" ] - }, { - title: "fas fa-fax", - searchTerms: [] - }, { - title: "fas fa-feather", - searchTerms: [ "bird", "light", "plucked", "quill" ] - }, { - title: "fas fa-feather-alt", - searchTerms: [ "bird", "light", "plucked", "quill" ] - }, { - title: "fas fa-female", - searchTerms: [ "human", "person", "profile", "user", "woman" ] - }, { - title: "fas fa-fighter-jet", - searchTerms: [ "airplane", "fast", "fly", "goose", "maverick", "plane", "quick", "top gun", "transportation", "travel" ] - }, { - title: "fas fa-file", - searchTerms: [ "document", "new", "page", "pdf", "resume" ] - }, { - title: "far fa-file", - searchTerms: [ "document", "new", "page", "pdf", "resume" ] - }, { - title: "fas fa-file-alt", - searchTerms: [ "document", "file-text", "invoice", "new", "page", "pdf" ] - }, { - title: "far fa-file-alt", - searchTerms: [ "document", "file-text", "invoice", "new", "page", "pdf" ] - }, { - title: "fas fa-file-archive", - searchTerms: [ ".zip", "bundle", "compress", "compression", "download", "zip" ] - }, { - title: "far fa-file-archive", - searchTerms: [ ".zip", "bundle", "compress", "compression", "download", "zip" ] - }, { - title: "fas fa-file-audio", - searchTerms: [] - }, { - title: "far fa-file-audio", - searchTerms: [] - }, { - title: "fas fa-file-code", - searchTerms: [] - }, { - title: "far fa-file-code", - searchTerms: [] - }, { - title: "fas fa-file-contract", - searchTerms: [ "agreement", "binding", "document", "legal", "signature" ] - }, { - title: "fas fa-file-download", - searchTerms: [] - }, { - title: "fas fa-file-excel", - searchTerms: [] - }, { - title: "far fa-file-excel", - searchTerms: [] - }, { - title: "fas fa-file-export", - searchTerms: [] - }, { - title: "fas fa-file-image", - searchTerms: [] - }, { - title: "far fa-file-image", - searchTerms: [] - }, { - title: "fas fa-file-import", - searchTerms: [] - }, { - title: "fas fa-file-invoice", - searchTerms: [ "bill", "document", "receipt" ] - }, { - title: "fas fa-file-invoice-dollar", - searchTerms: [ "$", "bill", "document", "dollar-sign", "money", "receipt", "usd" ] - }, { - title: "fas fa-file-medical", - searchTerms: [] - }, { - title: "fas fa-file-medical-alt", - searchTerms: [] - }, { - title: "fas fa-file-pdf", - searchTerms: [] - }, { - title: "far fa-file-pdf", - searchTerms: [] - }, { - title: "fas fa-file-powerpoint", - searchTerms: [] - }, { - title: "far fa-file-powerpoint", - searchTerms: [] - }, { - title: "fas fa-file-prescription", - searchTerms: [ "drugs", "medical", "medicine", "rx" ] - }, { - title: "fas fa-file-signature", - searchTerms: [ "John Hancock", "contract", "document", "name" ] - }, { - title: "fas fa-file-upload", - searchTerms: [] - }, { - title: "fas fa-file-video", - searchTerms: [] - }, { - title: "far fa-file-video", - searchTerms: [] - }, { - title: "fas fa-file-word", - searchTerms: [] - }, { - title: "far fa-file-word", - searchTerms: [] - }, { - title: "fas fa-fill", - searchTerms: [ "bucket", "color", "paint", "paint bucket" ] - }, { - title: "fas fa-fill-drip", - searchTerms: [ "bucket", "color", "drop", "paint", "paint bucket", "spill" ] - }, { - title: "fas fa-film", - searchTerms: [ "movie" ] - }, { - title: "fas fa-filter", - searchTerms: [ "funnel", "options" ] - }, { - title: "fas fa-fingerprint", - searchTerms: [ "human", "id", "identification", "lock", "smudge", "touch", "unique", "unlock" ] - }, { - title: "fas fa-fire", - searchTerms: [ "flame", "hot", "popular" ] - }, { - title: "fas fa-fire-extinguisher", - searchTerms: [] - }, { - title: "fab fa-firefox", - searchTerms: [ "browser" ] - }, { - title: "fas fa-first-aid", - searchTerms: [] - }, { - title: "fab fa-first-order", - searchTerms: [] - }, { - title: "fab fa-first-order-alt", - searchTerms: [] - }, { - title: "fab fa-firstdraft", - searchTerms: [] - }, { - title: "fas fa-fish", - searchTerms: [] - }, { - title: "fas fa-flag", - searchTerms: [ "notice", "notification", "notify", "report" ] - }, { - title: "far fa-flag", - searchTerms: [ "notice", "notification", "notify", "report" ] - }, { - title: "fas fa-flag-checkered", - searchTerms: [ "notice", "notification", "notify", "report" ] - }, { - title: "fas fa-flask", - searchTerms: [ "beaker", "experimental", "labs", "science" ] - }, { - title: "fab fa-flickr", - searchTerms: [] - }, { - title: "fab fa-flipboard", - searchTerms: [] - }, { - title: "fas fa-flushed", - searchTerms: [ "embarrassed", "emoticon", "face" ] - }, { - title: "far fa-flushed", - searchTerms: [ "embarrassed", "emoticon", "face" ] - }, { - title: "fab fa-fly", - searchTerms: [] - }, { - title: "fas fa-folder", - searchTerms: [] - }, { - title: "far fa-folder", - searchTerms: [] - }, { - title: "fas fa-folder-open", - searchTerms: [] - }, { - title: "far fa-folder-open", - searchTerms: [] - }, { - title: "fas fa-font", - searchTerms: [ "text" ] - }, { - title: "fab fa-font-awesome", - searchTerms: [ "meanpath" ] - }, { - title: "fab fa-font-awesome-alt", - searchTerms: [] - }, { - title: "fab fa-font-awesome-flag", - searchTerms: [] - }, { - title: "far fa-font-awesome-logo-full", - searchTerms: [] - }, { - title: "fas fa-font-awesome-logo-full", - searchTerms: [] - }, { - title: "fab fa-font-awesome-logo-full", - searchTerms: [] - }, { - title: "fab fa-fonticons", - searchTerms: [] - }, { - title: "fab fa-fonticons-fi", - searchTerms: [] - }, { - title: "fas fa-football-ball", - searchTerms: [] - }, { - title: "fab fa-fort-awesome", - searchTerms: [ "castle" ] - }, { - title: "fab fa-fort-awesome-alt", - searchTerms: [ "castle" ] - }, { - title: "fab fa-forumbee", - searchTerms: [] - }, { - title: "fas fa-forward", - searchTerms: [ "forward", "next" ] - }, { - title: "fab fa-foursquare", - searchTerms: [] - }, { - title: "fab fa-free-code-camp", - searchTerms: [] - }, { - title: "fab fa-freebsd", - searchTerms: [] - }, { - title: "fas fa-frog", - searchTerms: [ "bullfrog", "kermit", "kiss", "prince", "toad", "wart" ] - }, { - title: "fas fa-frown", - searchTerms: [ "disapprove", "emoticon", "face", "rating", "sad" ] - }, { - title: "far fa-frown", - searchTerms: [ "disapprove", "emoticon", "face", "rating", "sad" ] - }, { - title: "fas fa-frown-open", - searchTerms: [ "disapprove", "emoticon", "face", "rating", "sad" ] - }, { - title: "far fa-frown-open", - searchTerms: [ "disapprove", "emoticon", "face", "rating", "sad" ] - }, { - title: "fab fa-fulcrum", - searchTerms: [] - }, { - title: "fas fa-futbol", - searchTerms: [ "ball", "football", "soccer" ] - }, { - title: "far fa-futbol", - searchTerms: [ "ball", "football", "soccer" ] - }, { - title: "fab fa-galactic-republic", - searchTerms: [] - }, { - title: "fab fa-galactic-senate", - searchTerms: [] - }, { - title: "fas fa-gamepad", - searchTerms: [ "controller" ] - }, { - title: "fas fa-gas-pump", - searchTerms: [] - }, { - title: "fas fa-gavel", - searchTerms: [ "hammer", "judge", "lawyer", "opinion" ] - }, { - title: "fas fa-gem", - searchTerms: [ "diamond" ] - }, { - title: "far fa-gem", - searchTerms: [ "diamond" ] - }, { - title: "fas fa-genderless", - searchTerms: [] - }, { - title: "fab fa-get-pocket", - searchTerms: [] - }, { - title: "fab fa-gg", - searchTerms: [] - }, { - title: "fab fa-gg-circle", - searchTerms: [] - }, { - title: "fas fa-gift", - searchTerms: [ "generosity", "giving", "party", "present", "wrapped" ] - }, { - title: "fab fa-git", - searchTerms: [] - }, { - title: "fab fa-git-square", - searchTerms: [] - }, { - title: "fab fa-github", - searchTerms: [ "octocat" ] - }, { - title: "fab fa-github-alt", - searchTerms: [ "octocat" ] - }, { - title: "fab fa-github-square", - searchTerms: [ "octocat" ] - }, { - title: "fab fa-gitkraken", - searchTerms: [] - }, { - title: "fab fa-gitlab", - searchTerms: [ "Axosoft" ] - }, { - title: "fab fa-gitter", - searchTerms: [] - }, { - title: "fas fa-glass-martini", - searchTerms: [ "alcohol", "bar", "drink", "glass", "liquor", "martini" ] - }, { - title: "fas fa-glass-martini-alt", - searchTerms: [] - }, { - title: "fas fa-glasses", - searchTerms: [ "foureyes", "hipster", "nerd", "reading", "sight", "spectacles" ] - }, { - title: "fab fa-glide", - searchTerms: [] - }, { - title: "fab fa-glide-g", - searchTerms: [] - }, { - title: "fas fa-globe", - searchTerms: [ "all", "coordinates", "country", "earth", "global", "gps", "language", "localize", "location", "map", "online", "place", "planet", "translate", "travel", "world" ] - }, { - title: "fas fa-globe-africa", - searchTerms: [ "all", "country", "earth", "global", "gps", "language", "localize", "location", "map", "online", "place", "planet", "translate", "travel", "world" ] - }, { - title: "fas fa-globe-americas", - searchTerms: [ "all", "country", "earth", "global", "gps", "language", "localize", "location", "map", "online", "place", "planet", "translate", "travel", "world" ] - }, { - title: "fas fa-globe-asia", - searchTerms: [ "all", "country", "earth", "global", "gps", "language", "localize", "location", "map", "online", "place", "planet", "translate", "travel", "world" ] - }, { - title: "fab fa-gofore", - searchTerms: [] - }, { - title: "fas fa-golf-ball", - searchTerms: [] - }, { - title: "fab fa-goodreads", - searchTerms: [] - }, { - title: "fab fa-goodreads-g", - searchTerms: [] - }, { - title: "fab fa-google", - searchTerms: [] - }, { - title: "fab fa-google-drive", - searchTerms: [] - }, { - title: "fab fa-google-play", - searchTerms: [] - }, { - title: "fab fa-google-plus", - searchTerms: [ "google-plus-circle", "google-plus-official" ] - }, { - title: "fab fa-google-plus-g", - searchTerms: [ "google-plus", "social network" ] - }, { - title: "fab fa-google-plus-square", - searchTerms: [ "social network" ] - }, { - title: "fab fa-google-wallet", - searchTerms: [] - }, { - title: "fas fa-graduation-cap", - searchTerms: [ "learning", "school", "student" ] - }, { - title: "fab fa-gratipay", - searchTerms: [ "favorite", "heart", "like", "love" ] - }, { - title: "fab fa-grav", - searchTerms: [] - }, { - title: "fas fa-greater-than", - searchTerms: [] - }, { - title: "fas fa-greater-than-equal", - searchTerms: [] - }, { - title: "fas fa-grimace", - searchTerms: [ "cringe", "emoticon", "face" ] - }, { - title: "far fa-grimace", - searchTerms: [ "cringe", "emoticon", "face" ] - }, { - title: "fas fa-grin", - searchTerms: [ "emoticon", "face", "laugh", "smile" ] - }, { - title: "far fa-grin", - searchTerms: [ "emoticon", "face", "laugh", "smile" ] - }, { - title: "fas fa-grin-alt", - searchTerms: [ "emoticon", "face", "laugh", "smile" ] - }, { - title: "far fa-grin-alt", - searchTerms: [ "emoticon", "face", "laugh", "smile" ] - }, { - title: "fas fa-grin-beam", - searchTerms: [ "emoticon", "face", "laugh", "smile" ] - }, { - title: "far fa-grin-beam", - searchTerms: [ "emoticon", "face", "laugh", "smile" ] - }, { - title: "fas fa-grin-beam-sweat", - searchTerms: [ "emoticon", "face", "smile" ] - }, { - title: "far fa-grin-beam-sweat", - searchTerms: [ "emoticon", "face", "smile" ] - }, { - title: "fas fa-grin-hearts", - searchTerms: [ "emoticon", "face", "love", "smile" ] - }, { - title: "far fa-grin-hearts", - searchTerms: [ "emoticon", "face", "love", "smile" ] - }, { - title: "fas fa-grin-squint", - searchTerms: [ "emoticon", "face", "laugh", "smile" ] - }, { - title: "far fa-grin-squint", - searchTerms: [ "emoticon", "face", "laugh", "smile" ] - }, { - title: "fas fa-grin-squint-tears", - searchTerms: [ "emoticon", "face", "happy", "smile" ] - }, { - title: "far fa-grin-squint-tears", - searchTerms: [ "emoticon", "face", "happy", "smile" ] - }, { - title: "fas fa-grin-stars", - searchTerms: [ "emoticon", "face", "star-struck" ] - }, { - title: "far fa-grin-stars", - searchTerms: [ "emoticon", "face", "star-struck" ] - }, { - title: "fas fa-grin-tears", - searchTerms: [ "LOL", "emoticon", "face" ] - }, { - title: "far fa-grin-tears", - searchTerms: [ "LOL", "emoticon", "face" ] - }, { - title: "fas fa-grin-tongue", - searchTerms: [ "LOL", "emoticon", "face" ] - }, { - title: "far fa-grin-tongue", - searchTerms: [ "LOL", "emoticon", "face" ] - }, { - title: "fas fa-grin-tongue-squint", - searchTerms: [ "LOL", "emoticon", "face" ] - }, { - title: "far fa-grin-tongue-squint", - searchTerms: [ "LOL", "emoticon", "face" ] - }, { - title: "fas fa-grin-tongue-wink", - searchTerms: [ "LOL", "emoticon", "face" ] - }, { - title: "far fa-grin-tongue-wink", - searchTerms: [ "LOL", "emoticon", "face" ] - }, { - title: "fas fa-grin-wink", - searchTerms: [ "emoticon", "face", "flirt", "laugh", "smile" ] - }, { - title: "far fa-grin-wink", - searchTerms: [ "emoticon", "face", "flirt", "laugh", "smile" ] - }, { - title: "fas fa-grip-horizontal", - searchTerms: [ "affordance", "drag", "drop", "grab", "handle" ] - }, { - title: "fas fa-grip-vertical", - searchTerms: [ "affordance", "drag", "drop", "grab", "handle" ] - }, { - title: "fab fa-gripfire", - searchTerms: [] - }, { - title: "fab fa-grunt", - searchTerms: [] - }, { - title: "fab fa-gulp", - searchTerms: [] - }, { - title: "fas fa-h-square", - searchTerms: [ "hospital", "hotel" ] - }, { - title: "fab fa-hacker-news", - searchTerms: [] - }, { - title: "fab fa-hacker-news-square", - searchTerms: [] - }, { - title: "fas fa-hand-holding", - searchTerms: [] - }, { - title: "fas fa-hand-holding-heart", - searchTerms: [] - }, { - title: "fas fa-hand-holding-usd", - searchTerms: [ "$", "dollar sign", "donation", "giving", "money", "price" ] - }, { - title: "fas fa-hand-lizard", - searchTerms: [] - }, { - title: "far fa-hand-lizard", - searchTerms: [] - }, { - title: "fas fa-hand-paper", - searchTerms: [ "stop" ] - }, { - title: "far fa-hand-paper", - searchTerms: [ "stop" ] - }, { - title: "fas fa-hand-peace", - searchTerms: [] - }, { - title: "far fa-hand-peace", - searchTerms: [] - }, { - title: "fas fa-hand-point-down", - searchTerms: [ "finger", "hand-o-down", "point" ] - }, { - title: "far fa-hand-point-down", - searchTerms: [ "finger", "hand-o-down", "point" ] - }, { - title: "fas fa-hand-point-left", - searchTerms: [ "back", "finger", "hand-o-left", "left", "point", "previous" ] - }, { - title: "far fa-hand-point-left", - searchTerms: [ "back", "finger", "hand-o-left", "left", "point", "previous" ] - }, { - title: "fas fa-hand-point-right", - searchTerms: [ "finger", "forward", "hand-o-right", "next", "point", "right" ] - }, { - title: "far fa-hand-point-right", - searchTerms: [ "finger", "forward", "hand-o-right", "next", "point", "right" ] - }, { - title: "fas fa-hand-point-up", - searchTerms: [ "finger", "hand-o-up", "point" ] - }, { - title: "far fa-hand-point-up", - searchTerms: [ "finger", "hand-o-up", "point" ] - }, { - title: "fas fa-hand-pointer", - searchTerms: [ "select" ] - }, { - title: "far fa-hand-pointer", - searchTerms: [ "select" ] - }, { - title: "fas fa-hand-rock", - searchTerms: [] - }, { - title: "far fa-hand-rock", - searchTerms: [] - }, { - title: "fas fa-hand-scissors", - searchTerms: [] - }, { - title: "far fa-hand-scissors", - searchTerms: [] - }, { - title: "fas fa-hand-spock", - searchTerms: [] - }, { - title: "far fa-hand-spock", - searchTerms: [] - }, { - title: "fas fa-hands", - searchTerms: [] - }, { - title: "fas fa-hands-helping", - searchTerms: [ "aid", "assistance", "partnership", "volunteering" ] - }, { - title: "fas fa-handshake", - searchTerms: [ "greeting", "partnership" ] - }, { - title: "far fa-handshake", - searchTerms: [ "greeting", "partnership" ] - }, { - title: "fas fa-hashtag", - searchTerms: [] - }, { - title: "fas fa-hdd", - searchTerms: [ "cpu", "hard drive", "harddrive", "machine", "save", "storage" ] - }, { - title: "far fa-hdd", - searchTerms: [ "cpu", "hard drive", "harddrive", "machine", "save", "storage" ] - }, { - title: "fas fa-heading", - searchTerms: [ "header", "header" ] - }, { - title: "fas fa-headphones", - searchTerms: [ "audio", "listen", "music", "sound", "speaker" ] - }, { - title: "fas fa-headphones-alt", - searchTerms: [ "audio", "listen", "music", "sound", "speaker" ] - }, { - title: "fas fa-headset", - searchTerms: [ "audio", "gamer", "gaming", "listen", "live chat", "microphone", "shot caller", "sound", "support", "telemarketer" ] - }, { - title: "fas fa-heart", - searchTerms: [ "favorite", "like", "love" ] - }, { - title: "far fa-heart", - searchTerms: [ "favorite", "like", "love" ] - }, { - title: "fas fa-heartbeat", - searchTerms: [ "ekg", "lifeline", "vital signs" ] - }, { - title: "fas fa-helicopter", - searchTerms: [ "airwolf", "apache", "chopper", "flight", "fly" ] - }, { - title: "fas fa-highlighter", - searchTerms: [ "edit", "marker", "sharpie", "update", "write" ] - }, { - title: "fab fa-hips", - searchTerms: [] - }, { - title: "fab fa-hire-a-helper", - searchTerms: [] - }, { - title: "fas fa-history", - searchTerms: [] - }, { - title: "fas fa-hockey-puck", - searchTerms: [] - }, { - title: "fas fa-home", - searchTerms: [ "house", "main" ] - }, { - title: "fab fa-hooli", - searchTerms: [] - }, { - title: "fab fa-hornbill", - searchTerms: [] - }, { - title: "fas fa-hospital", - searchTerms: [ "building", "emergency room", "medical center" ] - }, { - title: "far fa-hospital", - searchTerms: [ "building", "emergency room", "medical center" ] - }, { - title: "fas fa-hospital-alt", - searchTerms: [ "building", "emergency room", "medical center" ] - }, { - title: "fas fa-hospital-symbol", - searchTerms: [] - }, { - title: "fas fa-hot-tub", - searchTerms: [] - }, { - title: "fas fa-hotel", - searchTerms: [ "building", "lodging" ] - }, { - title: "fab fa-hotjar", - searchTerms: [] - }, { - title: "fas fa-hourglass", - searchTerms: [] - }, { - title: "far fa-hourglass", - searchTerms: [] - }, { - title: "fas fa-hourglass-end", - searchTerms: [] - }, { - title: "fas fa-hourglass-half", - searchTerms: [] - }, { - title: "fas fa-hourglass-start", - searchTerms: [] - }, { - title: "fab fa-houzz", - searchTerms: [] - }, { - title: "fab fa-html5", - searchTerms: [] - }, { - title: "fab fa-hubspot", - searchTerms: [] - }, { - title: "fas fa-i-cursor", - searchTerms: [] - }, { - title: "fas fa-id-badge", - searchTerms: [] - }, { - title: "far fa-id-badge", - searchTerms: [] - }, { - title: "fas fa-id-card", - searchTerms: [ "document", "identification", "issued" ] - }, { - title: "far fa-id-card", - searchTerms: [ "document", "identification", "issued" ] - }, { - title: "fas fa-id-card-alt", - searchTerms: [ "demographics" ] - }, { - title: "fas fa-image", - searchTerms: [ "album", "photo", "picture", "picture" ] - }, { - title: "far fa-image", - searchTerms: [ "album", "photo", "picture", "picture" ] - }, { - title: "fas fa-images", - searchTerms: [ "album", "photo", "picture" ] - }, { - title: "far fa-images", - searchTerms: [ "album", "photo", "picture" ] - }, { - title: "fab fa-imdb", - searchTerms: [] - }, { - title: "fas fa-inbox", - searchTerms: [] - }, { - title: "fas fa-indent", - searchTerms: [] - }, { - title: "fas fa-industry", - searchTerms: [ "factory", "manufacturing" ] - }, { - title: "fas fa-infinity", - searchTerms: [] - }, { - title: "fas fa-info", - searchTerms: [ "details", "help", "information", "more" ] - }, { - title: "fas fa-info-circle", - searchTerms: [ "details", "help", "information", "more" ] - }, { - title: "fab fa-instagram", - searchTerms: [] - }, { - title: "fab fa-internet-explorer", - searchTerms: [ "browser", "ie" ] - }, { - title: "fab fa-ioxhost", - searchTerms: [] - }, { - title: "fas fa-italic", - searchTerms: [ "italics" ] - }, { - title: "fab fa-itunes", - searchTerms: [] - }, { - title: "fab fa-itunes-note", - searchTerms: [] - }, { - title: "fab fa-java", - searchTerms: [] - }, { - title: "fab fa-jedi-order", - searchTerms: [] - }, { - title: "fab fa-jenkins", - searchTerms: [] - }, { - title: "fab fa-joget", - searchTerms: [] - }, { - title: "fas fa-joint", - searchTerms: [ "blunt", "cannabis", "doobie", "drugs", "marijuana", "roach", "smoke", "smoking", "spliff" ] - }, { - title: "fab fa-joomla", - searchTerms: [] - }, { - title: "fab fa-js", - searchTerms: [] - }, { - title: "fab fa-js-square", - searchTerms: [] - }, { - title: "fab fa-jsfiddle", - searchTerms: [] - }, { - title: "fas fa-key", - searchTerms: [ "password", "unlock" ] - }, { - title: "fab fa-keybase", - searchTerms: [] - }, { - title: "fas fa-keyboard", - searchTerms: [ "input", "type" ] - }, { - title: "far fa-keyboard", - searchTerms: [ "input", "type" ] - }, { - title: "fab fa-keycdn", - searchTerms: [] - }, { - title: "fab fa-kickstarter", - searchTerms: [] - }, { - title: "fab fa-kickstarter-k", - searchTerms: [] - }, { - title: "fas fa-kiss", - searchTerms: [ "beso", "emoticon", "face", "love", "smooch" ] - }, { - title: "far fa-kiss", - searchTerms: [ "beso", "emoticon", "face", "love", "smooch" ] - }, { - title: "fas fa-kiss-beam", - searchTerms: [ "beso", "emoticon", "face", "love", "smooch" ] - }, { - title: "far fa-kiss-beam", - searchTerms: [ "beso", "emoticon", "face", "love", "smooch" ] - }, { - title: "fas fa-kiss-wink-heart", - searchTerms: [ "beso", "emoticon", "face", "love", "smooch" ] - }, { - title: "far fa-kiss-wink-heart", - searchTerms: [ "beso", "emoticon", "face", "love", "smooch" ] - }, { - title: "fas fa-kiwi-bird", - searchTerms: [] - }, { - title: "fab fa-korvue", - searchTerms: [] - }, { - title: "fas fa-language", - searchTerms: [ "dialect", "idiom", "localize", "speech", "translate", "vernacular" ] - }, { - title: "fas fa-laptop", - searchTerms: [ "computer", "cpu", "dell", "demo", "device", "dude you're getting", "mac", "macbook", "machine", "pc", "pc" ] - }, { - title: "fab fa-laravel", - searchTerms: [] - }, { - title: "fab fa-lastfm", - searchTerms: [] - }, { - title: "fab fa-lastfm-square", - searchTerms: [] - }, { - title: "fas fa-laugh", - searchTerms: [ "LOL", "emoticon", "face", "laugh" ] - }, { - title: "far fa-laugh", - searchTerms: [ "LOL", "emoticon", "face", "laugh" ] - }, { - title: "fas fa-laugh-beam", - searchTerms: [ "LOL", "emoticon", "face" ] - }, { - title: "far fa-laugh-beam", - searchTerms: [ "LOL", "emoticon", "face" ] - }, { - title: "fas fa-laugh-squint", - searchTerms: [ "LOL", "emoticon", "face" ] - }, { - title: "far fa-laugh-squint", - searchTerms: [ "LOL", "emoticon", "face" ] - }, { - title: "fas fa-laugh-wink", - searchTerms: [ "LOL", "emoticon", "face" ] - }, { - title: "far fa-laugh-wink", - searchTerms: [ "LOL", "emoticon", "face" ] - }, { - title: "fas fa-leaf", - searchTerms: [ "eco", "nature", "plant" ] - }, { - title: "fab fa-leanpub", - searchTerms: [] - }, { - title: "fas fa-lemon", - searchTerms: [ "food" ] - }, { - title: "far fa-lemon", - searchTerms: [ "food" ] - }, { - title: "fab fa-less", - searchTerms: [] - }, { - title: "fas fa-less-than", - searchTerms: [] - }, { - title: "fas fa-less-than-equal", - searchTerms: [] - }, { - title: "fas fa-level-down-alt", - searchTerms: [ "level-down" ] - }, { - title: "fas fa-level-up-alt", - searchTerms: [ "level-up" ] - }, { - title: "fas fa-life-ring", - searchTerms: [ "support" ] - }, { - title: "far fa-life-ring", - searchTerms: [ "support" ] - }, { - title: "fas fa-lightbulb", - searchTerms: [ "idea", "inspiration" ] - }, { - title: "far fa-lightbulb", - searchTerms: [ "idea", "inspiration" ] - }, { - title: "fab fa-line", - searchTerms: [] - }, { - title: "fas fa-link", - searchTerms: [ "chain" ] - }, { - title: "fab fa-linkedin", - searchTerms: [ "linkedin-square" ] - }, { - title: "fab fa-linkedin-in", - searchTerms: [ "linkedin" ] - }, { - title: "fab fa-linode", - searchTerms: [] - }, { - title: "fab fa-linux", - searchTerms: [ "tux" ] - }, { - title: "fas fa-lira-sign", - searchTerms: [ "try", "try", "turkish" ] - }, { - title: "fas fa-list", - searchTerms: [ "checklist", "completed", "done", "finished", "ol", "todo", "ul" ] - }, { - title: "fas fa-list-alt", - searchTerms: [ "checklist", "completed", "done", "finished", "ol", "todo", "ul" ] - }, { - title: "far fa-list-alt", - searchTerms: [ "checklist", "completed", "done", "finished", "ol", "todo", "ul" ] - }, { - title: "fas fa-list-ol", - searchTerms: [ "checklist", "list", "list", "numbers", "ol", "todo", "ul" ] - }, { - title: "fas fa-list-ul", - searchTerms: [ "checklist", "list", "ol", "todo", "ul" ] - }, { - title: "fas fa-location-arrow", - searchTerms: [ "address", "coordinates", "gps", "location", "map", "place", "where" ] - }, { - title: "fas fa-lock", - searchTerms: [ "admin", "protect", "security" ] - }, { - title: "fas fa-lock-open", - searchTerms: [ "admin", "lock", "open", "password", "protect" ] - }, { - title: "fas fa-long-arrow-alt-down", - searchTerms: [ "long-arrow-down" ] - }, { - title: "fas fa-long-arrow-alt-left", - searchTerms: [ "back", "long-arrow-left", "previous" ] - }, { - title: "fas fa-long-arrow-alt-right", - searchTerms: [ "long-arrow-right" ] - }, { - title: "fas fa-long-arrow-alt-up", - searchTerms: [ "long-arrow-up" ] - }, { - title: "fas fa-low-vision", - searchTerms: [] - }, { - title: "fas fa-luggage-cart", - searchTerms: [] - }, { - title: "fab fa-lyft", - searchTerms: [] - }, { - title: "fab fa-magento", - searchTerms: [] - }, { - title: "fas fa-magic", - searchTerms: [ "autocomplete", "automatic", "wizard" ] - }, { - title: "fas fa-magnet", - searchTerms: [] - }, { - title: "fab fa-mailchimp", - searchTerms: [] - }, { - title: "fas fa-male", - searchTerms: [ "human", "man", "person", "profile", "user" ] - }, { - title: "fab fa-mandalorian", - searchTerms: [] - }, { - title: "fas fa-map", - searchTerms: [ "coordinates", "location", "paper", "place", "travel" ] - }, { - title: "far fa-map", - searchTerms: [ "coordinates", "location", "paper", "place", "travel" ] - }, { - title: "fas fa-map-marked", - searchTerms: [ "address", "coordinates", "destination", "gps", "localize", "location", "map", "paper", "pin", "place", "point of interest", "position", "route", "travel", "where" ] - }, { - title: "fas fa-map-marked-alt", - searchTerms: [ "address", "coordinates", "destination", "gps", "localize", "location", "map", "paper", "pin", "place", "point of interest", "position", "route", "travel", "where" ] - }, { - title: "fas fa-map-marker", - searchTerms: [ "address", "coordinates", "gps", "localize", "location", "map", "pin", "place", "position", "travel", "where" ] - }, { - title: "fas fa-map-marker-alt", - searchTerms: [ "address", "coordinates", "gps", "localize", "location", "map", "pin", "place", "position", "travel", "where" ] - }, { - title: "fas fa-map-pin", - searchTerms: [ "address", "coordinates", "gps", "localize", "location", "map", "marker", "place", "position", "travel", "where" ] - }, { - title: "fas fa-map-signs", - searchTerms: [] - }, { - title: "fas fa-marker", - searchTerms: [ "edit", "sharpie", "update", "write" ] - }, { - title: "fas fa-mars", - searchTerms: [ "male" ] - }, { - title: "fas fa-mars-double", - searchTerms: [] - }, { - title: "fas fa-mars-stroke", - searchTerms: [] - }, { - title: "fas fa-mars-stroke-h", - searchTerms: [] - }, { - title: "fas fa-mars-stroke-v", - searchTerms: [] - }, { - title: "fab fa-mastodon", - searchTerms: [] - }, { - title: "fab fa-maxcdn", - searchTerms: [] - }, { - title: "fas fa-medal", - searchTerms: [] - }, { - title: "fab fa-medapps", - searchTerms: [] - }, { - title: "fab fa-medium", - searchTerms: [] - }, { - title: "fab fa-medium-m", - searchTerms: [] - }, { - title: "fas fa-medkit", - searchTerms: [ "first aid", "firstaid", "health", "help", "support" ] - }, { - title: "fab fa-medrt", - searchTerms: [] - }, { - title: "fab fa-meetup", - searchTerms: [] - }, { - title: "fab fa-megaport", - searchTerms: [] - }, { - title: "fas fa-meh", - searchTerms: [ "emoticon", "face", "neutral", "rating" ] - }, { - title: "far fa-meh", - searchTerms: [ "emoticon", "face", "neutral", "rating" ] - }, { - title: "fas fa-meh-blank", - searchTerms: [ "emoticon", "face", "neutral", "rating" ] - }, { - title: "far fa-meh-blank", - searchTerms: [ "emoticon", "face", "neutral", "rating" ] - }, { - title: "fas fa-meh-rolling-eyes", - searchTerms: [ "emoticon", "face", "neutral", "rating" ] - }, { - title: "far fa-meh-rolling-eyes", - searchTerms: [ "emoticon", "face", "neutral", "rating" ] - }, { - title: "fas fa-memory", - searchTerms: [ "DIMM", "RAM" ] - }, { - title: "fas fa-mercury", - searchTerms: [ "transgender" ] - }, { - title: "fas fa-microchip", - searchTerms: [ "cpu", "processor" ] - }, { - title: "fas fa-microphone", - searchTerms: [ "record", "sound", "voice" ] - }, { - title: "fas fa-microphone-alt", - searchTerms: [ "record", "sound", "voice" ] - }, { - title: "fas fa-microphone-alt-slash", - searchTerms: [ "disable", "mute", "record", "sound", "voice" ] - }, { - title: "fas fa-microphone-slash", - searchTerms: [ "disable", "mute", "record", "sound", "voice" ] - }, { - title: "fab fa-microsoft", - searchTerms: [] - }, { - title: "fas fa-minus", - searchTerms: [ "collapse", "delete", "hide", "hide", "minify", "remove", "trash" ] - }, { - title: "fas fa-minus-circle", - searchTerms: [ "delete", "hide", "remove", "trash" ] - }, { - title: "fas fa-minus-square", - searchTerms: [ "collapse", "delete", "hide", "hide", "minify", "remove", "trash" ] - }, { - title: "far fa-minus-square", - searchTerms: [ "collapse", "delete", "hide", "hide", "minify", "remove", "trash" ] - }, { - title: "fab fa-mix", - searchTerms: [] - }, { - title: "fab fa-mixcloud", - searchTerms: [] - }, { - title: "fab fa-mizuni", - searchTerms: [] - }, { - title: "fas fa-mobile", - searchTerms: [ "apple", "call", "cell phone", "cellphone", "device", "iphone", "number", "screen", "telephone", "text" ] - }, { - title: "fas fa-mobile-alt", - searchTerms: [ "apple", "call", "cell phone", "cellphone", "device", "iphone", "number", "screen", "telephone", "text" ] - }, { - title: "fab fa-modx", - searchTerms: [] - }, { - title: "fab fa-monero", - searchTerms: [] - }, { - title: "fas fa-money-bill", - searchTerms: [ "buy", "cash", "checkout", "money", "payment", "price", "purchase" ] - }, { - title: "fas fa-money-bill-alt", - searchTerms: [ "buy", "cash", "checkout", "money", "payment", "price", "purchase" ] - }, { - title: "far fa-money-bill-alt", - searchTerms: [ "buy", "cash", "checkout", "money", "payment", "price", "purchase" ] - }, { - title: "fas fa-money-bill-wave", - searchTerms: [] - }, { - title: "fas fa-money-bill-wave-alt", - searchTerms: [] - }, { - title: "fas fa-money-check", - searchTerms: [ "bank check", "cheque" ] - }, { - title: "fas fa-money-check-alt", - searchTerms: [ "bank check", "cheque" ] - }, { - title: "fas fa-monument", - searchTerms: [ "building", "historic", "memoroable" ] - }, { - title: "fas fa-moon", - searchTerms: [ "contrast", "darker", "night" ] - }, { - title: "far fa-moon", - searchTerms: [ "contrast", "darker", "night" ] - }, { - title: "fas fa-mortar-pestle", - searchTerms: [ "crush", "culinary", "grind", "medical", "mix", "spices" ] - }, { - title: "fas fa-motorcycle", - searchTerms: [ "bike", "machine", "transportation", "vehicle" ] - }, { - title: "fas fa-mouse-pointer", - searchTerms: [ "select" ] - }, { - title: "fas fa-music", - searchTerms: [ "note", "sound" ] - }, { - title: "fab fa-napster", - searchTerms: [] - }, { - title: "fas fa-neuter", - searchTerms: [] - }, { - title: "fas fa-newspaper", - searchTerms: [ "article", "press" ] - }, { - title: "far fa-newspaper", - searchTerms: [ "article", "press" ] - }, { - title: "fab fa-nimblr", - searchTerms: [] - }, { - title: "fab fa-nintendo-switch", - searchTerms: [] - }, { - title: "fab fa-node", - searchTerms: [] - }, { - title: "fab fa-node-js", - searchTerms: [] - }, { - title: "fas fa-not-equal", - searchTerms: [] - }, { - title: "fas fa-notes-medical", - searchTerms: [] - }, { - title: "fab fa-npm", - searchTerms: [] - }, { - title: "fab fa-ns8", - searchTerms: [] - }, { - title: "fab fa-nutritionix", - searchTerms: [] - }, { - title: "fas fa-object-group", - searchTerms: [ "design" ] - }, { - title: "far fa-object-group", - searchTerms: [ "design" ] - }, { - title: "fas fa-object-ungroup", - searchTerms: [ "design" ] - }, { - title: "far fa-object-ungroup", - searchTerms: [ "design" ] - }, { - title: "fab fa-odnoklassniki", - searchTerms: [] - }, { - title: "fab fa-odnoklassniki-square", - searchTerms: [] - }, { - title: "fab fa-old-republic", - searchTerms: [] - }, { - title: "fab fa-opencart", - searchTerms: [] - }, { - title: "fab fa-openid", - searchTerms: [] - }, { - title: "fab fa-opera", - searchTerms: [] - }, { - title: "fab fa-optin-monster", - searchTerms: [] - }, { - title: "fab fa-osi", - searchTerms: [] - }, { - title: "fas fa-outdent", - searchTerms: [] - }, { - title: "fab fa-page4", - searchTerms: [] - }, { - title: "fab fa-pagelines", - searchTerms: [ "eco", "leaf", "leaves", "nature", "plant", "tree" ] - }, { - title: "fas fa-paint-brush", - searchTerms: [] - }, { - title: "fas fa-paint-roller", - searchTerms: [ "brush", "painting", "tool" ] - }, { - title: "fas fa-palette", - searchTerms: [ "colors", "painting" ] - }, { - title: "fab fa-palfed", - searchTerms: [] - }, { - title: "fas fa-pallet", - searchTerms: [] - }, { - title: "fas fa-paper-plane", - searchTerms: [] - }, { - title: "far fa-paper-plane", - searchTerms: [] - }, { - title: "fas fa-paperclip", - searchTerms: [ "attachment" ] - }, { - title: "fas fa-parachute-box", - searchTerms: [ "aid", "assistance", "rescue", "supplies" ] - }, { - title: "fas fa-paragraph", - searchTerms: [] - }, { - title: "fas fa-parking", - searchTerms: [] - }, { - title: "fas fa-passport", - searchTerms: [ "document", "identification", "issued" ] - }, { - title: "fas fa-paste", - searchTerms: [ "clipboard", "copy" ] - }, { - title: "fab fa-patreon", - searchTerms: [] - }, { - title: "fas fa-pause", - searchTerms: [ "wait" ] - }, { - title: "fas fa-pause-circle", - searchTerms: [] - }, { - title: "far fa-pause-circle", - searchTerms: [] - }, { - title: "fas fa-paw", - searchTerms: [ "pet" ] - }, { - title: "fab fa-paypal", - searchTerms: [] - }, { - title: "fas fa-pen", - searchTerms: [ "design", "edit", "update", "write" ] - }, { - title: "fas fa-pen-alt", - searchTerms: [ "design", "edit", "update", "write" ] - }, { - title: "fas fa-pen-fancy", - searchTerms: [ "design", "edit", "fountain pen", "update", "write" ] - }, { - title: "fas fa-pen-nib", - searchTerms: [ "design", "edit", "fountain pen", "update", "write" ] - }, { - title: "fas fa-pen-square", - searchTerms: [ "edit", "pencil-square", "update", "write" ] - }, { - title: "fas fa-pencil-alt", - searchTerms: [ "design", "edit", "pencil", "update", "write" ] - }, { - title: "fas fa-pencil-ruler", - searchTerms: [] - }, { - title: "fas fa-people-carry", - searchTerms: [ "movers" ] - }, { - title: "fas fa-percent", - searchTerms: [] - }, { - title: "fas fa-percentage", - searchTerms: [] - }, { - title: "fab fa-periscope", - searchTerms: [] - }, { - title: "fab fa-phabricator", - searchTerms: [] - }, { - title: "fab fa-phoenix-framework", - searchTerms: [] - }, { - title: "fab fa-phoenix-squadron", - searchTerms: [] - }, { - title: "fas fa-phone", - searchTerms: [ "call", "earphone", "number", "support", "telephone", "voice" ] - }, { - title: "fas fa-phone-slash", - searchTerms: [] - }, { - title: "fas fa-phone-square", - searchTerms: [ "call", "number", "support", "telephone", "voice" ] - }, { - title: "fas fa-phone-volume", - searchTerms: [ "telephone", "volume-control-phone" ] - }, { - title: "fab fa-php", - searchTerms: [] - }, { - title: "fab fa-pied-piper", - searchTerms: [] - }, { - title: "fab fa-pied-piper-alt", - searchTerms: [] - }, { - title: "fab fa-pied-piper-hat", - searchTerms: [ "clothing" ] - }, { - title: "fab fa-pied-piper-pp", - searchTerms: [] - }, { - title: "fas fa-piggy-bank", - searchTerms: [ "save", "savings" ] - }, { - title: "fas fa-pills", - searchTerms: [ "drugs", "medicine" ] - }, { - title: "fab fa-pinterest", - searchTerms: [] - }, { - title: "fab fa-pinterest-p", - searchTerms: [] - }, { - title: "fab fa-pinterest-square", - searchTerms: [] - }, { - title: "fas fa-plane", - searchTerms: [ "airplane", "destination", "fly", "location", "mode", "travel", "trip" ] - }, { - title: "fas fa-plane-arrival", - searchTerms: [ "airplane", "arriving", "destination", "fly", "land", "landing", "location", "mode", "travel", "trip" ] - }, { - title: "fas fa-plane-departure", - searchTerms: [ "airplane", "departing", "destination", "fly", "location", "mode", "take off", "taking off", "travel", "trip" ] - }, { - title: "fas fa-play", - searchTerms: [ "music", "playing", "sound", "start" ] - }, { - title: "fas fa-play-circle", - searchTerms: [ "playing", "start" ] - }, { - title: "far fa-play-circle", - searchTerms: [ "playing", "start" ] - }, { - title: "fab fa-playstation", - searchTerms: [] - }, { - title: "fas fa-plug", - searchTerms: [ "connect", "online", "power" ] - }, { - title: "fas fa-plus", - searchTerms: [ "add", "create", "expand", "new" ] - }, { - title: "fas fa-plus-circle", - searchTerms: [ "add", "create", "expand", "new" ] - }, { - title: "fas fa-plus-square", - searchTerms: [ "add", "create", "expand", "new" ] - }, { - title: "far fa-plus-square", - searchTerms: [ "add", "create", "expand", "new" ] - }, { - title: "fas fa-podcast", - searchTerms: [] - }, { - title: "fas fa-poo", - searchTerms: [] - }, { - title: "fas fa-portrait", - searchTerms: [] - }, { - title: "fas fa-pound-sign", - searchTerms: [ "gbp", "gbp" ] - }, { - title: "fas fa-power-off", - searchTerms: [ "on", "reboot", "restart" ] - }, { - title: "fas fa-prescription", - searchTerms: [ "drugs", "medical", "medicine", "rx" ] - }, { - title: "fas fa-prescription-bottle", - searchTerms: [ "drugs", "medical", "medicine", "rx" ] - }, { - title: "fas fa-prescription-bottle-alt", - searchTerms: [ "drugs", "medical", "medicine", "rx" ] - }, { - title: "fas fa-print", - searchTerms: [] - }, { - title: "fas fa-procedures", - searchTerms: [] - }, { - title: "fab fa-product-hunt", - searchTerms: [] - }, { - title: "fas fa-project-diagram", - searchTerms: [] - }, { - title: "fab fa-pushed", - searchTerms: [] - }, { - title: "fas fa-puzzle-piece", - searchTerms: [ "add-on", "addon", "section" ] - }, { - title: "fab fa-python", - searchTerms: [] - }, { - title: "fab fa-qq", - searchTerms: [] - }, { - title: "fas fa-qrcode", - searchTerms: [ "scan" ] - }, { - title: "fas fa-question", - searchTerms: [ "help", "information", "support", "unknown" ] - }, { - title: "fas fa-question-circle", - searchTerms: [ "help", "information", "support", "unknown" ] - }, { - title: "far fa-question-circle", - searchTerms: [ "help", "information", "support", "unknown" ] - }, { - title: "fas fa-quidditch", - searchTerms: [] - }, { - title: "fab fa-quinscape", - searchTerms: [] - }, { - title: "fab fa-quora", - searchTerms: [] - }, { - title: "fas fa-quote-left", - searchTerms: [] - }, { - title: "fas fa-quote-right", - searchTerms: [] - }, { - title: "fab fa-r-project", - searchTerms: [] - }, { - title: "fas fa-random", - searchTerms: [ "shuffle", "sort" ] - }, { - title: "fab fa-ravelry", - searchTerms: [] - }, { - title: "fab fa-react", - searchTerms: [] - }, { - title: "fab fa-readme", - searchTerms: [] - }, { - title: "fab fa-rebel", - searchTerms: [] - }, { - title: "fas fa-receipt", - searchTerms: [ "check", "invoice", "table" ] - }, { - title: "fas fa-recycle", - searchTerms: [] - }, { - title: "fab fa-red-river", - searchTerms: [] - }, { - title: "fab fa-reddit", - searchTerms: [] - }, { - title: "fab fa-reddit-alien", - searchTerms: [] - }, { - title: "fab fa-reddit-square", - searchTerms: [] - }, { - title: "fas fa-redo", - searchTerms: [ "forward", "repeat", "repeat" ] - }, { - title: "fas fa-redo-alt", - searchTerms: [ "forward", "repeat" ] - }, { - title: "fas fa-registered", - searchTerms: [] - }, { - title: "far fa-registered", - searchTerms: [] - }, { - title: "fab fa-rendact", - searchTerms: [] - }, { - title: "fab fa-renren", - searchTerms: [] - }, { - title: "fas fa-reply", - searchTerms: [] - }, { - title: "fas fa-reply-all", - searchTerms: [] - }, { - title: "fab fa-replyd", - searchTerms: [] - }, { - title: "fab fa-researchgate", - searchTerms: [] - }, { - title: "fab fa-resolving", - searchTerms: [] - }, { - title: "fas fa-retweet", - searchTerms: [ "refresh", "reload", "share", "swap" ] - }, { - title: "fab fa-rev", - searchTerms: [] - }, { - title: "fas fa-ribbon", - searchTerms: [ "badge", "cause", "lapel", "pin" ] - }, { - title: "fas fa-road", - searchTerms: [ "street" ] - }, { - title: "fas fa-robot", - searchTerms: [] - }, { - title: "fas fa-rocket", - searchTerms: [ "app" ] - }, { - title: "fab fa-rocketchat", - searchTerms: [] - }, { - title: "fab fa-rockrms", - searchTerms: [] - }, { - title: "fas fa-rss", - searchTerms: [ "blog" ] - }, { - title: "fas fa-rss-square", - searchTerms: [ "blog", "feed" ] - }, { - title: "fas fa-ruble-sign", - searchTerms: [ "rub", "rub" ] - }, { - title: "fas fa-ruler", - searchTerms: [] - }, { - title: "fas fa-ruler-combined", - searchTerms: [] - }, { - title: "fas fa-ruler-horizontal", - searchTerms: [] - }, { - title: "fas fa-ruler-vertical", - searchTerms: [] - }, { - title: "fas fa-rupee-sign", - searchTerms: [ "indian", "inr" ] - }, { - title: "fas fa-sad-cry", - searchTerms: [ "emoticon", "face", "tear", "tears" ] - }, { - title: "far fa-sad-cry", - searchTerms: [ "emoticon", "face", "tear", "tears" ] - }, { - title: "fas fa-sad-tear", - searchTerms: [ "emoticon", "face", "tear", "tears" ] - }, { - title: "far fa-sad-tear", - searchTerms: [ "emoticon", "face", "tear", "tears" ] - }, { - title: "fab fa-safari", - searchTerms: [ "browser" ] - }, { - title: "fab fa-sass", - searchTerms: [] - }, { - title: "fas fa-save", - searchTerms: [ "floppy", "floppy-o" ] - }, { - title: "far fa-save", - searchTerms: [ "floppy", "floppy-o" ] - }, { - title: "fab fa-schlix", - searchTerms: [] - }, { - title: "fas fa-school", - searchTerms: [] - }, { - title: "fas fa-screwdriver", - searchTerms: [ "admin", "container", "fix", "repair", "settings", "tool" ] - }, { - title: "fab fa-scribd", - searchTerms: [] - }, { - title: "fas fa-search", - searchTerms: [ "bigger", "enlarge", "magnify", "preview", "zoom" ] - }, { - title: "fas fa-search-minus", - searchTerms: [ "magnify", "minify", "smaller", "zoom", "zoom out" ] - }, { - title: "fas fa-search-plus", - searchTerms: [ "bigger", "enlarge", "magnify", "zoom", "zoom in" ] - }, { - title: "fab fa-searchengin", - searchTerms: [] - }, { - title: "fas fa-seedling", - searchTerms: [] - }, { - title: "fab fa-sellcast", - searchTerms: [ "eercast" ] - }, { - title: "fab fa-sellsy", - searchTerms: [] - }, { - title: "fas fa-server", - searchTerms: [ "cpu" ] - }, { - title: "fab fa-servicestack", - searchTerms: [] - }, { - title: "fas fa-share", - searchTerms: [] - }, { - title: "fas fa-share-alt", - searchTerms: [] - }, { - title: "fas fa-share-alt-square", - searchTerms: [] - }, { - title: "fas fa-share-square", - searchTerms: [ "send", "social" ] - }, { - title: "far fa-share-square", - searchTerms: [ "send", "social" ] - }, { - title: "fas fa-shekel-sign", - searchTerms: [ "ils", "ils" ] - }, { - title: "fas fa-shield-alt", - searchTerms: [ "shield" ] - }, { - title: "fas fa-ship", - searchTerms: [ "boat", "sea" ] - }, { - title: "fas fa-shipping-fast", - searchTerms: [] - }, { - title: "fab fa-shirtsinbulk", - searchTerms: [] - }, { - title: "fas fa-shoe-prints", - searchTerms: [ "feet", "footprints", "steps" ] - }, { - title: "fas fa-shopping-bag", - searchTerms: [] - }, { - title: "fas fa-shopping-basket", - searchTerms: [] - }, { - title: "fas fa-shopping-cart", - searchTerms: [ "buy", "checkout", "payment", "purchase" ] - }, { - title: "fab fa-shopware", - searchTerms: [] - }, { - title: "fas fa-shower", - searchTerms: [] - }, { - title: "fas fa-shuttle-van", - searchTerms: [ "machine", "public-transportation", "transportation", "vehicle" ] - }, { - title: "fas fa-sign", - searchTerms: [] - }, { - title: "fas fa-sign-in-alt", - searchTerms: [ "arrow", "enter", "join", "log in", "login", "sign in", "sign up", "sign-in", "signin", "signup" ] - }, { - title: "fas fa-sign-language", - searchTerms: [] - }, { - title: "fas fa-sign-out-alt", - searchTerms: [ "arrow", "exit", "leave", "log out", "logout", "sign-out" ] - }, { - title: "fas fa-signal", - searchTerms: [ "bars", "graph", "online", "status" ] - }, { - title: "fas fa-signature", - searchTerms: [ "John Hancock", "cursive", "name", "writing" ] - }, { - title: "fab fa-simplybuilt", - searchTerms: [] - }, { - title: "fab fa-sistrix", - searchTerms: [] - }, { - title: "fas fa-sitemap", - searchTerms: [ "directory", "hierarchy", "ia", "information architecture", "organization" ] - }, { - title: "fab fa-sith", - searchTerms: [] - }, { - title: "fas fa-skull", - searchTerms: [ "bones", "skeleton", "yorick" ] - }, { - title: "fab fa-skyatlas", - searchTerms: [] - }, { - title: "fab fa-skype", - searchTerms: [] - }, { - title: "fab fa-slack", - searchTerms: [ "anchor", "hash", "hashtag" ] - }, { - title: "fab fa-slack-hash", - searchTerms: [ "anchor", "hash", "hashtag" ] - }, { - title: "fas fa-sliders-h", - searchTerms: [ "settings", "sliders" ] - }, { - title: "fab fa-slideshare", - searchTerms: [] - }, { - title: "fas fa-smile", - searchTerms: [ "approve", "emoticon", "face", "happy", "rating", "satisfied" ] - }, { - title: "far fa-smile", - searchTerms: [ "approve", "emoticon", "face", "happy", "rating", "satisfied" ] - }, { - title: "fas fa-smile-beam", - searchTerms: [ "emoticon", "face", "happy" ] - }, { - title: "far fa-smile-beam", - searchTerms: [ "emoticon", "face", "happy" ] - }, { - title: "fas fa-smile-wink", - searchTerms: [ "emoticon", "face", "happy" ] - }, { - title: "far fa-smile-wink", - searchTerms: [ "emoticon", "face", "happy" ] - }, { - title: "fas fa-smoking", - searchTerms: [ "cigarette", "nicotine", "smoking status" ] - }, { - title: "fas fa-smoking-ban", - searchTerms: [ "no smoking", "non-smoking" ] - }, { - title: "fab fa-snapchat", - searchTerms: [] - }, { - title: "fab fa-snapchat-ghost", - searchTerms: [] - }, { - title: "fab fa-snapchat-square", - searchTerms: [] - }, { - title: "fas fa-snowflake", - searchTerms: [] - }, { - title: "far fa-snowflake", - searchTerms: [] - }, { - title: "fas fa-solar-panel", - searchTerms: [ "clean", "eco-friendly", "energy", "green", "sun" ] - }, { - title: "fas fa-sort", - searchTerms: [ "order" ] - }, { - title: "fas fa-sort-alpha-down", - searchTerms: [ "sort-alpha-asc" ] - }, { - title: "fas fa-sort-alpha-up", - searchTerms: [ "sort-alpha-desc" ] - }, { - title: "fas fa-sort-amount-down", - searchTerms: [ "sort-amount-asc" ] - }, { - title: "fas fa-sort-amount-up", - searchTerms: [ "sort-amount-desc" ] - }, { - title: "fas fa-sort-down", - searchTerms: [ "arrow", "descending", "sort-desc" ] - }, { - title: "fas fa-sort-numeric-down", - searchTerms: [ "numbers", "sort-numeric-asc" ] - }, { - title: "fas fa-sort-numeric-up", - searchTerms: [ "numbers", "sort-numeric-desc" ] - }, { - title: "fas fa-sort-up", - searchTerms: [ "arrow", "ascending", "sort-asc" ] - }, { - title: "fab fa-soundcloud", - searchTerms: [] - }, { - title: "fas fa-spa", - searchTerms: [ "mindfullness", "plant", "wellness" ] - }, { - title: "fas fa-space-shuttle", - searchTerms: [ "astronaut", "machine", "nasa", "rocket", "transportation" ] - }, { - title: "fab fa-speakap", - searchTerms: [] - }, { - title: "fas fa-spinner", - searchTerms: [ "loading", "progress" ] - }, { - title: "fas fa-splotch", - searchTerms: [] - }, { - title: "fab fa-spotify", - searchTerms: [] - }, { - title: "fas fa-spray-can", - searchTerms: [] - }, { - title: "fas fa-square", - searchTerms: [ "block", "box" ] - }, { - title: "far fa-square", - searchTerms: [ "block", "box" ] - }, { - title: "fas fa-square-full", - searchTerms: [] - }, { - title: "fab fa-squarespace", - searchTerms: [] - }, { - title: "fab fa-stack-exchange", - searchTerms: [] - }, { - title: "fab fa-stack-overflow", - searchTerms: [] - }, { - title: "fas fa-stamp", - searchTerms: [] - }, { - title: "fas fa-star", - searchTerms: [ "achievement", "award", "favorite", "important", "night", "rating", "score" ] - }, { - title: "far fa-star", - searchTerms: [ "achievement", "award", "favorite", "important", "night", "rating", "score" ] - }, { - title: "fas fa-star-half", - searchTerms: [ "achievement", "award", "rating", "score", "star-half-empty", "star-half-full" ] - }, { - title: "far fa-star-half", - searchTerms: [ "achievement", "award", "rating", "score", "star-half-empty", "star-half-full" ] - }, { - title: "fas fa-star-half-alt", - searchTerms: [ "achievement", "award", "rating", "score", "star-half-empty", "star-half-full" ] - }, { - title: "fab fa-staylinked", - searchTerms: [] - }, { - title: "fab fa-steam", - searchTerms: [] - }, { - title: "fab fa-steam-square", - searchTerms: [] - }, { - title: "fab fa-steam-symbol", - searchTerms: [] - }, { - title: "fas fa-step-backward", - searchTerms: [ "beginning", "first", "previous", "rewind", "start" ] - }, { - title: "fas fa-step-forward", - searchTerms: [ "end", "last", "next" ] - }, { - title: "fas fa-stethoscope", - searchTerms: [] - }, { - title: "fab fa-sticker-mule", - searchTerms: [] - }, { - title: "fas fa-sticky-note", - searchTerms: [] - }, { - title: "far fa-sticky-note", - searchTerms: [] - }, { - title: "fas fa-stop", - searchTerms: [ "block", "box", "square" ] - }, { - title: "fas fa-stop-circle", - searchTerms: [] - }, { - title: "far fa-stop-circle", - searchTerms: [] - }, { - title: "fas fa-stopwatch", - searchTerms: [ "time" ] - }, { - title: "fas fa-store", - searchTerms: [] - }, { - title: "fas fa-store-alt", - searchTerms: [] - }, { - title: "fab fa-strava", - searchTerms: [] - }, { - title: "fas fa-stream", - searchTerms: [] - }, { - title: "fas fa-street-view", - searchTerms: [ "map" ] - }, { - title: "fas fa-strikethrough", - searchTerms: [] - }, { - title: "fab fa-stripe", - searchTerms: [] - }, { - title: "fab fa-stripe-s", - searchTerms: [] - }, { - title: "fas fa-stroopwafel", - searchTerms: [ "dessert", "food", "sweets", "waffle" ] - }, { - title: "fab fa-studiovinari", - searchTerms: [] - }, { - title: "fab fa-stumbleupon", - searchTerms: [] - }, { - title: "fab fa-stumbleupon-circle", - searchTerms: [] - }, { - title: "fas fa-subscript", - searchTerms: [] - }, { - title: "fas fa-subway", - searchTerms: [ "machine", "railway", "train", "transportation", "vehicle" ] - }, { - title: "fas fa-suitcase", - searchTerms: [ "baggage", "luggage", "move", "suitcase", "travel", "trip" ] - }, { - title: "fas fa-suitcase-rolling", - searchTerms: [] - }, { - title: "fas fa-sun", - searchTerms: [ "brighten", "contrast", "day", "lighter", "weather" ] - }, { - title: "far fa-sun", - searchTerms: [ "brighten", "contrast", "day", "lighter", "weather" ] - }, { - title: "fab fa-superpowers", - searchTerms: [] - }, { - title: "fas fa-superscript", - searchTerms: [ "exponential" ] - }, { - title: "fab fa-supple", - searchTerms: [] - }, { - title: "fas fa-surprise", - searchTerms: [ "emoticon", "face", "shocked" ] - }, { - title: "far fa-surprise", - searchTerms: [ "emoticon", "face", "shocked" ] - }, { - title: "fas fa-swatchbook", - searchTerms: [] - }, { - title: "fas fa-swimmer", - searchTerms: [ "athlete", "head", "man", "person", "water" ] - }, { - title: "fas fa-swimming-pool", - searchTerms: [ "ladder", "recreation", "water" ] - }, { - title: "fas fa-sync", - searchTerms: [ "exchange", "refresh", "reload", "rotate", "swap" ] - }, { - title: "fas fa-sync-alt", - searchTerms: [ "refresh", "reload", "rotate" ] - }, { - title: "fas fa-syringe", - searchTerms: [ "immunizations", "needle" ] - }, { - title: "fas fa-table", - searchTerms: [ "data", "excel", "spreadsheet" ] - }, { - title: "fas fa-table-tennis", - searchTerms: [] - }, { - title: "fas fa-tablet", - searchTerms: [ "apple", "device", "ipad", "kindle", "screen" ] - }, { - title: "fas fa-tablet-alt", - searchTerms: [ "apple", "device", "ipad", "kindle", "screen" ] - }, { - title: "fas fa-tablets", - searchTerms: [ "drugs", "medicine" ] - }, { - title: "fas fa-tachometer-alt", - searchTerms: [ "dashboard", "tachometer" ] - }, { - title: "fas fa-tag", - searchTerms: [ "label" ] - }, { - title: "fas fa-tags", - searchTerms: [ "labels" ] - }, { - title: "fas fa-tape", - searchTerms: [] - }, { - title: "fas fa-tasks", - searchTerms: [ "downloading", "downloads", "loading", "progress", "settings" ] - }, { - title: "fas fa-taxi", - searchTerms: [ "cab", "cabbie", "car", "car service", "lyft", "machine", "transportation", "uber", "vehicle" ] - }, { - title: "fab fa-teamspeak", - searchTerms: [] - }, { - title: "fab fa-telegram", - searchTerms: [] - }, { - title: "fab fa-telegram-plane", - searchTerms: [] - }, { - title: "fab fa-tencent-weibo", - searchTerms: [] - }, { - title: "fas fa-terminal", - searchTerms: [ "code", "command", "console", "prompt" ] - }, { - title: "fas fa-text-height", - searchTerms: [] - }, { - title: "fas fa-text-width", - searchTerms: [] - }, { - title: "fas fa-th", - searchTerms: [ "blocks", "boxes", "grid", "squares" ] - }, { - title: "fas fa-th-large", - searchTerms: [ "blocks", "boxes", "grid", "squares" ] - }, { - title: "fas fa-th-list", - searchTerms: [ "checklist", "completed", "done", "finished", "ol", "todo", "ul" ] - }, { - title: "fab fa-themeco", - searchTerms: [] - }, { - title: "fab fa-themeisle", - searchTerms: [] - }, { - title: "fas fa-thermometer", - searchTerms: [ "fever", "temperature" ] - }, { - title: "fas fa-thermometer-empty", - searchTerms: [ "status" ] - }, { - title: "fas fa-thermometer-full", - searchTerms: [ "status" ] - }, { - title: "fas fa-thermometer-half", - searchTerms: [ "status" ] - }, { - title: "fas fa-thermometer-quarter", - searchTerms: [ "status" ] - }, { - title: "fas fa-thermometer-three-quarters", - searchTerms: [ "status" ] - }, { - title: "fas fa-thumbs-down", - searchTerms: [ "disagree", "disapprove", "dislike", "hand", "thumbs-o-down" ] - }, { - title: "far fa-thumbs-down", - searchTerms: [ "disagree", "disapprove", "dislike", "hand", "thumbs-o-down" ] - }, { - title: "fas fa-thumbs-up", - searchTerms: [ "agree", "approve", "favorite", "hand", "like", "ok", "okay", "success", "thumbs-o-up", "yes", "you got it dude" ] - }, { - title: "far fa-thumbs-up", - searchTerms: [ "agree", "approve", "favorite", "hand", "like", "ok", "okay", "success", "thumbs-o-up", "yes", "you got it dude" ] - }, { - title: "fas fa-thumbtack", - searchTerms: [ "coordinates", "location", "marker", "pin", "thumb-tack" ] - }, { - title: "fas fa-ticket-alt", - searchTerms: [ "ticket" ] - }, { - title: "fas fa-times", - searchTerms: [ "close", "cross", "error", "exit", "incorrect", "notice", "notification", "notify", "problem", "wrong", "x" ] - }, { - title: "fas fa-times-circle", - searchTerms: [ "close", "cross", "exit", "incorrect", "notice", "notification", "notify", "problem", "wrong", "x" ] - }, { - title: "far fa-times-circle", - searchTerms: [ "close", "cross", "exit", "incorrect", "notice", "notification", "notify", "problem", "wrong", "x" ] - }, { - title: "fas fa-tint", - searchTerms: [ "drop", "droplet", "raindrop", "waterdrop" ] - }, { - title: "fas fa-tint-slash", - searchTerms: [] - }, { - title: "fas fa-tired", - searchTerms: [ "emoticon", "face", "grumpy" ] - }, { - title: "far fa-tired", - searchTerms: [ "emoticon", "face", "grumpy" ] - }, { - title: "fas fa-toggle-off", - searchTerms: [ "switch" ] - }, { - title: "fas fa-toggle-on", - searchTerms: [ "switch" ] - }, { - title: "fas fa-toolbox", - searchTerms: [ "admin", "container", "fix", "repair", "settings", "tools" ] - }, { - title: "fas fa-tooth", - searchTerms: [ "bicuspid", "dental", "molar", "mouth", "teeth" ] - }, { - title: "fab fa-trade-federation", - searchTerms: [] - }, { - title: "fas fa-trademark", - searchTerms: [] - }, { - title: "fas fa-train", - searchTerms: [ "bullet", "locomotive", "railway" ] - }, { - title: "fas fa-transgender", - searchTerms: [ "intersex" ] - }, { - title: "fas fa-transgender-alt", - searchTerms: [] - }, { - title: "fas fa-trash", - searchTerms: [ "delete", "garbage", "hide", "remove" ] - }, { - title: "fas fa-trash-alt", - searchTerms: [ "delete", "garbage", "hide", "remove", "trash", "trash-o" ] - }, { - title: "far fa-trash-alt", - searchTerms: [ "delete", "garbage", "hide", "remove", "trash", "trash-o" ] - }, { - title: "fas fa-tree", - searchTerms: [] - }, { - title: "fab fa-trello", - searchTerms: [] - }, { - title: "fab fa-tripadvisor", - searchTerms: [] - }, { - title: "fas fa-trophy", - searchTerms: [ "achievement", "award", "cup", "game", "winner" ] - }, { - title: "fas fa-truck", - searchTerms: [ "delivery", "shipping" ] - }, { - title: "fas fa-truck-loading", - searchTerms: [] - }, { - title: "fas fa-truck-moving", - searchTerms: [] - }, { - title: "fas fa-tshirt", - searchTerms: [ "cloth", "clothing" ] - }, { - title: "fas fa-tty", - searchTerms: [] - }, { - title: "fab fa-tumblr", - searchTerms: [] - }, { - title: "fab fa-tumblr-square", - searchTerms: [] - }, { - title: "fas fa-tv", - searchTerms: [ "computer", "display", "monitor", "television" ] - }, { - title: "fab fa-twitch", - searchTerms: [] - }, { - title: "fab fa-twitter", - searchTerms: [ "social network", "tweet" ] - }, { - title: "fab fa-twitter-square", - searchTerms: [ "social network", "tweet" ] - }, { - title: "fab fa-typo3", - searchTerms: [] - }, { - title: "fab fa-uber", - searchTerms: [] - }, { - title: "fab fa-uikit", - searchTerms: [] - }, { - title: "fas fa-umbrella", - searchTerms: [ "protection", "rain" ] - }, { - title: "fas fa-umbrella-beach", - searchTerms: [ "protection", "recreation", "sun" ] - }, { - title: "fas fa-underline", - searchTerms: [] - }, { - title: "fas fa-undo", - searchTerms: [ "back", "control z", "exchange", "oops", "return", "rotate", "swap" ] - }, { - title: "fas fa-undo-alt", - searchTerms: [ "back", "control z", "exchange", "oops", "return", "swap" ] - }, { - title: "fab fa-uniregistry", - searchTerms: [] - }, { - title: "fas fa-universal-access", - searchTerms: [] - }, { - title: "fas fa-university", - searchTerms: [ "bank", "institution" ] - }, { - title: "fas fa-unlink", - searchTerms: [ "chain", "chain-broken", "remove" ] - }, { - title: "fas fa-unlock", - searchTerms: [ "admin", "lock", "password", "protect" ] - }, { - title: "fas fa-unlock-alt", - searchTerms: [ "admin", "lock", "password", "protect" ] - }, { - title: "fab fa-untappd", - searchTerms: [] - }, { - title: "fas fa-upload", - searchTerms: [ "export", "publish" ] - }, { - title: "fab fa-usb", - searchTerms: [] - }, { - title: "fas fa-user", - searchTerms: [ "account", "avatar", "head", "man", "person", "profile" ] - }, { - title: "far fa-user", - searchTerms: [ "account", "avatar", "head", "man", "person", "profile" ] - }, { - title: "fas fa-user-alt", - searchTerms: [ "account", "avatar", "head", "man", "person", "profile" ] - }, { - title: "fas fa-user-alt-slash", - searchTerms: [] - }, { - title: "fas fa-user-astronaut", - searchTerms: [ "avatar", "clothing", "cosmonaut", "space", "suit" ] - }, { - title: "fas fa-user-check", - searchTerms: [] - }, { - title: "fas fa-user-circle", - searchTerms: [ "account", "avatar", "head", "man", "person", "profile" ] - }, { - title: "far fa-user-circle", - searchTerms: [ "account", "avatar", "head", "man", "person", "profile" ] - }, { - title: "fas fa-user-clock", - searchTerms: [] - }, { - title: "fas fa-user-cog", - searchTerms: [] - }, { - title: "fas fa-user-edit", - searchTerms: [] - }, { - title: "fas fa-user-friends", - searchTerms: [] - }, { - title: "fas fa-user-graduate", - searchTerms: [ "cap", "clothing", "commencement", "gown", "graduation", "student" ] - }, { - title: "fas fa-user-lock", - searchTerms: [] - }, { - title: "fas fa-user-md", - searchTerms: [ "doctor", "job", "medical", "nurse", "occupation", "profile" ] - }, { - title: "fas fa-user-minus", - searchTerms: [] - }, { - title: "fas fa-user-ninja", - searchTerms: [ "assassin", "avatar", "dangerous", "sneaky" ] - }, { - title: "fas fa-user-plus", - searchTerms: [ "sign up", "signup" ] - }, { - title: "fas fa-user-secret", - searchTerms: [ "clothing", "coat", "hat", "incognito", "privacy", "spy", "whisper" ] - }, { - title: "fas fa-user-shield", - searchTerms: [] - }, { - title: "fas fa-user-slash", - searchTerms: [] - }, { - title: "fas fa-user-tag", - searchTerms: [] - }, { - title: "fas fa-user-tie", - searchTerms: [ "avatar", "business", "clothing", "formal" ] - }, { - title: "fas fa-user-times", - searchTerms: [] - }, { - title: "fas fa-users", - searchTerms: [ "people", "persons", "profiles" ] - }, { - title: "fas fa-users-cog", - searchTerms: [] - }, { - title: "fab fa-ussunnah", - searchTerms: [] - }, { - title: "fas fa-utensil-spoon", - searchTerms: [ "spoon" ] - }, { - title: "fas fa-utensils", - searchTerms: [ "cutlery", "dinner", "eat", "food", "knife", "restaurant", "spoon" ] - }, { - title: "fab fa-vaadin", - searchTerms: [] - }, { - title: "fas fa-vector-square", - searchTerms: [ "anchors", "lines", "object" ] - }, { - title: "fas fa-venus", - searchTerms: [ "female" ] - }, { - title: "fas fa-venus-double", - searchTerms: [] - }, { - title: "fas fa-venus-mars", - searchTerms: [] - }, { - title: "fab fa-viacoin", - searchTerms: [] - }, { - title: "fab fa-viadeo", - searchTerms: [] - }, { - title: "fab fa-viadeo-square", - searchTerms: [] - }, { - title: "fas fa-vial", - searchTerms: [ "test tube" ] - }, { - title: "fas fa-vials", - searchTerms: [ "lab results", "test tubes" ] - }, { - title: "fab fa-viber", - searchTerms: [] - }, { - title: "fas fa-video", - searchTerms: [ "camera", "film", "movie", "record", "video-camera" ] - }, { - title: "fas fa-video-slash", - searchTerms: [] - }, { - title: "fab fa-vimeo", - searchTerms: [] - }, { - title: "fab fa-vimeo-square", - searchTerms: [] - }, { - title: "fab fa-vimeo-v", - searchTerms: [ "vimeo" ] - }, { - title: "fab fa-vine", - searchTerms: [] - }, { - title: "fab fa-vk", - searchTerms: [] - }, { - title: "fab fa-vnv", - searchTerms: [] - }, { - title: "fas fa-volleyball-ball", - searchTerms: [] - }, { - title: "fas fa-volume-down", - searchTerms: [ "audio", "lower", "music", "quieter", "sound", "speaker" ] - }, { - title: "fas fa-volume-off", - searchTerms: [ "audio", "music", "mute", "sound" ] - }, { - title: "fas fa-volume-up", - searchTerms: [ "audio", "higher", "louder", "music", "sound", "speaker" ] - }, { - title: "fab fa-vuejs", - searchTerms: [] - }, { - title: "fas fa-walking", - searchTerms: [] - }, { - title: "fas fa-wallet", - searchTerms: [] - }, { - title: "fas fa-warehouse", - searchTerms: [] - }, { - title: "fab fa-weebly", - searchTerms: [] - }, { - title: "fab fa-weibo", - searchTerms: [] - }, { - title: "fas fa-weight", - searchTerms: [ "measurement", "scale", "weight" ] - }, { - title: "fas fa-weight-hanging", - searchTerms: [ "anvil", "heavy", "measurement" ] - }, { - title: "fab fa-weixin", - searchTerms: [] - }, { - title: "fab fa-whatsapp", - searchTerms: [] - }, { - title: "fab fa-whatsapp-square", - searchTerms: [] - }, { - title: "fas fa-wheelchair", - searchTerms: [ "handicap", "person" ] - }, { - title: "fab fa-whmcs", - searchTerms: [] - }, { - title: "fas fa-wifi", - searchTerms: [] - }, { - title: "fab fa-wikipedia-w", - searchTerms: [] - }, { - title: "fas fa-window-close", - searchTerms: [] - }, { - title: "far fa-window-close", - searchTerms: [] - }, { - title: "fas fa-window-maximize", - searchTerms: [] - }, { - title: "far fa-window-maximize", - searchTerms: [] - }, { - title: "fas fa-window-minimize", - searchTerms: [] - }, { - title: "far fa-window-minimize", - searchTerms: [] - }, { - title: "fas fa-window-restore", - searchTerms: [] - }, { - title: "far fa-window-restore", - searchTerms: [] - }, { - title: "fab fa-windows", - searchTerms: [ "microsoft" ] - }, { - title: "fas fa-wine-glass", - searchTerms: [] - }, { - title: "fas fa-wine-glass-alt", - searchTerms: [] - }, { - title: "fab fa-wix", - searchTerms: [] - }, { - title: "fab fa-wolf-pack-battalion", - searchTerms: [] - }, { - title: "fas fa-won-sign", - searchTerms: [ "krw", "krw" ] - }, { - title: "fab fa-wordpress", - searchTerms: [] - }, { - title: "fab fa-wordpress-simple", - searchTerms: [] - }, { - title: "fab fa-wpbeginner", - searchTerms: [] - }, { - title: "fab fa-wpexplorer", - searchTerms: [] - }, { - title: "fab fa-wpforms", - searchTerms: [] - }, { - title: "fas fa-wrench", - searchTerms: [ "fix", "settings", "spanner", "tool", "update" ] - }, { - title: "fas fa-x-ray", - searchTerms: [ "radiological images", "radiology" ] - }, { - title: "fab fa-xbox", - searchTerms: [] - }, { - title: "fab fa-xing", - searchTerms: [] - }, { - title: "fab fa-xing-square", - searchTerms: [] - }, { - title: "fab fa-y-combinator", - searchTerms: [] - }, { - title: "fab fa-yahoo", - searchTerms: [] - }, { - title: "fab fa-yandex", - searchTerms: [] - }, { - title: "fab fa-yandex-international", - searchTerms: [] - }, { - title: "fab fa-yelp", - searchTerms: [] - }, { - title: "fas fa-yen-sign", - searchTerms: [ "jpy", "jpy" ] - }, { - title: "fab fa-yoast", - searchTerms: [] - }, { - title: "fab fa-youtube", - searchTerms: [ "film", "video", "youtube-play", "youtube-square" ] - }, { - title: "fab fa-youtube-square", - searchTerms: [] - } ] - }); -}); \ No newline at end of file diff --git a/apps/dashboard/app/javascript/packs/fa/faIconInfo.js b/apps/dashboard/app/javascript/packs/fa/faIconInfo.js deleted file mode 100644 index b0a6f0c38c..0000000000 --- a/apps/dashboard/app/javascript/packs/fa/faIconInfo.js +++ /dev/null @@ -1,4997 +0,0 @@ -// TODO: I wonder how to update these fa icon lists? - -FA5iconinfo = [{ - "title": "fab fa-500px", - "searchTerms": [] -}, { - "title": "fab fa-accessible-icon", - "searchTerms": ["accessibility", "wheelchair", "handicap", "person", "wheelchair-alt"] -}, { - "title": "fab fa-accusoft", - "searchTerms": [] -}, { - "title": "fas fa-address-book", - "searchTerms": [] -}, { - "title": "far fa-address-book", - "searchTerms": [] -}, { - "title": "fas fa-address-card", - "searchTerms": [] -}, { - "title": "far fa-address-card", - "searchTerms": [] -}, { - "title": "fas fa-adjust", - "searchTerms": ["contrast"] -}, { - "title": "fab fa-adn", - "searchTerms": [] -}, { - "title": "fab fa-adversal", - "searchTerms": [] -}, { - "title": "fab fa-affiliatetheme", - "searchTerms": [] -}, { - "title": "fab fa-algolia", - "searchTerms": [] -}, { - "title": "fas fa-align-center", - "searchTerms": ["middle", "text"] -}, { - "title": "fas fa-align-justify", - "searchTerms": ["text"] -}, { - "title": "fas fa-align-left", - "searchTerms": ["text"] -}, { - "title": "fas fa-align-right", - "searchTerms": ["text"] -}, { - "title": "fas fa-allergies", - "searchTerms": ["intolerances", "pox", "hand", "freckles", "spots"] -}, { - "title": "fab fa-amazon", - "searchTerms": [] -}, { - "title": "fab fa-amazon-pay", - "searchTerms": [] -}, { - "title": "fas fa-ambulance", - "searchTerms": ["vehicle", "support", "help", "machine"] -}, { - "title": "fas fa-american-sign-language-interpreting", - "searchTerms": [] -}, { - "title": "fab fa-amilia", - "searchTerms": [] -}, { - "title": "fas fa-anchor", - "searchTerms": ["link"] -}, { - "title": "fab fa-android", - "searchTerms": ["robot"] -}, { - "title": "fab fa-angellist", - "searchTerms": [] -}, { - "title": "fas fa-angle-double-down", - "searchTerms": ["arrows"] -}, { - "title": "fas fa-angle-double-left", - "searchTerms": ["laquo", "quote", "previous", "back", "arrows"] -}, { - "title": "fas fa-angle-double-right", - "searchTerms": ["raquo", "quote", "next", "forward", "arrows"] -}, { - "title": "fas fa-angle-double-up", - "searchTerms": ["arrows"] -}, { - "title": "fas fa-angle-down", - "searchTerms": ["arrow"] -}, { - "title": "fas fa-angle-left", - "searchTerms": ["previous", "back", "arrow"] -}, { - "title": "fas fa-angle-right", - "searchTerms": ["next", "forward", "arrow"] -}, { - "title": "fas fa-angle-up", - "searchTerms": ["arrow"] -}, { - "title": "fab fa-angrycreative", - "searchTerms": [] -}, { - "title": "fab fa-angular", - "searchTerms": [] -}, { - "title": "fab fa-app-store", - "searchTerms": [] -}, { - "title": "fab fa-app-store-ios", - "searchTerms": [] -}, { - "title": "fab fa-apper", - "searchTerms": [] -}, { - "title": "fab fa-apple", - "searchTerms": ["osx", "food"] -}, { - "title": "fab fa-apple-pay", - "searchTerms": [] -}, { - "title": "fas fa-archive", - "searchTerms": ["box", "storage", "package"] -}, { - "title": "fas fa-arrow-alt-circle-down", - "searchTerms": ["download", "arrow-circle-o-down"] -}, { - "title": "far fa-arrow-alt-circle-down", - "searchTerms": ["download", "arrow-circle-o-down"] -}, { - "title": "fas fa-arrow-alt-circle-left", - "searchTerms": ["previous", "back", "arrow-circle-o-left"] -}, { - "title": "far fa-arrow-alt-circle-left", - "searchTerms": ["previous", "back", "arrow-circle-o-left"] -}, { - "title": "fas fa-arrow-alt-circle-right", - "searchTerms": ["next", "forward", "arrow-circle-o-right"] -}, { - "title": "far fa-arrow-alt-circle-right", - "searchTerms": ["next", "forward", "arrow-circle-o-right"] -}, { - "title": "fas fa-arrow-alt-circle-up", - "searchTerms": ["arrow-circle-o-up"] -}, { - "title": "far fa-arrow-alt-circle-up", - "searchTerms": ["arrow-circle-o-up"] -}, { - "title": "fas fa-arrow-circle-down", - "searchTerms": ["download"] -}, { - "title": "fas fa-arrow-circle-left", - "searchTerms": ["previous", "back"] -}, { - "title": "fas fa-arrow-circle-right", - "searchTerms": ["next", "forward"] -}, { - "title": "fas fa-arrow-circle-up", - "searchTerms": [] -}, { - "title": "fas fa-arrow-down", - "searchTerms": ["download"] -}, { - "title": "fas fa-arrow-left", - "searchTerms": ["previous", "back"] -}, { - "title": "fas fa-arrow-right", - "searchTerms": ["next", "forward"] -}, { - "title": "fas fa-arrow-up", - "searchTerms": [] -}, { - "title": "fas fa-arrows-alt", - "searchTerms": ["expand", "enlarge", "fullscreen", "bigger", "move", "reorder", "resize", "arrow", "arrows"] -}, { - "title": "fas fa-arrows-alt-h", - "searchTerms": ["resize", "arrows-h"] -}, { - "title": "fas fa-arrows-alt-v", - "searchTerms": ["resize", "arrows-v"] -}, { - "title": "fas fa-assistive-listening-systems", - "searchTerms": [] -}, { - "title": "fas fa-asterisk", - "searchTerms": ["details"] -}, { - "title": "fab fa-asymmetrik", - "searchTerms": [] -}, { - "title": "fas fa-at", - "searchTerms": ["email", "e-mail"] -}, { - "title": "fab fa-audible", - "searchTerms": [] -}, { - "title": "fas fa-audio-description", - "searchTerms": [] -}, { - "title": "fab fa-autoprefixer", - "searchTerms": [] -}, { - "title": "fab fa-avianex", - "searchTerms": [] -}, { - "title": "fab fa-aviato", - "searchTerms": [] -}, { - "title": "fab fa-aws", - "searchTerms": [] -}, { - "title": "fas fa-backward", - "searchTerms": ["rewind", "previous"] -}, { - "title": "fas fa-balance-scale", - "searchTerms": [] -}, { - "title": "fas fa-ban", - "searchTerms": ["delete", "remove", "trash", "hide", "block", "stop", "abort", "cancel", "ban", "prohibit"] -}, { - "title": "fas fa-band-aid", - "searchTerms": ["bandage", "ouch", "boo boo"] -}, { - "title": "fab fa-bandcamp", - "searchTerms": [] -}, { - "title": "fas fa-barcode", - "searchTerms": ["scan"] -}, { - "title": "fas fa-bars", - "searchTerms": ["menu", "drag", "reorder", "settings", "list", "ul", "ol", "checklist", "todo", "hamburger", "navigation", "nav"] -}, { - "title": "fas fa-baseball-ball", - "searchTerms": [] -}, { - "title": "fas fa-basketball-ball", - "searchTerms": [] -}, { - "title": "fas fa-bath", - "searchTerms": [] -}, { - "title": "fas fa-battery-empty", - "searchTerms": ["power", "status"] -}, { - "title": "fas fa-battery-full", - "searchTerms": ["power", "status"] -}, { - "title": "fas fa-battery-half", - "searchTerms": ["power", "status"] -}, { - "title": "fas fa-battery-quarter", - "searchTerms": ["power", "status"] -}, { - "title": "fas fa-battery-three-quarters", - "searchTerms": ["power", "status"] -}, { - "title": "fas fa-bed", - "searchTerms": ["travel"] -}, { - "title": "fas fa-beer", - "searchTerms": ["alcohol", "stein", "drink", "mug", "bar", "liquor"] -}, { - "title": "fab fa-behance", - "searchTerms": [] -}, { - "title": "fab fa-behance-square", - "searchTerms": [] -}, { - "title": "fas fa-bell", - "searchTerms": ["alert", "reminder", "notification"] -}, { - "title": "far fa-bell", - "searchTerms": ["alert", "reminder", "notification"] -}, { - "title": "fas fa-bell-slash", - "searchTerms": [] -}, { - "title": "far fa-bell-slash", - "searchTerms": [] -}, { - "title": "fas fa-bicycle", - "searchTerms": ["vehicle", "transportation", "bike", "gears"] -}, { - "title": "fab fa-bimobject", - "searchTerms": [] -}, { - "title": "fas fa-binoculars", - "searchTerms": [] -}, { - "title": "fas fa-birthday-cake", - "searchTerms": [] -}, { - "title": "fab fa-bitbucket", - "searchTerms": ["git", "bitbucket-square"] -}, { - "title": "fab fa-bitcoin", - "searchTerms": [] -}, { - "title": "fab fa-bity", - "searchTerms": [] -}, { - "title": "fab fa-black-tie", - "searchTerms": [] -}, { - "title": "fab fa-blackberry", - "searchTerms": [] -}, { - "title": "fas fa-blind", - "searchTerms": [] -}, { - "title": "fab fa-blogger", - "searchTerms": [] -}, { - "title": "fab fa-blogger-b", - "searchTerms": [] -}, { - "title": "fab fa-bluetooth", - "searchTerms": [] -}, { - "title": "fab fa-bluetooth-b", - "searchTerms": [] -}, { - "title": "fas fa-bold", - "searchTerms": [] -}, { - "title": "fas fa-bolt", - "searchTerms": ["lightning", "weather"] -}, { - "title": "fas fa-bomb", - "searchTerms": [] -}, { - "title": "fas fa-book", - "searchTerms": ["read", "documentation"] -}, { - "title": "fas fa-bookmark", - "searchTerms": ["save"] -}, { - "title": "far fa-bookmark", - "searchTerms": ["save"] -}, { - "title": "fas fa-bowling-ball", - "searchTerms": [] -}, { - "title": "fas fa-box", - "searchTerms": ["package"] -}, { - "title": "fas fa-box-open", - "searchTerms": [] -}, { - "title": "fas fa-boxes", - "searchTerms": [] -}, { - "title": "fas fa-braille", - "searchTerms": [] -}, { - "title": "fas fa-briefcase", - "searchTerms": ["work", "business", "office", "luggage", "bag"] -}, { - "title": "fas fa-briefcase-medical", - "searchTerms": ["health briefcase"] -}, { - "title": "fab fa-btc", - "searchTerms": [] -}, { - "title": "fas fa-bug", - "searchTerms": ["report", "insect"] -}, { - "title": "fas fa-building", - "searchTerms": ["work", "business", "apartment", "office", "company"] -}, { - "title": "far fa-building", - "searchTerms": ["work", "business", "apartment", "office", "company"] -}, { - "title": "fas fa-bullhorn", - "searchTerms": ["announcement", "share", "broadcast", "louder", "megaphone"] -}, { - "title": "fas fa-bullseye", - "searchTerms": ["target"] -}, { - "title": "fas fa-burn", - "searchTerms": ["energy"] -}, { - "title": "fab fa-buromobelexperte", - "searchTerms": [] -}, { - "title": "fas fa-bus", - "searchTerms": ["vehicle", "machine", "public transportation", "transportation"] -}, { - "title": "fab fa-buysellads", - "searchTerms": [] -}, { - "title": "fas fa-calculator", - "searchTerms": [] -}, { - "title": "fas fa-calendar", - "searchTerms": ["date", "time", "when", "event", "calendar-o", "schedule"] -}, { - "title": "far fa-calendar", - "searchTerms": ["date", "time", "when", "event", "calendar-o", "schedule"] -}, { - "title": "fas fa-calendar-alt", - "searchTerms": ["date", "time", "when", "event", "calendar", "schedule"] -}, { - "title": "far fa-calendar-alt", - "searchTerms": ["date", "time", "when", "event", "calendar", "schedule"] -}, { - "title": "fas fa-calendar-check", - "searchTerms": ["todo", "done", "agree", "accept", "confirm", "ok", "select", "success", "appointment", "correct"] -}, { - "title": "far fa-calendar-check", - "searchTerms": ["todo", "done", "agree", "accept", "confirm", "ok", "select", "success", "appointment", "correct"] -}, { - "title": "fas fa-calendar-minus", - "searchTerms": [] -}, { - "title": "far fa-calendar-minus", - "searchTerms": [] -}, { - "title": "fas fa-calendar-plus", - "searchTerms": [] -}, { - "title": "far fa-calendar-plus", - "searchTerms": [] -}, { - "title": "fas fa-calendar-times", - "searchTerms": [] -}, { - "title": "far fa-calendar-times", - "searchTerms": [] -}, { - "title": "fas fa-camera", - "searchTerms": ["photo", "picture", "record"] -}, { - "title": "fas fa-camera-retro", - "searchTerms": ["photo", "picture", "record"] -}, { - "title": "fas fa-capsules", - "searchTerms": ["medicine", "drugs"] -}, { - "title": "fas fa-car", - "searchTerms": ["vehicle", "machine", "transportation"] -}, { - "title": "fas fa-caret-down", - "searchTerms": ["more", "dropdown", "menu", "triangle down", "arrow"] -}, { - "title": "fas fa-caret-left", - "searchTerms": ["previous", "back", "triangle left", "arrow"] -}, { - "title": "fas fa-caret-right", - "searchTerms": ["next", "forward", "triangle right", "arrow"] -}, { - "title": "fas fa-caret-square-down", - "searchTerms": ["more", "dropdown", "menu", "caret-square-o-down"] -}, { - "title": "far fa-caret-square-down", - "searchTerms": ["more", "dropdown", "menu", "caret-square-o-down"] -}, { - "title": "fas fa-caret-square-left", - "searchTerms": ["previous", "back", "caret-square-o-left"] -}, { - "title": "far fa-caret-square-left", - "searchTerms": ["previous", "back", "caret-square-o-left"] -}, { - "title": "fas fa-caret-square-right", - "searchTerms": ["next", "forward", "caret-square-o-right"] -}, { - "title": "far fa-caret-square-right", - "searchTerms": ["next", "forward", "caret-square-o-right"] -}, { - "title": "fas fa-caret-square-up", - "searchTerms": ["caret-square-o-up"] -}, { - "title": "far fa-caret-square-up", - "searchTerms": ["caret-square-o-up"] -}, { - "title": "fas fa-caret-up", - "searchTerms": ["triangle up", "arrow"] -}, { - "title": "fas fa-cart-arrow-down", - "searchTerms": ["shopping"] -}, { - "title": "fas fa-cart-plus", - "searchTerms": ["add", "shopping"] -}, { - "title": "fab fa-cc-amazon-pay", - "searchTerms": [] -}, { - "title": "fab fa-cc-amex", - "searchTerms": ["amex"] -}, { - "title": "fab fa-cc-apple-pay", - "searchTerms": [] -}, { - "title": "fab fa-cc-diners-club", - "searchTerms": [] -}, { - "title": "fab fa-cc-discover", - "searchTerms": [] -}, { - "title": "fab fa-cc-jcb", - "searchTerms": [] -}, { - "title": "fab fa-cc-mastercard", - "searchTerms": [] -}, { - "title": "fab fa-cc-paypal", - "searchTerms": [] -}, { - "title": "fab fa-cc-stripe", - "searchTerms": [] -}, { - "title": "fab fa-cc-visa", - "searchTerms": [] -}, { - "title": "fab fa-centercode", - "searchTerms": [] -}, { - "title": "fas fa-certificate", - "searchTerms": ["badge", "star"] -}, { - "title": "fas fa-chart-area", - "searchTerms": ["graph", "analytics", "area-chart"] -}, { - "title": "fas fa-chart-bar", - "searchTerms": ["graph", "analytics", "bar-chart"] -}, { - "title": "far fa-chart-bar", - "searchTerms": ["graph", "analytics", "bar-chart"] -}, { - "title": "fas fa-chart-line", - "searchTerms": ["graph", "analytics", "line-chart", "dashboard"] -}, { - "title": "fas fa-chart-pie", - "searchTerms": ["graph", "analytics", "pie-chart"] -}, { - "title": "fas fa-check", - "searchTerms": ["checkmark", "done", "todo", "agree", "accept", "confirm", "tick", "ok", "select", "success", "notification", "notify", "notice", "yes", "correct"] -}, { - "title": "fas fa-check-circle", - "searchTerms": ["todo", "done", "agree", "accept", "confirm", "ok", "select", "success", "yes", "correct"] -}, { - "title": "far fa-check-circle", - "searchTerms": ["todo", "done", "agree", "accept", "confirm", "ok", "select", "success", "yes", "correct"] -}, { - "title": "fas fa-check-square", - "searchTerms": ["checkmark", "done", "todo", "agree", "accept", "confirm", "ok", "select", "success", "yes", "correct"] -}, { - "title": "far fa-check-square", - "searchTerms": ["checkmark", "done", "todo", "agree", "accept", "confirm", "ok", "select", "success", "yes", "correct"] -}, { - "title": "fas fa-chess", - "searchTerms": [] -}, { - "title": "fas fa-chess-bishop", - "searchTerms": [] -}, { - "title": "fas fa-chess-board", - "searchTerms": [] -}, { - "title": "fas fa-chess-king", - "searchTerms": [] -}, { - "title": "fas fa-chess-knight", - "searchTerms": [] -}, { - "title": "fas fa-chess-pawn", - "searchTerms": [] -}, { - "title": "fas fa-chess-queen", - "searchTerms": [] -}, { - "title": "fas fa-chess-rook", - "searchTerms": [] -}, { - "title": "fas fa-chevron-circle-down", - "searchTerms": ["more", "dropdown", "menu", "arrow"] -}, { - "title": "fas fa-chevron-circle-left", - "searchTerms": ["previous", "back", "arrow"] -}, { - "title": "fas fa-chevron-circle-right", - "searchTerms": ["next", "forward", "arrow"] -}, { - "title": "fas fa-chevron-circle-up", - "searchTerms": ["arrow"] -}, { - "title": "fas fa-chevron-down", - "searchTerms": [] -}, { - "title": "fas fa-chevron-left", - "searchTerms": ["bracket", "previous", "back"] -}, { - "title": "fas fa-chevron-right", - "searchTerms": ["bracket", "next", "forward"] -}, { - "title": "fas fa-chevron-up", - "searchTerms": [] -}, { - "title": "fas fa-child", - "searchTerms": [] -}, { - "title": "fab fa-chrome", - "searchTerms": ["browser"] -}, { - "title": "fas fa-circle", - "searchTerms": ["dot", "notification", "circle-thin"] -}, { - "title": "far fa-circle", - "searchTerms": ["dot", "notification", "circle-thin"] -}, { - "title": "fas fa-circle-notch", - "searchTerms": ["circle-o-notch"] -}, { - "title": "fas fa-clipboard", - "searchTerms": ["paste"] -}, { - "title": "far fa-clipboard", - "searchTerms": ["paste"] -}, { - "title": "fas fa-clipboard-check", - "searchTerms": ["todo", "done", "agree", "accept", "confirm", "ok", "select", "success", "yes"] -}, { - "title": "fas fa-clipboard-list", - "searchTerms": ["todo", "ul", "ol", "checklist", "finished", "completed", "done", "schedule", "intinerary"] -}, { - "title": "fas fa-clock", - "searchTerms": ["watch", "timer", "late", "timestamp", "date", "schedule"] -}, { - "title": "far fa-clock", - "searchTerms": ["watch", "timer", "late", "timestamp", "date", "schedule"] -}, { - "title": "fas fa-clone", - "searchTerms": ["copy"] -}, { - "title": "far fa-clone", - "searchTerms": ["copy"] -}, { - "title": "fas fa-closed-captioning", - "searchTerms": ["cc"] -}, { - "title": "far fa-closed-captioning", - "searchTerms": ["cc"] -}, { - "title": "fas fa-cloud", - "searchTerms": ["save"] -}, { - "title": "fas fa-cloud-download-alt", - "searchTerms": ["cloud-download"] -}, { - "title": "fas fa-cloud-upload-alt", - "searchTerms": ["cloud-upload"] -}, { - "title": "fab fa-cloudscale", - "searchTerms": [] -}, { - "title": "fab fa-cloudsmith", - "searchTerms": [] -}, { - "title": "fab fa-cloudversify", - "searchTerms": [] -}, { - "title": "fas fa-code", - "searchTerms": ["html", "brackets"] -}, { - "title": "fas fa-code-branch", - "searchTerms": ["git", "fork", "vcs", "svn", "github", "rebase", "version", "branch", "code-fork"] -}, { - "title": "fab fa-codepen", - "searchTerms": [] -}, { - "title": "fab fa-codiepie", - "searchTerms": [] -}, { - "title": "fas fa-coffee", - "searchTerms": ["morning", "mug", "breakfast", "tea", "drink", "cafe"] -}, { - "title": "fas fa-cog", - "searchTerms": ["settings"] -}, { - "title": "fas fa-cogs", - "searchTerms": ["settings", "gears"] -}, { - "title": "fas fa-columns", - "searchTerms": ["split", "panes", "dashboard"] -}, { - "title": "fas fa-comment", - "searchTerms": ["speech", "notification", "note", "chat", "bubble", "feedback", "message", "texting", "sms", "conversation"] -}, { - "title": "far fa-comment", - "searchTerms": ["speech", "notification", "note", "chat", "bubble", "feedback", "message", "texting", "sms", "conversation"] -}, { - "title": "fas fa-comment-alt", - "searchTerms": ["speech", "notification", "note", "chat", "bubble", "feedback", "message", "texting", "sms", "conversation", "commenting", "commenting"] -}, { - "title": "far fa-comment-alt", - "searchTerms": ["speech", "notification", "note", "chat", "bubble", "feedback", "message", "texting", "sms", "conversation", "commenting", "commenting"] -}, { - "title": "fas fa-comment-dots", - "searchTerms": [] -}, { - "title": "fas fa-comment-slash", - "searchTerms": [] -}, { - "title": "fas fa-comments", - "searchTerms": ["speech", "notification", "note", "chat", "bubble", "feedback", "message", "texting", "sms", "conversation"] -}, { - "title": "far fa-comments", - "searchTerms": ["speech", "notification", "note", "chat", "bubble", "feedback", "message", "texting", "sms", "conversation"] -}, { - "title": "fas fa-compass", - "searchTerms": ["safari", "directory", "menu", "location"] -}, { - "title": "far fa-compass", - "searchTerms": ["safari", "directory", "menu", "location"] -}, { - "title": "fas fa-compress", - "searchTerms": ["collapse", "combine", "contract", "merge", "smaller"] -}, { - "title": "fab fa-connectdevelop", - "searchTerms": [] -}, { - "title": "fab fa-contao", - "searchTerms": [] -}, { - "title": "fas fa-copy", - "searchTerms": ["duplicate", "clone", "file", "files-o"] -}, { - "title": "far fa-copy", - "searchTerms": ["duplicate", "clone", "file", "files-o"] -}, { - "title": "fas fa-copyright", - "searchTerms": [] -}, { - "title": "far fa-copyright", - "searchTerms": [] -}, { - "title": "fas fa-couch", - "searchTerms": [] -}, { - "title": "fab fa-cpanel", - "searchTerms": [] -}, { - "title": "fab fa-creative-commons", - "searchTerms": [] -}, { - "title": "fas fa-credit-card", - "searchTerms": ["money", "buy", "debit", "checkout", "purchase", "payment", "credit-card-alt"] -}, { - "title": "far fa-credit-card", - "searchTerms": ["money", "buy", "debit", "checkout", "purchase", "payment", "credit-card-alt"] -}, { - "title": "fas fa-crop", - "searchTerms": ["design"] -}, { - "title": "fas fa-crosshairs", - "searchTerms": ["picker", "gpd"] -}, { - "title": "fab fa-css3", - "searchTerms": ["code"] -}, { - "title": "fab fa-css3-alt", - "searchTerms": [] -}, { - "title": "fas fa-cube", - "searchTerms": ["package"] -}, { - "title": "fas fa-cubes", - "searchTerms": ["packages"] -}, { - "title": "fas fa-cut", - "searchTerms": ["scissors", "scissors"] -}, { - "title": "fab fa-cuttlefish", - "searchTerms": [] -}, { - "title": "fab fa-d-and-d", - "searchTerms": [] -}, { - "title": "fab fa-dashcube", - "searchTerms": [] -}, { - "title": "fas fa-database", - "searchTerms": [] -}, { - "title": "fas fa-deaf", - "searchTerms": [] -}, { - "title": "fab fa-delicious", - "searchTerms": [] -}, { - "title": "fab fa-deploydog", - "searchTerms": [] -}, { - "title": "fab fa-deskpro", - "searchTerms": [] -}, { - "title": "fas fa-desktop", - "searchTerms": ["monitor", "screen", "desktop", "computer", "demo", "device", "pc", "machine"] -}, { - "title": "fab fa-deviantart", - "searchTerms": [] -}, { - "title": "fas fa-diagnoses", - "searchTerms": [] -}, { - "title": "fab fa-digg", - "searchTerms": [] -}, { - "title": "fab fa-digital-ocean", - "searchTerms": [] -}, { - "title": "fab fa-discord", - "searchTerms": [] -}, { - "title": "fab fa-discourse", - "searchTerms": [] -}, { - "title": "fas fa-dna", - "searchTerms": ["double helix", "helix"] -}, { - "title": "fab fa-dochub", - "searchTerms": [] -}, { - "title": "fab fa-docker", - "searchTerms": [] -}, { - "title": "fas fa-dollar-sign", - "searchTerms": ["usd", "price"] -}, { - "title": "fas fa-dolly", - "searchTerms": [] -}, { - "title": "fas fa-dolly-flatbed", - "searchTerms": [] -}, { - "title": "fas fa-donate", - "searchTerms": ["give", "generosity"] -}, { - "title": "fas fa-dot-circle", - "searchTerms": ["target", "bullseye", "notification"] -}, { - "title": "far fa-dot-circle", - "searchTerms": ["target", "bullseye", "notification"] -}, { - "title": "fas fa-dove", - "searchTerms": [] -}, { - "title": "fas fa-download", - "searchTerms": ["import"] -}, { - "title": "fab fa-draft2digital", - "searchTerms": [] -}, { - "title": "fab fa-dribbble", - "searchTerms": [] -}, { - "title": "fab fa-dribbble-square", - "searchTerms": [] -}, { - "title": "fab fa-dropbox", - "searchTerms": [] -}, { - "title": "fab fa-drupal", - "searchTerms": [] -}, { - "title": "fab fa-dyalog", - "searchTerms": [] -}, { - "title": "fab fa-earlybirds", - "searchTerms": [] -}, { - "title": "fab fa-edge", - "searchTerms": ["browser", "ie"] -}, { - "title": "fas fa-edit", - "searchTerms": ["write", "edit", "update", "pencil", "pen"] -}, { - "title": "far fa-edit", - "searchTerms": ["write", "edit", "update", "pencil", "pen"] -}, { - "title": "fas fa-eject", - "searchTerms": [] -}, { - "title": "fab fa-elementor", - "searchTerms": [] -}, { - "title": "fas fa-ellipsis-h", - "searchTerms": ["dots", "menu", "drag", "reorder", "settings", "list", "ul", "ol", "kebab", "navigation", "nav"] -}, { - "title": "fas fa-ellipsis-v", - "searchTerms": ["dots", "menu", "drag", "reorder", "settings", "list", "ul", "ol", "kebab", "navigation", "nav"] -}, { - "title": "fab fa-ember", - "searchTerms": [] -}, { - "title": "fab fa-empire", - "searchTerms": [] -}, { - "title": "fas fa-envelope", - "searchTerms": ["email", "e-mail", "letter", "support", "mail", "message", "notification"] -}, { - "title": "far fa-envelope", - "searchTerms": ["email", "e-mail", "letter", "support", "mail", "message", "notification"] -}, { - "title": "fas fa-envelope-open", - "searchTerms": ["email", "e-mail", "letter", "support", "mail", "message", "notification"] -}, { - "title": "far fa-envelope-open", - "searchTerms": ["email", "e-mail", "letter", "support", "mail", "message", "notification"] -}, { - "title": "fas fa-envelope-square", - "searchTerms": ["email", "e-mail", "letter", "support", "mail", "message", "notification"] -}, { - "title": "fab fa-envira", - "searchTerms": ["leaf"] -}, { - "title": "fas fa-eraser", - "searchTerms": ["remove", "delete"] -}, { - "title": "fab fa-erlang", - "searchTerms": [] -}, { - "title": "fab fa-ethereum", - "searchTerms": [] -}, { - "title": "fab fa-etsy", - "searchTerms": [] -}, { - "title": "fas fa-euro-sign", - "searchTerms": ["eur", "eur"] -}, { - "title": "fas fa-exchange-alt", - "searchTerms": ["transfer", "arrows", "arrow", "exchange", "swap", "return", "reciprocate"] -}, { - "title": "fas fa-exclamation", - "searchTerms": ["warning", "error", "problem", "notification", "notify", "notice", "alert", "danger"] -}, { - "title": "fas fa-exclamation-circle", - "searchTerms": ["warning", "error", "problem", "notification", "notify", "notice", "alert", "danger"] -}, { - "title": "fas fa-exclamation-triangle", - "searchTerms": ["warning", "error", "problem", "notification", "notify", "notice", "alert", "danger"] -}, { - "title": "fas fa-expand", - "searchTerms": ["enlarge", "bigger", "resize"] -}, { - "title": "fas fa-expand-arrows-alt", - "searchTerms": ["enlarge", "bigger", "resize", "move", "arrows-alt"] -}, { - "title": "fab fa-expeditedssl", - "searchTerms": [] -}, { - "title": "fas fa-external-link-alt", - "searchTerms": ["open", "new", "external-link"] -}, { - "title": "fas fa-external-link-square-alt", - "searchTerms": ["open", "new", "external-link-square"] -}, { - "title": "fas fa-eye", - "searchTerms": ["show", "visible", "views", "see", "seen", "sight", "optic"] -}, { - "title": "fas fa-eye-dropper", - "searchTerms": ["eyedropper"] -}, { - "title": "fas fa-eye-slash", - "searchTerms": ["toggle", "show", "hide", "visible", "visiblity", "views", "unseen", "blind"] -}, { - "title": "far fa-eye-slash", - "searchTerms": ["toggle", "show", "hide", "visible", "visiblity", "views", "unseen", "blind"] -}, { - "title": "fab fa-facebook", - "searchTerms": ["social network", "facebook-official"] -}, { - "title": "fab fa-facebook-f", - "searchTerms": ["facebook"] -}, { - "title": "fab fa-facebook-messenger", - "searchTerms": [] -}, { - "title": "fab fa-facebook-square", - "searchTerms": ["social network"] -}, { - "title": "fas fa-fast-backward", - "searchTerms": ["rewind", "previous", "beginning", "start", "first"] -}, { - "title": "fas fa-fast-forward", - "searchTerms": ["next", "end", "last"] -}, { - "title": "fas fa-fax", - "searchTerms": [] -}, { - "title": "fas fa-female", - "searchTerms": ["woman", "human", "user", "person", "profile"] -}, { - "title": "fas fa-fighter-jet", - "searchTerms": ["fly", "plane", "airplane", "quick", "fast", "travel", "transportation", "maverick", "goose", "top gun"] -}, { - "title": "fas fa-file", - "searchTerms": ["new", "page", "pdf", "document"] -}, { - "title": "far fa-file", - "searchTerms": ["new", "page", "pdf", "document"] -}, { - "title": "fas fa-file-alt", - "searchTerms": ["new", "page", "pdf", "document", "file-text", "invoice"] -}, { - "title": "far fa-file-alt", - "searchTerms": ["new", "page", "pdf", "document", "file-text", "invoice"] -}, { - "title": "fas fa-file-archive", - "searchTerms": ["zip", ".zip", "compress", "compression", "bundle", "download"] -}, { - "title": "far fa-file-archive", - "searchTerms": ["zip", ".zip", "compress", "compression", "bundle", "download"] -}, { - "title": "fas fa-file-audio", - "searchTerms": [] -}, { - "title": "far fa-file-audio", - "searchTerms": [] -}, { - "title": "fas fa-file-code", - "searchTerms": [] -}, { - "title": "far fa-file-code", - "searchTerms": [] -}, { - "title": "fas fa-file-excel", - "searchTerms": [] -}, { - "title": "far fa-file-excel", - "searchTerms": [] -}, { - "title": "fas fa-file-image", - "searchTerms": [] -}, { - "title": "far fa-file-image", - "searchTerms": [] -}, { - "title": "fas fa-file-medical", - "searchTerms": [] -}, { - "title": "fas fa-file-medical-alt", - "searchTerms": [] -}, { - "title": "fas fa-file-pdf", - "searchTerms": [] -}, { - "title": "far fa-file-pdf", - "searchTerms": [] -}, { - "title": "fas fa-file-powerpoint", - "searchTerms": [] -}, { - "title": "far fa-file-powerpoint", - "searchTerms": [] -}, { - "title": "fas fa-file-video", - "searchTerms": [] -}, { - "title": "far fa-file-video", - "searchTerms": [] -}, { - "title": "fas fa-file-word", - "searchTerms": [] -}, { - "title": "far fa-file-word", - "searchTerms": [] -}, { - "title": "fas fa-film", - "searchTerms": ["movie"] -}, { - "title": "fas fa-filter", - "searchTerms": ["funnel", "options"] -}, { - "title": "fas fa-fire", - "searchTerms": ["flame", "hot", "popular"] -}, { - "title": "fas fa-fire-extinguisher", - "searchTerms": [] -}, { - "title": "fab fa-firefox", - "searchTerms": ["browser"] -}, { - "title": "fas fa-first-aid", - "searchTerms": [] -}, { - "title": "fab fa-first-order", - "searchTerms": [] -}, { - "title": "fab fa-firstdraft", - "searchTerms": [] -}, { - "title": "fas fa-flag", - "searchTerms": ["report", "notification", "notify", "notice"] -}, { - "title": "far fa-flag", - "searchTerms": ["report", "notification", "notify", "notice"] -}, { - "title": "fas fa-flag-checkered", - "searchTerms": ["report", "notification", "notify", "notice"] -}, { - "title": "fas fa-flask", - "searchTerms": ["science", "beaker", "experimental", "labs"] -}, { - "title": "fab fa-flickr", - "searchTerms": [] -}, { - "title": "fab fa-flipboard", - "searchTerms": [] -}, { - "title": "fab fa-fly", - "searchTerms": [] -}, { - "title": "fas fa-folder", - "searchTerms": [] -}, { - "title": "far fa-folder", - "searchTerms": [] -}, { - "title": "fas fa-folder-open", - "searchTerms": [] -}, { - "title": "far fa-folder-open", - "searchTerms": [] -}, { - "title": "fas fa-font", - "searchTerms": ["text"] -}, { - "title": "fab fa-font-awesome", - "searchTerms": ["meanpath"] -}, { - "title": "fab fa-font-awesome-alt", - "searchTerms": [] -}, { - "title": "fab fa-font-awesome-flag", - "searchTerms": [] -}, { - "title": "fab fa-fonticons", - "searchTerms": [] -}, { - "title": "fab fa-fonticons-fi", - "searchTerms": [] -}, { - "title": "fas fa-football-ball", - "searchTerms": [] -}, { - "title": "fab fa-fort-awesome", - "searchTerms": ["castle"] -}, { - "title": "fab fa-fort-awesome-alt", - "searchTerms": ["castle"] -}, { - "title": "fab fa-forumbee", - "searchTerms": [] -}, { - "title": "fas fa-forward", - "searchTerms": ["forward", "next"] -}, { - "title": "fab fa-foursquare", - "searchTerms": [] -}, { - "title": "fab fa-free-code-camp", - "searchTerms": [] -}, { - "title": "fab fa-freebsd", - "searchTerms": [] -}, { - "title": "fas fa-frown", - "searchTerms": ["face", "emoticon", "sad", "disapprove", "rating"] -}, { - "title": "far fa-frown", - "searchTerms": ["face", "emoticon", "sad", "disapprove", "rating"] -}, { - "title": "fas fa-futbol", - "searchTerms": ["soccer", "football", "ball"] -}, { - "title": "far fa-futbol", - "searchTerms": ["soccer", "football", "ball"] -}, { - "title": "fas fa-gamepad", - "searchTerms": ["controller"] -}, { - "title": "fas fa-gavel", - "searchTerms": ["judge", "lawyer", "opinion", "hammer"] -}, { - "title": "fas fa-gem", - "searchTerms": ["diamond"] -}, { - "title": "far fa-gem", - "searchTerms": ["diamond"] -}, { - "title": "fas fa-genderless", - "searchTerms": [] -}, { - "title": "fab fa-get-pocket", - "searchTerms": [] -}, { - "title": "fab fa-gg", - "searchTerms": [] -}, { - "title": "fab fa-gg-circle", - "searchTerms": [] -}, { - "title": "fas fa-gift", - "searchTerms": ["present", "party", "wrapped", "giving", "generosity"] -}, { - "title": "fab fa-git", - "searchTerms": [] -}, { - "title": "fab fa-git-square", - "searchTerms": [] -}, { - "title": "fab fa-github", - "searchTerms": ["octocat"] -}, { - "title": "fab fa-github-alt", - "searchTerms": ["octocat"] -}, { - "title": "fab fa-github-square", - "searchTerms": ["octocat"] -}, { - "title": "fab fa-gitkraken", - "searchTerms": [] -}, { - "title": "fab fa-gitlab", - "searchTerms": ["Axosoft"] -}, { - "title": "fab fa-gitter", - "searchTerms": [] -}, { - "title": "fas fa-glass-martini", - "searchTerms": ["martini", "drink", "bar", "alcohol", "liquor", "glass"] -}, { - "title": "fab fa-glide", - "searchTerms": [] -}, { - "title": "fab fa-glide-g", - "searchTerms": [] -}, { - "title": "fas fa-globe", - "searchTerms": ["world", "planet", "map", "place", "travel", "earth", "global", "translate", "all", "language", "localize", "location", "coordinates", "country", "gps", "online"] -}, { - "title": "fab fa-gofore", - "searchTerms": [] -}, { - "title": "fas fa-golf-ball", - "searchTerms": [] -}, { - "title": "fab fa-goodreads", - "searchTerms": [] -}, { - "title": "fab fa-goodreads-g", - "searchTerms": [] -}, { - "title": "fab fa-google", - "searchTerms": [] -}, { - "title": "fab fa-google-drive", - "searchTerms": [] -}, { - "title": "fab fa-google-play", - "searchTerms": [] -}, { - "title": "fab fa-google-plus", - "searchTerms": ["google-plus-circle", "google-plus-official"] -}, { - "title": "fab fa-google-plus-g", - "searchTerms": ["social network", "google-plus"] -}, { - "title": "fab fa-google-plus-square", - "searchTerms": ["social network"] -}, { - "title": "fab fa-google-wallet", - "searchTerms": [] -}, { - "title": "fas fa-graduation-cap", - "searchTerms": ["learning", "school", "student"] -}, { - "title": "fab fa-gratipay", - "searchTerms": ["heart", "like", "favorite", "love"] -}, { - "title": "fab fa-grav", - "searchTerms": [] -}, { - "title": "fab fa-gripfire", - "searchTerms": [] -}, { - "title": "fab fa-grunt", - "searchTerms": [] -}, { - "title": "fab fa-gulp", - "searchTerms": [] -}, { - "title": "fas fa-h-square", - "searchTerms": ["hospital", "hotel"] -}, { - "title": "fab fa-hacker-news", - "searchTerms": [] -}, { - "title": "fab fa-hacker-news-square", - "searchTerms": [] -}, { - "title": "fas fa-hand-holding", - "searchTerms": [] -}, { - "title": "fas fa-hand-holding-heart", - "searchTerms": [] -}, { - "title": "fas fa-hand-holding-usd", - "searchTerms": ["dollar sign", "price", "donation", "giving"] -}, { - "title": "fas fa-hand-lizard", - "searchTerms": [] -}, { - "title": "far fa-hand-lizard", - "searchTerms": [] -}, { - "title": "fas fa-hand-paper", - "searchTerms": ["stop"] -}, { - "title": "far fa-hand-paper", - "searchTerms": ["stop"] -}, { - "title": "fas fa-hand-peace", - "searchTerms": [] -}, { - "title": "far fa-hand-peace", - "searchTerms": [] -}, { - "title": "fas fa-hand-point-down", - "searchTerms": ["point", "finger", "hand-o-down"] -}, { - "title": "far fa-hand-point-down", - "searchTerms": ["point", "finger", "hand-o-down"] -}, { - "title": "fas fa-hand-point-left", - "searchTerms": ["point", "left", "previous", "back", "finger", "hand-o-left"] -}, { - "title": "far fa-hand-point-left", - "searchTerms": ["point", "left", "previous", "back", "finger", "hand-o-left"] -}, { - "title": "fas fa-hand-point-right", - "searchTerms": ["point", "right", "next", "forward", "finger", "hand-o-right"] -}, { - "title": "far fa-hand-point-right", - "searchTerms": ["point", "right", "next", "forward", "finger", "hand-o-right"] -}, { - "title": "fas fa-hand-point-up", - "searchTerms": ["point", "finger", "hand-o-up"] -}, { - "title": "far fa-hand-point-up", - "searchTerms": ["point", "finger", "hand-o-up"] -}, { - "title": "fas fa-hand-pointer", - "searchTerms": ["select"] -}, { - "title": "far fa-hand-pointer", - "searchTerms": ["select"] -}, { - "title": "fas fa-hand-rock", - "searchTerms": [] -}, { - "title": "far fa-hand-rock", - "searchTerms": [] -}, { - "title": "fas fa-hand-scissors", - "searchTerms": [] -}, { - "title": "far fa-hand-scissors", - "searchTerms": [] -}, { - "title": "fas fa-hand-spock", - "searchTerms": [] -}, { - "title": "far fa-hand-spock", - "searchTerms": [] -}, { - "title": "fas fa-hands", - "searchTerms": [] -}, { - "title": "fas fa-hands-helping", - "searchTerms": ["assistance", "aid", "partnership", "volunteering"] -}, { - "title": "fas fa-handshake", - "searchTerms": ["greeting", "partnership"] -}, { - "title": "far fa-handshake", - "searchTerms": ["greeting", "partnership"] -}, { - "title": "fas fa-hashtag", - "searchTerms": [] -}, { - "title": "fas fa-hdd", - "searchTerms": ["harddrive", "hard drive", "storage", "save", "machine"] -}, { - "title": "far fa-hdd", - "searchTerms": ["harddrive", "hard drive", "storage", "save", "machine"] -}, { - "title": "fas fa-heading", - "searchTerms": ["header", "header"] -}, { - "title": "fas fa-headphones", - "searchTerms": ["sound", "listen", "music", "audio", "speaker"] -}, { - "title": "fas fa-heart", - "searchTerms": ["love", "like", "favorite"] -}, { - "title": "far fa-heart", - "searchTerms": ["love", "like", "favorite"] -}, { - "title": "fas fa-heartbeat", - "searchTerms": ["ekg", "vital signs", "lifeline"] -}, { - "title": "fab fa-hips", - "searchTerms": [] -}, { - "title": "fab fa-hire-a-helper", - "searchTerms": [] -}, { - "title": "fas fa-history", - "searchTerms": [] -}, { - "title": "fas fa-hockey-puck", - "searchTerms": [] -}, { - "title": "fas fa-home", - "searchTerms": ["main", "house"] -}, { - "title": "fab fa-hooli", - "searchTerms": [] -}, { - "title": "fas fa-hospital", - "searchTerms": ["building", "medical center", "emergency room"] -}, { - "title": "far fa-hospital", - "searchTerms": ["building", "medical center", "emergency room"] -}, { - "title": "fas fa-hospital-alt", - "searchTerms": ["building", "medical center", "emergency room"] -}, { - "title": "fas fa-hospital-symbol", - "searchTerms": [] -}, { - "title": "fab fa-hotjar", - "searchTerms": [] -}, { - "title": "fas fa-hourglass", - "searchTerms": [] -}, { - "title": "far fa-hourglass", - "searchTerms": [] -}, { - "title": "fas fa-hourglass-end", - "searchTerms": [] -}, { - "title": "fas fa-hourglass-half", - "searchTerms": [] -}, { - "title": "fas fa-hourglass-start", - "searchTerms": [] -}, { - "title": "fab fa-houzz", - "searchTerms": [] -}, { - "title": "fab fa-html5", - "searchTerms": [] -}, { - "title": "fab fa-hubspot", - "searchTerms": [] -}, { - "title": "fas fa-i-cursor", - "searchTerms": [] -}, { - "title": "fas fa-id-badge", - "searchTerms": [] -}, { - "title": "far fa-id-badge", - "searchTerms": [] -}, { - "title": "fas fa-id-card", - "searchTerms": [] -}, { - "title": "far fa-id-card", - "searchTerms": [] -}, { - "title": "fas fa-id-card-alt", - "searchTerms": ["demographics"] -}, { - "title": "fas fa-image", - "searchTerms": ["photo", "album", "picture", "picture"] -}, { - "title": "far fa-image", - "searchTerms": ["photo", "album", "picture", "picture"] -}, { - "title": "fas fa-images", - "searchTerms": ["photo", "album", "picture"] -}, { - "title": "far fa-images", - "searchTerms": ["photo", "album", "picture"] -}, { - "title": "fab fa-imdb", - "searchTerms": [] -}, { - "title": "fas fa-inbox", - "searchTerms": [] -}, { - "title": "fas fa-indent", - "searchTerms": [] -}, { - "title": "fas fa-industry", - "searchTerms": ["factory", "manufacturing"] -}, { - "title": "fas fa-info", - "searchTerms": ["help", "information", "more", "details"] -}, { - "title": "fas fa-info-circle", - "searchTerms": ["help", "information", "more", "details"] -}, { - "title": "fab fa-instagram", - "searchTerms": [] -}, { - "title": "fab fa-internet-explorer", - "searchTerms": ["browser", "ie"] -}, { - "title": "fab fa-ioxhost", - "searchTerms": [] -}, { - "title": "fas fa-italic", - "searchTerms": ["italics"] -}, { - "title": "fab fa-itunes", - "searchTerms": [] -}, { - "title": "fab fa-itunes-note", - "searchTerms": [] -}, { - "title": "fab fa-jenkins", - "searchTerms": [] -}, { - "title": "fab fa-joget", - "searchTerms": [] -}, { - "title": "fab fa-joomla", - "searchTerms": [] -}, { - "title": "fab fa-js", - "searchTerms": [] -}, { - "title": "fab fa-js-square", - "searchTerms": [] -}, { - "title": "fab fa-jsfiddle", - "searchTerms": [] -}, { - "title": "fas fa-key", - "searchTerms": ["unlock", "password"] -}, { - "title": "fas fa-keyboard", - "searchTerms": ["type", "input"] -}, { - "title": "far fa-keyboard", - "searchTerms": ["type", "input"] -}, { - "title": "fab fa-keycdn", - "searchTerms": [] -}, { - "title": "fab fa-kickstarter", - "searchTerms": [] -}, { - "title": "fab fa-kickstarter-k", - "searchTerms": [] -}, { - "title": "fab fa-korvue", - "searchTerms": [] -}, { - "title": "fas fa-language", - "searchTerms": [] -}, { - "title": "fas fa-laptop", - "searchTerms": ["demo", "computer", "device", "pc", "mac", "pc", "macbook", "dell", "dude you're getting", "machine"] -}, { - "title": "fab fa-laravel", - "searchTerms": [] -}, { - "title": "fab fa-lastfm", - "searchTerms": [] -}, { - "title": "fab fa-lastfm-square", - "searchTerms": [] -}, { - "title": "fas fa-leaf", - "searchTerms": ["eco", "nature", "plant"] -}, { - "title": "fab fa-leanpub", - "searchTerms": [] -}, { - "title": "fas fa-lemon", - "searchTerms": ["food"] -}, { - "title": "far fa-lemon", - "searchTerms": ["food"] -}, { - "title": "fab fa-less", - "searchTerms": [] -}, { - "title": "fas fa-level-down-alt", - "searchTerms": ["level-down"] -}, { - "title": "fas fa-level-up-alt", - "searchTerms": ["level-up"] -}, { - "title": "fas fa-life-ring", - "searchTerms": ["support"] -}, { - "title": "far fa-life-ring", - "searchTerms": ["support"] -}, { - "title": "fas fa-lightbulb", - "searchTerms": ["idea", "inspiration"] -}, { - "title": "far fa-lightbulb", - "searchTerms": ["idea", "inspiration"] -}, { - "title": "fab fa-line", - "searchTerms": [] -}, { - "title": "fas fa-link", - "searchTerms": ["chain"] -}, { - "title": "fab fa-linkedin", - "searchTerms": ["linkedin-square"] -}, { - "title": "fab fa-linkedin-in", - "searchTerms": ["linkedin"] -}, { - "title": "fab fa-linode", - "searchTerms": [] -}, { - "title": "fab fa-linux", - "searchTerms": ["tux"] -}, { - "title": "fas fa-lira-sign", - "searchTerms": ["try", "turkish", "try"] -}, { - "title": "fas fa-list", - "searchTerms": ["ul", "ol", "checklist", "finished", "completed", "done", "todo"] -}, { - "title": "fas fa-list-alt", - "searchTerms": ["ul", "ol", "checklist", "finished", "completed", "done", "todo"] -}, { - "title": "far fa-list-alt", - "searchTerms": ["ul", "ol", "checklist", "finished", "completed", "done", "todo"] -}, { - "title": "fas fa-list-ol", - "searchTerms": ["ul", "ol", "checklist", "list", "todo", "list", "numbers"] -}, { - "title": "fas fa-list-ul", - "searchTerms": ["ul", "ol", "checklist", "todo", "list"] -}, { - "title": "fas fa-location-arrow", - "searchTerms": ["map", "coordinates", "location", "address", "place", "where", "gps"] -}, { - "title": "fas fa-lock", - "searchTerms": ["protect", "admin", "security"] -}, { - "title": "fas fa-lock-open", - "searchTerms": ["protect", "admin", "password", "lock", "open"] -}, { - "title": "fas fa-long-arrow-alt-down", - "searchTerms": ["long-arrow-down"] -}, { - "title": "fas fa-long-arrow-alt-left", - "searchTerms": ["previous", "back", "long-arrow-left"] -}, { - "title": "fas fa-long-arrow-alt-right", - "searchTerms": ["long-arrow-right"] -}, { - "title": "fas fa-long-arrow-alt-up", - "searchTerms": ["long-arrow-up"] -}, { - "title": "fas fa-low-vision", - "searchTerms": [] -}, { - "title": "fab fa-lyft", - "searchTerms": [] -}, { - "title": "fab fa-magento", - "searchTerms": [] -}, { - "title": "fas fa-magic", - "searchTerms": ["wizard", "automatic", "autocomplete"] -}, { - "title": "fas fa-magnet", - "searchTerms": [] -}, { - "title": "fas fa-male", - "searchTerms": ["man", "human", "user", "person", "profile"] -}, { - "title": "fas fa-map", - "searchTerms": [] -}, { - "title": "far fa-map", - "searchTerms": [] -}, { - "title": "fas fa-map-marker", - "searchTerms": ["map", "pin", "location", "coordinates", "localize", "address", "travel", "where", "place", "gps"] -}, { - "title": "fas fa-map-marker-alt", - "searchTerms": ["map-marker", "gps"] -}, { - "title": "fas fa-map-pin", - "searchTerms": [] -}, { - "title": "fas fa-map-signs", - "searchTerms": [] -}, { - "title": "fas fa-mars", - "searchTerms": ["male"] -}, { - "title": "fas fa-mars-double", - "searchTerms": [] -}, { - "title": "fas fa-mars-stroke", - "searchTerms": [] -}, { - "title": "fas fa-mars-stroke-h", - "searchTerms": [] -}, { - "title": "fas fa-mars-stroke-v", - "searchTerms": [] -}, { - "title": "fab fa-maxcdn", - "searchTerms": [] -}, { - "title": "fab fa-medapps", - "searchTerms": [] -}, { - "title": "fab fa-medium", - "searchTerms": [] -}, { - "title": "fab fa-medium-m", - "searchTerms": [] -}, { - "title": "fas fa-medkit", - "searchTerms": ["first aid", "firstaid", "help", "support", "health"] -}, { - "title": "fab fa-medrt", - "searchTerms": [] -}, { - "title": "fab fa-meetup", - "searchTerms": [] -}, { - "title": "fas fa-meh", - "searchTerms": ["face", "emoticon", "rating", "neutral"] -}, { - "title": "far fa-meh", - "searchTerms": ["face", "emoticon", "rating", "neutral"] -}, { - "title": "fas fa-mercury", - "searchTerms": ["transgender"] -}, { - "title": "fas fa-microchip", - "searchTerms": [] -}, { - "title": "fas fa-microphone", - "searchTerms": ["record", "voice", "sound"] -}, { - "title": "fas fa-microphone-slash", - "searchTerms": ["record", "voice", "sound", "mute"] -}, { - "title": "fab fa-microsoft", - "searchTerms": [] -}, { - "title": "fas fa-minus", - "searchTerms": ["hide", "minify", "delete", "remove", "trash", "hide", "collapse"] -}, { - "title": "fas fa-minus-circle", - "searchTerms": ["delete", "remove", "trash", "hide"] -}, { - "title": "fas fa-minus-square", - "searchTerms": ["hide", "minify", "delete", "remove", "trash", "hide", "collapse"] -}, { - "title": "far fa-minus-square", - "searchTerms": ["hide", "minify", "delete", "remove", "trash", "hide", "collapse"] -}, { - "title": "fab fa-mix", - "searchTerms": [] -}, { - "title": "fab fa-mixcloud", - "searchTerms": [] -}, { - "title": "fab fa-mizuni", - "searchTerms": [] -}, { - "title": "fas fa-mobile", - "searchTerms": ["cell phone", "cellphone", "text", "call", "number", "telephone", "device", "screen", "apple", "iphone"] -}, { - "title": "fas fa-mobile-alt", - "searchTerms": ["cell phone", "cellphone", "text", "call", "number", "telephone", "device", "screen", "apple", "iphone"] -}, { - "title": "fab fa-modx", - "searchTerms": [] -}, { - "title": "fab fa-monero", - "searchTerms": [] -}, { - "title": "fas fa-money-bill-alt", - "searchTerms": ["cash", "money", "buy", "checkout", "purchase", "payment", "price"] -}, { - "title": "far fa-money-bill-alt", - "searchTerms": ["cash", "money", "buy", "checkout", "purchase", "payment", "price"] -}, { - "title": "fas fa-moon", - "searchTerms": ["night", "darker", "contrast"] -}, { - "title": "far fa-moon", - "searchTerms": ["night", "darker", "contrast"] -}, { - "title": "fas fa-motorcycle", - "searchTerms": ["vehicle", "machine", "transportation", "bike"] -}, { - "title": "fas fa-mouse-pointer", - "searchTerms": ["select"] -}, { - "title": "fas fa-music", - "searchTerms": ["note", "sound"] -}, { - "title": "fab fa-napster", - "searchTerms": [] -}, { - "title": "fas fa-neuter", - "searchTerms": [] -}, { - "title": "fas fa-newspaper", - "searchTerms": ["press", "article"] -}, { - "title": "far fa-newspaper", - "searchTerms": ["press", "article"] -}, { - "title": "fab fa-nintendo-switch", - "searchTerms": [] -}, { - "title": "fab fa-node", - "searchTerms": [] -}, { - "title": "fab fa-node-js", - "searchTerms": [] -}, { - "title": "fas fa-notes-medical", - "searchTerms": [] -}, { - "title": "fab fa-npm", - "searchTerms": [] -}, { - "title": "fab fa-ns8", - "searchTerms": [] -}, { - "title": "fab fa-nutritionix", - "searchTerms": [] -}, { - "title": "fas fa-object-group", - "searchTerms": ["design"] -}, { - "title": "far fa-object-group", - "searchTerms": ["design"] -}, { - "title": "fas fa-object-ungroup", - "searchTerms": ["design"] -}, { - "title": "far fa-object-ungroup", - "searchTerms": ["design"] -}, { - "title": "fab fa-odnoklassniki", - "searchTerms": [] -}, { - "title": "fab fa-odnoklassniki-square", - "searchTerms": [] -}, { - "title": "fab fa-opencart", - "searchTerms": [] -}, { - "title": "fab fa-openid", - "searchTerms": [] -}, { - "title": "fab fa-opera", - "searchTerms": [] -}, { - "title": "fab fa-optin-monster", - "searchTerms": [] -}, { - "title": "fab fa-osi", - "searchTerms": [] -}, { - "title": "fas fa-outdent", - "searchTerms": [] -}, { - "title": "fab fa-page4", - "searchTerms": [] -}, { - "title": "fab fa-pagelines", - "searchTerms": ["leaf", "leaves", "tree", "plant", "eco", "nature"] -}, { - "title": "fas fa-paint-brush", - "searchTerms": [] -}, { - "title": "fab fa-palfed", - "searchTerms": [] -}, { - "title": "fas fa-pallet", - "searchTerms": [] -}, { - "title": "fas fa-paper-plane", - "searchTerms": [] -}, { - "title": "far fa-paper-plane", - "searchTerms": [] -}, { - "title": "fas fa-paperclip", - "searchTerms": ["attachment"] -}, { - "title": "fas fa-parachute-box", - "searchTerms": ["aid", "assistance", "rescue", "supplies"] -}, { - "title": "fas fa-paragraph", - "searchTerms": [] -}, { - "title": "fas fa-paste", - "searchTerms": ["copy", "clipboard"] -}, { - "title": "fab fa-patreon", - "searchTerms": [] -}, { - "title": "fas fa-pause", - "searchTerms": ["wait"] -}, { - "title": "fas fa-pause-circle", - "searchTerms": [] -}, { - "title": "far fa-pause-circle", - "searchTerms": [] -}, { - "title": "fas fa-paw", - "searchTerms": ["pet"] -}, { - "title": "fab fa-paypal", - "searchTerms": [] -}, { - "title": "fas fa-pen-square", - "searchTerms": ["write", "edit", "update", "pencil-square"] -}, { - "title": "fas fa-pencil-alt", - "searchTerms": ["write", "edit", "update", "pencil", "design"] -}, { - "title": "fas fa-people-carry", - "searchTerms": ["movers"] -}, { - "title": "fas fa-percent", - "searchTerms": [] -}, { - "title": "fab fa-periscope", - "searchTerms": [] -}, { - "title": "fab fa-phabricator", - "searchTerms": [] -}, { - "title": "fab fa-phoenix-framework", - "searchTerms": [] -}, { - "title": "fas fa-phone", - "searchTerms": ["call", "voice", "number", "support", "earphone", "telephone"] -}, { - "title": "fas fa-phone-slash", - "searchTerms": [] -}, { - "title": "fas fa-phone-square", - "searchTerms": ["call", "voice", "number", "support", "telephone"] -}, { - "title": "fas fa-phone-volume", - "searchTerms": ["telephone", "volume-control-phone"] -}, { - "title": "fab fa-php", - "searchTerms": [] -}, { - "title": "fab fa-pied-piper", - "searchTerms": [] -}, { - "title": "fab fa-pied-piper-alt", - "searchTerms": [] -}, { - "title": "fab fa-pied-piper-pp", - "searchTerms": [] -}, { - "title": "fas fa-piggy-bank", - "searchTerms": ["savings", "save"] -}, { - "title": "fas fa-pills", - "searchTerms": ["medicine", "drugs"] -}, { - "title": "fab fa-pinterest", - "searchTerms": [] -}, { - "title": "fab fa-pinterest-p", - "searchTerms": [] -}, { - "title": "fab fa-pinterest-square", - "searchTerms": [] -}, { - "title": "fas fa-plane", - "searchTerms": ["travel", "trip", "location", "destination", "airplane", "fly", "mode"] -}, { - "title": "fas fa-play", - "searchTerms": ["start", "playing", "music", "sound"] -}, { - "title": "fas fa-play-circle", - "searchTerms": ["start", "playing"] -}, { - "title": "far fa-play-circle", - "searchTerms": ["start", "playing"] -}, { - "title": "fab fa-playstation", - "searchTerms": [] -}, { - "title": "fas fa-plug", - "searchTerms": ["power", "connect", "online"] -}, { - "title": "fas fa-plus", - "searchTerms": ["add", "new", "create", "expand"] -}, { - "title": "fas fa-plus-circle", - "searchTerms": ["add", "new", "create", "expand"] -}, { - "title": "fas fa-plus-square", - "searchTerms": ["add", "new", "create", "expand"] -}, { - "title": "far fa-plus-square", - "searchTerms": ["add", "new", "create", "expand"] -}, { - "title": "fas fa-podcast", - "searchTerms": [] -}, { - "title": "fas fa-poo", - "searchTerms": [] -}, { - "title": "fas fa-pound-sign", - "searchTerms": ["gbp", "gbp"] -}, { - "title": "fas fa-power-off", - "searchTerms": ["on"] -}, { - "title": "fas fa-prescription-bottle", - "searchTerms": ["prescription", "rx"] -}, { - "title": "fas fa-prescription-bottle-alt", - "searchTerms": ["prescription", "rx"] -}, { - "title": "fas fa-print", - "searchTerms": [] -}, { - "title": "fas fa-procedures", - "searchTerms": [] -}, { - "title": "fab fa-product-hunt", - "searchTerms": [] -}, { - "title": "fab fa-pushed", - "searchTerms": [] -}, { - "title": "fas fa-puzzle-piece", - "searchTerms": ["addon", "add-on", "section"] -}, { - "title": "fab fa-python", - "searchTerms": [] -}, { - "title": "fab fa-qq", - "searchTerms": [] -}, { - "title": "fas fa-qrcode", - "searchTerms": ["scan"] -}, { - "title": "fas fa-question", - "searchTerms": ["help", "information", "unknown", "support"] -}, { - "title": "fas fa-question-circle", - "searchTerms": ["help", "information", "unknown", "support"] -}, { - "title": "far fa-question-circle", - "searchTerms": ["help", "information", "unknown", "support"] -}, { - "title": "fas fa-quidditch", - "searchTerms": [] -}, { - "title": "fab fa-quinscape", - "searchTerms": [] -}, { - "title": "fab fa-quora", - "searchTerms": [] -}, { - "title": "fas fa-quote-left", - "searchTerms": [] -}, { - "title": "fas fa-quote-right", - "searchTerms": [] -}, { - "title": "fas fa-random", - "searchTerms": ["sort", "shuffle"] -}, { - "title": "fab fa-ravelry", - "searchTerms": [] -}, { - "title": "fab fa-react", - "searchTerms": [] -}, { - "title": "fab fa-readme", - "searchTerms": [] -}, { - "title": "fab fa-rebel", - "searchTerms": [] -}, { - "title": "fas fa-recycle", - "searchTerms": [] -}, { - "title": "fab fa-red-river", - "searchTerms": [] -}, { - "title": "fab fa-reddit", - "searchTerms": [] -}, { - "title": "fab fa-reddit-alien", - "searchTerms": [] -}, { - "title": "fab fa-reddit-square", - "searchTerms": [] -}, { - "title": "fas fa-redo", - "searchTerms": ["forward", "repeat", "repeat"] -}, { - "title": "fas fa-redo-alt", - "searchTerms": ["forward", "repeat"] -}, { - "title": "fas fa-registered", - "searchTerms": [] -}, { - "title": "far fa-registered", - "searchTerms": [] -}, { - "title": "fab fa-rendact", - "searchTerms": [] -}, { - "title": "fab fa-renren", - "searchTerms": [] -}, { - "title": "fas fa-reply", - "searchTerms": [] -}, { - "title": "fas fa-reply-all", - "searchTerms": [] -}, { - "title": "fab fa-replyd", - "searchTerms": [] -}, { - "title": "fab fa-resolving", - "searchTerms": [] -}, { - "title": "fas fa-retweet", - "searchTerms": ["refresh", "reload", "share", "swap"] -}, { - "title": "fas fa-ribbon", - "searchTerms": ["cause", "badge", "pin", "lapel"] -}, { - "title": "fas fa-road", - "searchTerms": ["street"] -}, { - "title": "fas fa-rocket", - "searchTerms": ["app"] -}, { - "title": "fab fa-rocketchat", - "searchTerms": [] -}, { - "title": "fab fa-rockrms", - "searchTerms": [] -}, { - "title": "fas fa-rss", - "searchTerms": ["blog"] -}, { - "title": "fas fa-rss-square", - "searchTerms": ["feed", "blog"] -}, { - "title": "fas fa-ruble-sign", - "searchTerms": ["rub", "rub"] -}, { - "title": "fas fa-rupee-sign", - "searchTerms": ["indian", "inr"] -}, { - "title": "fab fa-safari", - "searchTerms": ["browser"] -}, { - "title": "fab fa-sass", - "searchTerms": [] -}, { - "title": "fas fa-save", - "searchTerms": ["floppy", "floppy-o"] -}, { - "title": "far fa-save", - "searchTerms": ["floppy", "floppy-o"] -}, { - "title": "fab fa-schlix", - "searchTerms": [] -}, { - "title": "fab fa-scribd", - "searchTerms": [] -}, { - "title": "fas fa-search", - "searchTerms": ["magnify", "zoom", "enlarge", "bigger", "preview"] -}, { - "title": "fas fa-search-minus", - "searchTerms": ["magnify", "minify", "zoom", "smaller", "zoom out"] -}, { - "title": "fas fa-search-plus", - "searchTerms": ["magnify", "zoom", "enlarge", "bigger", "zoom in"] -}, { - "title": "fab fa-searchengin", - "searchTerms": [] -}, { - "title": "fas fa-seedling", - "searchTerms": [] -}, { - "title": "fab fa-sellcast", - "searchTerms": ["eercast"] -}, { - "title": "fab fa-sellsy", - "searchTerms": [] -}, { - "title": "fas fa-server", - "searchTerms": [] -}, { - "title": "fab fa-servicestack", - "searchTerms": [] -}, { - "title": "fas fa-share", - "searchTerms": [] -}, { - "title": "fas fa-share-alt", - "searchTerms": [] -}, { - "title": "fas fa-share-alt-square", - "searchTerms": [] -}, { - "title": "fas fa-share-square", - "searchTerms": ["social", "send"] -}, { - "title": "far fa-share-square", - "searchTerms": ["social", "send"] -}, { - "title": "fas fa-shekel-sign", - "searchTerms": ["ils", "ils"] -}, { - "title": "fas fa-shield-alt", - "searchTerms": ["shield"] -}, { - "title": "fas fa-ship", - "searchTerms": ["boat", "sea"] -}, { - "title": "fas fa-shipping-fast", - "searchTerms": [] -}, { - "title": "fab fa-shirtsinbulk", - "searchTerms": [] -}, { - "title": "fas fa-shopping-bag", - "searchTerms": [] -}, { - "title": "fas fa-shopping-basket", - "searchTerms": [] -}, { - "title": "fas fa-shopping-cart", - "searchTerms": ["checkout", "buy", "purchase", "payment"] -}, { - "title": "fas fa-shower", - "searchTerms": [] -}, { - "title": "fas fa-sign", - "searchTerms": [] -}, { - "title": "fas fa-sign-in-alt", - "searchTerms": ["enter", "join", "log in", "login", "sign up", "sign in", "signin", "signup", "arrow", "sign-in"] -}, { - "title": "fas fa-sign-language", - "searchTerms": [] -}, { - "title": "fas fa-sign-out-alt", - "searchTerms": ["log out", "logout", "leave", "exit", "arrow", "sign-out"] -}, { - "title": "fas fa-signal", - "searchTerms": ["graph", "bars", "status", "online"] -}, { - "title": "fab fa-simplybuilt", - "searchTerms": [] -}, { - "title": "fab fa-sistrix", - "searchTerms": [] -}, { - "title": "fas fa-sitemap", - "searchTerms": ["directory", "hierarchy", "organization"] -}, { - "title": "fab fa-skyatlas", - "searchTerms": [] -}, { - "title": "fab fa-skype", - "searchTerms": [] -}, { - "title": "fab fa-slack", - "searchTerms": ["hashtag", "anchor", "hash"] -}, { - "title": "fab fa-slack-hash", - "searchTerms": ["hashtag", "anchor", "hash"] -}, { - "title": "fas fa-sliders-h", - "searchTerms": ["settings", "sliders"] -}, { - "title": "fab fa-slideshare", - "searchTerms": [] -}, { - "title": "fas fa-smile", - "searchTerms": ["face", "emoticon", "happy", "approve", "satisfied", "rating"] -}, { - "title": "far fa-smile", - "searchTerms": ["face", "emoticon", "happy", "approve", "satisfied", "rating"] -}, { - "title": "fas fa-smoking", - "searchTerms": ["smoking status", "cigarette", "nicotine"] -}, { - "title": "fab fa-snapchat", - "searchTerms": [] -}, { - "title": "fab fa-snapchat-ghost", - "searchTerms": [] -}, { - "title": "fab fa-snapchat-square", - "searchTerms": [] -}, { - "title": "fas fa-snowflake", - "searchTerms": [] -}, { - "title": "far fa-snowflake", - "searchTerms": [] -}, { - "title": "fas fa-sort", - "searchTerms": ["order"] -}, { - "title": "fas fa-sort-alpha-down", - "searchTerms": ["sort-alpha-asc"] -}, { - "title": "fas fa-sort-alpha-up", - "searchTerms": ["sort-alpha-desc"] -}, { - "title": "fas fa-sort-amount-down", - "searchTerms": ["sort-amount-asc"] -}, { - "title": "fas fa-sort-amount-up", - "searchTerms": ["sort-amount-desc"] -}, { - "title": "fas fa-sort-down", - "searchTerms": ["arrow", "descending", "sort-desc"] -}, { - "title": "fas fa-sort-numeric-down", - "searchTerms": ["numbers", "sort-numeric-asc"] -}, { - "title": "fas fa-sort-numeric-up", - "searchTerms": ["numbers", "sort-numeric-desc"] -}, { - "title": "fas fa-sort-up", - "searchTerms": ["arrow", "ascending", "sort-asc"] -}, { - "title": "fab fa-soundcloud", - "searchTerms": [] -}, { - "title": "fas fa-space-shuttle", - "searchTerms": ["nasa", "astronaut", "rocket", "machine", "transportation"] -}, { - "title": "fab fa-speakap", - "searchTerms": [] -}, { - "title": "fas fa-spinner", - "searchTerms": ["loading", "progress"] -}, { - "title": "fab fa-spotify", - "searchTerms": [] -}, { - "title": "fas fa-square", - "searchTerms": ["block", "box"] -}, { - "title": "far fa-square", - "searchTerms": ["block", "box"] -}, { - "title": "fas fa-square-full", - "searchTerms": [] -}, { - "title": "fab fa-stack-exchange", - "searchTerms": [] -}, { - "title": "fab fa-stack-overflow", - "searchTerms": [] -}, { - "title": "fas fa-star", - "searchTerms": ["award", "achievement", "night", "rating", "score", "favorite"] -}, { - "title": "far fa-star", - "searchTerms": ["award", "achievement", "night", "rating", "score", "favorite"] -}, { - "title": "fas fa-star-half", - "searchTerms": ["award", "achievement", "rating", "score", "star-half-empty", "star-half-full"] -}, { - "title": "far fa-star-half", - "searchTerms": ["award", "achievement", "rating", "score", "star-half-empty", "star-half-full"] -}, { - "title": "fab fa-staylinked", - "searchTerms": [] -}, { - "title": "fab fa-steam", - "searchTerms": [] -}, { - "title": "fab fa-steam-square", - "searchTerms": [] -}, { - "title": "fab fa-steam-symbol", - "searchTerms": [] -}, { - "title": "fas fa-step-backward", - "searchTerms": ["rewind", "previous", "beginning", "start", "first"] -}, { - "title": "fas fa-step-forward", - "searchTerms": ["next", "end", "last"] -}, { - "title": "fas fa-stethoscope", - "searchTerms": [] -}, { - "title": "fab fa-sticker-mule", - "searchTerms": [] -}, { - "title": "fas fa-sticky-note", - "searchTerms": [] -}, { - "title": "far fa-sticky-note", - "searchTerms": [] -}, { - "title": "fas fa-stop", - "searchTerms": ["block", "box", "square"] -}, { - "title": "fas fa-stop-circle", - "searchTerms": [] -}, { - "title": "far fa-stop-circle", - "searchTerms": [] -}, { - "title": "fas fa-stopwatch", - "searchTerms": ["time"] -}, { - "title": "fab fa-strava", - "searchTerms": [] -}, { - "title": "fas fa-street-view", - "searchTerms": ["map"] -}, { - "title": "fas fa-strikethrough", - "searchTerms": [] -}, { - "title": "fab fa-stripe", - "searchTerms": [] -}, { - "title": "fab fa-stripe-s", - "searchTerms": [] -}, { - "title": "fab fa-studiovinari", - "searchTerms": [] -}, { - "title": "fab fa-stumbleupon", - "searchTerms": [] -}, { - "title": "fab fa-stumbleupon-circle", - "searchTerms": [] -}, { - "title": "fas fa-subscript", - "searchTerms": [] -}, { - "title": "fas fa-subway", - "searchTerms": ["vehicle", "train", "railway", "machine", "transportation"] -}, { - "title": "fas fa-suitcase", - "searchTerms": ["trip", "luggage", "travel", "move", "baggage"] -}, { - "title": "fas fa-sun", - "searchTerms": ["weather", "contrast", "lighter", "brighten", "day"] -}, { - "title": "far fa-sun", - "searchTerms": ["weather", "contrast", "lighter", "brighten", "day"] -}, { - "title": "fab fa-superpowers", - "searchTerms": [] -}, { - "title": "fas fa-superscript", - "searchTerms": ["exponential"] -}, { - "title": "fab fa-supple", - "searchTerms": [] -}, { - "title": "fas fa-sync", - "searchTerms": ["reload", "refresh", "exchange", "swap"] -}, { - "title": "fas fa-sync-alt", - "searchTerms": ["reload", "refresh"] -}, { - "title": "fas fa-syringe", - "searchTerms": ["immunizations", "needle"] -}, { - "title": "fas fa-table", - "searchTerms": ["data", "excel", "spreadsheet"] -}, { - "title": "fas fa-table-tennis", - "searchTerms": [] -}, { - "title": "fas fa-tablet", - "searchTerms": ["device", "screen", "apple", "ipad", "kindle"] -}, { - "title": "fas fa-tablet-alt", - "searchTerms": ["device", "screen", "apple", "ipad", "kindle"] -}, { - "title": "fas fa-tablets", - "searchTerms": ["medicine", "drugs"] -}, { - "title": "fas fa-tachometer-alt", - "searchTerms": ["tachometer", "dashboard"] -}, { - "title": "fas fa-tag", - "searchTerms": ["label"] -}, { - "title": "fas fa-tags", - "searchTerms": ["labels"] -}, { - "title": "fas fa-tape", - "searchTerms": [] -}, { - "title": "fas fa-tasks", - "searchTerms": ["progress", "loading", "downloading", "downloads", "settings"] -}, { - "title": "fas fa-taxi", - "searchTerms": ["vehicle", "machine", "transportation", "cab", "cabbie", "car", "uber", "lyft", "car service"] -}, { - "title": "fab fa-telegram", - "searchTerms": [] -}, { - "title": "fab fa-telegram-plane", - "searchTerms": [] -}, { - "title": "fab fa-tencent-weibo", - "searchTerms": [] -}, { - "title": "fas fa-terminal", - "searchTerms": ["command", "prompt", "code", "console"] -}, { - "title": "fas fa-text-height", - "searchTerms": [] -}, { - "title": "fas fa-text-width", - "searchTerms": [] -}, { - "title": "fas fa-th", - "searchTerms": ["blocks", "squares", "boxes", "grid"] -}, { - "title": "fas fa-th-large", - "searchTerms": ["blocks", "squares", "boxes", "grid"] -}, { - "title": "fas fa-th-list", - "searchTerms": ["ul", "ol", "checklist", "finished", "completed", "done", "todo"] -}, { - "title": "fab fa-themeisle", - "searchTerms": [] -}, { - "title": "fas fa-thermometer", - "searchTerms": ["temperature", "fever"] -}, { - "title": "fas fa-thermometer-empty", - "searchTerms": ["status"] -}, { - "title": "fas fa-thermometer-full", - "searchTerms": ["status"] -}, { - "title": "fas fa-thermometer-half", - "searchTerms": ["status"] -}, { - "title": "fas fa-thermometer-quarter", - "searchTerms": ["status"] -}, { - "title": "fas fa-thermometer-three-quarters", - "searchTerms": ["status"] -}, { - "title": "fas fa-thumbs-down", - "searchTerms": ["dislike", "disapprove", "disagree", "hand", "thumbs-o-down"] -}, { - "title": "far fa-thumbs-down", - "searchTerms": ["dislike", "disapprove", "disagree", "hand", "thumbs-o-down"] -}, { - "title": "fas fa-thumbs-up", - "searchTerms": ["like", "favorite", "approve", "agree", "hand", "thumbs-o-up", "success", "yes", "ok", "okay", "you got it dude"] -}, { - "title": "far fa-thumbs-up", - "searchTerms": ["like", "favorite", "approve", "agree", "hand", "thumbs-o-up", "success", "yes", "ok", "okay", "you got it dude"] -}, { - "title": "fas fa-thumbtack", - "searchTerms": ["marker", "pin", "location", "coordinates", "thumb-tack"] -}, { - "title": "fas fa-ticket-alt", - "searchTerms": ["ticket"] -}, { - "title": "fas fa-times", - "searchTerms": ["close", "exit", "x", "cross", "error", "problem", "notification", "notify", "notice", "wrong", "incorrect"] -}, { - "title": "fas fa-times-circle", - "searchTerms": ["close", "exit", "x", "cross", "problem", "notification", "notify", "notice", "wrong", "incorrect"] -}, { - "title": "far fa-times-circle", - "searchTerms": ["close", "exit", "x", "cross", "problem", "notification", "notify", "notice", "wrong", "incorrect"] -}, { - "title": "fas fa-tint", - "searchTerms": ["raindrop", "waterdrop", "drop", "droplet"] -}, { - "title": "fas fa-toggle-off", - "searchTerms": ["switch"] -}, { - "title": "fas fa-toggle-on", - "searchTerms": ["switch"] -}, { - "title": "fas fa-trademark", - "searchTerms": [] -}, { - "title": "fas fa-train", - "searchTerms": ["bullet", "locomotive", "railway"] -}, { - "title": "fas fa-transgender", - "searchTerms": ["intersex"] -}, { - "title": "fas fa-transgender-alt", - "searchTerms": [] -}, { - "title": "fas fa-trash", - "searchTerms": ["garbage", "delete", "remove", "hide"] -}, { - "title": "fas fa-trash-alt", - "searchTerms": ["garbage", "delete", "remove", "hide", "trash", "trash-o"] -}, { - "title": "far fa-trash-alt", - "searchTerms": ["garbage", "delete", "remove", "hide", "trash", "trash-o"] -}, { - "title": "fas fa-tree", - "searchTerms": [] -}, { - "title": "fab fa-trello", - "searchTerms": [] -}, { - "title": "fab fa-tripadvisor", - "searchTerms": [] -}, { - "title": "fas fa-trophy", - "searchTerms": ["award", "achievement", "cup", "winner", "game"] -}, { - "title": "fas fa-truck", - "searchTerms": ["shipping", "delivery"] -}, { - "title": "fas fa-truck-loading", - "searchTerms": [] -}, { - "title": "fas fa-truck-moving", - "searchTerms": [] -}, { - "title": "fas fa-tty", - "searchTerms": [] -}, { - "title": "fab fa-tumblr", - "searchTerms": [] -}, { - "title": "fab fa-tumblr-square", - "searchTerms": [] -}, { - "title": "fas fa-tv", - "searchTerms": ["display", "computer", "monitor", "television"] -}, { - "title": "fab fa-twitch", - "searchTerms": [] -}, { - "title": "fab fa-twitter", - "searchTerms": ["tweet", "social network"] -}, { - "title": "fab fa-twitter-square", - "searchTerms": ["tweet", "social network"] -}, { - "title": "fab fa-typo3", - "searchTerms": [] -}, { - "title": "fab fa-uber", - "searchTerms": [] -}, { - "title": "fab fa-uikit", - "searchTerms": [] -}, { - "title": "fas fa-umbrella", - "searchTerms": [] -}, { - "title": "fas fa-underline", - "searchTerms": [] -}, { - "title": "fas fa-undo", - "searchTerms": ["back", "exchange", "swap", "return", "control z", "oops"] -}, { - "title": "fas fa-undo-alt", - "searchTerms": ["back", "exchange", "swap", "return", "control z", "oops"] -}, { - "title": "fab fa-uniregistry", - "searchTerms": [] -}, { - "title": "fas fa-universal-access", - "searchTerms": [] -}, { - "title": "fas fa-university", - "searchTerms": ["bank", "institution"] -}, { - "title": "fas fa-unlink", - "searchTerms": ["remove", "chain", "chain-broken"] -}, { - "title": "fas fa-unlock", - "searchTerms": ["protect", "admin", "password", "lock"] -}, { - "title": "fas fa-unlock-alt", - "searchTerms": ["protect", "admin", "password", "lock"] -}, { - "title": "fab fa-untappd", - "searchTerms": [] -}, { - "title": "fas fa-upload", - "searchTerms": ["import"] -}, { - "title": "fab fa-usb", - "searchTerms": [] -}, { - "title": "fas fa-user", - "searchTerms": ["person", "man", "head", "profile", "account"] -}, { - "title": "far fa-user", - "searchTerms": ["person", "man", "head", "profile", "account"] -}, { - "title": "fas fa-user-circle", - "searchTerms": ["person", "man", "head", "profile", "account"] -}, { - "title": "far fa-user-circle", - "searchTerms": ["person", "man", "head", "profile", "account"] -}, { - "title": "fas fa-user-md", - "searchTerms": ["doctor", "profile", "medical", "nurse", "job", "occupation"] -}, { - "title": "fas fa-user-plus", - "searchTerms": ["sign up", "signup"] -}, { - "title": "fas fa-user-secret", - "searchTerms": ["whisper", "spy", "incognito", "privacy"] -}, { - "title": "fas fa-user-times", - "searchTerms": [] -}, { - "title": "fas fa-users", - "searchTerms": ["people", "profiles", "persons"] -}, { - "title": "fab fa-ussunnah", - "searchTerms": [] -}, { - "title": "fas fa-utensil-spoon", - "searchTerms": ["spoon"] -}, { - "title": "fas fa-utensils", - "searchTerms": ["food", "restaurant", "spoon", "knife", "dinner", "eat", "cutlery"] -}, { - "title": "fab fa-vaadin", - "searchTerms": [] -}, { - "title": "fas fa-venus", - "searchTerms": ["female"] -}, { - "title": "fas fa-venus-double", - "searchTerms": [] -}, { - "title": "fas fa-venus-mars", - "searchTerms": [] -}, { - "title": "fab fa-viacoin", - "searchTerms": [] -}, { - "title": "fab fa-viadeo", - "searchTerms": [] -}, { - "title": "fab fa-viadeo-square", - "searchTerms": [] -}, { - "title": "fas fa-vial", - "searchTerms": ["test tube"] -}, { - "title": "fas fa-vials", - "searchTerms": ["lab results", "test tubes"] -}, { - "title": "fab fa-viber", - "searchTerms": [] -}, { - "title": "fas fa-video", - "searchTerms": ["film", "movie", "record", "camera", "video-camera"] -}, { - "title": "fas fa-video-slash", - "searchTerms": [] -}, { - "title": "fab fa-vimeo", - "searchTerms": [] -}, { - "title": "fab fa-vimeo-square", - "searchTerms": [] -}, { - "title": "fab fa-vimeo-v", - "searchTerms": ["vimeo"] -}, { - "title": "fab fa-vine", - "searchTerms": [] -}, { - "title": "fab fa-vk", - "searchTerms": [] -}, { - "title": "fab fa-vnv", - "searchTerms": [] -}, { - "title": "fas fa-volleyball-ball", - "searchTerms": [] -}, { - "title": "fas fa-volume-down", - "searchTerms": ["audio", "lower", "quieter", "sound", "music", "speaker"] -}, { - "title": "fas fa-volume-off", - "searchTerms": ["audio", "mute", "sound", "music"] -}, { - "title": "fas fa-volume-up", - "searchTerms": ["audio", "higher", "louder", "sound", "music", "speaker"] -}, { - "title": "fab fa-vuejs", - "searchTerms": [] -}, { - "title": "fas fa-warehouse", - "searchTerms": [] -}, { - "title": "fab fa-weibo", - "searchTerms": [] -}, { - "title": "fas fa-weight", - "searchTerms": ["scale"] -}, { - "title": "fab fa-weixin", - "searchTerms": [] -}, { - "title": "fab fa-whatsapp", - "searchTerms": [] -}, { - "title": "fab fa-whatsapp-square", - "searchTerms": [] -}, { - "title": "fas fa-wheelchair", - "searchTerms": ["handicap", "person"] -}, { - "title": "fab fa-whmcs", - "searchTerms": [] -}, { - "title": "fas fa-wifi", - "searchTerms": [] -}, { - "title": "fab fa-wikipedia-w", - "searchTerms": [] -}, { - "title": "fas fa-window-close", - "searchTerms": [] -}, { - "title": "far fa-window-close", - "searchTerms": [] -}, { - "title": "fas fa-window-maximize", - "searchTerms": [] -}, { - "title": "far fa-window-maximize", - "searchTerms": [] -}, { - "title": "fas fa-window-minimize", - "searchTerms": [] -}, { - "title": "far fa-window-minimize", - "searchTerms": [] -}, { - "title": "fas fa-window-restore", - "searchTerms": [] -}, { - "title": "far fa-window-restore", - "searchTerms": [] -}, { - "title": "fab fa-windows", - "searchTerms": ["microsoft"] -}, { - "title": "fas fa-wine-glass", - "searchTerms": [] -}, { - "title": "fas fa-won-sign", - "searchTerms": ["krw", "krw"] -}, { - "title": "fab fa-wordpress", - "searchTerms": [] -}, { - "title": "fab fa-wordpress-simple", - "searchTerms": [] -}, { - "title": "fab fa-wpbeginner", - "searchTerms": [] -}, { - "title": "fab fa-wpexplorer", - "searchTerms": [] -}, { - "title": "fab fa-wpforms", - "searchTerms": [] -}, { - "title": "fas fa-wrench", - "searchTerms": ["settings", "fix", "update", "spanner", "tool"] -}, { - "title": "fas fa-x-ray", - "searchTerms": ["radiological images", "radiology"] -}, { - "title": "fab fa-xbox", - "searchTerms": [] -}, { - "title": "fab fa-xing", - "searchTerms": [] -}, { - "title": "fab fa-xing-square", - "searchTerms": [] -}, { - "title": "fab fa-y-combinator", - "searchTerms": [] -}, { - "title": "fab fa-yahoo", - "searchTerms": [] -}, { - "title": "fab fa-yandex", - "searchTerms": [] -}, { - "title": "fab fa-yandex-international", - "searchTerms": [] -}, { - "title": "fab fa-yelp", - "searchTerms": [] -}, { - "title": "fas fa-yen-sign", - "searchTerms": ["jpy", "jpy"] -}, { - "title": "fab fa-yoast", - "searchTerms": [] -}, { - "title": "fab fa-youtube", - "searchTerms": ["video", "film", "youtube-play", "youtube-square"] -}, { - "title": "fab fa-youtube-square", - "searchTerms": [] -}]; - -FA4iconinfo = [{ - "title": "fa fa-glass", - "searchTerms": ["martini", "drink", "bar", "alcohol", "liquor"] -}, { - "title": "fa fa-music", - "searchTerms": ["note", "sound"] -}, { - "title": "fa fa-search", - "searchTerms": ["magnify", "zoom", "enlarge", "bigger"] -}, { - "title": "fa fa-envelope-o", - "searchTerms": ["email", "support", "e-mail", "letter", "mail", "notification"] -}, { - "title": "fa fa-heart", - "searchTerms": ["love", "like", "favorite"] -}, { - "title": "fa fa-star", - "searchTerms": ["award", "achievement", "night", "rating", "score", "favorite"] -}, { - "title": "fa fa-star-o", - "searchTerms": ["award", "achievement", "night", "rating", "score", "favorite"] -}, { - "title": "fa fa-user", - "searchTerms": ["person", "man", "head", "profile"] -}, { - "title": "fa fa-film", - "searchTerms": ["movie"] -}, { - "title": "fa fa-th-large", - "searchTerms": ["blocks", "squares", "boxes", "grid"] -}, { - "title": "fa fa-th", - "searchTerms": ["blocks", "squares", "boxes", "grid"] -}, { - "title": "fa fa-th-list", - "searchTerms": ["ul", "ol", "checklist", "finished", "completed", "done", "todo"] -}, { - "title": "fa fa-check", - "searchTerms": ["checkmark", "done", "todo", "agree", "accept", "confirm", "tick", "ok"] -}, { - "title": "fa fa-times", - "searchTerms": ["close", "exit", "x", "cross", "remove", "close"] -}, { - "title": "fa fa-search-plus", - "searchTerms": ["magnify", "zoom", "enlarge", "bigger"] -}, { - "title": "fa fa-search-minus", - "searchTerms": ["magnify", "minify", "zoom", "smaller"] -}, { - "title": "fa fa-power-off", - "searchTerms": ["on"] -}, { - "title": "fa fa-signal", - "searchTerms": ["graph", "bars"] -}, { - "title": "fa fa-cog", - "searchTerms": ["settings", "gear"] -}, { - "title": "fa fa-trash-o", - "searchTerms": ["garbage", "delete", "remove", "trash", "hide"] -}, { - "title": "fa fa-home", - "searchTerms": ["main", "house"] -}, { - "title": "fa fa-file-o", - "searchTerms": ["new", "page", "pdf", "document"] -}, { - "title": "fa fa-clock-o", - "searchTerms": ["watch", "timer", "late", "timestamp"] -}, { - "title": "fa fa-road", - "searchTerms": ["street"] -}, { - "title": "fa fa-download", - "searchTerms": ["import"] -}, { - "title": "fa fa-arrow-circle-o-down", - "searchTerms": ["download"] -}, { - "title": "fa fa-arrow-circle-o-up", - "searchTerms": [] -}, { - "title": "fa fa-inbox", - "searchTerms": [] -}, { - "title": "fa fa-play-circle-o", - "searchTerms": [] -}, { - "title": "fa fa-repeat", - "searchTerms": ["redo", "forward", "rotate-right"] -}, { - "title": "fa fa-refresh", - "searchTerms": ["reload", "sync"] -}, { - "title": "fa fa-list-alt", - "searchTerms": ["ul", "ol", "checklist", "finished", "completed", "done", "todo"] -}, { - "title": "fa fa-lock", - "searchTerms": ["protect", "admin", "security"] -}, { - "title": "fa fa-flag", - "searchTerms": ["report", "notification", "notify"] -}, { - "title": "fa fa-headphones", - "searchTerms": ["sound", "listen", "music", "audio"] -}, { - "title": "fa fa-volume-off", - "searchTerms": ["audio", "mute", "sound", "music"] -}, { - "title": "fa fa-volume-down", - "searchTerms": ["audio", "lower", "quieter", "sound", "music"] -}, { - "title": "fa fa-volume-up", - "searchTerms": ["audio", "higher", "louder", "sound", "music"] -}, { - "title": "fa fa-qrcode", - "searchTerms": ["scan"] -}, { - "title": "fa fa-barcode", - "searchTerms": ["scan"] -}, { - "title": "fa fa-tag", - "searchTerms": ["label"] -}, { - "title": "fa fa-tags", - "searchTerms": ["labels"] -}, { - "title": "fa fa-book", - "searchTerms": ["read", "documentation"] -}, { - "title": "fa fa-bookmark", - "searchTerms": ["save"] -}, { - "title": "fa fa-print", - "searchTerms": [] -}, { - "title": "fa fa-camera", - "searchTerms": ["photo", "picture", "record"] -}, { - "title": "fa fa-font", - "searchTerms": ["text"] -}, { - "title": "fa fa-bold", - "searchTerms": [] -}, { - "title": "fa fa-italic", - "searchTerms": ["italics"] -}, { - "title": "fa fa-text-height", - "searchTerms": [] -}, { - "title": "fa fa-text-width", - "searchTerms": [] -}, { - "title": "fa fa-align-left", - "searchTerms": ["text"] -}, { - "title": "fa fa-align-center", - "searchTerms": ["middle", "text"] -}, { - "title": "fa fa-align-right", - "searchTerms": ["text"] -}, { - "title": "fa fa-align-justify", - "searchTerms": ["text"] -}, { - "title": "fa fa-list", - "searchTerms": ["ul", "ol", "checklist", "finished", "completed", "done", "todo"] -}, { - "title": "fa fa-outdent", - "searchTerms": ["dedent"] -}, { - "title": "fa fa-indent", - "searchTerms": [] -}, { - "title": "fa fa-video-camera", - "searchTerms": ["film", "movie", "record"] -}, { - "title": "fa fa-picture-o", - "searchTerms": ["photo", "image"] -}, { - "title": "fa fa-pencil", - "searchTerms": ["write", "edit", "update"] -}, { - "title": "fa fa-map-marker", - "searchTerms": ["map", "pin", "location", "coordinates", "localize", "address", "travel", "where", "place"] -}, { - "title": "fa fa-adjust", - "searchTerms": ["contrast"] -}, { - "title": "fa fa-tint", - "searchTerms": ["raindrop", "waterdrop", "drop", "droplet"] -}, { - "title": "fa fa-pencil-square-o", - "searchTerms": ["write", "edit", "update", "edit"] -}, { - "title": "fa fa-share-square-o", - "searchTerms": ["social", "send", "arrow"] -}, { - "title": "fa fa-check-square-o", - "searchTerms": ["todo", "done", "agree", "accept", "confirm", "ok"] -}, { - "title": "fa fa-arrows", - "searchTerms": ["move", "reorder", "resize"] -}, { - "title": "fa fa-step-backward", - "searchTerms": ["rewind", "previous", "beginning", "start", "first"] -}, { - "title": "fa fa-fast-backward", - "searchTerms": ["rewind", "previous", "beginning", "start", "first"] -}, { - "title": "fa fa-backward", - "searchTerms": ["rewind", "previous"] -}, { - "title": "fa fa-play", - "searchTerms": ["start", "playing", "music", "sound"] -}, { - "title": "fa fa-pause", - "searchTerms": ["wait"] -}, { - "title": "fa fa-stop", - "searchTerms": ["block", "box", "square"] -}, { - "title": "fa fa-forward", - "searchTerms": ["forward", "next"] -}, { - "title": "fa fa-fast-forward", - "searchTerms": ["next", "end", "last"] -}, { - "title": "fa fa-step-forward", - "searchTerms": ["next", "end", "last"] -}, { - "title": "fa fa-eject", - "searchTerms": [] -}, { - "title": "fa fa-chevron-left", - "searchTerms": ["bracket", "previous", "back"] -}, { - "title": "fa fa-chevron-right", - "searchTerms": ["bracket", "next", "forward"] -}, { - "title": "fa fa-plus-circle", - "searchTerms": ["add", "new", "create", "expand"] -}, { - "title": "fa fa-minus-circle", - "searchTerms": ["delete", "remove", "trash", "hide"] -}, { - "title": "fa fa-times-circle", - "searchTerms": ["close", "exit", "x"] -}, { - "title": "fa fa-check-circle", - "searchTerms": ["todo", "done", "agree", "accept", "confirm", "ok"] -}, { - "title": "fa fa-question-circle", - "searchTerms": ["help", "information", "unknown", "support"] -}, { - "title": "fa fa-info-circle", - "searchTerms": ["help", "information", "more", "details"] -}, { - "title": "fa fa-crosshairs", - "searchTerms": ["picker"] -}, { - "title": "fa fa-times-circle-o", - "searchTerms": ["close", "exit", "x"] -}, { - "title": "fa fa-check-circle-o", - "searchTerms": ["todo", "done", "agree", "accept", "confirm", "ok"] -}, { - "title": "fa fa-ban", - "searchTerms": ["delete", "remove", "trash", "hide", "block", "stop", "abort", "cancel"] -}, { - "title": "fa fa-arrow-left", - "searchTerms": ["previous", "back"] -}, { - "title": "fa fa-arrow-right", - "searchTerms": ["next", "forward"] -}, { - "title": "fa fa-arrow-up", - "searchTerms": [] -}, { - "title": "fa fa-arrow-down", - "searchTerms": ["download"] -}, { - "title": "fa fa-share", - "searchTerms": ["mail-forward"] -}, { - "title": "fa fa-expand", - "searchTerms": ["enlarge", "bigger", "resize"] -}, { - "title": "fa fa-compress", - "searchTerms": ["collapse", "combine", "contract", "merge", "smaller"] -}, { - "title": "fa fa-plus", - "searchTerms": ["add", "new", "create", "expand"] -}, { - "title": "fa fa-minus", - "searchTerms": ["hide", "minify", "delete", "remove", "trash", "hide", "collapse"] -}, { - "title": "fa fa-asterisk", - "searchTerms": ["details"] -}, { - "title": "fa fa-exclamation-circle", - "searchTerms": ["warning", "error", "problem", "notification", "alert"] -}, { - "title": "fa fa-gift", - "searchTerms": ["present"] -}, { - "title": "fa fa-leaf", - "searchTerms": ["eco", "nature", "plant"] -}, { - "title": "fa fa-fire", - "searchTerms": ["flame", "hot", "popular"] -}, { - "title": "fa fa-eye", - "searchTerms": ["show", "visible", "views"] -}, { - "title": "fa fa-eye-slash", - "searchTerms": ["toggle", "show", "hide", "visible", "visiblity", "views"] -}, { - "title": "fa fa-exclamation-triangle", - "searchTerms": ["warning", "error", "problem", "notification", "alert", "warning"] -}, { - "title": "fa fa-plane", - "searchTerms": ["travel", "trip", "location", "destination", "airplane", "fly", "mode"] -}, { - "title": "fa fa-calendar", - "searchTerms": ["date", "time", "when", "event"] -}, { - "title": "fa fa-random", - "searchTerms": ["sort", "shuffle"] -}, { - "title": "fa fa-comment", - "searchTerms": ["speech", "notification", "note", "chat", "bubble", "feedback", "message", "texting", "sms", "conversation"] -}, { - "title": "fa fa-magnet", - "searchTerms": [] -}, { - "title": "fa fa-chevron-up", - "searchTerms": [] -}, { - "title": "fa fa-chevron-down", - "searchTerms": [] -}, { - "title": "fa fa-retweet", - "searchTerms": ["refresh", "reload", "share"] -}, { - "title": "fa fa-shopping-cart", - "searchTerms": ["checkout", "buy", "purchase", "payment"] -}, { - "title": "fa fa-folder", - "searchTerms": [] -}, { - "title": "fa fa-folder-open", - "searchTerms": [] -}, { - "title": "fa fa-arrows-v", - "searchTerms": ["resize"] -}, { - "title": "fa fa-arrows-h", - "searchTerms": ["resize"] -}, { - "title": "fa fa-bar-chart", - "searchTerms": ["graph", "analytics", "bar-chart-o"] -}, { - "title": "fa fa-twitter-square", - "searchTerms": ["tweet", "social network"] -}, { - "title": "fa fa-facebook-square", - "searchTerms": ["social network"] -}, { - "title": "fa fa-camera-retro", - "searchTerms": ["photo", "picture", "record"] -}, { - "title": "fa fa-key", - "searchTerms": ["unlock", "password"] -}, { - "title": "fa fa-cogs", - "searchTerms": ["settings", "gears"] -}, { - "title": "fa fa-comments", - "searchTerms": ["speech", "notification", "note", "chat", "bubble", "feedback", "message", "texting", "sms", "conversation"] -}, { - "title": "fa fa-thumbs-o-up", - "searchTerms": ["like", "approve", "favorite", "agree", "hand"] -}, { - "title": "fa fa-thumbs-o-down", - "searchTerms": ["dislike", "disapprove", "disagree", "hand"] -}, { - "title": "fa fa-star-half", - "searchTerms": ["award", "achievement", "rating", "score"] -}, { - "title": "fa fa-heart-o", - "searchTerms": ["love", "like", "favorite"] -}, { - "title": "fa fa-sign-out", - "searchTerms": ["log out", "logout", "leave", "exit", "arrow"] -}, { - "title": "fa fa-linkedin-square", - "searchTerms": [] -}, { - "title": "fa fa-thumb-tack", - "searchTerms": ["marker", "pin", "location", "coordinates"] -}, { - "title": "fa fa-external-link", - "searchTerms": ["open", "new"] -}, { - "title": "fa fa-sign-in", - "searchTerms": ["enter", "join", "log in", "login", "sign up", "sign in", "signin", "signup", "arrow"] -}, { - "title": "fa fa-trophy", - "searchTerms": ["award", "achievement", "cup", "winner", "game"] -}, { - "title": "fa fa-github-square", - "searchTerms": ["octocat"] -}, { - "title": "fa fa-upload", - "searchTerms": ["import"] -}, { - "title": "fa fa-lemon-o", - "searchTerms": ["food"] -}, { - "title": "fa fa-phone", - "searchTerms": ["call", "voice", "number", "support", "earphone", "telephone"] -}, { - "title": "fa fa-square-o", - "searchTerms": ["block", "square", "box"] -}, { - "title": "fa fa-bookmark-o", - "searchTerms": ["save"] -}, { - "title": "fa fa-phone-square", - "searchTerms": ["call", "voice", "number", "support", "telephone"] -}, { - "title": "fa fa-twitter", - "searchTerms": ["tweet", "social network"] -}, { - "title": "fa fa-facebook", - "searchTerms": ["social network", "facebook-f"] -}, { - "title": "fa fa-github", - "searchTerms": ["octocat"] -}, { - "title": "fa fa-unlock", - "searchTerms": ["protect", "admin", "password", "lock"] -}, { - "title": "fa fa-credit-card", - "searchTerms": ["money", "buy", "debit", "checkout", "purchase", "payment"] -}, { - "title": "fa fa-rss", - "searchTerms": ["blog", "feed"] -}, { - "title": "fa fa-hdd-o", - "searchTerms": ["harddrive", "hard drive", "storage", "save"] -}, { - "title": "fa fa-bullhorn", - "searchTerms": ["announcement", "share", "broadcast", "louder", "megaphone"] -}, { - "title": "fa fa-bell", - "searchTerms": ["alert", "reminder", "notification"] -}, { - "title": "fa fa-certificate", - "searchTerms": ["badge", "star"] -}, { - "title": "fa fa-hand-o-right", - "searchTerms": ["point", "right", "next", "forward", "finger"] -}, { - "title": "fa fa-hand-o-left", - "searchTerms": ["point", "left", "previous", "back", "finger"] -}, { - "title": "fa fa-hand-o-up", - "searchTerms": ["point", "finger"] -}, { - "title": "fa fa-hand-o-down", - "searchTerms": ["point", "finger"] -}, { - "title": "fa fa-arrow-circle-left", - "searchTerms": ["previous", "back"] -}, { - "title": "fa fa-arrow-circle-right", - "searchTerms": ["next", "forward"] -}, { - "title": "fa fa-arrow-circle-up", - "searchTerms": [] -}, { - "title": "fa fa-arrow-circle-down", - "searchTerms": ["download"] -}, { - "title": "fa fa-globe", - "searchTerms": ["world", "planet", "map", "place", "travel", "earth", "global", "translate", "all", "language", "localize", "location", "coordinates", "country"] -}, { - "title": "fa fa-wrench", - "searchTerms": ["settings", "fix", "update", "spanner"] -}, { - "title": "fa fa-tasks", - "searchTerms": ["progress", "loading", "downloading", "downloads", "settings"] -}, { - "title": "fa fa-filter", - "searchTerms": ["funnel", "options"] -}, { - "title": "fa fa-briefcase", - "searchTerms": ["work", "business", "office", "luggage", "bag"] -}, { - "title": "fa fa-arrows-alt", - "searchTerms": ["expand", "enlarge", "fullscreen", "bigger", "move", "reorder", "resize", "arrow"] -}, { - "title": "fa fa-users", - "searchTerms": ["people", "profiles", "persons", "group"] -}, { - "title": "fa fa-link", - "searchTerms": ["chain", "chain"] -}, { - "title": "fa fa-cloud", - "searchTerms": ["save"] -}, { - "title": "fa fa-flask", - "searchTerms": ["science", "beaker", "experimental", "labs"] -}, { - "title": "fa fa-scissors", - "searchTerms": ["cut"] -}, { - "title": "fa fa-files-o", - "searchTerms": ["duplicate", "clone", "copy", "copy"] -}, { - "title": "fa fa-paperclip", - "searchTerms": ["attachment"] -}, { - "title": "fa fa-floppy-o", - "searchTerms": ["save"] -}, { - "title": "fa fa-square", - "searchTerms": ["block", "box"] -}, { - "title": "fa fa-bars", - "searchTerms": ["menu", "drag", "reorder", "settings", "list", "ul", "ol", "checklist", "todo", "list", "hamburger", "navicon", "reorder"] -}, { - "title": "fa fa-list-ul", - "searchTerms": ["ul", "ol", "checklist", "todo", "list"] -}, { - "title": "fa fa-list-ol", - "searchTerms": ["ul", "ol", "checklist", "list", "todo", "list", "numbers"] -}, { - "title": "fa fa-strikethrough", - "searchTerms": [] -}, { - "title": "fa fa-underline", - "searchTerms": [] -}, { - "title": "fa fa-table", - "searchTerms": ["data", "excel", "spreadsheet"] -}, { - "title": "fa fa-magic", - "searchTerms": ["wizard", "automatic", "autocomplete"] -}, { - "title": "fa fa-truck", - "searchTerms": ["shipping"] -}, { - "title": "fa fa-pinterest", - "searchTerms": [] -}, { - "title": "fa fa-pinterest-square", - "searchTerms": [] -}, { - "title": "fa fa-google-plus-square", - "searchTerms": ["social network"] -}, { - "title": "fa fa-google-plus", - "searchTerms": ["social network"] -}, { - "title": "fa fa-money", - "searchTerms": ["cash", "money", "buy", "checkout", "purchase", "payment"] -}, { - "title": "fa fa-caret-down", - "searchTerms": ["more", "dropdown", "menu", "triangle down", "arrow"] -}, { - "title": "fa fa-caret-up", - "searchTerms": ["triangle up", "arrow"] -}, { - "title": "fa fa-caret-left", - "searchTerms": ["previous", "back", "triangle left", "arrow"] -}, { - "title": "fa fa-caret-right", - "searchTerms": ["next", "forward", "triangle right", "arrow"] -}, { - "title": "fa fa-columns", - "searchTerms": ["split", "panes"] -}, { - "title": "fa fa-sort", - "searchTerms": ["order", "unsorted"] -}, { - "title": "fa fa-sort-desc", - "searchTerms": ["dropdown", "more", "menu", "arrow", "sort-down"] -}, { - "title": "fa fa-sort-asc", - "searchTerms": ["arrow", "sort-up"] -}, { - "title": "fa fa-envelope", - "searchTerms": ["email", "e-mail", "letter", "support", "mail", "notification"] -}, { - "title": "fa fa-linkedin", - "searchTerms": [] -}, { - "title": "fa fa-undo", - "searchTerms": ["back", "rotate-left"] -}, { - "title": "fa fa-gavel", - "searchTerms": ["legal"] -}, { - "title": "fa fa-tachometer", - "searchTerms": ["dashboard"] -}, { - "title": "fa fa-comment-o", - "searchTerms": ["speech", "notification", "note", "chat", "bubble", "feedback", "message", "texting", "sms", "conversation"] -}, { - "title": "fa fa-comments-o", - "searchTerms": ["speech", "notification", "note", "chat", "bubble", "feedback", "message", "texting", "sms", "conversation"] -}, { - "title": "fa fa-bolt", - "searchTerms": ["lightning", "weather", "flash"] -}, { - "title": "fa fa-sitemap", - "searchTerms": ["directory", "hierarchy", "organization"] -}, { - "title": "fa fa-umbrella", - "searchTerms": [] -}, { - "title": "fa fa-clipboard", - "searchTerms": ["copy", "paste"] -}, { - "title": "fa fa-lightbulb-o", - "searchTerms": ["idea", "inspiration"] -}, { - "title": "fa fa-exchange", - "searchTerms": ["transfer", "arrows", "arrow"] -}, { - "title": "fa fa-cloud-download", - "searchTerms": ["import"] -}, { - "title": "fa fa-cloud-upload", - "searchTerms": ["import"] -}, { - "title": "fa fa-user-md", - "searchTerms": ["doctor", "profile", "medical", "nurse"] -}, { - "title": "fa fa-stethoscope", - "searchTerms": [] -}, { - "title": "fa fa-suitcase", - "searchTerms": ["trip", "luggage", "travel", "move", "baggage"] -}, { - "title": "fa fa-bell-o", - "searchTerms": ["alert", "reminder", "notification"] -}, { - "title": "fa fa-coffee", - "searchTerms": ["morning", "mug", "breakfast", "tea", "drink", "cafe"] -}, { - "title": "fa fa-cutlery", - "searchTerms": ["food", "restaurant", "spoon", "knife", "dinner", "eat"] -}, { - "title": "fa fa-file-text-o", - "searchTerms": ["new", "page", "pdf", "document"] -}, { - "title": "fa fa-building-o", - "searchTerms": ["work", "business", "apartment", "office", "company"] -}, { - "title": "fa fa-hospital-o", - "searchTerms": ["building"] -}, { - "title": "fa fa-ambulance", - "searchTerms": ["vehicle", "support", "help"] -}, { - "title": "fa fa-medkit", - "searchTerms": ["first aid", "firstaid", "help", "support", "health"] -}, { - "title": "fa fa-fighter-jet", - "searchTerms": ["fly", "plane", "airplane", "quick", "fast", "travel"] -}, { - "title": "fa fa-beer", - "searchTerms": ["alcohol", "stein", "drink", "mug", "bar", "liquor"] -}, { - "title": "fa fa-h-square", - "searchTerms": ["hospital", "hotel"] -}, { - "title": "fa fa-plus-square", - "searchTerms": ["add", "new", "create", "expand"] -}, { - "title": "fa fa-angle-double-left", - "searchTerms": ["laquo", "quote", "previous", "back", "arrows"] -}, { - "title": "fa fa-angle-double-right", - "searchTerms": ["raquo", "quote", "next", "forward", "arrows"] -}, { - "title": "fa fa-angle-double-up", - "searchTerms": ["arrows"] -}, { - "title": "fa fa-angle-double-down", - "searchTerms": ["arrows"] -}, { - "title": "fa fa-angle-left", - "searchTerms": ["previous", "back", "arrow"] -}, { - "title": "fa fa-angle-right", - "searchTerms": ["next", "forward", "arrow"] -}, { - "title": "fa fa-angle-up", - "searchTerms": ["arrow"] -}, { - "title": "fa fa-angle-down", - "searchTerms": ["arrow"] -}, { - "title": "fa fa-desktop", - "searchTerms": ["monitor", "screen", "desktop", "computer", "demo", "device"] -}, { - "title": "fa fa-laptop", - "searchTerms": ["demo", "computer", "device"] -}, { - "title": "fa fa-tablet", - "searchTerms": ["ipad", "device"] -}, { - "title": "fa fa-mobile", - "searchTerms": ["cell phone", "cellphone", "text", "call", "iphone", "number", "telephone", "mobile-phone"] -}, { - "title": "fa fa-circle-o", - "searchTerms": [] -}, { - "title": "fa fa-quote-left", - "searchTerms": [] -}, { - "title": "fa fa-quote-right", - "searchTerms": [] -}, { - "title": "fa fa-spinner", - "searchTerms": ["loading", "progress"] -}, { - "title": "fa fa-circle", - "searchTerms": ["dot", "notification"] -}, { - "title": "fa fa-reply", - "searchTerms": ["mail-reply"] -}, { - "title": "fa fa-github-alt", - "searchTerms": ["octocat"] -}, { - "title": "fa fa-folder-o", - "searchTerms": [] -}, { - "title": "fa fa-folder-open-o", - "searchTerms": [] -}, { - "title": "fa fa-smile-o", - "searchTerms": ["face", "emoticon", "happy", "approve", "satisfied", "rating"] -}, { - "title": "fa fa-frown-o", - "searchTerms": ["face", "emoticon", "sad", "disapprove", "rating"] -}, { - "title": "fa fa-meh-o", - "searchTerms": ["face", "emoticon", "rating", "neutral"] -}, { - "title": "fa fa-gamepad", - "searchTerms": ["controller"] -}, { - "title": "fa fa-keyboard-o", - "searchTerms": ["type", "input"] -}, { - "title": "fa fa-flag-o", - "searchTerms": ["report", "notification"] -}, { - "title": "fa fa-flag-checkered", - "searchTerms": ["report", "notification", "notify"] -}, { - "title": "fa fa-terminal", - "searchTerms": ["command", "prompt", "code"] -}, { - "title": "fa fa-code", - "searchTerms": ["html", "brackets"] -}, { - "title": "fa fa-reply-all", - "searchTerms": ["mail-reply-all"] -}, { - "title": "fa fa-star-half-o", - "searchTerms": ["award", "achievement", "rating", "score", "star-half-empty", "star-half-full"] -}, { - "title": "fa fa-location-arrow", - "searchTerms": ["map", "coordinates", "location", "address", "place", "where"] -}, { - "title": "fa fa-crop", - "searchTerms": [] -}, { - "title": "fa fa-code-fork", - "searchTerms": ["git", "fork", "vcs", "svn", "github", "rebase", "version", "merge"] -}, { - "title": "fa fa-chain-broken", - "searchTerms": ["remove", "unlink"] -}, { - "title": "fa fa-question", - "searchTerms": ["help", "information", "unknown", "support"] -}, { - "title": "fa fa-info", - "searchTerms": ["help", "information", "more", "details"] -}, { - "title": "fa fa-exclamation", - "searchTerms": ["warning", "error", "problem", "notification", "notify", "alert"] -}, { - "title": "fa fa-superscript", - "searchTerms": ["exponential"] -}, { - "title": "fa fa-subscript", - "searchTerms": [] -}, { - "title": "fa fa-eraser", - "searchTerms": ["remove", "delete"] -}, { - "title": "fa fa-puzzle-piece", - "searchTerms": ["addon", "add-on", "section"] -}, { - "title": "fa fa-microphone", - "searchTerms": ["record", "voice", "sound"] -}, { - "title": "fa fa-microphone-slash", - "searchTerms": ["record", "voice", "sound", "mute"] -}, { - "title": "fa fa-shield", - "searchTerms": ["award", "achievement", "security", "winner"] -}, { - "title": "fa fa-calendar-o", - "searchTerms": ["date", "time", "when", "event"] -}, { - "title": "fa fa-fire-extinguisher", - "searchTerms": [] -}, { - "title": "fa fa-rocket", - "searchTerms": ["app"] -}, { - "title": "fa fa-maxcdn", - "searchTerms": [] -}, { - "title": "fa fa-chevron-circle-left", - "searchTerms": ["previous", "back", "arrow"] -}, { - "title": "fa fa-chevron-circle-right", - "searchTerms": ["next", "forward", "arrow"] -}, { - "title": "fa fa-chevron-circle-up", - "searchTerms": ["arrow"] -}, { - "title": "fa fa-chevron-circle-down", - "searchTerms": ["more", "dropdown", "menu", "arrow"] -}, { - "title": "fa fa-html5", - "searchTerms": [] -}, { - "title": "fa fa-css3", - "searchTerms": ["code"] -}, { - "title": "fa fa-anchor", - "searchTerms": ["link"] -}, { - "title": "fa fa-unlock-alt", - "searchTerms": ["protect", "admin", "password", "lock"] -}, { - "title": "fa fa-bullseye", - "searchTerms": ["target"] -}, { - "title": "fa fa-ellipsis-h", - "searchTerms": ["dots"] -}, { - "title": "fa fa-ellipsis-v", - "searchTerms": ["dots"] -}, { - "title": "fa fa-rss-square", - "searchTerms": ["feed", "blog"] -}, { - "title": "fa fa-play-circle", - "searchTerms": ["start", "playing"] -}, { - "title": "fa fa-ticket", - "searchTerms": ["movie", "pass", "support"] -}, { - "title": "fa fa-minus-square", - "searchTerms": ["hide", "minify", "delete", "remove", "trash", "hide", "collapse"] -}, { - "title": "fa fa-minus-square-o", - "searchTerms": ["hide", "minify", "delete", "remove", "trash", "hide", "collapse"] -}, { - "title": "fa fa-level-up", - "searchTerms": ["arrow"] -}, { - "title": "fa fa-level-down", - "searchTerms": ["arrow"] -}, { - "title": "fa fa-check-square", - "searchTerms": ["checkmark", "done", "todo", "agree", "accept", "confirm", "ok"] -}, { - "title": "fa fa-pencil-square", - "searchTerms": ["write", "edit", "update"] -}, { - "title": "fa fa-external-link-square", - "searchTerms": ["open", "new"] -}, { - "title": "fa fa-share-square", - "searchTerms": ["social", "send"] -}, { - "title": "fa fa-compass", - "searchTerms": ["safari", "directory", "menu", "location"] -}, { - "title": "fa fa-caret-square-o-down", - "searchTerms": ["more", "dropdown", "menu", "toggle-down"] -}, { - "title": "fa fa-caret-square-o-up", - "searchTerms": ["toggle-up"] -}, { - "title": "fa fa-caret-square-o-right", - "searchTerms": ["next", "forward", "toggle-right"] -}, { - "title": "fa fa-eur", - "searchTerms": ["euro"] -}, { - "title": "fa fa-gbp", - "searchTerms": [] -}, { - "title": "fa fa-usd", - "searchTerms": ["dollar"] -}, { - "title": "fa fa-inr", - "searchTerms": ["rupee"] -}, { - "title": "fa fa-jpy", - "searchTerms": ["cny", "rmb", "yen"] -}, { - "title": "fa fa-rub", - "searchTerms": ["ruble", "rouble"] -}, { - "title": "fa fa-krw", - "searchTerms": ["won"] -}, { - "title": "fa fa-btc", - "searchTerms": ["bitcoin"] -}, { - "title": "fa fa-file", - "searchTerms": ["new", "page", "pdf", "document"] -}, { - "title": "fa fa-file-text", - "searchTerms": ["new", "page", "pdf", "document"] -}, { - "title": "fa fa-sort-alpha-asc", - "searchTerms": [] -}, { - "title": "fa fa-sort-alpha-desc", - "searchTerms": [] -}, { - "title": "fa fa-sort-amount-asc", - "searchTerms": [] -}, { - "title": "fa fa-sort-amount-desc", - "searchTerms": [] -}, { - "title": "fa fa-sort-numeric-asc", - "searchTerms": ["numbers"] -}, { - "title": "fa fa-sort-numeric-desc", - "searchTerms": ["numbers"] -}, { - "title": "fa fa-thumbs-up", - "searchTerms": ["like", "favorite", "approve", "agree", "hand"] -}, { - "title": "fa fa-thumbs-down", - "searchTerms": ["dislike", "disapprove", "disagree", "hand"] -}, { - "title": "fa fa-youtube-square", - "searchTerms": ["video", "film"] -}, { - "title": "fa fa-youtube", - "searchTerms": ["video", "film"] -}, { - "title": "fa fa-xing", - "searchTerms": [] -}, { - "title": "fa fa-xing-square", - "searchTerms": [] -}, { - "title": "fa fa-youtube-play", - "searchTerms": ["start", "playing"] -}, { - "title": "fa fa-dropbox", - "searchTerms": [] -}, { - "title": "fa fa-stack-overflow", - "searchTerms": [] -}, { - "title": "fa fa-instagram", - "searchTerms": [] -}, { - "title": "fa fa-flickr", - "searchTerms": [] -}, { - "title": "fa fa-adn", - "searchTerms": [] -}, { - "title": "fa fa-bitbucket", - "searchTerms": ["git"] -}, { - "title": "fa fa-bitbucket-square", - "searchTerms": ["git"] -}, { - "title": "fa fa-tumblr", - "searchTerms": [] -}, { - "title": "fa fa-tumblr-square", - "searchTerms": [] -}, { - "title": "fa fa-long-arrow-down", - "searchTerms": [] -}, { - "title": "fa fa-long-arrow-up", - "searchTerms": [] -}, { - "title": "fa fa-long-arrow-left", - "searchTerms": ["previous", "back"] -}, { - "title": "fa fa-long-arrow-right", - "searchTerms": [] -}, { - "title": "fa fa-apple", - "searchTerms": ["osx", "food"] -}, { - "title": "fa fa-windows", - "searchTerms": ["microsoft"] -}, { - "title": "fa fa-android", - "searchTerms": ["robot"] -}, { - "title": "fa fa-linux", - "searchTerms": ["tux"] -}, { - "title": "fa fa-dribbble", - "searchTerms": [] -}, { - "title": "fa fa-skype", - "searchTerms": [] -}, { - "title": "fa fa-foursquare", - "searchTerms": [] -}, { - "title": "fa fa-trello", - "searchTerms": [] -}, { - "title": "fa fa-female", - "searchTerms": ["woman", "user", "person", "profile"] -}, { - "title": "fa fa-male", - "searchTerms": ["man", "user", "person", "profile"] -}, { - "title": "fa fa-gratipay", - "searchTerms": ["heart", "like", "favorite", "love", "gittip"] -}, { - "title": "fa fa-sun-o", - "searchTerms": ["weather", "contrast", "lighter", "brighten", "day"] -}, { - "title": "fa fa-moon-o", - "searchTerms": ["night", "darker", "contrast"] -}, { - "title": "fa fa-archive", - "searchTerms": ["box", "storage"] -}, { - "title": "fa fa-bug", - "searchTerms": ["report", "insect"] -}, { - "title": "fa fa-vk", - "searchTerms": [] -}, { - "title": "fa fa-weibo", - "searchTerms": [] -}, { - "title": "fa fa-renren", - "searchTerms": [] -}, { - "title": "fa fa-pagelines", - "searchTerms": ["leaf", "leaves", "tree", "plant", "eco", "nature"] -}, { - "title": "fa fa-stack-exchange", - "searchTerms": [] -}, { - "title": "fa fa-arrow-circle-o-right", - "searchTerms": ["next", "forward"] -}, { - "title": "fa fa-arrow-circle-o-left", - "searchTerms": ["previous", "back"] -}, { - "title": "fa fa-caret-square-o-left", - "searchTerms": ["previous", "back", "toggle-left"] -}, { - "title": "fa fa-dot-circle-o", - "searchTerms": ["target", "bullseye", "notification"] -}, { - "title": "fa fa-wheelchair", - "searchTerms": ["handicap", "person"] -}, { - "title": "fa fa-vimeo-square", - "searchTerms": [] -}, { - "title": "fa fa-try", - "searchTerms": ["turkish-lira"] -}, { - "title": "fa fa-plus-square-o", - "searchTerms": ["add", "new", "create", "expand"] -}, { - "title": "fa fa-space-shuttle", - "searchTerms": [] -}, { - "title": "fa fa-slack", - "searchTerms": ["hashtag", "anchor", "hash"] -}, { - "title": "fa fa-envelope-square", - "searchTerms": [] -}, { - "title": "fa fa-wordpress", - "searchTerms": [] -}, { - "title": "fa fa-openid", - "searchTerms": [] -}, { - "title": "fa fa-university", - "searchTerms": ["institution", "bank"] -}, { - "title": "fa fa-graduation-cap", - "searchTerms": ["learning", "school", "student", "mortar-board"] -}, { - "title": "fa fa-yahoo", - "searchTerms": [] -}, { - "title": "fa fa-google", - "searchTerms": [] -}, { - "title": "fa fa-reddit", - "searchTerms": [] -}, { - "title": "fa fa-reddit-square", - "searchTerms": [] -}, { - "title": "fa fa-stumbleupon-circle", - "searchTerms": [] -}, { - "title": "fa fa-stumbleupon", - "searchTerms": [] -}, { - "title": "fa fa-delicious", - "searchTerms": [] -}, { - "title": "fa fa-digg", - "searchTerms": [] -}, { - "title": "fa fa-pied-piper-pp", - "searchTerms": [] -}, { - "title": "fa fa-pied-piper-alt", - "searchTerms": [] -}, { - "title": "fa fa-drupal", - "searchTerms": [] -}, { - "title": "fa fa-joomla", - "searchTerms": [] -}, { - "title": "fa fa-language", - "searchTerms": [] -}, { - "title": "fa fa-fax", - "searchTerms": [] -}, { - "title": "fa fa-building", - "searchTerms": ["work", "business", "apartment", "office", "company"] -}, { - "title": "fa fa-child", - "searchTerms": [] -}, { - "title": "fa fa-paw", - "searchTerms": ["pet"] -}, { - "title": "fa fa-spoon", - "searchTerms": [] -}, { - "title": "fa fa-cube", - "searchTerms": [] -}, { - "title": "fa fa-cubes", - "searchTerms": [] -}, { - "title": "fa fa-behance", - "searchTerms": [] -}, { - "title": "fa fa-behance-square", - "searchTerms": [] -}, { - "title": "fa fa-steam", - "searchTerms": [] -}, { - "title": "fa fa-steam-square", - "searchTerms": [] -}, { - "title": "fa fa-recycle", - "searchTerms": [] -}, { - "title": "fa fa-car", - "searchTerms": ["vehicle", "automobile"] -}, { - "title": "fa fa-taxi", - "searchTerms": ["vehicle", "cab"] -}, { - "title": "fa fa-tree", - "searchTerms": [] -}, { - "title": "fa fa-spotify", - "searchTerms": [] -}, { - "title": "fa fa-deviantart", - "searchTerms": [] -}, { - "title": "fa fa-soundcloud", - "searchTerms": [] -}, { - "title": "fa fa-database", - "searchTerms": [] -}, { - "title": "fa fa-file-pdf-o", - "searchTerms": [] -}, { - "title": "fa fa-file-word-o", - "searchTerms": [] -}, { - "title": "fa fa-file-excel-o", - "searchTerms": [] -}, { - "title": "fa fa-file-powerpoint-o", - "searchTerms": [] -}, { - "title": "fa fa-file-image-o", - "searchTerms": ["file-photo-o", "file-picture-o"] -}, { - "title": "fa fa-file-archive-o", - "searchTerms": ["file-zip-o"] -}, { - "title": "fa fa-file-audio-o", - "searchTerms": ["file-sound-o"] -}, { - "title": "fa fa-file-video-o", - "searchTerms": ["file-movie-o"] -}, { - "title": "fa fa-file-code-o", - "searchTerms": [] -}, { - "title": "fa fa-vine", - "searchTerms": [] -}, { - "title": "fa fa-codepen", - "searchTerms": [] -}, { - "title": "fa fa-jsfiddle", - "searchTerms": [] -}, { - "title": "fa fa-life-ring", - "searchTerms": ["life-bouy", "life-buoy", "life-saver", "support"] -}, { - "title": "fa fa-circle-o-notch", - "searchTerms": [] -}, { - "title": "fa fa-rebel", - "searchTerms": ["ra", "resistance"] -}, { - "title": "fa fa-empire", - "searchTerms": ["ge"] -}, { - "title": "fa fa-git-square", - "searchTerms": [] -}, { - "title": "fa fa-git", - "searchTerms": [] -}, { - "title": "fa fa-hacker-news", - "searchTerms": ["y-combinator-square", "yc-square"] -}, { - "title": "fa fa-tencent-weibo", - "searchTerms": [] -}, { - "title": "fa fa-qq", - "searchTerms": [] -}, { - "title": "fa fa-weixin", - "searchTerms": ["wechat"] -}, { - "title": "fa fa-paper-plane", - "searchTerms": ["send"] -}, { - "title": "fa fa-paper-plane-o", - "searchTerms": ["send-o"] -}, { - "title": "fa fa-history", - "searchTerms": [] -}, { - "title": "fa fa-circle-thin", - "searchTerms": [] -}, { - "title": "fa fa-header", - "searchTerms": ["heading"] -}, { - "title": "fa fa-paragraph", - "searchTerms": [] -}, { - "title": "fa fa-sliders", - "searchTerms": ["settings"] -}, { - "title": "fa fa-share-alt", - "searchTerms": [] -}, { - "title": "fa fa-share-alt-square", - "searchTerms": [] -}, { - "title": "fa fa-bomb", - "searchTerms": [] -}, { - "title": "fa fa-futbol-o", - "searchTerms": ["soccer-ball-o"] -}, { - "title": "fa fa-tty", - "searchTerms": [] -}, { - "title": "fa fa-binoculars", - "searchTerms": [] -}, { - "title": "fa fa-plug", - "searchTerms": ["power", "connect"] -}, { - "title": "fa fa-slideshare", - "searchTerms": [] -}, { - "title": "fa fa-twitch", - "searchTerms": [] -}, { - "title": "fa fa-yelp", - "searchTerms": [] -}, { - "title": "fa fa-newspaper-o", - "searchTerms": ["press"] -}, { - "title": "fa fa-wifi", - "searchTerms": [] -}, { - "title": "fa fa-calculator", - "searchTerms": [] -}, { - "title": "fa fa-paypal", - "searchTerms": [] -}, { - "title": "fa fa-google-wallet", - "searchTerms": [] -}, { - "title": "fa fa-cc-visa", - "searchTerms": [] -}, { - "title": "fa fa-cc-mastercard", - "searchTerms": [] -}, { - "title": "fa fa-cc-discover", - "searchTerms": [] -}, { - "title": "fa fa-cc-amex", - "searchTerms": ["amex"] -}, { - "title": "fa fa-cc-paypal", - "searchTerms": [] -}, { - "title": "fa fa-cc-stripe", - "searchTerms": [] -}, { - "title": "fa fa-bell-slash", - "searchTerms": [] -}, { - "title": "fa fa-bell-slash-o", - "searchTerms": [] -}, { - "title": "fa fa-trash", - "searchTerms": ["garbage", "delete", "remove", "hide"] -}, { - "title": "fa fa-copyright", - "searchTerms": [] -}, { - "title": "fa fa-at", - "searchTerms": [] -}, { - "title": "fa fa-eyedropper", - "searchTerms": [] -}, { - "title": "fa fa-paint-brush", - "searchTerms": [] -}, { - "title": "fa fa-birthday-cake", - "searchTerms": [] -}, { - "title": "fa fa-area-chart", - "searchTerms": ["graph", "analytics"] -}, { - "title": "fa fa-pie-chart", - "searchTerms": ["graph", "analytics"] -}, { - "title": "fa fa-line-chart", - "searchTerms": ["graph", "analytics"] -}, { - "title": "fa fa-lastfm", - "searchTerms": [] -}, { - "title": "fa fa-lastfm-square", - "searchTerms": [] -}, { - "title": "fa fa-toggle-off", - "searchTerms": [] -}, { - "title": "fa fa-toggle-on", - "searchTerms": [] -}, { - "title": "fa fa-bicycle", - "searchTerms": ["vehicle", "bike"] -}, { - "title": "fa fa-bus", - "searchTerms": ["vehicle"] -}, { - "title": "fa fa-ioxhost", - "searchTerms": [] -}, { - "title": "fa fa-angellist", - "searchTerms": [] -}, { - "title": "fa fa-cc", - "searchTerms": [] -}, { - "title": "fa fa-ils", - "searchTerms": ["shekel", "sheqel"] -}, { - "title": "fa fa-meanpath", - "searchTerms": [] -}, { - "title": "fa fa-buysellads", - "searchTerms": [] -}, { - "title": "fa fa-connectdevelop", - "searchTerms": [] -}, { - "title": "fa fa-dashcube", - "searchTerms": [] -}, { - "title": "fa fa-forumbee", - "searchTerms": [] -}, { - "title": "fa fa-leanpub", - "searchTerms": [] -}, { - "title": "fa fa-sellsy", - "searchTerms": [] -}, { - "title": "fa fa-shirtsinbulk", - "searchTerms": [] -}, { - "title": "fa fa-simplybuilt", - "searchTerms": [] -}, { - "title": "fa fa-skyatlas", - "searchTerms": [] -}, { - "title": "fa fa-cart-plus", - "searchTerms": ["add", "shopping"] -}, { - "title": "fa fa-cart-arrow-down", - "searchTerms": ["shopping"] -}, { - "title": "fa fa-diamond", - "searchTerms": ["gem", "gemstone"] -}, { - "title": "fa fa-ship", - "searchTerms": ["boat", "sea"] -}, { - "title": "fa fa-user-secret", - "searchTerms": ["whisper", "spy", "incognito", "privacy"] -}, { - "title": "fa fa-motorcycle", - "searchTerms": ["vehicle", "bike"] -}, { - "title": "fa fa-street-view", - "searchTerms": ["map"] -}, { - "title": "fa fa-heartbeat", - "searchTerms": ["ekg"] -}, { - "title": "fa fa-venus", - "searchTerms": ["female"] -}, { - "title": "fa fa-mars", - "searchTerms": ["male"] -}, { - "title": "fa fa-mercury", - "searchTerms": ["transgender"] -}, { - "title": "fa fa-transgender", - "searchTerms": ["intersex"] -}, { - "title": "fa fa-transgender-alt", - "searchTerms": [] -}, { - "title": "fa fa-venus-double", - "searchTerms": [] -}, { - "title": "fa fa-mars-double", - "searchTerms": [] -}, { - "title": "fa fa-venus-mars", - "searchTerms": [] -}, { - "title": "fa fa-mars-stroke", - "searchTerms": [] -}, { - "title": "fa fa-mars-stroke-v", - "searchTerms": [] -}, { - "title": "fa fa-mars-stroke-h", - "searchTerms": [] -}, { - "title": "fa fa-neuter", - "searchTerms": [] -}, { - "title": "fa fa-genderless", - "searchTerms": [] -}, { - "title": "fa fa-facebook-official", - "searchTerms": [] -}, { - "title": "fa fa-pinterest-p", - "searchTerms": [] -}, { - "title": "fa fa-whatsapp", - "searchTerms": [] -}, { - "title": "fa fa-server", - "searchTerms": [] -}, { - "title": "fa fa-user-plus", - "searchTerms": ["sign up", "signup"] -}, { - "title": "fa fa-user-times", - "searchTerms": [] -}, { - "title": "fa fa-bed", - "searchTerms": ["travel", "hotel"] -}, { - "title": "fa fa-viacoin", - "searchTerms": [] -}, { - "title": "fa fa-train", - "searchTerms": [] -}, { - "title": "fa fa-subway", - "searchTerms": [] -}, { - "title": "fa fa-medium", - "searchTerms": [] -}, { - "title": "fa fa-y-combinator", - "searchTerms": ["yc"] -}, { - "title": "fa fa-optin-monster", - "searchTerms": [] -}, { - "title": "fa fa-opencart", - "searchTerms": [] -}, { - "title": "fa fa-expeditedssl", - "searchTerms": [] -}, { - "title": "fa fa-battery-full", - "searchTerms": ["power", "battery-4", "battery"] -}, { - "title": "fa fa-battery-three-quarters", - "searchTerms": ["power", "battery-3"] -}, { - "title": "fa fa-battery-half", - "searchTerms": ["power", "battery-2"] -}, { - "title": "fa fa-battery-quarter", - "searchTerms": ["power", "battery-1"] -}, { - "title": "fa fa-battery-empty", - "searchTerms": ["power", "battery-0"] -}, { - "title": "fa fa-mouse-pointer", - "searchTerms": [] -}, { - "title": "fa fa-i-cursor", - "searchTerms": [] -}, { - "title": "fa fa-object-group", - "searchTerms": [] -}, { - "title": "fa fa-object-ungroup", - "searchTerms": [] -}, { - "title": "fa fa-sticky-note", - "searchTerms": [] -}, { - "title": "fa fa-sticky-note-o", - "searchTerms": [] -}, { - "title": "fa fa-cc-jcb", - "searchTerms": [] -}, { - "title": "fa fa-cc-diners-club", - "searchTerms": [] -}, { - "title": "fa fa-clone", - "searchTerms": ["copy"] -}, { - "title": "fa fa-balance-scale", - "searchTerms": [] -}, { - "title": "fa fa-hourglass-o", - "searchTerms": [] -}, { - "title": "fa fa-hourglass-start", - "searchTerms": ["hourglass-1"] -}, { - "title": "fa fa-hourglass-half", - "searchTerms": ["hourglass-2"] -}, { - "title": "fa fa-hourglass-end", - "searchTerms": ["hourglass-3"] -}, { - "title": "fa fa-hourglass", - "searchTerms": [] -}, { - "title": "fa fa-hand-rock-o", - "searchTerms": ["hand-grab-o"] -}, { - "title": "fa fa-hand-paper-o", - "searchTerms": ["stop", "hand-stop-o"] -}, { - "title": "fa fa-hand-scissors-o", - "searchTerms": [] -}, { - "title": "fa fa-hand-lizard-o", - "searchTerms": [] -}, { - "title": "fa fa-hand-spock-o", - "searchTerms": [] -}, { - "title": "fa fa-hand-pointer-o", - "searchTerms": [] -}, { - "title": "fa fa-hand-peace-o", - "searchTerms": [] -}, { - "title": "fa fa-trademark", - "searchTerms": [] -}, { - "title": "fa fa-registered", - "searchTerms": [] -}, { - "title": "fa fa-creative-commons", - "searchTerms": [] -}, { - "title": "fa fa-gg", - "searchTerms": [] -}, { - "title": "fa fa-gg-circle", - "searchTerms": [] -}, { - "title": "fa fa-tripadvisor", - "searchTerms": [] -}, { - "title": "fa fa-odnoklassniki", - "searchTerms": [] -}, { - "title": "fa fa-odnoklassniki-square", - "searchTerms": [] -}, { - "title": "fa fa-get-pocket", - "searchTerms": [] -}, { - "title": "fa fa-wikipedia-w", - "searchTerms": [] -}, { - "title": "fa fa-safari", - "searchTerms": ["browser"] -}, { - "title": "fa fa-chrome", - "searchTerms": ["browser"] -}, { - "title": "fa fa-firefox", - "searchTerms": ["browser"] -}, { - "title": "fa fa-opera", - "searchTerms": [] -}, { - "title": "fa fa-internet-explorer", - "searchTerms": ["browser", "ie"] -}, { - "title": "fa fa-television", - "searchTerms": ["display", "computer", "monitor", "tv"] -}, { - "title": "fa fa-contao", - "searchTerms": [] -}, { - "title": "fa fa-500px", - "searchTerms": [] -}, { - "title": "fa fa-amazon", - "searchTerms": [] -}, { - "title": "fa fa-calendar-plus-o", - "searchTerms": [] -}, { - "title": "fa fa-calendar-minus-o", - "searchTerms": [] -}, { - "title": "fa fa-calendar-times-o", - "searchTerms": [] -}, { - "title": "fa fa-calendar-check-o", - "searchTerms": ["ok"] -}, { - "title": "fa fa-industry", - "searchTerms": ["factory"] -}, { - "title": "fa fa-map-pin", - "searchTerms": [] -}, { - "title": "fa fa-map-signs", - "searchTerms": [] -}, { - "title": "fa fa-map-o", - "searchTerms": [] -}, { - "title": "fa fa-map", - "searchTerms": [] -}, { - "title": "fa fa-commenting", - "searchTerms": ["speech", "notification", "note", "chat", "bubble", "feedback", "message", "texting", "sms", "conversation"] -}, { - "title": "fa fa-commenting-o", - "searchTerms": ["speech", "notification", "note", "chat", "bubble", "feedback", "message", "texting", "sms", "conversation"] -}, { - "title": "fa fa-houzz", - "searchTerms": [] -}, { - "title": "fa fa-vimeo", - "searchTerms": [] -}, { - "title": "fa fa-black-tie", - "searchTerms": [] -}, { - "title": "fa fa-fonticons", - "searchTerms": [] -}, { - "title": "fa fa-reddit-alien", - "searchTerms": [] -}, { - "title": "fa fa-edge", - "searchTerms": ["browser", "ie"] -}, { - "title": "fa fa-credit-card-alt", - "searchTerms": ["money", "buy", "debit", "checkout", "purchase", "payment", "credit card"] -}, { - "title": "fa fa-codiepie", - "searchTerms": [] -}, { - "title": "fa fa-modx", - "searchTerms": [] -}, { - "title": "fa fa-fort-awesome", - "searchTerms": [] -}, { - "title": "fa fa-usb", - "searchTerms": [] -}, { - "title": "fa fa-product-hunt", - "searchTerms": [] -}, { - "title": "fa fa-mixcloud", - "searchTerms": [] -}, { - "title": "fa fa-scribd", - "searchTerms": [] -}, { - "title": "fa fa-pause-circle", - "searchTerms": [] -}, { - "title": "fa fa-pause-circle-o", - "searchTerms": [] -}, { - "title": "fa fa-stop-circle", - "searchTerms": [] -}, { - "title": "fa fa-stop-circle-o", - "searchTerms": [] -}, { - "title": "fa fa-shopping-bag", - "searchTerms": [] -}, { - "title": "fa fa-shopping-basket", - "searchTerms": [] -}, { - "title": "fa fa-hashtag", - "searchTerms": [] -}, { - "title": "fa fa-bluetooth", - "searchTerms": [] -}, { - "title": "fa fa-bluetooth-b", - "searchTerms": [] -}, { - "title": "fa fa-percent", - "searchTerms": [] -}, { - "title": "fa fa-gitlab", - "searchTerms": [] -}, { - "title": "fa fa-wpbeginner", - "searchTerms": [] -}, { - "title": "fa fa-wpforms", - "searchTerms": [] -}, { - "title": "fa fa-envira", - "searchTerms": ["leaf"] -}, { - "title": "fa fa-universal-access", - "searchTerms": [] -}, { - "title": "fa fa-wheelchair-alt", - "searchTerms": ["handicap", "person"] -}, { - "title": "fa fa-question-circle-o", - "searchTerms": [] -}, { - "title": "fa fa-blind", - "searchTerms": [] -}, { - "title": "fa fa-audio-description", - "searchTerms": [] -}, { - "title": "fa fa-volume-control-phone", - "searchTerms": ["telephone"] -}, { - "title": "fa fa-braille", - "searchTerms": [] -}, { - "title": "fa fa-assistive-listening-systems", - "searchTerms": [] -}, { - "title": "fa fa-american-sign-language-interpreting", - "searchTerms": ["asl-interpreting"] -}, { - "title": "fa fa-deaf", - "searchTerms": ["deafness", "hard-of-hearing"] -}, { - "title": "fa fa-glide", - "searchTerms": [] -}, { - "title": "fa fa-glide-g", - "searchTerms": [] -}, { - "title": "fa fa-sign-language", - "searchTerms": ["signing"] -}, { - "title": "fa fa-low-vision", - "searchTerms": [] -}, { - "title": "fa fa-viadeo", - "searchTerms": [] -}, { - "title": "fa fa-viadeo-square", - "searchTerms": [] -}, { - "title": "fa fa-snapchat", - "searchTerms": [] -}, { - "title": "fa fa-snapchat-ghost", - "searchTerms": [] -}, { - "title": "fa fa-snapchat-square", - "searchTerms": [] -}, { - "title": "fa fa-pied-piper", - "searchTerms": [] -}, { - "title": "fa fa-first-order", - "searchTerms": [] -}, { - "title": "fa fa-yoast", - "searchTerms": [] -}, { - "title": "fa fa-themeisle", - "searchTerms": [] -}, { - "title": "fa fa-google-plus-official", - "searchTerms": ["google-plus-circle"] -}, { - "title": "fa fa-font-awesome", - "searchTerms": ["fa"] -}, { - "title": "fa fa-handshake-o", - "searchTerms": [] -}, { - "title": "fa fa-envelope-open", - "searchTerms": [] -}, { - "title": "fa fa-envelope-open-o", - "searchTerms": [] -}, { - "title": "fa fa-linode", - "searchTerms": [] -}, { - "title": "fa fa-address-book", - "searchTerms": [] -}, { - "title": "fa fa-address-book-o", - "searchTerms": [] -}, { - "title": "fa fa-address-card", - "searchTerms": ["vcard"] -}, { - "title": "fa fa-address-card-o", - "searchTerms": ["vcard-o"] -}, { - "title": "fa fa-user-circle", - "searchTerms": [] -}, { - "title": "fa fa-user-circle-o", - "searchTerms": [] -}, { - "title": "fa fa-user-o", - "searchTerms": [] -}, { - "title": "fa fa-id-badge", - "searchTerms": [] -}, { - "title": "fa fa-id-card", - "searchTerms": ["drivers-license"] -}, { - "title": "fa fa-id-card-o", - "searchTerms": ["drivers-license-o"] -}, { - "title": "fa fa-quora", - "searchTerms": [] -}, { - "title": "fa fa-free-code-camp", - "searchTerms": [] -}, { - "title": "fa fa-telegram", - "searchTerms": [] -}, { - "title": "fa fa-thermometer-full", - "searchTerms": ["thermometer-4", "thermometer"] -}, { - "title": "fa fa-thermometer-three-quarters", - "searchTerms": ["thermometer-3"] -}, { - "title": "fa fa-thermometer-half", - "searchTerms": ["thermometer-2"] -}, { - "title": "fa fa-thermometer-quarter", - "searchTerms": ["thermometer-1"] -}, { - "title": "fa fa-thermometer-empty", - "searchTerms": ["thermometer-0"] -}, { - "title": "fa fa-shower", - "searchTerms": [] -}, { - "title": "fa fa-bath", - "searchTerms": ["bathtub", "s15"] -}, { - "title": "fa fa-podcast", - "searchTerms": [] -}, { - "title": "fa fa-window-maximize", - "searchTerms": [] -}, { - "title": "fa fa-window-minimize", - "searchTerms": [] -}, { - "title": "fa fa-window-restore", - "searchTerms": [] -}, { - "title": "fa fa-window-close", - "searchTerms": ["times-rectangle"] -}, { - "title": "fa fa-window-close-o", - "searchTerms": ["times-rectangle-o"] -}, { - "title": "fa fa-bandcamp", - "searchTerms": [] -}, { - "title": "fa fa-grav", - "searchTerms": [] -}, { - "title": "fa fa-etsy", - "searchTerms": [] -}, { - "title": "fa fa-imdb", - "searchTerms": [] -}, { - "title": "fa fa-ravelry", - "searchTerms": [] -}, { - "title": "fa fa-eercast", - "searchTerms": [] -}, { - "title": "fa fa-microchip", - "searchTerms": [] -}, { - "title": "fa fa-snowflake-o", - "searchTerms": [] -}, { - "title": "fa fa-superpowers", - "searchTerms": [] -}, { - "title": "fa fa-wpexplorer", - "searchTerms": [] -}, { - "title": "fa fa-meetup", - "searchTerms": [] -}]; diff --git a/apps/dashboard/app/javascript/packs/fa/faIconPicker.js b/apps/dashboard/app/javascript/packs/fa/faIconPicker.js deleted file mode 100644 index ace58d9e84..0000000000 --- a/apps/dashboard/app/javascript/packs/fa/faIconPicker.js +++ /dev/null @@ -1,41 +0,0 @@ -import 'fa/faIconInfo'; - -jQuery(function() { - - function faClassToURI(classname) { - var re = /^(fa[bsrl]?) fa-(.*)/; - var result = re.exec(classname); - if (result) { - return result[1] + "://" + result[2]; - } else { - return classname; - } - }; - - var stdConfig = {placement: "inline", templates: {iconpickerItem: '
'}}; - var usesOld = $('#product-icon').hasClass("fa"); - var iconSetting = usesOld ? $.extend({icons: FA4iconinfo}, stdConfig) : $.extend({icons: FA5iconinfo, placement: "inline"}, stdConfig); - $('#icp').iconpicker(iconSetting); - $('#alias').prop('checked', usesOld); - - $('#icp').on('iconpickerSelected', function(event) { - classname = event.iconpickerInstance.options.fullClassFormatter(event.iconpickerValue); - $('#product-icon').get(0).className = 'app-icon fa-fw ' + classname; - $('#uri-box').val(faClassToURI(classname)); - }); - - $('#uri-box').on('change', function(event) { - if ($('#uri-box').val() === "") { - $('#product-icon').get(0).className = 'app-icon fa-fw fas fa-cog'; - } - }); - - $('#alias').on('change', function() { - $('#icp').data('iconpicker').destroy(); - if ($('#alias').is(":checked")) { - $('#icp').iconpicker($.extend({icons: FA4iconinfo, placement: "inline"}, stdConfig)); - } else { - $('#icp').iconpicker($.extend({icons: FA5iconinfo, placement: "inline"}, stdConfig)); - } - }) -}); diff --git a/apps/dashboard/app/javascript/packs/icon_picker.js b/apps/dashboard/app/javascript/packs/icon_picker.js new file mode 100644 index 0000000000..498fff63d3 --- /dev/null +++ b/apps/dashboard/app/javascript/packs/icon_picker.js @@ -0,0 +1,48 @@ +'use strict'; + +import ALL_ICONS from 'icons'; + +const ICON_SHOW_ID = "product_icon" +const ICON_SELECT_ID = "product_icon_select" + +function listItem(name) { + return `
  • + +
  • `; +} + +function iconId(name) { + return `icon_${name.replaceAll('-', '_')}`; +} + +function iconFromId(id) { + const m = id.match(/^icon_([\w+_]+)/); + if(m && m[1]) { return m[1].replaceAll('_','-') }; +} + +function picked(event) { + const icon = iconFromId(event.currentTarget.id); + $(`#${ICON_SHOW_ID}`).attr("class", `fas fa-${icon} fa-fw app-icon`); + $(`#${ICON_SELECT_ID}`).val(`fas://${icon}`) +} + +function populateList() { + const list = $("#icon_picker_list"); + if(list.length == 0 || ALL_ICONS.length == 0) { return; } + + const listContent = ALL_ICONS.map(name => { + return listItem(name); + }).join(''); + list.html(listContent); + + ALL_ICONS.forEach(name => { + $(`#${iconId(name)}`).on('click', (event) => { picked(event)}); + }); +}; + +jQuery(() => { + populateList(); +}) \ No newline at end of file diff --git a/apps/dashboard/app/javascript/packs/icons.js b/apps/dashboard/app/javascript/packs/icons.js new file mode 100644 index 0000000000..ddfc503241 --- /dev/null +++ b/apps/dashboard/app/javascript/packs/icons.js @@ -0,0 +1,1017 @@ +/*** + This file was generated just by quering all the css available + + function all_icons() { + return [...document.styleSheets].flatMap(styleSheet => { + return [...styleSheet.cssRules] + .map((rule) => { + const m = rule.cssText.match(/^\.fa-([\w-]+)/); + if(m && m[1]) { + let b = 'break!'; + $("#icon_test").append(`

    ${m[1]}

    `); + return m[1]; + } + }) + .filter(r => r); + }); // .slice(700,744) here if you want. + } + + That list was printed and then filtered by hand because there are + some commercial icons that don't resolve. + +*/ + +const ALL_ICONS = [ + 'ad', + 'address-book', + 'address-card', + 'adjust', + 'ambulance', + 'american-sign-language-interpreting', + 'anchor', + 'angry', + 'ankh', + 'archive', + 'archway', + 'arrow-down', + 'arrow-left', + 'arrow-right', + 'arrow-up', + 'arrows-alt', + 'arrows-alt-h', + 'arrows-alt-v', + 'assistive-listening-systems', + 'asterisk', + 'at', + 'atlas', + 'atom', + 'audio-description', + 'autoprefixer', + 'award', + 'baby', + 'baby-carriage', + 'backspace', + 'backward', + 'bacon', + 'bacteria', + 'bacterium', + 'bahai', + 'balance-scale', + 'balance-scale-left', + 'balance-scale-right', + 'ban', + 'band-aid', + 'barcode', + 'bars', + 'baseball-ball', + 'basketball-ball', + 'bath', + 'battery-empty', + 'battery-full', + 'battery-half', + 'battery-quarter', + 'battery-three-quarters', + 'bed', + 'beer', + 'bell', + 'bell-slash', + 'bezier-curve', + 'bible', + 'bicycle', + 'biking', + 'binoculars', + 'biohazard', + 'birthday-cake', + 'blender', + 'blender-phone', + 'blind', + 'blog', + 'bold', + 'bolt', + 'bomb', + 'bone', + 'book', + 'book-dead', + 'book-medical', + 'book-open', + 'book-reader', + 'bookmark', + 'border-all', + 'border-none', + 'border-style', + 'bowling-ball', + 'box', + 'box-open', + 'box-tissue', + 'boxes', + 'braille', + 'brain', + 'bread-slice', + 'briefcase', + 'briefcase-medical', + 'broadcast-tower', + 'broom', + 'brush', + 'btc', + 'bug', + 'building', + 'bullhorn', + 'bullseye', + 'burn', + 'bus', + 'bus-alt', + 'business-time', + 'calculator', + 'calendar', + 'calendar-alt', + 'calendar-check', + 'calendar-day', + 'calendar-minus', + 'calendar-plus', + 'calendar-times', + 'calendar-week', + 'camera', + 'camera-retro', + 'campground', + 'candy-cane', + 'capsules', + 'car', + 'car-alt', + 'car-battery', + 'car-crash', + 'car-side', + 'caravan', + 'caret-down', + 'caret-left', + 'caret-right', + 'caret-square-down', + 'caret-square-left', + 'caret-square-right', + 'caret-square-up', + 'caret-up', + 'carrot', + 'cart-arrow-down', + 'cart-plus', + 'cash-register', + 'cat', + 'certificate', + 'chair', + 'chalkboard', + 'chalkboard-teacher', + 'charging-station', + 'chart-area', + 'chart-bar', + 'chart-line', + 'chart-pie', + 'check', + 'check-circle', + 'check-double', + 'check-square', + 'cheese', + 'chess', + 'chess-bishop', + 'chess-board', + 'chess-king', + 'chess-knight', + 'chess-pawn', + 'chess-queen', + 'chess-rook', + 'chevron-down', + 'chevron-left', + 'chevron-right', + 'chevron-up', + 'child', + 'church', + 'circle', + 'circle-notch', + 'city', + 'clinic-medical', + 'clipboard', + 'clipboard-check', + 'clipboard-list', + 'clock', + 'clone', + 'closed-captioning', + 'cloud', + 'cloud-download-alt', + 'cloud-meatball', + 'cloud-moon', + 'cloud-moon-rain', + 'cloud-rain', + 'cloud-showers-heavy', + 'cloud-sun', + 'cloud-sun-rain', + 'cloud-upload-alt', + 'cocktail', + 'code', + 'code-branch', + 'coffee', + 'cog', + 'cogs', + 'coins', + 'columns', + 'comment', + 'comment-alt', + 'comment-dollar', + 'comment-dots', + 'comment-medical', + 'comment-slash', + 'comments', + 'comments-dollar', + 'compact-disc', + 'compass', + 'compress', + 'compress-alt', + 'compress-arrows-alt', + 'concierge-bell', + 'cookie', + 'cookie-bite', + 'copy', + 'copyright', + 'couch', + 'credit-card', + 'crop', + 'crop-alt', + 'cross', + 'crosshairs', + 'crow', + 'crown', + 'crutch', + 'cube', + 'cubes', + 'cut', + 'database', + 'deaf', + 'democrat', + 'desktop', + 'dharmachakra', + 'diagnoses', + 'dice', + 'dice-d20', + 'dice-d6', + 'dice-five', + 'dice-four', + 'dice-one', + 'dice-six', + 'dice-three', + 'dice-two', + 'digital-tachograph', + 'directions', + 'disease', + 'divide', + 'dizzy', + 'dna', + 'dog', + 'dollar-sign', + 'dolly', + 'dolly-flatbed', + 'donate', + 'door-closed', + 'door-open', + 'dot-circle', + 'dove', + 'download', + 'drafting-compass', + 'dragon', + 'draw-polygon', + 'drum', + 'drum-steelpan', + 'drumstick-bite', + 'dumbbell', + 'dumpster', + 'dumpster-fire', + 'dungeon', + 'dyalog', + 'edit', + 'egg', + 'eject', + 'elementor', + 'ellipsis-h', + 'ellipsis-v', + 'envelope', + 'envelope-open', + 'envelope-open-text', + 'envelope-square', + 'equals', + 'eraser', + 'ethernet', + 'euro-sign', + 'exchange-alt', + 'exclamation', + 'exclamation-circle', + 'exclamation-triangle', + 'expand', + 'expand-alt', + 'expand-arrows-alt', + 'expeditedssl', + 'external-link-alt', + 'external-link-square-alt', + 'eye', + 'eye-dropper', + 'eye-slash', + 'fan', + 'fantasy-flight-games', + 'fast-backward', + 'fast-forward', + 'faucet', + 'fax', + 'feather', + 'feather-alt', + 'female', + 'fighter-jet', + 'file', + 'file-alt', + 'file-archive', + 'file-audio', + 'file-code', + 'file-contract', + 'file-csv', + 'file-download', + 'file-excel', + 'file-export', + 'file-image', + 'file-import', + 'file-invoice', + 'file-invoice-dollar', + 'file-medical', + 'file-medical-alt', + 'file-pdf', + 'file-powerpoint', + 'file-prescription', + 'file-signature', + 'file-upload', + 'file-video', + 'file-word', + 'fill', + 'fill-drip', + 'film', + 'filter', + 'fingerprint', + 'fire', + 'fire-alt', + 'fire-extinguisher', + 'first-aid', + 'fish', + 'fist-raised', + 'flag', + 'flag-checkered', + 'flag-usa', + 'flask', + 'flushed', + 'fly', + 'folder', + 'folder-minus', + 'folder-open', + 'folder-plus', + 'font', + 'football-ball', + 'forward', + 'frog', + 'frown', + 'frown-open', + 'funnel-dollar', + 'futbol', + 'gamepad', + 'gas-pump', + 'gavel', + 'gem', + 'genderless', + 'ghost', + 'gift', + 'gifts', + 'glass-cheers', + 'glass-martini', + 'glass-martini-alt', + 'glass-whiskey', + 'glasses', + 'globe', + 'globe-africa', + 'globe-americas', + 'globe-asia', + 'globe-europe', + 'gofore', + 'golf-ball', + 'gopuram', + 'graduation-cap', + 'greater-than', + 'greater-than-equal', + 'grimace', + 'grin', + 'grin-alt', + 'grin-beam', + 'grin-beam-sweat', + 'grin-hearts', + 'grin-squint', + 'grin-squint-tears', + 'grin-stars', + 'grin-tears', + 'grin-tongue', + 'grin-tongue-squint', + 'grin-tongue-wink', + 'grin-wink', + 'grip-horizontal', + 'grip-lines', + 'grip-lines-vertical', + 'grip-vertical', + 'guitar', + 'h-square', + 'hamburger', + 'hammer', + 'hamsa', + 'hand-holding', + 'hand-holding-heart', + 'hand-holding-medical', + 'hand-holding-usd', + 'hand-holding-water', + 'hand-lizard', + 'hand-middle-finger', + 'hand-paper', + 'hand-peace', + 'hand-point-down', + 'hand-point-left', + 'hand-point-right', + 'hand-point-up', + 'hand-pointer', + 'hand-rock', + 'hand-scissors', + 'hand-sparkles', + 'hand-spock', + 'hands', + 'hands-helping', + 'hands-wash', + 'handshake', + 'handshake-alt-slash', + 'handshake-slash', + 'hanukiah', + 'hard-hat', + 'hashtag', + 'hat-cowboy', + 'hat-cowboy-side', + 'hat-wizard', + 'hdd', + 'head-side-cough', + 'head-side-cough-slash', + 'head-side-mask', + 'head-side-virus', + 'heading', + 'headphones', + 'headphones-alt', + 'headset', + 'heart', + 'heart-broken', + 'heartbeat', + 'helicopter', + 'highlighter', + 'hiking', + 'hippo', + 'history', + 'hockey-puck', + 'holly-berry', + 'home', + 'horse', + 'horse-head', + 'hospital', + 'hospital-alt', + 'hospital-symbol', + 'hospital-user', + 'hot-tub', + 'hotdog', + 'hotel', + 'hourglass', + 'hourglass-end', + 'hourglass-half', + 'hourglass-start', + 'house-damage', + 'house-user', + 'i-cursor', + 'ice-cream', + 'icicles', + 'icons', + 'id-badge', + 'id-card', + 'id-card-alt', + 'ideal', + 'igloo', + 'image', + 'images', + 'inbox', + 'indent', + 'industry', + 'infinity', + 'info', + 'info-circle', + 'innosoft', + 'italic', + 'kaaba', + 'key', + 'keyboard', + 'kiss', + 'kiss-beam', + 'kiss-wink-heart', + 'kiwi-bird', + 'landmark', + 'language', + 'laptop', + 'laptop-code', + 'laptop-house', + 'laptop-medical', + 'laugh', + 'laugh-beam', + 'laugh-squint', + 'laugh-wink', + 'layer-group', + 'leaf', + 'lemon', + 'less-than', + 'less-than-equal', + 'level-down-alt', + 'level-up-alt', + 'life-ring', + 'lightbulb', + 'link', + 'list', + 'list-alt', + 'list-ol', + 'list-ul', + 'location-arrow', + 'lock', + 'lock-open', + 'long-arrow-alt-down', + 'long-arrow-alt-left', + 'long-arrow-alt-right', + 'long-arrow-alt-up', + 'low-vision', + 'luggage-cart', + 'lungs', + 'lungs-virus', + 'magic', + 'magnet', + 'mail-bulk', + 'male', + 'map', + 'map-marked', + 'map-marked-alt', + 'map-marker', + 'map-marker-alt', + 'map-pin', + 'map-signs', + 'marker', + 'mars', + 'mars-double', + 'mars-stroke', + 'mars-stroke-h', + 'mars-stroke-v', + 'mask', + 'medal', + 'medkit', + 'meh', + 'meh-blank', + 'meh-rolling-eyes', + 'memory', + 'menorah', + 'mercury', + 'meteor', + 'microblog', + 'microchip', + 'microphone', + 'microphone-alt', + 'microphone-alt-slash', + 'microphone-slash', + 'microscope', + 'microsoft', + 'minus', + 'minus-circle', + 'minus-square', + 'mitten', + 'mobile', + 'mobile-alt', + 'money-bill', + 'money-bill-alt', + 'money-bill-wave', + 'money-bill-wave-alt', + 'money-check', + 'money-check-alt', + 'monument', + 'moon', + 'mortar-pestle', + 'mosque', + 'motorcycle', + 'mountain', + 'mouse', + 'mouse-pointer', + 'mug-hot', + 'music', + 'network-wired', + 'neuter', + 'newspaper', + 'node', + 'not-equal', + 'notes-medical', + 'object-group', + 'object-ungroup', + 'octopus-deploy', + 'oil-can', + 'old-republic', + 'osi', + 'otter', + 'outdent', + 'pager', + 'paint-brush', + 'paint-roller', + 'palette', + 'pallet', + 'paper-plane', + 'paperclip', + 'parachute-box', + 'paragraph', + 'parking', + 'passport', + 'pastafarianism', + 'paste', + 'pause', + 'pause-circle', + 'paw', + 'peace', + 'pen', + 'pen-alt', + 'pen-fancy', + 'pen-nib', + 'pen-square', + 'pencil-alt', + 'pencil-ruler', + 'people-arrows', + 'people-carry', + 'pepper-hot', + 'perbyte', + 'percent', + 'percentage', + 'person-booth', + 'phone', + 'phone-alt', + 'phone-slash', + 'phone-square', + 'phone-square-alt', + 'phone-volume', + 'photo-video', + 'piggy-bank', + 'pills', + 'pizza-slice', + 'place-of-worship', + 'plane', + 'plane-arrival', + 'plane-departure', + 'plane-slash', + 'play', + 'play-circle', + 'plug', + 'plus', + 'plus-circle', + 'plus-square', + 'podcast', + 'poll', + 'poll-h', + 'poo', + 'poo-storm', + 'poop', + 'portrait', + 'pound-sign', + 'power-off', + 'pray', + 'praying-hands', + 'prescription', + 'prescription-bottle', + 'prescription-bottle-alt', + 'print', + 'procedures', + 'project-diagram', + 'pump-medical', + 'pump-soap', + 'puzzle-piece', + 'qrcode', + 'question', + 'question-circle', + 'quidditch', + 'quote-left', + 'quote-right', + 'quran', + 'r-project', + 'radiation', + 'radiation-alt', + 'rainbow', + 'random', + 'receipt', + 'record-vinyl', + 'recycle', + 'red-river', + 'redo', + 'redo-alt', + 'registered', + 'remove-format', + 'reply', + 'reply-all', + 'restroom', + 'retweet', + 'ribbon', + 'ring', + 'road', + 'robot', + 'rocket', + 'route', + 'rss', + 'rss-square', + 'ruble-sign', + 'ruler', + 'ruler-combined', + 'ruler-horizontal', + 'ruler-vertical', + 'running', + 'rupee-sign', + 'sad-cry', + 'sad-tear', + 'satellite', + 'satellite-dish', + 'save', + 'school', + 'screwdriver', + 'scroll', + 'sd-card', + 'search', + 'search-dollar', + 'search-location', + 'search-minus', + 'search-plus', + 'seedling', + 'server', + 'shapes', + 'share', + 'share-alt', + 'share-alt-square', + 'share-square', + 'shekel-sign', + 'shield-alt', + 'shield-virus', + 'ship', + 'shipping-fast', + 'shoe-prints', + 'shopping-bag', + 'shopping-basket', + 'shopping-cart', + 'shopware', + 'shower', + 'shuttle-van', + 'sign', + 'sign-in-alt', + 'sign-language', + 'sign-out-alt', + 'signal', + 'signature', + 'sim-card', + 'sink', + 'sitemap', + 'sith', + 'skating', + 'skiing', + 'skiing-nordic', + 'skull', + 'skull-crossbones', + 'slash', + 'sleigh', + 'sliders-h', + 'smile', + 'smile-beam', + 'smile-wink', + 'smog', + 'smoking', + 'smoking-ban', + 'sms', + 'snowboarding', + 'snowflake', + 'snowman', + 'snowplow', + 'soap', + 'socks', + 'solar-panel', + 'sort', + 'sort-alpha-down', + 'sort-alpha-down-alt', + 'sort-alpha-up', + 'sort-alpha-up-alt', + 'sort-amount-down', + 'sort-amount-down-alt', + 'sort-amount-up', + 'sort-amount-up-alt', + 'sort-down', + 'sort-numeric-down', + 'sort-numeric-down-alt', + 'sort-numeric-up', + 'sort-numeric-up-alt', + 'sort-up', + 'spa', + 'space-shuttle', + 'spell-check', + 'spider', + 'spinner', + 'splotch', + 'spray-can', + 'square', + 'square-full', + 'square-root-alt', + 'stamp', + 'star', + 'star-and-crescent', + 'star-half', + 'star-half-alt', + 'star-of-david', + 'star-of-life', + 'staylinked', + 'step-backward', + 'step-forward', + 'stethoscope', + 'sticky-note', + 'stop', + 'stop-circle', + 'stopwatch', + 'stopwatch-20', + 'store', + 'store-alt', + 'store-alt-slash', + 'store-slash', + 'stream', + 'street-view', + 'strikethrough', + 'stripe', + 'stripe-s', + 'subscript', + 'subway', + 'suitcase', + 'suitcase-rolling', + 'sun', + 'superscript', + 'surprise', + 'swatchbook', + 'swimmer', + 'swimming-pool', + 'synagogue', + 'sync', + 'sync-alt', + 'syringe', + 'table', + 'table-tennis', + 'tablet', + 'tablet-alt', + 'tablets', + 'tachometer-alt', + 'tag', + 'tags', + 'tape', + 'tasks', + 'taxi', + 'teeth', + 'teeth-open', + 'temperature-high', + 'temperature-low', + 'tenge', + 'terminal', + 'text-height', + 'text-width', + 'th', + 'th-large', + 'th-list', + 'theater-masks', + 'thermometer', + 'thermometer-empty', + 'thermometer-full', + 'thermometer-half', + 'thermometer-quarter', + 'thermometer-three-quarters', + 'thumbs-down', + 'thumbs-up', + 'thumbtack', + 'ticket-alt', + 'times', + 'times-circle', + 'tint', + 'tint-slash', + 'tired', + 'toggle-off', + 'toggle-on', + 'toilet', + 'toilet-paper', + 'toilet-paper-slash', + 'toolbox', + 'tools', + 'tooth', + 'torah', + 'torii-gate', + 'tractor', + 'trademark', + 'traffic-light', + 'trailer', + 'train', + 'tram', + 'transgender', + 'transgender-alt', + 'trash', + 'trash-alt', + 'trash-restore', + 'trash-restore-alt', + 'tree', + 'trophy', + 'truck', + 'truck-loading', + 'truck-monster', + 'truck-moving', + 'truck-pickup', + 'tshirt', + 'tty', + 'tv', + 'umbrella', + 'umbrella-beach', + 'uncharted', + 'underline', + 'undo', + 'undo-alt', + 'universal-access', + 'university', + 'unlink', + 'unlock', + 'unlock-alt', + 'unsplash', + 'upload', + 'user', + 'user-alt', + 'user-alt-slash', + 'user-astronaut', + 'user-check', + 'user-circle', + 'user-clock', + 'user-cog', + 'user-edit', + 'user-friends', + 'user-graduate', + 'user-injured', + 'user-lock', + 'user-md', + 'user-minus', + 'user-ninja', + 'user-nurse', + 'user-plus', + 'user-secret', + 'user-shield', + 'user-slash', + 'user-tag', + 'user-tie', + 'user-times', + 'users', + 'users-cog', + 'users-slash', + 'ussunnah', + 'utensil-spoon', + 'utensils', + 'vector-square', + 'venus', + 'venus-double', + 'venus-mars', + 'vest', + 'vest-patches', + 'vial', + 'vials', + 'video', + 'video-slash', + 'vihara', + 'virus', + 'virus-slash', + 'viruses', + 'voicemail', + 'volleyball-ball', + 'volume-down', + 'volume-mute', + 'volume-off', + 'volume-up', + 'vote-yea', + 'vr-cardboard', + 'walking', + 'wallet', + 'warehouse', + 'water', + 'wave-square', + 'weight', + 'weight-hanging', + 'wheelchair', + 'wifi', + 'wind', + 'window-close', + 'window-maximize', + 'window-minimize', + 'window-restore', + 'wine-bottle', + 'wine-glass', + 'wine-glass-alt', + 'won-sign', + 'wrench', + 'x-ray', + 'yen-sign', + 'yin-yang', +]; + +export default ALL_ICONS; diff --git a/apps/dashboard/app/javascript/stylesheets/application.scss b/apps/dashboard/app/javascript/stylesheets/application.scss index bb238716af..4dec7ecd02 100644 --- a/apps/dashboard/app/javascript/stylesheets/application.scss +++ b/apps/dashboard/app/javascript/stylesheets/application.scss @@ -145,9 +145,9 @@ small.form-text { @import "insufficient_quota"; @import "insufficient_balance"; @import "fa_shims"; -@import "fontawesome-iconpicker"; @import "breadcrumb"; @import "buttons"; @import "files"; @import "editor"; +@import "icon_picker"; @import "uppy/dist/uppy.min"; diff --git a/apps/dashboard/app/javascript/stylesheets/fontawesome-iconpicker.css b/apps/dashboard/app/javascript/stylesheets/fontawesome-iconpicker.css deleted file mode 100644 index c1c2961c95..0000000000 --- a/apps/dashboard/app/javascript/stylesheets/fontawesome-iconpicker.css +++ /dev/null @@ -1,312 +0,0 @@ -/*! - * Font Awesome Icon Picker - * https://farbelous.github.io/fontawesome-iconpicker/ - * - * Originally written by (c) 2016 Javi Aguilar - * Licensed under the MIT License - * https://github.com/farbelous/fontawesome-iconpicker/blob/master/LICENSE - * - */ -.iconpicker-popover.popover { - position: absolute; - top: 0; - left: 0; - display: none; - max-width: none; - padding: 1px; - text-align: left; - width: 234px; - background: #f7f7f7; - z-index: 9; -} -.iconpicker-popover.popover.top, -.iconpicker-popover.popover.topLeftCorner, -.iconpicker-popover.popover.topLeft, -.iconpicker-popover.popover.topRight, -.iconpicker-popover.popover.topRightCorner { - margin-top: -10px; -} -.iconpicker-popover.popover.right, -.iconpicker-popover.popover.rightTop, -.iconpicker-popover.popover.rightBottom { - margin-left: 10px; -} -.iconpicker-popover.popover.bottom, -.iconpicker-popover.popover.bottomRightCorner, -.iconpicker-popover.popover.bottomRight, -.iconpicker-popover.popover.bottomLeft, -.iconpicker-popover.popover.bottomLeftCorner { - margin-top: 10px; -} -.iconpicker-popover.popover.left, -.iconpicker-popover.popover.leftBottom, -.iconpicker-popover.popover.leftTop { - margin-left: -10px; -} -.iconpicker-popover.popover.inline { - margin: 0 0 12px 0; - position: relative; - display: inline-block; - opacity: 1; - top: auto; - left: auto; - bottom: auto; - right: auto; - max-width: 100%; - box-shadow: none; - z-index: auto; - vertical-align: top; -} -.iconpicker-popover.popover.inline > .arrow { - display: none; -} -.dropdown-menu .iconpicker-popover.inline { - margin: 0; - border: none; -} -.dropdown-menu.iconpicker-container { - padding: 0; -} -.iconpicker-popover.popover .popover-title { - padding: 12px; - font-size: 13px; - line-height: 15px; - border-bottom: 1px solid #ebebeb; - background-color: #f7f7f7; -} -.iconpicker-popover.popover .popover-title input[type=search].iconpicker-search { - margin: 0 0 2px 0; -} -.iconpicker-popover.popover .popover-title-text ~ input[type=search].iconpicker-search { - margin-top: 12px; -} -.iconpicker-popover.popover .popover-content { - padding: 0px; - text-align: center; -} -.iconpicker-popover .popover-footer { - float: none; - clear: both; - padding: 12px; - text-align: right; - margin: 0; - border-top: 1px solid #ebebeb; - background-color: #f7f7f7; -} -.iconpicker-popover .popover-footer:before, -.iconpicker-popover .popover-footer:after { - content: " "; - display: table; -} -.iconpicker-popover .popover-footer:after { - clear: both; -} -.iconpicker-popover .popover-footer .iconpicker-btn { - margin-left: 10px; -} -.iconpicker-popover .popover-footer input[type=search].iconpicker-search { - /*width:auto; - float:left;*/ - margin-bottom: 12px; -} -.iconpicker-popover.popover > .arrow, -.iconpicker-popover.popover > .arrow:after { - position: absolute; - display: block; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; -} -.iconpicker-popover.popover > .arrow { - border-width: 11px; -} -.iconpicker-popover.popover > .arrow:after { - border-width: 10px; - content: ""; -} -.iconpicker-popover.popover.top > .arrow, -.iconpicker-popover.popover.topLeft > .arrow, -.iconpicker-popover.popover.topRight > .arrow { - left: 50%; - margin-left: -11px; - border-bottom-width: 0; - border-top-color: #999999; - border-top-color: rgba(0, 0, 0, 0.25); - bottom: -11px; -} -.iconpicker-popover.popover.top > .arrow:after, -.iconpicker-popover.popover.topLeft > .arrow:after, -.iconpicker-popover.popover.topRight > .arrow:after { - content: " "; - bottom: 1px; - margin-left: -10px; - border-bottom-width: 0; - border-top-color: #ffffff; -} -.iconpicker-popover.popover.topLeft > .arrow { - left: 8px; - margin-left: 0; -} -.iconpicker-popover.popover.topRight > .arrow { - left: auto; - right: 8px; - margin-left: 0; -} -.iconpicker-popover.popover.right > .arrow, -.iconpicker-popover.popover.rightTop > .arrow, -.iconpicker-popover.popover.rightBottom > .arrow { - top: 50%; - left: -11px; - margin-top: -11px; - border-left-width: 0; - border-right-color: #999999; - border-right-color: rgba(0, 0, 0, 0.25); -} -.iconpicker-popover.popover.right > .arrow:after, -.iconpicker-popover.popover.rightTop > .arrow:after, -.iconpicker-popover.popover.rightBottom > .arrow:after { - content: " "; - left: 1px; - bottom: -10px; - border-left-width: 0; - border-right-color: #ffffff; -} -.iconpicker-popover.popover.rightTop > .arrow { - top: auto; - bottom: 8px; - margin-top: 0; -} -.iconpicker-popover.popover.rightBottom > .arrow { - top: 8px; - margin-top: 0; -} -.iconpicker-popover.popover.bottom > .arrow, -.iconpicker-popover.popover.bottomRight > .arrow, -.iconpicker-popover.popover.bottomLeft > .arrow { - left: 50%; - margin-left: -11px; - border-top-width: 0; - border-bottom-color: #999999; - border-bottom-color: rgba(0, 0, 0, 0.25); - top: -11px; -} -.iconpicker-popover.popover.bottom > .arrow:after, -.iconpicker-popover.popover.bottomRight > .arrow:after, -.iconpicker-popover.popover.bottomLeft > .arrow:after { - content: " "; - top: 1px; - margin-left: -10px; - border-top-width: 0; - border-bottom-color: #ffffff; -} -.iconpicker-popover.popover.bottomLeft > .arrow { - left: 8px; - margin-left: 0; -} -.iconpicker-popover.popover.bottomRight > .arrow { - left: auto; - right: 8px; - margin-left: 0; -} -.iconpicker-popover.popover.left > .arrow, -.iconpicker-popover.popover.leftBottom > .arrow, -.iconpicker-popover.popover.leftTop > .arrow { - top: 50%; - right: -11px; - margin-top: -11px; - border-right-width: 0; - border-left-color: #999999; - border-left-color: rgba(0, 0, 0, 0.25); -} -.iconpicker-popover.popover.left > .arrow:after, -.iconpicker-popover.popover.leftBottom > .arrow:after, -.iconpicker-popover.popover.leftTop > .arrow:after { - content: " "; - right: 1px; - border-right-width: 0; - border-left-color: #ffffff; - bottom: -10px; -} -.iconpicker-popover.popover.leftBottom > .arrow { - top: 8px; - margin-top: 0; -} -.iconpicker-popover.popover.leftTop > .arrow { - top: auto; - bottom: 8px; - margin-top: 0; -} -.iconpicker { - position: relative; - text-align: left; - text-shadow: none; - line-height: 0; - display: block; - margin: 0; - overflow: hidden; -} -.iconpicker * { - -webkit-box-sizing: content-box; - -moz-box-sizing: content-box; - box-sizing: content-box; - position: relative; -} -.iconpicker:before, -.iconpicker:after { - content: " "; - display: table; -} -.iconpicker:after { - clear: both; -} -.iconpicker .iconpicker-items { - position: relative; - clear: both; - float: none; - padding: 12px 0 0 12px; - background: #fff; - margin: 0; - overflow: hidden; - overflow-y: auto; - min-height: 49px; - max-height: 246px; -} -.iconpicker .iconpicker-items:before, -.iconpicker .iconpicker-items:after { - content: " "; - display: table; -} -.iconpicker .iconpicker-items:after { - clear: both; -} -.iconpicker .iconpicker-item { - float: left; - width: 14px; - height: 14px; - padding: 12px; - margin: 0 12px 12px 0; - text-align: center; - cursor: pointer; - border-radius: 3px; - font-size: 14px; - box-shadow: 0 0 0 1px #dddddd; - color: inherit; - /*&:nth-child(4n+4) { - margin-right: 0; - } - &:nth-last-child(-n+4) { - margin-bottom: 0; - }*/ -} -.iconpicker .iconpicker-item:hover:not(.iconpicker-selected) { - background-color: #eeeeee; -} -.iconpicker .iconpicker-item.iconpicker-selected { - box-shadow: none; - color: #fff; - background: #000; -} -.iconpicker-component { - cursor: pointer; -} diff --git a/apps/dashboard/app/javascript/stylesheets/icon_picker.scss b/apps/dashboard/app/javascript/stylesheets/icon_picker.scss new file mode 100644 index 0000000000..af82e9c1ea --- /dev/null +++ b/apps/dashboard/app/javascript/stylesheets/icon_picker.scss @@ -0,0 +1,31 @@ +// styles for the icon picker used in product edit pages + +#icon_search { + max-width: 98%; +} + +// this is a ul element +#icon_picker_list { + list-style-type: none; + padding: 0; + max-height: 18em; + overflow: scroll; + + // this is the main styling + li { + display: inline-flex; + + width: 3em; + height: 3em; + padding: .5em; + border-radius: 3px; + margin: .3em; + justify-content: center; + align-items: center; + + i { + box-sizing: inheret; + font-size: 2em; + } + } +} diff --git a/apps/dashboard/app/javascript/stylesheets/products.scss b/apps/dashboard/app/javascript/stylesheets/products.scss index 03093d5f86..aceab63e82 100644 --- a/apps/dashboard/app/javascript/stylesheets/products.scss +++ b/apps/dashboard/app/javascript/stylesheets/products.scss @@ -44,3 +44,4 @@ .container { max-width: 100%; } + diff --git a/apps/dashboard/app/views/products/_form_icon.html.erb b/apps/dashboard/app/views/products/_form_icon.html.erb index a1544c522e..491a7d3a9c 100644 --- a/apps/dashboard/app/views/products/_form_icon.html.erb +++ b/apps/dashboard/app/views/products/_form_icon.html.erb @@ -1,10 +1,4 @@ -<%= javascript_pack_tag 'fa/faIconPicker' %> - - +<%= javascript_pack_tag 'icon_picker' %> <% if product.app.image_icon? %>

    @@ -17,22 +11,28 @@ <% if product.app.manifest.icon =~ /^(fa[bsrl]?):\/\/(.*)/ %> <% icon = $2; style = $1 %>

    - <%= fa_icon(icon, fa_style: style, id: "product-icon") %> + <%= fa_icon(icon, fa_style: style, id: "product_icon") %>

    <% else %>

    - <%= fa_icon("cog", fa_style: "fas", id: "product-icon") %> + <%= fa_icon("cog", fa_style: "fas", id: "product_icon") %>

    There is no icon specified for this app. Default is fas://cog.
    <% end %> -
    - <%= f.text_field :icon, placeholder: "fas://cog", id: "uri-box" %> -

    -
    - +
    + <%= f.text_field :icon, placeholder: "fas://cog", id: "product_icon_select", + help: 'Use the list of icons below to choose from' %> + + +
    +
    +
      +
    +
    +
    To use a custom icon, add an icon.png file in this directory. diff --git a/apps/dashboard/config/webpack/environment.js b/apps/dashboard/config/webpack/environment.js index 753367340e..750dd5a5bc 100644 --- a/apps/dashboard/config/webpack/environment.js +++ b/apps/dashboard/config/webpack/environment.js @@ -14,17 +14,16 @@ const config = environment.toWebpackConfig(); const { merge } = require('webpack-merge'); const webpack = require('webpack'); -config.resolve.alias = { - fa: '/app/javascript/packs/fa', - batchConnect: '/apps/javascript/packs/batchConnect' -}; - const faPath = "~@fortawesome/fontawesome-free/webfonts/"; const sassOptions = { additionalData: `$fa-font-path: '${faPath}';`, sourceMap: true, }; +config.resolve.alias = { + icons: '/app/javascript/packs/icons', +}; + const SASSLoader = environment.loaders.get('sass').use.find(el => el.loader === 'sass-loader'); SASSLoader.options = merge(SASSLoader.options, sassOptions); diff --git a/apps/dashboard/test/application_system_test_case.rb b/apps/dashboard/test/application_system_test_case.rb index 145faa98c5..8a748d69c5 100644 --- a/apps/dashboard/test/application_system_test_case.rb +++ b/apps/dashboard/test/application_system_test_case.rb @@ -26,4 +26,8 @@ def find_min(ele) def find_value(ele, visible: false) find("##{bc_ele_id(ele)}", visible: visible).value end + + def find_css_class(id) + find("##{id}")['class'].to_s + end end diff --git a/apps/dashboard/test/system/products_dev_test.rb b/apps/dashboard/test/system/products_dev_test.rb index e201bc6072..39e4a3a287 100644 --- a/apps/dashboard/test/system/products_dev_test.rb +++ b/apps/dashboard/test/system/products_dev_test.rb @@ -103,4 +103,29 @@ def setup click_button('product_cli_modal_button') assert find('#product_cli_modal', visible: :hidden) end + + test 'picking a new icon' do + Dir.mktmpdir do |dir| + FileUtils.cp_r("test/fixtures/sys_with_gateway_apps/dashboard", dir) + DevRouter.stubs(:base_path).returns(Pathname.new(dir)) + + visit edit_product_path('dev', 'dashboard') + assert_equal 'fas fa-cog fa-fw app-icon', find_css_class('product_icon') + + find('#icon_dumpster_fire').click + + assert_equal 'fas fa-dumpster-fire fa-fw app-icon', find_css_class('product_icon') + click_on 'Save' + actual_manifest = File.read("#{dir}/dashboard/manifest.yml") + expected_manifest = <<~HEREDOC + --- + name: Ood Dashboard + description: stuff + icon: fas://dumpster-fire + HEREDOC + + assert_equal current_path, product_path('dev', 'dashboard') + assert_equal expected_manifest, actual_manifest + end + end end