@vertigis/react-ui 20.0.0 → 20.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NumberInput/NumberInput.js +4 -1
- package/icons/DuctConnections.d.ts +3 -0
- package/icons/DuctConnections.js +3 -0
- package/icons/EditTemplateSchemas.d.ts +3 -0
- package/icons/EditTemplateSchemas.js +3 -0
- package/icons/FieldConfiguration.d.ts +3 -0
- package/icons/FieldConfiguration.js +3 -0
- package/icons/PrintLgcy.d.ts +3 -0
- package/icons/PrintLgcy.js +3 -0
- package/icons/ValueSetConfiguration.d.ts +3 -0
- package/icons/ValueSetConfiguration.js +3 -0
- package/icons/index.d.ts +5 -0
- package/icons/index.js +5 -0
- package/icons/keywords.d.ts +15 -0
- package/icons/keywords.js +1 -1
- package/package.json +2 -2
|
@@ -94,7 +94,7 @@ const NumberInput = forwardRef(({ onChange, onBlur, value, defaultValue, max, mi
|
|
|
94
94
|
newValue = +newValue.toFixed(maxDecimals);
|
|
95
95
|
}
|
|
96
96
|
}
|
|
97
|
-
return newValue;
|
|
97
|
+
return newValue ?? NaN;
|
|
98
98
|
}, [max, min, maxDecimalPlaces]);
|
|
99
99
|
useEffect(() => {
|
|
100
100
|
if (value === undefined) {
|
|
@@ -136,6 +136,9 @@ const NumberInput = forwardRef(({ onChange, onBlur, value, defaultValue, max, mi
|
|
|
136
136
|
});
|
|
137
137
|
export default NumberInput;
|
|
138
138
|
function getDecimalPlaces(value) {
|
|
139
|
+
if (isNaN(value)) {
|
|
140
|
+
return 0;
|
|
141
|
+
}
|
|
139
142
|
const text = value.toString();
|
|
140
143
|
if (text.includes("e-")) {
|
|
141
144
|
const [, exponent] = text.split("e-");
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import createSvgIcon from "./utils/createSvgIcon.js";
|
|
3
|
+
export default createSvgIcon(_jsx("path", { d: "M18 8V3H6v5H0v8h6v5h12v-5h6V8zm-2 1h-1v1h1v4h-1v1h1v4H8v-4h1v-1H8v-4h1V9H8V5h8zm-3 1h-2V9h2zm0 5h-2v-1h2z" }), "DuctConnections");
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import createSvgIcon from "./utils/createSvgIcon.js";
|
|
3
|
+
export default createSvgIcon(_jsx("path", { d: "M21.17 7H20V3H10v-.17L7.17 0H0v11h10V5h8v2h-4v11h4v2h-8v-4.17L7.17 13H0v11h10v-2h10v-4h4V9.83zM8 9H2V2h4v2h2zm0 13H2v-7h4v2h2zm14-6h-6V9h4v2h2zm-5-2v1h4v-1zm0-2v1h4v-1zM3 20v1h4v-1zm0-2v1h4v-1zM3 7v1h4V7zm0-2v1h4V5z" }), "EditTemplateSchemas");
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import createSvgIcon from "./utils/createSvgIcon.js";
|
|
3
|
+
export default createSvgIcon(_jsx("path", { d: "M16.88 18.63c.04 0 .08 0 .12-.01v-.01c-.04.01-.08.01-.12.02m0 0c.04 0 .08 0 .12-.01v-.01c-.04.01-.08.01-.12.02M0 4v6h12.08l.93-.93.88.63.17-1.06H17V4zm15 4H2V6h13zm-4.61 13.59-1.19-1.2.27-.39H2v-2h6.76v-2H0v6h10.81zm6.49-2.96c.04 0 .08 0 .12-.01v-.01c-.04.01-.08.01-.12.02M0 12v2h8.76v-.06L9 13.9V12zM0 0v2h9V0zm22.76 17.64v-2l-1.69-.29c-.09-.3-.21-.59-.36-.86l1-1.39-1.42-1.41-1.39.99c-.27-.15-.56-.27-.86-.36l-.28-1.68h-2l-.28 1.68q-.465.135-.87.36l-1.39-.99-1.41 1.41.99 1.39c-.15.27-.26.56-.35.86l-1.69.29v2l1.69.28c.01.03.02.05.03.08.08.27.18.53.32.78L11.93 20l-.12.17 1.41 1.42 1.39-1q.405.225.87.36l.17 1.05.11.64h2l.28-1.69c.3-.09.59-.21.86-.36l1.39 1 1.42-1.42-1-1.39c.15-.27.27-.56.36-.86zm-5.76.98c-.04.01-.08.01-.12.01-.04.01-.08.01-.12.01a2 2 0 0 1-1.97-2.33c.01-.11.04-.21.08-.31.26-.79 1-1.36 1.89-1.36a2 2 0 0 1 2 2A2 2 0 0 1 17 18.62" }), "FieldConfiguration");
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import createSvgIcon from "./utils/createSvgIcon.js";
|
|
3
|
+
export default createSvgIcon(_jsx("path", { d: "M8 4H7V0h7.586L17 2.414V4h-1V3h-2V1H8zm0 6v4h8v-4h1v5H7v-5zm1 2h6v1H9zm9.667-7H5.333C4.6 5 4 5.562 4 6.25v5.625c0 .688.6 1.25 1.333 1.25H6V9h12v4.125h.667c.733 0 1.333-.562 1.333-1.25V6.25C20 5.562 19.4 5 18.667 5M17 7h-1V6h1zm-2 4H9v-1h6zM2 17H1v7h1zm0 7h3v-1H2zm9-.576A3.8 3.8 0 0 1 8.942 24q-1.316 0-2.129-.935C6 22.13 6 21.617 6 20.59q0-1.573.902-2.581.903-1.01 2.288-1.009 1.004 0 1.685.359v.879q-.746-.52-1.767-.52-1.034 0-1.694.784c-.66.784-.66 1.2-.66 2.031q0 1.285.613 2.02.613.734 1.664.734.72 0 1.248-.316v-1.899H8.933v-.718H11zm5.584.196q-.595.38-1.48.38-1.144 0-1.832-.891c-.688-.891-.688-1.373-.688-2.338q0-1.556.774-2.514c.774-.958 1.17-.959 1.963-.959q.762 0 1.264.267v.81a2.2 2.2 0 0 0-1.271-.389q-.923 0-1.497.746t-.574 1.994q0 1.185.537 1.889.535.703 1.407.703.807 0 1.398-.434zM23 17l-2.146 4.176v2.449h-.762v-2.43L18 17h.867l1.456 2.994q.027.056.159.407h.014q.046-.156.172-.407L22.193 17h.808Z" }), "PrintLgcy");
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import createSvgIcon from "./utils/createSvgIcon.js";
|
|
3
|
+
export default createSvgIcon(_jsx("path", { d: "M24 19v-2l-1.688-.281a4.5 4.5 0 0 0-.356-.864l.993-1.39-1.414-1.414-1.39.993a4.5 4.5 0 0 0-.864-.356L19 12h-2l-.281 1.688q-.454.135-.864.356l-1.39-.993-1.414 1.414.993 1.39a4.5 4.5 0 0 0-.356.864L12 17v2l1.688.281q.135.454.356.864l-.993 1.39 1.414 1.414 1.39-.993q.41.221.864.356L17 24h2l.281-1.688q.454-.134.864-.356l1.39.993 1.414-1.414-.993-1.39q.221-.41.356-.864zm-6 1a2 2 0 1 1-.001-3.999A2 2 0 0 1 18 20M11 5H7V1h4zm0 2H7v4h4zm3.248 3.438.787.562h.104l.167-1H17V7h-4v4h.686zM17 1h-4v4h4zM1 11h4V7H1zm0 6h4v-4H1zm9-1.694 1-.167v-.104l-.562-.787.562-.562V13H7v4h3zM1 5h4V1H1z" }), "ValueSetConfiguration");
|
package/icons/index.d.ts
CHANGED
|
@@ -233,9 +233,11 @@ export { default as DrawReshape } from "./DrawReshape.js";
|
|
|
233
233
|
export { default as DrawText } from "./DrawText.js";
|
|
234
234
|
export { default as DrawTriangle } from "./DrawTriangle.js";
|
|
235
235
|
export { default as DrawUnion } from "./DrawUnion.js";
|
|
236
|
+
export { default as DuctConnections } from "./DuctConnections.js";
|
|
236
237
|
export { default as Edit } from "./Edit.js";
|
|
237
238
|
export { default as EditDoc } from "./EditDoc.js";
|
|
238
239
|
export { default as EditLog } from "./EditLog.js";
|
|
240
|
+
export { default as EditTemplateSchemas } from "./EditTemplateSchemas.js";
|
|
239
241
|
export { default as EmergencyFacilitySearch } from "./EmergencyFacilitySearch.js";
|
|
240
242
|
export { default as Equation } from "./Equation.js";
|
|
241
243
|
export { default as Erase } from "./Erase.js";
|
|
@@ -259,6 +261,7 @@ export { default as Fiber } from "./Fiber.js";
|
|
|
259
261
|
export { default as FiberAdd } from "./FiberAdd.js";
|
|
260
262
|
export { default as FiberEdit } from "./FiberEdit.js";
|
|
261
263
|
export { default as FiberRemove } from "./FiberRemove.js";
|
|
264
|
+
export { default as FieldConfiguration } from "./FieldConfiguration.js";
|
|
262
265
|
export { default as Fields } from "./Fields.js";
|
|
263
266
|
export { default as FileAdd } from "./FileAdd.js";
|
|
264
267
|
export { default as FileClear } from "./FileClear.js";
|
|
@@ -513,6 +516,7 @@ export { default as PotholePrint } from "./PotholePrint.js";
|
|
|
513
516
|
export { default as PotholeRepair } from "./PotholeRepair.js";
|
|
514
517
|
export { default as PotholeRepairMultiple } from "./PotholeRepairMultiple.js";
|
|
515
518
|
export { default as Print } from "./Print.js";
|
|
519
|
+
export { default as PrintLgcy } from "./PrintLgcy.js";
|
|
516
520
|
export { default as PrintPkg } from "./PrintPkg.js";
|
|
517
521
|
export { default as PrintPro } from "./PrintPro.js";
|
|
518
522
|
export { default as Privacy } from "./Privacy.js";
|
|
@@ -741,6 +745,7 @@ export { default as UtilityCutAdd } from "./UtilityCutAdd.js";
|
|
|
741
745
|
export { default as UtilityCutDelete } from "./UtilityCutDelete.js";
|
|
742
746
|
export { default as UtilityCutEdit } from "./UtilityCutEdit.js";
|
|
743
747
|
export { default as UtilityCutMove } from "./UtilityCutMove.js";
|
|
748
|
+
export { default as ValueSetConfiguration } from "./ValueSetConfiguration.js";
|
|
744
749
|
export { default as ValveInspected } from "./ValveInspected.js";
|
|
745
750
|
export { default as VendorsManage } from "./VendorsManage.js";
|
|
746
751
|
export { default as ViewGrid } from "./ViewGrid.js";
|
package/icons/index.js
CHANGED
|
@@ -233,9 +233,11 @@ export { default as DrawReshape } from "./DrawReshape.js";
|
|
|
233
233
|
export { default as DrawText } from "./DrawText.js";
|
|
234
234
|
export { default as DrawTriangle } from "./DrawTriangle.js";
|
|
235
235
|
export { default as DrawUnion } from "./DrawUnion.js";
|
|
236
|
+
export { default as DuctConnections } from "./DuctConnections.js";
|
|
236
237
|
export { default as Edit } from "./Edit.js";
|
|
237
238
|
export { default as EditDoc } from "./EditDoc.js";
|
|
238
239
|
export { default as EditLog } from "./EditLog.js";
|
|
240
|
+
export { default as EditTemplateSchemas } from "./EditTemplateSchemas.js";
|
|
239
241
|
export { default as EmergencyFacilitySearch } from "./EmergencyFacilitySearch.js";
|
|
240
242
|
export { default as Equation } from "./Equation.js";
|
|
241
243
|
export { default as Erase } from "./Erase.js";
|
|
@@ -259,6 +261,7 @@ export { default as Fiber } from "./Fiber.js";
|
|
|
259
261
|
export { default as FiberAdd } from "./FiberAdd.js";
|
|
260
262
|
export { default as FiberEdit } from "./FiberEdit.js";
|
|
261
263
|
export { default as FiberRemove } from "./FiberRemove.js";
|
|
264
|
+
export { default as FieldConfiguration } from "./FieldConfiguration.js";
|
|
262
265
|
export { default as Fields } from "./Fields.js";
|
|
263
266
|
export { default as FileAdd } from "./FileAdd.js";
|
|
264
267
|
export { default as FileClear } from "./FileClear.js";
|
|
@@ -513,6 +516,7 @@ export { default as PotholePrint } from "./PotholePrint.js";
|
|
|
513
516
|
export { default as PotholeRepair } from "./PotholeRepair.js";
|
|
514
517
|
export { default as PotholeRepairMultiple } from "./PotholeRepairMultiple.js";
|
|
515
518
|
export { default as Print } from "./Print.js";
|
|
519
|
+
export { default as PrintLgcy } from "./PrintLgcy.js";
|
|
516
520
|
export { default as PrintPkg } from "./PrintPkg.js";
|
|
517
521
|
export { default as PrintPro } from "./PrintPro.js";
|
|
518
522
|
export { default as Privacy } from "./Privacy.js";
|
|
@@ -741,6 +745,7 @@ export { default as UtilityCutAdd } from "./UtilityCutAdd.js";
|
|
|
741
745
|
export { default as UtilityCutDelete } from "./UtilityCutDelete.js";
|
|
742
746
|
export { default as UtilityCutEdit } from "./UtilityCutEdit.js";
|
|
743
747
|
export { default as UtilityCutMove } from "./UtilityCutMove.js";
|
|
748
|
+
export { default as ValueSetConfiguration } from "./ValueSetConfiguration.js";
|
|
744
749
|
export { default as ValveInspected } from "./ValveInspected.js";
|
|
745
750
|
export { default as VendorsManage } from "./VendorsManage.js";
|
|
746
751
|
export { default as ViewGrid } from "./ViewGrid.js";
|
package/icons/keywords.d.ts
CHANGED
|
@@ -704,6 +704,9 @@ declare const keywords: {
|
|
|
704
704
|
DrawUnion: {
|
|
705
705
|
keywords: string[];
|
|
706
706
|
};
|
|
707
|
+
DuctConnections: {
|
|
708
|
+
keywords: string[];
|
|
709
|
+
};
|
|
707
710
|
Edit: {
|
|
708
711
|
keywords: string[];
|
|
709
712
|
};
|
|
@@ -713,6 +716,9 @@ declare const keywords: {
|
|
|
713
716
|
EditLog: {
|
|
714
717
|
keywords: string[];
|
|
715
718
|
};
|
|
719
|
+
EditTemplateSchemas: {
|
|
720
|
+
keywords: string[];
|
|
721
|
+
};
|
|
716
722
|
EmergencyFacilitySearch: {
|
|
717
723
|
keywords: string[];
|
|
718
724
|
};
|
|
@@ -782,6 +788,9 @@ declare const keywords: {
|
|
|
782
788
|
FiberRemove: {
|
|
783
789
|
keywords: string[];
|
|
784
790
|
};
|
|
791
|
+
FieldConfiguration: {
|
|
792
|
+
keywords: string[];
|
|
793
|
+
};
|
|
785
794
|
Fields: {
|
|
786
795
|
keywords: string[];
|
|
787
796
|
};
|
|
@@ -1544,6 +1553,9 @@ declare const keywords: {
|
|
|
1544
1553
|
Print: {
|
|
1545
1554
|
keywords: string[];
|
|
1546
1555
|
};
|
|
1556
|
+
PrintLgcy: {
|
|
1557
|
+
keywords: string[];
|
|
1558
|
+
};
|
|
1547
1559
|
PrintPkg: {
|
|
1548
1560
|
keywords: string[];
|
|
1549
1561
|
};
|
|
@@ -2228,6 +2240,9 @@ declare const keywords: {
|
|
|
2228
2240
|
UtilityCutMove: {
|
|
2229
2241
|
keywords: string[];
|
|
2230
2242
|
};
|
|
2243
|
+
ValueSetConfiguration: {
|
|
2244
|
+
keywords: string[];
|
|
2245
|
+
};
|
|
2231
2246
|
ValveInspected: {
|
|
2232
2247
|
keywords: string[];
|
|
2233
2248
|
};
|
package/icons/keywords.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const keywords = { "Accessibility": { "keywords": ["wheelchair", "wcag", "accessible", "aria", "a11y"] }, "AccuracyOff": { "keywords": ["pointer", "disabled", "strikethrough", "geolocation", "location"] }, "ActionMenu": { "keywords": ["3", "three", "dot", "vertical", "more"] }, "Activate": { "keywords": ["power", "button", "switch", "on"] }, "ActivitiesFind": { "keywords": ["search", "magnifying glass", "activity", "dashed rectangle"] }, "Add": { "keywords": ["plus", "circle"] }, "AddIntersectingVertex": { "keywords": ["increase", "plus", "squares"] }, "AddSquare": { "keywords": ["add", "cross", "expand", "show", "rounded square"] }, "AddToDrawLayer": { "keywords": ["shape", "area", "multiple", "polygons"] }, "Address": { "keywords": ["pin", "contacts", "book", "map pin"] }, "AddressSearch": { "keywords": ["envelope", "magnifying", "loupe", "mail"] }, "AdjustHeight": { "keywords": ["vertical", "measure"] }, "AfterActionPlayback": { "keywords": ["map", "step", "play", "chat", "restart", "reset", "redo"] }, "Alarm": { "keywords": ["clock", "reminder", "timer"] }, "AlarmAdd": { "keywords": ["clock", "reminder", "timer", "plus"] }, "AlarmClear": { "keywords": ["clock", "reminder", "timer", "x", "delete"] }, "AlarmDisabled": { "keywords": ["clock", "reminder", "off", "timer", "strikethrough"] }, "AlarmInfo": { "keywords": ["clock", "reminder", "information", "timer"] }, "AlarmNone": { "keywords": ["bell", "reminder", "disabled"] }, "AlarmNotifications": { "keywords": ["bell", "reminder"] }, "AlignToEdge": { "keywords": ["move", "snap", "right arrow"] }, "ArcgisSave": { "keywords": ["disk", "esri"] }, "ArcgisShortcut": { "keywords": ["esri", "share", "right arrow"] }, "Archive": { "keywords": ["box", "banker"] }, "Area": { "keywords": ["shaded", "points", "filled", "polygon"] }, "AreaRetired": { "keywords": ["disabled", "polygon", "filled", "strikethrough"] }, "Arrow": { "keywords": ["left", "pointing", "direction"] }, "ArrowBack": { "keywords": ["left", "pointing", "direction"] }, "ArrowBottomLeft": { "keywords": ["down", "angled", "pointing", "direction"] }, "ArrowBottomRight": { "keywords": ["down", "angled", "pointing", "direction"] }, "ArrowBoxDown": { "keywords": ["decrease", "pointing", "direction"] }, "ArrowBoxUp": { "keywords": ["increase", "pointing", "direction"] }, "ArrowDown": { "keywords": ["bottom", "pointing", "direction"] }, "ArrowLeft": { "keywords": ["pointing", "direction"] }, "ArrowRight": { "keywords": ["pointing", "direction"] }, "ArrowTopLeft": { "keywords": ["up", "angled", "pointing", "direction"] }, "ArrowTopRight": { "keywords": ["up", "angled", "pointing", "direction"] }, "ArrowUp": { "keywords": ["top", "pointing", "direction"] }, "AssignSurveyorGrid": { "keywords": ["survey", "theodolite", "optical level"] }, "AssignSurveyorWorkOrder": { "keywords": ["survey", "theodolite", "optical level", "wrench", "tool"] }, "AssignVendorMapGrid": { "keywords": ["worker", "construction", "hard hat", "hardhat"] }, "AssignVendorWorkOrder": { "keywords": ["worker", "wrench", "tool", "construction", "hard hat", "hardhat"] }, "Attach": { "keywords": ["paper clip"] }, "AttachFilePhoto": { "keywords": ["paper clip", "camera", "document", "paper"] }, "AttachManage": { "keywords": ["paper clip", "cog", "gear", "settings"] }, "AttachMultipleFiles": { "keywords": ["paper clip", "pages", "combine"] }, "Authentication": { "keywords": ["user", "password", "account", "portrait", "avatar", "profile"] }, "Band": { "keywords": ["segment", "range", "frequency", "grid", "scale", "measure"] }, "BaseballField": { "keywords": ["diamond", "play", "sport", "game"] }, "Basemap": { "keywords": ["map", "marker", "pin", "map pin", "parcels"] }, "Bearing": { "keywords": ["direction", "compass"] }, "Binary": { "keywords": ["code", "file type", "mime type", "brackets"] }, "BladingLane": { "keywords": ["road", "plow", "plowing"] }, "BladingNeighborhood": { "keywords": ["houses", "neighborhood", "neighbourhood", "plow", "plowing"] }, "BladingReport": { "keywords": ["clipboard", "plow", "plowing"] }, "BladingTotal": { "keywords": ["km", "kilometers", "plow", "plowing"] }, "Bluetooth": { "keywords": ["wireless", "connection", "device", "connectivity"] }, "BoardmapSearch": { "keywords": ["board", "loupe", "magnifying", "dot grid"] }, "Book": { "keywords": ["bookmark", "closed"] }, "Bookmark": { "keywords": ["open", "book", "reading"] }, "BoxFalse": { "keywords": ["no", "deny", "denied", "x", "cross"] }, "BoxTrue": { "keywords": ["check mark", "success", "apply"] }, "Branding": { "keywords": ["paint brush", "palette", "colours", "colors", "theme", "style"] }, "BroadbandCoverage": { "keywords": ["network", "map marker", "pin", "map pin"] }, "BroadbandExplore": { "keywords": ["network", "locate", "compass"] }, "BroadbandFind": { "keywords": ["network", "magnifying", "loupe", "search", "find", "magnifying glass"] }, "Buffer": { "keywords": ["space", "area", "radius"] }, "BufferIdentify": { "keywords": ["space", "area", "information", "info", "polygon"] }, "BufferMeasure": { "keywords": ["space", "area", "ruler", "polygon"] }, "BufferOff": { "keywords": ["space", "area", "disabled", "cross", "x", "radius"] }, "BufferOn": { "keywords": ["space", "area", "check mark", "radius"] }, "BufferShape": { "keywords": ["space", "area", "polygon"] }, "Build": { "keywords": ["arrow", "up", "box"] }, "Button": { "keywords": ["cursor", "pointer", "press", "click"] }, "Cabinet": { "keywords": ["storage", "server"] }, "CabinetAdd": { "keywords": ["storage", "server", "add", "plus"] }, "CabinetEdit": { "keywords": ["storage", "server", "pencil", "edit", "editing"] }, "CabinetRemove": { "keywords": ["storage", "server", "delete", "remove", "minus"] }, "Calendar": { "keywords": ["date", "day", "month", "year"] }, "Callout": { "keywords": ["speech bubble", "text message", "chat"] }, "CalloutAdd": { "keywords": ["plus", "coordinates", "speech bubble"] }, "CalloutClear": { "keywords": ["remove", "coordinates", "speech bubble"] }, "CameraSwitch": { "keywords": ["flip", "photo", "video"] }, "Cancel": { "keywords": ["circle", "line", "strikethrough", "strike", "no"] }, "Cards": { "keywords": ["pages", "text", "list", "stacked"] }, "CatchBasinId": { "keywords": ["drain", "grill"] }, "CenterMap": { "keywords": ["target", "reticle", "aim"] }, "Certificate": { "keywords": ["diploma", "degree", "badge", "ribbon"] }, "CertificateAdd": { "keywords": ["diploma", "plus", "degree"] }, "CertificateEdit": { "keywords": ["diploma", "pencil", "degree", "change", "manage"] }, "CertificateMultiple": { "keywords": ["diploma", "degree"] }, "CertificateRemove": { "keywords": ["diploma", "minus", "clear", "degree", "delete"] }, "CertificateUser": { "keywords": ["diploma", "person", "avatar", "degree"] }, "ChangeTheme": { "keywords": ["layout", "patterns", "styles", "swatches"] }, "ChartArea": { "keywords": ["axis", "x y"] }, "ChartAreaRange": { "keywords": ["axis", "range", "x y", "line chart"] }, "ChartBlank": { "keywords": ["axis", "x y", "empty", "grid"] }, "ChartLine": { "keywords": ["axis", "x y", "growth"] }, "ChartLinear": { "keywords": ["axis", "x y"] }, "ChartScatter": { "keywords": ["axis", "x y", "points"] }, "Charting": { "keywords": ["axis", "x y", "bar chart"] }, "ChartingEdit": { "keywords": ["axis", "x y", "pencil", "modify"] }, "ChartingHorizontal": { "keywords": ["axis", "x y", "bar chart"] }, "Check": { "keywords": ["check mark", "success", "apply", "good"] }, "ChevronBottomLeft": { "keywords": ["diagonal", "direction", "corner"] }, "ChevronBottomRight": { "keywords": ["diagonal", "direction", "corner"] }, "ChevronDown": { "keywords": ["direction"] }, "ChevronLeft": { "keywords": ["direction"] }, "ChevronRight": { "keywords": ["direction"] }, "ChevronTopLeft": { "keywords": ["direction", "diagonal"] }, "ChevronTopRight": { "keywords": ["direction", "diagonal"] }, "ChevronUp": { "keywords": ["direction"] }, "Clear": { "keywords": ["remove", "close", "x", "circle", "delete"] }, "ClipboardList": { "keywords": ["to-do", "document"] }, "ClipboardLocation": { "keywords": ["marker", "map pin"] }, "ClipboardTable": { "keywords": ["grid"] }, "Clock": { "keywords": ["time", "alarm", "reminder"] }, "Close": { "keywords": ["x", "clear", "remove"] }, "Cloud": { "keywords": ["solid", "filled", "weather", "sky"] }, "CloudDownload": { "keywords": ["down arrow"] }, "CloudOutline": { "keywords": ["online", "weather", "sky"] }, "CloudUpload": { "keywords": ["up arrow", "load"] }, "Clustering": { "keywords": ["grouping"] }, "ClusteringDropdown": { "keywords": ["down arrow", "grouping", "menu"] }, "Cog": { "keywords": ["gear", "settings", "config", "configuration", "configure"] }, "Collaboration": { "keywords": ["teamwork", "chat", "text message", "parcels"] }, "Color": { "keywords": ["bucket", "paint", "drop"] }, "CommandMissing": { "keywords": ["question mark", "code", "prompt"] }, "Community": { "keywords": ["town hall", "city hall"] }, "CommunityFind": { "keywords": ["town hall", "magnifying", "loupe", "city hall", "search", "magnifying glass"] }, "Compass": { "keywords": ["direction", "north", "west", "east", "south", "pointing"] }, "CompletionReportMapGrid": { "keywords": ["check mark", "squares"] }, "CompletionReportWorkOrder": { "keywords": ["wrench", "check mark", "tool"] }, "Conduit": { "keywords": ["pipe", "cables", "fiber", "optical"] }, "ConduitAdd": { "keywords": ["pipe", "cables", "fiber", "optical", "plus", "add"] }, "ConduitEdit": { "keywords": ["pipe", "cables", "fiber", "optical", "edit", "change", "pencil"] }, "ConduitRemove": { "keywords": ["pipe", "cables", "fiber", "optical", "remove", "delete"] }, "ConfigItemDefault": { "keywords": ["cog", "gear", "settings", "dashed", "box"] }, "Connection": { "keywords": ["network", "computers", "connected"] }, "ConnectionOff": { "keywords": ["computers", "network", "x", "broken", "disconnected"] }, "ConnectionOn": { "keywords": ["computers", "network", "check mark", "connected"] }, "ConsoleMoreInfo": { "keywords": ["prompt", "information", "command line"] }, "ConstructionReport": { "keywords": ["worker", "clipboard", "list", "hard hat"] }, "Contact": { "keywords": ["email", "e-mail", "envelope", "mail"] }, "Coordinates": { "keywords": ["xy", "globe", "lat long", "meridian"] }, "CoordinatesAdd": { "keywords": ["xy", "plus", "speech bubble"] }, "CoordinatesAlbers": { "keywords": ["xy", "radial grid", "meridian"] }, "CoordinatesHide": { "keywords": ["xy", "circle", "strikethrough", "tooltip"] }, "CoordinatesLatLong": { "keywords": ["xy", "tooltip", "speech bubble"] }, "CoordinatesMapTip": { "keywords": ["xy", "tooltip", "speech bubble"] }, "CoordinatesShow": { "keywords": ["xy", "tooltip", "check mark"] }, "CoordinatesUtm": { "keywords": ["xy", "lat long", "meridian"] }, "Copy": { "keywords": ["duplicate", "pages", "documents", "paper", "multiply"] }, "CopyToCollab": { "keywords": ["add", "down arrow", "plus"] }, "CrashAttenuatorAdd": { "keywords": ["plus", "warning", "road sign"] }, "CreateJob": { "keywords": ["plus", "warning", "add", "page", "document", "paper"] }, "Csv": { "keywords": ["comma separated values", "page", "document", "paper"] }, "CsvAdd": { "keywords": ["comma separated values", "page", "plus", "document", "paper"] }, "CsvExport": { "keywords": ["comma separated values", "page", "document", "paper", "share"] }, "Cut": { "keywords": ["scissors"] }, "Dashboard": { "keywords": ["speedometer", "tachometer", "gauge"] }, "DashboardDropdown": { "keywords": ["speedometer", "tachometer", "gauge", "down arrow"] }, "DataEdit": { "keywords": ["pencil", "list", "manage"] }, "DatabaseTest": { "keywords": ["db", "check mark", "data", "validate"] }, "DatasourceAdd": { "keywords": ["page", "plus", "chart", "line chart", "document", "paper"] }, "DateCancel": { "keywords": ["calendar", "x", "close"] }, "DateFilter": { "keywords": ["calendar", "funnel"] }, "Debug": { "keywords": ["insect", "bug"] }, "Decimal": { "keywords": ["numbers", "brackets"] }, "DefaultCommand": { "keywords": ["prompt"] }, "Density": { "keywords": ["compress", "spacing", "padding", "margin"] }, "Details": { "keywords": ["list", "menu", "bullets", "bulleted list"] }, "DetailsDropdown": { "keywords": ["list", "down arrow", "menu"] }, "DeviceActive": { "keywords": ["mobile", "phone", "check mark"] }, "DeviceComputer": { "keywords": ["screen", "monitor", "desktop", "imac"] }, "DeviceLaptop": { "keywords": ["notebook", "computer", "macbook"] }, "DevicePhone": { "keywords": ["mobile", "android", "iphone"] }, "DeviceRotate": { "keywords": ["mobile", "phone", "arrows", "landscape", "portrait"] }, "DeviceTablet": { "keywords": ["mobile", "ipad", "android"] }, "Dialog": { "keywords": ["alert", "popup", "modal"] }, "Diameter": { "keywords": ["circle", "arrow"] }, "DirectionsAlternate": { "keywords": ["arrow", "split", "detour", "divert"] }, "DirectionsArrive": { "keywords": ["finish", "checkered flag", "end", "destination"] }, "DirectionsBearLeft": { "keywords": ["arrow", "bend", "veer", "turn"] }, "DirectionsBearRight": { "keywords": ["arrow", "bend", "veer", "turn"] }, "DirectionsDepart": { "keywords": ["arrow", "start", "begin"] }, "DirectionsExit": { "keywords": ["leave", "arrow", "diverge", "turn"] }, "DirectionsForkCenter": { "keywords": ["arrow", "split", "middle", "straight"] }, "DirectionsForkLeft": { "keywords": ["arrow", "split", "turn"] }, "DirectionsForkRight": { "keywords": ["arrow", "split", "turn"] }, "DirectionsMerge": { "keywords": ["arrow", "join"] }, "DirectionsRoundabout": { "keywords": ["arrows", "circle", "cycle"] }, "DirectionsSharpLeft": { "keywords": ["arrow", "turn"] }, "DirectionsSharpRight": { "keywords": ["arrow", "turn"] }, "DirectionsStraight": { "keywords": ["arrow", "up"] }, "DirectionsTurnLeft": { "keywords": ["arrow"] }, "DirectionsTurnLeftLeft": { "keywords": ["arrow", "180"] }, "DirectionsTurnLeftRight": { "keywords": ["arrow"] }, "DirectionsTurnRight": { "keywords": ["arrow"] }, "DirectionsTurnRightLeft": { "keywords": ["arrow"] }, "DirectionsTurnRightRight": { "keywords": ["arrow", "180"] }, "DirectionsUTurn": { "keywords": ["arrow", "180", "turnaround", "return"] }, "DirectionsUnknown": { "keywords": ["marker", "pin", "question mark", "map pin"] }, "Disclaimer": { "keywords": ["warning", "alert", "exclamation", "triangle", "error", "outline"] }, "DoubleArrowBottomLeft": { "keywords": ["chevron", "angled", "direction"] }, "DoubleArrowBottomRight": { "keywords": ["chevron", "angled", "direction"] }, "DoubleArrowDown": { "keywords": ["chevron", "direction", "expand", "collapse"] }, "DoubleArrowLeft": { "keywords": ["chevron", "direction", "expand", "collapse", "rewind"] }, "DoubleArrowRight": { "keywords": ["chevron", "direction", "expand", "collapse", "fast forward"] }, "DoubleArrowTopLeft": { "keywords": ["chevron", "angled", "direction"] }, "DoubleArrowTopRight": { "keywords": ["chevron", "angled", "direction"] }, "DoubleArrowUp": { "keywords": ["chevron", "direction", "expand", "collapse"] }, "Download": { "keywords": ["down arrow", "save"] }, "Drag": { "keywords": ["drag", "grip", "dots", "grid"] }, "Draw": { "keywords": ["pencil", "polygon", "markup", "sketch", "edit", "shape"] }, "DrawArrow": { "keywords": ["arrow", "outline", "shape", "markup", "sketch"] }, "DrawCircle": { "keywords": ["outline", "shape", "polygon", "radial", "radius", "markup", "sketch"] }, "DrawClearAll": { "keywords": ["close", "circle", "polygon", "markup", "sketch"] }, "DrawClearAllMaps": { "keywords": ["close", "circle", "square", "polygon", "delete", "reset", "stacked", "markup", "sketch"] }, "DrawEdit": { "keywords": ["pencil", "marquee", "dotted", "markup", "sketch"] }, "DrawEllipse": { "keywords": ["outline", "markup", "sketch", "round", "shape"] }, "DrawExtent": { "keywords": ["arrows", "markup", "sketch", "zoom out"] }, "DrawExtract": { "keywords": ["polygon", "down arrow", "markup", "sketch", "download", "save"] }, "DrawFreehand": { "keywords": ["squiggle", "line", "markup", "sketch"] }, "DrawLine": { "keywords": ["line", "markup", "sketch", "polyline"] }, "DrawMultipoint": { "keywords": ["circles", "markup", "sketch", "dots", "multiple", "vertex", "vertices"] }, "DrawPoint": { "keywords": ["circle", "dot", "spot", "markup", "sketch", "vertex"] }, "DrawPolygon": { "keywords": ["shaded", "points", "markup", "sketch"] }, "DrawPolygonFreehand": { "keywords": ["freeform", "markup", "sketch", "shape"] }, "DrawPolyline": { "keywords": ["line", "points", "markup", "sketch", "vertex", "vertices"] }, "DrawRectangle": { "keywords": ["outline", "markup", "sketch", "shape"] }, "DrawReshape": { "keywords": ["change", "markup", "sketch", "shape", "shapes"] }, "DrawText": { "keywords": ["letter", "markup", "sketch", "T", "note", "notes"] }, "DrawTriangle": { "keywords": ["outline", "markup", "sketch", "shape"] }, "DrawUnion": { "keywords": ["squares", "markup", "sketch", "merge", "combine"] }, "Edit": { "keywords": ["pencil", "change"] }, "EditDoc": { "keywords": ["pencil", "page", "change", "document", "paper"] }, "EditLog": { "keywords": ["pencil", "page", "change", "document", "paper"] }, "EmergencyFacilitySearch": { "keywords": ["building", "magnifying", "loupe", "hospital", "first aid", "medical", "medicine"] }, "Equation": { "keywords": ["math", "maths", "variable", "square root", "formula"] }, "Erase": { "keywords": ["clear", "remove", "delete"] }, "Error": { "keywords": ["warning", "solid", "triangle", "exclamation"] }, "Export": { "keywords": ["page", "arrow left", "document", "paper", "share"] }, "ExtentBasic": { "keywords": ["square", "dotted", "area", "dashed"] }, "ExtentScale": { "keywords": ["resize", "grow", "dashed", "arrow", "square"] }, "FeatureAdd": { "keywords": ["marker", "pin", "plus", "map pin"] }, "FeatureAddHydrant": { "keywords": ["plus", "fire"] }, "FeatureAddLandUse": { "keywords": ["map", "plus", "parcels"] }, "FeatureAddServiceRequest": { "keywords": ["phone", "wrench", "plus", "tool"] }, "FeatureAddTree": { "keywords": ["plus", "forest", "park", "green space", "greenery"] }, "FeatureAddWell": { "keywords": ["oil", "plus"] }, "FeatureCreate": { "keywords": ["plus", "add"] }, "FeatureDelete": { "keywords": ["marker", "trash", "remove", "map pin"] }, "FeatureEdit": { "keywords": ["marker", "pin", "pencil", "map pin"] }, "FeatureLocation": { "keywords": ["pin", "marker", "map pin"] }, "FeatureSummary": { "keywords": ["list", "card"] }, "Feedback": { "keywords": ["chat", "thumb", "speech bubble", "thumbs up", "comment"] }, "Fiber": { "keywords": ["optical", "telco", "telecommunications", "internet", "network", "connect"] }, "FiberAdd": { "keywords": ["optical", "telco", "telecommunications", "internet", "network", "connect", "plus", "increase"] }, "FiberEdit": { "keywords": ["optical", "telco", "telecommunications", "internet", "network", "connect", "change", "pencil", "modify"] }, "FiberRemove": { "keywords": ["optical", "telco", "telecommunications", "internet", "network", "connect", "delete", "decrease"] }, "Fields": { "keywords": ["inputs", "text input", "rectangles", "stacked"] }, "FileAdd": { "keywords": ["page", "plus", "document", "paper"] }, "FileClear": { "keywords": ["page", "x", "remove", "document", "paper", "delete"] }, "FileMulti": { "keywords": ["page", "overlap", "stacked", "documents"] }, "Filter": { "keywords": ["funnel"] }, "FilterEffects": { "keywords": ["magic wand", "funnel", "sparkles"] }, "FilterEffectsClear": { "keywords": ["magic wand", "x", "remove", "sparkles", "delete"] }, "FilterEffectsClearAll": { "keywords": ["magic wands", "x", "remove", "sparkles", "delete", "multiple"] }, "FilterError": { "keywords": ["funnel", "exclamation"] }, "FilterOff": { "keywords": ["funnel", "strikethrough"] }, "FilterOffAlt": { "keywords": ["funnel", "outline"] }, "FilterOn": { "keywords": ["funnel", "solid", "filled"] }, "FilterReset": { "keywords": ["funnel", "solid", "filled", "arrow"] }, "FixtureSearch": { "keywords": ["light", "magnifying", "loupe", "find", "magnify", "street light", "street lamp"] }, "Flash": { "keywords": ["lightning", "electricity", "bolt"] }, "Flyout": { "keywords": ["expand", "arrow", "stacked", "appear"] }, "Folder": { "keywords": ["open", "file", "solid", "filled"] }, "FolderAdd": { "keywords": ["plus", "open", "file new", "save as"] }, "FolderOutline": { "keywords": ["outline", "file", "open"] }, "Form": { "keywords": ["letter", "page", "text", "writing", "document", "attributes", "form"] }, "FormEdit": { "keywords": ["letter", "page", "text", "writing", "document", "attributes", "form", "pencil"] }, "Fraction": { "keywords": ["math", "xy"] }, "Gas": { "keywords": ["utility", "flame", "fire", "heat"] }, "Geocode": { "keywords": ["marker", "pin", "map pin", "location"] }, "GeocodeBatch": { "keywords": ["multiple", "marker", "pin", "map pins", "location"] }, "Geolocate": { "keywords": ["target", "reticle", "location", "find me", "locate", "geolocation"] }, "GeolocateActive": { "keywords": ["reticle", "arrow", "point", "target", "location", "find me", "locate", "geolocation"] }, "GeolocateCenter": { "keywords": ["reticle", "point", "target", "location", "locate", "geolocation"] }, "GeolocateCenterLocked": { "keywords": ["reticle", "brackets", "target", "locate", "location", "geolocation"] }, "GeolocateCentered": { "keywords": ["reticle", "point", "target", "location", "locate", "geolocation"] }, "GeolocateDisabled": { "keywords": ["reticle", "slash", "strikethrough", "target", "location", "locate", "geolocation"] }, "GeolocateFollow": { "keywords": ["reticle", "target", "locate", "location", "geolocation"] }, "GeolocateFollowActive": { "keywords": ["reticle", "arrow", "target", "locate", "location", "geolocation"] }, "GeolocateOrientation": { "keywords": ["reticle", "compass", "target", "locate", "location", "geolocation", "brackets"] }, "GeolocateReCenter": { "keywords": ["reticle", "target", "locate", "location", "geolocation"] }, "GeolocateStop": { "keywords": ["reticle", "circle", "slash", "target", "locate", "location", "geolocation", "cancel"] }, "GeolocateTrack": { "keywords": ["reticle", "radar", "sonar", "locate", "location", "geolocation", "find"] }, "GeolocateTrackActive": { "keywords": ["reticle", "radar", "arrow", "locate", "location", "geolocation", "find"] }, "Geometry": { "keywords": ["compass", "architect", "drawing", "draft"] }, "Georss": { "keywords": ["globe", "rss", "feed"] }, "GlobalId": { "keywords": ["document", "globe", "text"] }, "Globe": { "keywords": ["world", "earth", "planet"] }, "GolfCourse": { "keywords": ["ball", "flag", "hole", "putt"] }, "Group": { "keywords": ["squares", "overlap", "stacked"] }, "GuId": { "keywords": ["eye", "vision", "text", "document", "page"] }, "Hamburger": { "keywords": ["menu", "3 lines", "more", "navigation", "links"] }, "Heating": { "keywords": ["waves", "radiate", "bake", "wavy lines"] }, "Heatmap": { "keywords": ["tracking", "temperature", "cluster", "clustering"] }, "HeatmapDropdown": { "keywords": ["tracking", "temperature", "down arrow", "cluster", "clustering"] }, "Help": { "keywords": ["question mark", "circle"] }, "HelpCursor": { "keywords": ["question mark", "arrow", "pointer"] }, "Highlight": { "keywords": ["area", "polygon", "shape"] }, "HighlightClear": { "keywords": ["area", "x", "remove", "delete", "polygon", "shape"] }, "HighlightClearAll": { "keywords": ["area", "x", "multiple", "remove", "delete", "polygons", "shapes"] }, "HighlightFocus": { "keywords": ["area", "pin", "marker", "map pin", "polygon", "shape"] }, "HighlightFocusClear": { "keywords": ["area", "pin", "marker", "x", "remove", "map pin", "delete", "polygon", "shape"] }, "HighlightPulse": { "keywords": ["marker", "pin", "circle", "map pin"] }, "History": { "keywords": ["arrow", "back", "clock", "rewind"] }, "Home": { "keywords": ["house", "start", "begin"] }, "Hourglass": { "keywords": ["time", "interval", "wait", "processing", "timer", "sand"] }, "HouseAdd": { "keywords": ["plus", "home"] }, "HouseEmail": { "keywords": ["envelope", "home", "mail"] }, "HouseNumber": { "keywords": ["home", "hash", "octothorpe", "pound sign"] }, "HouseOwner": { "keywords": ["home", "person", "user"] }, "HousePointer": { "keywords": ["home", "arrow", "cursor"] }, "HouseValue": { "keywords": ["home", "dollar", "worth", "money", "price"] }, "HydrantId": { "keywords": ["number", "identify", "fire"] }, "IdGenerate": { "keywords": ["card", "arrow right", "identification", "identify"] }, "Identifiable": { "keywords": ["reticle", "target", "location", "locate", "geolocation"] }, "Identify": { "keywords": ["reticle", "information", "i", "point", "location", "locate"] }, "IdentifyFreehand": { "keywords": ["draw", "line", "information", "i", "sketch", "markup"] }, "IdentifyMapPoint": { "keywords": ["map marker", "information", "i", "map pin"] }, "IdentifyPolygon": { "keywords": ["information", "i", "shape"] }, "IdentifyPolyline": { "keywords": ["information", "i", "zigzag", "line"] }, "IdentifyRectangle": { "keywords": ["information", "i", "box"] }, "Image": { "keywords": ["photo", "picture", "mountains", "sun"] }, "ImageNone": { "keywords": ["photo", "picture", "broken", "mountains", "sun"] }, "ImportJob": { "keywords": ["page", "arrow right", "text", "load", "document", "paper"] }, "Info": { "keywords": ["information", "circle", "i"] }, "InheritedDenied": { "keywords": ["tree", "branch", "deny", "workflow", "parent"] }, "InheritedEditable": { "keywords": ["tree", "branch", "pencil", "edit", "change", "modify", "workflow", "parent"] }, "InheritedVisible": { "keywords": ["tree", "branch", "eye", "view", "workflow", "parent"] }, "Inspection": { "keywords": ["page", "list", "check mark", "document", "paper", "inspect"] }, "InspectionFeature": { "keywords": ["explosion", "break", "boom"] }, "Integer": { "keywords": ["numbers", "square brackets", "numerals"] }, "IntersectingFeatures": { "keywords": ["squares", "overlap", "merge", "intersection"] }, "IntersectionLocate": { "keywords": ["roads", "marker", "pin", "map pin", "streets"] }, "ItemsFirst": { "keywords": ["start", "chevron", "begin"] }, "Iwtm": { "keywords": ["3 dots", "menu", "list"] }, "Jobs": { "keywords": ["page", "text", "document", "paper"] }, "Json": { "keywords": ["code", "brackets", "curly braces", "semi-colon", "semi colon"] }, "JumpToPoint": { "keywords": ["circles", "arrow right", "leap", "transport", "teleport"] }, "Kml": { "keywords": ["file", "page", "document", "paper", "keyhole markup language"] }, "KmlAdd": { "keywords": ["file", "page", "document", "paper", "keyhole markup language", "plus", "import"] }, "KmlExport": { "keywords": ["file", "page", "document", "paper", "keyhole markup language", "arrow", "export", "share"] }, "Label": { "keywords": ["tag", "tags", "price tag"] }, "LabelOff": { "keywords": ["tag", "tags", "price tag", "off", "slash", "strikethrough"] }, "LabelOptions": { "keywords": ["tag", "tags", "price tag", "settings", "gear", "cog", "manage", "configure"] }, "Language": { "keywords": ["globe", "speech bubble", "internationalization", "localize", "international"] }, "LayerCatalog": { "keywords": ["puzzle", "plus", "add", "addon", "add-on", "extension"] }, "LayerOptions": { "keywords": ["choice", "settings", "gear", "cog", "config", "configuration", "configure"] }, "LayerPresets": { "keywords": ["sliders", "pre-configured", "settings"] }, "LayerRemove": { "keywords": ["close", "clear", "x", "delete", "remove"] }, "LayerStyleEdit": { "keywords": ["pencil", "manage", "change"] }, "Layers": { "keywords": ["stacked"] }, "LayersActions": { "keywords": ["arrows"] }, "LayersAdd": { "keywords": ["stacked", "plus"] }, "LayersEmail": { "keywords": ["stacked", "envelope", "mail"] }, "LayersExtract": { "keywords": ["stacked", "expand", "arrow right", "share"] }, "LayersFiltered": { "keywords": ["stacked", "funnel", "filter"] }, "LayersMenu": { "keywords": ["stacked", "hamburger", "list"] }, "LayersReorder": { "keywords": ["stacked", "move", "up arrow", "down arrow", "order"] }, "LayersSnapping": { "keywords": ["stacked", "magnet", "lightning"] }, "Legend": { "keywords": ["list", "items", "definition"] }, "LegendOff": { "keywords": ["list", "items", "definition", "slash", "strikethrough"] }, "LeisureFacilitySearch": { "keywords": ["weights", "gym", "magnifying glass", "loupe", "magnify", "exercise", "dumbell"] }, "LineStyleEdit": { "keywords": ["pencil", "dotted", "manage", "change"] }, "Link": { "keywords": ["chain", "URL"] }, "LinkExternal": { "keywords": ["external", "arrow", "URL", "pop out"] }, "LocationClear": { "keywords": ["marker", "pin", "reticle", "close", "off", "map pin", "delete", "target", "locate", "geolocation"] }, "LocationSelect": { "keywords": ["reticle", "arrow", "cursor", "target", "point", "pointer", "locate", "geolocation"] }, "LocationSet": { "keywords": ["marker", "pin", "reticle", "map pin", "target", "locate", "geolocation"] }, "Lock": { "keywords": ["padlock", "secure", "security"] }, "ManholeId": { "keywords": ["cover", "utilities", "sewer", "identification"] }, "Map": { "keywords": ["world", "flat", "earth"] }, "Map3rdParty": { "keywords": ["map", "split"] }, "MapArea": { "keywords": ["map", "dotted border", "parcels"] }, "MapBing": { "keywords": ["arrow right", "share", "external"] }, "MapDefault": { "keywords": ["marker", "folded", "pin", "map pin", "paper map"] }, "MapGoogle": { "keywords": ["arrow right", "share", "external"] }, "MapInfo": { "keywords": ["i", "information"] }, "MapOffline": { "keywords": ["disconnected", "exclamation", "wifi", "wi-fi", "parcels"] }, "MapPin": { "keywords": ["marker", "location", "result"] }, "MapPinExtent": { "keywords": ["marker", "location", "result", "constrained", "current map view", "limited"] }, "MapRefresh": { "keywords": ["arrows", "reload", "reset"] }, "MapSyncOff": { "keywords": ["x", "up arrow", "close", "down arrow", "clear", "delete", "swap"] }, "MapSyncOn": { "keywords": ["up arrow", "down arrow", "swap"] }, "MapTax": { "keywords": ["dollar", "value", "price", "parcels"] }, "Markdown": { "keywords": ["code", "M", "formatting"] }, "Markup": { "keywords": ["shape", "area", "polygon", "vertex", "vertices"] }, "MarkupOff": { "keywords": ["slash", "shape", "area", "polygon", "vertex", "vertices", "strikethrough"] }, "Maximize": { "keywords": ["expand", "arrow top right", "box"] }, "MaximizeRestore": { "keywords": ["collapse", "arrow bottom left", "box"] }, "Measure": { "keywords": ["ruler", "size", "distance", "scale"] }, "MeasureArea": { "keywords": ["ruler", "rectangle", "size", "distance", "scale", "fill"] }, "MeasureCircle": { "keywords": ["ruler", "size", "distance", "scale", "radius", "diameter", "circular", "polygon", "shape"] }, "MeasureConvert": { "keywords": ["ruler", "arrows", "size", "distance", "scale", "swap", "change", "switch"] }, "MeasureDistance": { "keywords": ["ruler", "arrows", "size", "scale", "length"] }, "MeasureEllipse": { "keywords": ["ruler", "size", "distance", "scale", "circular", "circle", "radius", "radial", "polygon", "shape"] }, "MeasureFreehand": { "keywords": ["ruler", "size", "distance", "scale"] }, "MeasurePolygon": { "keywords": ["ruler", "size", "distance", "scale", "shape"] }, "MeasurePolygonFreehand": { "keywords": ["ruler", "size", "distance", "scale", "shape"] }, "MeasurePolyline": { "keywords": ["ruler", "size", "distance", "scale", "zigzag"] }, "MeasureRectangle": { "keywords": ["ruler", "size", "distance", "scale", "polygon"] }, "MeasureRestart": { "keywords": ["ruler", "arrows", "size", "distance", "scale", "reset"] }, "Menu": { "keywords": ["hamburger", "action", "navigation", "lines", "stacked", "paragraph"] }, "MenuCollapse": { "keywords": ["arrows", "facing", "inwards"] }, "MenuExpand": { "keywords": ["arrows", "opposite", "outward", "outwards"] }, "MenuGlobal": { "keywords": ["down arrow", "hamburger", "action", "list", "expand"] }, "MenuHoisted": { "keywords": ["hamburger", "action", "navigation", "lines", "stacked", "paragraph"] }, "Message": { "keywords": ["speech bubble", "text", "chat"] }, "Metadata": { "keywords": ["angled brackets", "keywords", "paragraph"] }, "Minimize": { "keywords": ["shrink", "collapse", "arrow bottom left", "bottom line"] }, "MinimizeRestore": { "keywords": ["expand", "enlarge", "arrow top right", "bottom line"] }, "Minus": { "keywords": ["circular border", "subtract", "collapse", "hide"] }, "MinusSquare": { "keywords": ["rounded square", "subtract", "collapse", "hide"] }, "More": { "keywords": ["3 dot menu", "action", "horizontal", "menu", "navigation"] }, "MoreCircle": { "keywords": ["outline", "3 dot menu", "action", "menu", "navigation"] }, "Move": { "keywords": ["arrows", "north", "south", "east", "west"] }, "MoveDown": { "keywords": ["position", "bottom", "boxes", "order"] }, "MoveUp": { "keywords": ["position", "up", "boxes", "order"] }, "MultipleMove": { "keywords": ["move", "points", "lines", "edit", "coincident geometries", "snapped", "rubber banding", "topological", "vertices"] }, "MultipleMoveOff": { "keywords": ["move", "points", "lines", "edit", "coincident geometries", "snapped", "disabled", "rubber banding", "topological", "vertices"] }, "NbaManagement": { "keywords": ["page", "folded", "arrow right", "document", "share", "export"] }, "NeighborhoodSearch": { "keywords": ["homes", "houses", "magnifying glass", "loupe", "magnify", "find", "group"] }, "NeighborhoodSign": { "keywords": ["house", "arrow top right", "directions", "home"] }, "NetworkConnected": { "keywords": ["line", "circle", "linked", "data", "node", "vertex"] }, "NetworkDiagram": { "keywords": ["connected", "nodes", "linked", "data", "connection"] }, "NetworkDownstream": { "keywords": ["down arrow", "node"] }, "NetworkIsolation": { "keywords": ["separate", "disconnected", "data", "target", "pinpoint"] }, "NetworkShortestPath": { "keywords": ["route", "topology", "square", "nodes", "connection", "dashed", "dotted"] }, "NetworkSubnetwork": { "keywords": ["data", "topology", "nodes", "lines", "connection", "dots"] }, "NetworkUpstream": { "keywords": ["up arrow", "node"] }, "NoIcon": { "keywords": ["dotted border", "circle", "blank", "nothing", "na", "empty", "placeholder"] }, "NorthArrow": { "keywords": ["up arrow", "compass", "needle"] }, "ObjectId": { "keywords": ["page", "object", "text", "cube"] }, "OfflineMode": { "keywords": ["globe", "x", "off", "disconnected", "connectivity", "world", "state"] }, "Ont": { "keywords": ["optical", "network", "terminal", "signal", "conversion"] }, "OntAdd": { "keywords": ["optical", "network", "terminal", "signal", "conversion", "addition", "plus"] }, "OntEdit": { "keywords": ["optical", "network", "terminal", "signal", "conversion", "pencil", "modify", "change"] }, "OntRemove": { "keywords": ["optical", "network", "terminal", "signal", "conversion", "delete"] }, "Open": { "keywords": ["file folder", "document", "file", "load", "launch"] }, "OtherClearGridsHighlight": { "keywords": ["x", "remove", "square", "delete", "box", "nodes", "vertices"] }, "OverviewMap": { "keywords": ["squared", "hash", "overlay", "inset"] }, "Owner": { "keywords": ["user", "account", "person", "man", "woman", "silhouette", "profile"] }, "Pan": { "keywords": ["grab", "cursor", "hand", "pointer", "move"] }, "Panel": { "keywords": ["windows", "overlap", "container", "stacked", "layout"] }, "PanelMinimize": { "keywords": ["size", "reduce", "collapse", "hide", "slide"] }, "PanelMore": { "keywords": ["add", "multiple", "grid", "dots"] }, "PanelRestore": { "keywords": ["size", "expand", "enlarge", "expand", "show", "slide"] }, "ParcelAccount": { "keywords": ["house", "home", "acct"] }, "ParcelAin": { "keywords": ["house", "number", "home"] }, "ParcelId": { "keywords": ["pid", "house", "home", "identification"] }, "ParcelPin": { "keywords": ["identification", "number", "house", "home"] }, "Parcels": { "keywords": ["map", "streets", "neighborhood", "neighbourhood"] }, "ParkingLot": { "keywords": ["p", "stalls", "roof", "covered", "solar panel"] }, "PastureSearch": { "keywords": ["grass", "magnifying glass", "loupe", "find", "magnifying"] }, "Patch": { "keywords": ["connect", "patch", "cable", "network", "lan", "internet", "ethernet", "fiber", "fibre"] }, "PatchAdd": { "keywords": ["connect", "patch", "cable", "network", "lan", "internet", "ethernet", "fiber", "fibre", "plus", "increase"] }, "PatchEdit": { "keywords": ["connect", "patch", "cable", "network", "lan", "internet", "ethernet", "fiber", "fibre", "pencil", "change"] }, "PatchPanel": { "keywords": ["connect", "patch", "network", "lan", "internet", "ethernet", "fiber", "fibre"] }, "PatchPanelAdd": { "keywords": ["connect", "patch", "network", "lan", "internet", "ethernet", "fiber", "fibre", "plus", "increase"] }, "PatchPanelEdit": { "keywords": ["connect", "patch", "network", "lan", "internet", "ethernet", "fiber", "fibre", "change", "pencil", "modify"] }, "PatchPanelRemove": { "keywords": ["connect", "patch", "network", "lan", "internet", "ethernet", "fiber", "fibre", "delete", "decrease"] }, "PatchRemove": { "keywords": ["connect", "patch", "cable", "network", "lan", "internet", "ethernet", "fiber", "fibre", "delete"] }, "PavementAdd": { "keywords": ["steam roller", "plus", "road", "compaction", "construction", "paving", "steamroller", "road roller", "paver", "resurface"] }, "Pdf": { "keywords": ["portable document format", "file", "page", "document", "report"] }, "PdfDownload": { "keywords": ["page", "down arrow", "portable document format", "file", "page", "document", "report", "save", "export"] }, "PerfPlanning": { "keywords": ["page", "text", "tower", "document"] }, "Photo": { "keywords": ["camera", "image", "photograph", "video"] }, "Pictometry": { "keywords": ["picture", "geometry", "3d", "buildings", "export"] }, "Pipeline": { "keywords": ["valve", "pipe", "shutoff"] }, "PlaybackNext": { "keywords": ["forward", "arrow right", "circle", "fast forward"] }, "PlaybackPause": { "keywords": ["2 vertical lines", "circle"] }, "PlaybackPlay": { "keywords": ["circle", "arrow right", "triangle"] }, "PlaybackPrevious": { "keywords": ["backward", "circle", "arrow left", "rewind", "back"] }, "PlaybackRecord": { "keywords": ["circle", "dot"] }, "PlaybackStepNext": { "keywords": ["double arrow right", "circle", "fast forward"] }, "PlaybackStepPrevious": { "keywords": ["double arrow left", "circle", "rewind", "back"] }, "PlaybackStop": { "keywords": ["circle", "square"] }, "Plus": { "keywords": ["add", "cross"] }, "PointStyleEdit": { "keywords": ["shapes", "pencil", "circle", "triangle", "star", "markup"] }, "Pointer": { "keywords": ["cursor", "arrow"] }, "PointerClear": { "keywords": ["cursor", "x", "remove"] }, "PointerSubtract": { "keywords": ["cursor", "minus", "remove", "delete"] }, "PoleSearch": { "keywords": ["telegraph post", "magnifying glass", "loupe", "utility pole", "power lines", "power pole", "transmission pole", "telephone pole", "telecommunications pole", "hydro pole", "telegraph post", "pole", "stobie pole"] }, "PolicingAnalyze": { "keywords": ["hat", "calendar", "grid", "schedule", "police", "law enforcement", "table", "data"] }, "PolicingVisualize": { "keywords": ["hat", "police", "eye", "surveillance", "watching", "law enforcement"] }, "PolyMarkAdd": { "keywords": ["plus", "pin", "map pin", "polygon"] }, "PolyMarkUpload": { "keywords": ["up arrow", "pin", "map pin", "polygon"] }, "PolygonAdd": { "keywords": ["plus", "hash", "shape", "multiple", "squares", "overlap", "merge"] }, "PolygonCut": { "keywords": ["scissors", "slash", "remove", "shape", "divide", "separate"] }, "PolygonStyleEdit": { "keywords": ["pencil", "squares", "swatches", "change", "manage"] }, "PoolsSearch": { "keywords": ["swim", "magnifying glass", "loupe", "magnify", "find", "waves", "wavy lines"] }, "PopIn": { "keywords": ["combine", "collapse", "arrow", "bottom left"] }, "PopOut": { "keywords": ["expand", "separate", "arrow", "top right"] }, "Portal": { "keywords": ["gateway", "entry", "ring", "transport"] }, "PotholeAdd": { "keywords": ["road", "street", "damage", "plus", "car"] }, "PotholeInspect": { "keywords": ["road", "street", "damage", "check mark", "car"] }, "PotholeLayer": { "keywords": ["road", "street", "damage", "show", "car", "layers"] }, "PotholePrint": { "keywords": ["road", "street", "damage", "output", "car", "printer"] }, "PotholeRepair": { "keywords": ["road", "street", "damage", "fix", "car", "shovel"] }, "PotholeRepairMultiple": { "keywords": ["road", "street", "damage", "x2", "multiple"] }, "Print": { "keywords": ["output", "printer"] }, "PrintPkg": { "keywords": ["output", "printer", "legacy", "template", "package"] }, "PrintPro": { "keywords": ["output", "printer", "arcpro", "template"] }, "Privacy": { "keywords": ["shield", "protect", "info", "information", "secure", "security"] }, "Profile": { "keywords": ["chart", "xy", "line chart", "data"] }, "ProgressReportsMapGrid": { "keywords": ["bar chart", "array", "data"] }, "ProgressReportsWorkOrder": { "keywords": ["bar chart", "wrench", "tool"] }, "Property": { "keywords": ["building", "house", "home", "office"] }, "Proximity": { "keywords": ["pulse", "pin", "marker", "map pin"] }, "Query": { "keywords": ["question mark", "magnifying glass", "loupe", "help"] }, "QueryBuilder": { "keywords": ["layer", "magnifying glass", "loupe", "list", "find"] }, "QueryBuilderAdvanced": { "keywords": ["layer", "magnifying glass", "loupe", "list", "plus", "find", "add"] }, "Queryable": { "keywords": ["database", "db", "search", "find", "question mark", "magnify", "magnifying glass", "loupe"] }, "Rack": { "keywords": ["network", "lan", "internet", "servers", "1u"] }, "RackAdd": { "keywords": ["network", "lan", "internet", "servers", "1u", "plus"] }, "RackEdit": { "keywords": ["network", "lan", "internet", "servers", "1u", "pencil", "change", "modify"] }, "RackRemove": { "keywords": ["network", "lan", "internet", "servers", "1u", "delete"] }, "RangeEnd": { "keywords": ["dots", "line"] }, "RangeStart": { "keywords": ["dots", "line"] }, "Redo": { "keywords": ["right arrow"] }, "RefineAdd": { "keywords": ["squares", "filled", "merge", "combine"] }, "RefineIntersect": { "keywords": ["squares", "intersection", "combine", "exclude", "overlap"] }, "RefineResults": { "keywords": ["squares", "merge", "combine", "overlap"] }, "RefineSubtract": { "keywords": ["squares", "half filled", "remove", "reduce", "cut", "minus", "overlap"] }, "Refresh": { "keywords": ["reset", "restart", "recycle", "redo", "arrows", "circular"] }, "Region": { "keywords": ["globe", "map pin"] }, "ReportDataError": { "keywords": ["exclamation", "page", "document", "information", "warning"] }, "ReportProblem": { "keywords": ["email", "mail", "wrench", "tools", "tool"] }, "ReportSign": { "keywords": ["clipboard", "list", "directions"] }, "Reports": { "keywords": ["chart", "page", "paper", "document", "pie chart", "bar chart"] }, "ReserveSearch": { "keywords": ["park", "cloud", "field", "river", "hills", "magnifying glass"] }, "RestoreDefaults": { "keywords": ["revert", "undo", "roll back", "dot", "arrow back"] }, "ResultCard": { "keywords": ["bulleted list", "two lines", "short list"] }, "ResultClear": { "keywords": ["list", "bulleted list", "remove", "delete", "x"] }, "ResultClearAll": { "keywords": ["bulleted list", "remove", "delete", "x", "multiple", "stacked"] }, "ResultDefault": { "keywords": ["globe", "north america", "planet", "earth", "south america"] }, "ResultList": { "keywords": ["bulleted list", "lines"] }, "ResultPan": { "keywords": ["list", "hand", "move", "cursor"] }, "ReturnArrow": { "keywords": ["back", "return", "undo", "u-turn"] }, "RoadClosure": { "keywords": ["dead end", "closed", "do not enter", "blocked"] }, "RoadClosureSearch": { "keywords": ["dead end", "closed", "blocked", "magnify", "magnifying glass", "magnifying"] }, "RoadSignAdd": { "keywords": ["traffic sign", "plus", "add"] }, "RoadSignsReport": { "keywords": ["traffic sign", "clipboard", "list"] }, "Rooftop": { "keywords": ["solar", "sun", "roof", "solar panel"] }, "RouteExpand": { "keywords": ["directions", "more", "path"] }, "Rss": { "keywords": ["really simple syndication", "rdf site summary", "feed"] }, "RubberBand": { "keywords": ["snap", "snapping", "connected", "cursor", "points"] }, "RuralSearch": { "keywords": ["house", "park", "magnifying glass", "country side"] }, "Save": { "keywords": ["disk", "file"] }, "SaveAs": { "keywords": ["disk", "file", "plus", "add", "new"] }, "ScaleInput": { "keywords": ["scale", "cursor", "I beam"] }, "Scalebar": { "keywords": ["scale", "measure"] }, "ScanBarcode": { "keywords": ["barcode", "bar code", "scanner"] }, "ScanMulti": { "keywords": ["qr code", "barcode", "bar code", "scanner"] }, "ScanQr": { "keywords": ["qr code", "scanner"] }, "School": { "keywords": ["school", "traffic sign"] }, "SchoolsSearch": { "keywords": ["school", "magnify", "magnifying glass", "magnifying"] }, "Scroll": { "keywords": ["scrollable", "container", "scrollbar", "stacked"] }, "Search": { "keywords": ["magnifying glass", "find"] }, "SearchDocument": { "keywords": ["magnifying glass", "find"] }, "SearchDocumentDownload": { "keywords": ["magnifying glass", "find", "page", "paper", "down", "arrow"] }, "SearchDocumentId": { "keywords": ["magnifying glass", "find", "page", "paper"] }, "SearchExtent": { "keywords": ["magnifying glass", "find", "dashed"] }, "SearchGuide": { "keywords": ["magnifying glass", "find", "directions", "sign", "arrow"] }, "SearchLink": { "keywords": ["magnifying glass", "find", "chain"] }, "SearchNeighborhood": { "keywords": ["magnifying glass", "find", "house"] }, "SearchNumber": { "keywords": ["magnifying glass", "find", "hash mark", "hash tag", "hash", "octothorpe", "pound sign"] }, "SearchParcels": { "keywords": ["magnifying glass", "find", "parcel", "map"] }, "SearchPark": { "keywords": ["magnifying glass", "find", "tree"] }, "SearchRailway": { "keywords": ["magnifying glass", "find", "rail", "tracks"] }, "SearchResults": { "keywords": ["magnifying glass", "find", "list"] }, "SearchRoadSigns": { "keywords": ["magnifying glass", "find", "stop", "yield", "traffic"] }, "SearchSegment": { "keywords": ["magnifying glass", "find", "partial", "line", "dotted"] }, "SearchStreet": { "keywords": ["magnifying glass", "find", "road", "roads"] }, "SearchStreetMarking": { "keywords": ["magnifying glass", "find", "road", "roads", "lines"] }, "SearchSurvey": { "keywords": ["magnifying glass", "find", "clipboard", "document", "list"] }, "Searchable": { "keywords": ["magnifying glass", "find"] }, "SectionId": { "keywords": ["parcel", "filled", "hatched"] }, "SelectedAll": { "keywords": ["list", "checkbox"] }, "SelectedNone": { "keywords": ["list", "checkbox"] }, "SelectedPartial": { "keywords": ["list", "checkbox"] }, "Selection": { "keywords": ["cursor", "pointer", "box"] }, "Server": { "keywords": ["data"] }, "ServerManagement": { "keywords": ["data", "settings", "config", "configuration", "configure", "sliders"] }, "ServiceFeature": { "keywords": ["parcel", "parcels", "globe"] }, "ServiceGeocode": { "keywords": ["map pin", "globe", "cog", "gear"] }, "ServiceGeometry": { "keywords": ["extent", "dashed", "globe"] }, "ServiceGlobal": { "keywords": ["globe", "cog", "gear"] }, "ServiceGp": { "keywords": ["flow chart", "flowchart", "globe"] }, "ServiceMap": { "keywords": ["folded", "globe"] }, "ServiceNetwork": { "keywords": ["globe", "computer", "connection", "connected"] }, "ServicePicture": { "keywords": ["image", "globe"] }, "ServiceRequest": { "keywords": ["wrench", "tool", "phone"] }, "ServiceRequestInvestigate": { "keywords": ["wrench", "tool", "magnify", "magnifying glass", "search"] }, "ServiceRequestReport": { "keywords": ["wrench", "tool", "page", "document", "charts"] }, "ServiceStream": { "keywords": ["cloud", "data"] }, "Settings": { "keywords": ["sliders", "configuration", "config"] }, "SewageTreatment": { "keywords": ["stp", "filter", "aeration", "filtration"] }, "Sewer": { "keywords": ["pipe", "drain", "drainage"] }, "Shapefile": { "keywords": ["document", "page", "shapes"] }, "ShapefileAdd": { "keywords": ["document", "page", "shapes", "plus"] }, "ShapefileExport": { "keywords": ["document", "page", "shapes", "arrow", "send"] }, "Share": { "keywords": ["send", "network"] }, "ShareMap": { "keywords": ["parcels", "send", "arrow"] }, "SignAdd": { "keywords": ["directions", "plus", "add", "left", "right", "post"] }, "SignIn": { "keywords": ["login", "log in", "signin", "enter", "lock", "shield", "keyhole", "security"] }, "SignOut": { "keywords": ["logout", "log out", "signout", "exit"] }, "Signature": { "keywords": ["authorization", "x", "autograph", "John Hancock", "write", "writing", "sign", "contract", "signing", "agreement", "pledge", "endorsement"] }, "SkateParkSearch": { "keywords": ["skateboard", "magnify", "magnifying glass"] }, "SlackLoop": { "keywords": ["fiber", "optical", "cable", "manage", "telecommunications"] }, "SlackLoopAdd": { "keywords": ["fiber", "optical", "cable", "manage", "telecommunications", "plus", "increase"] }, "SlackLoopEdit": { "keywords": ["fiber", "optical", "cable", "manage", "telecommunications", "change", "modify", "pencil"] }, "SlackLoopRemove": { "keywords": ["fiber", "optical", "cable", "manage", "telecommunications", "delete", "decrease"] }, "Slider": { "keywords": ["time slider", "drag slider", "tool tip", "number slider"] }, "SlotBottomCenter": { "keywords": ["container"] }, "SlotBottomLeft": { "keywords": ["container"] }, "SlotBottomRight": { "keywords": ["container", "grid"] }, "SlotTopCenter": { "keywords": ["container", "grid"] }, "SlotTopLeft": { "keywords": ["container", "grid"] }, "SlotTopRight": { "keywords": ["container", "grid"] }, "Snapping": { "keywords": ["magnet", "sticky", "magnetic", "lightning"] }, "SnappingOff": { "keywords": ["magnet", "magnetic", "slash"] }, "Snippet": { "keywords": ["text", "plus", "add", "T"] }, "SnowAdd": { "keywords": ["snowflake", "plus", "add"] }, "SnowGradingAssign": { "keywords": ["shovel", "plow", "plowing", "check mark"] }, "SnowGradingCity": { "keywords": ["shovel", "plow", "buildings"] }, "SnowGradingGlobal": { "keywords": ["shovel", "plow", "globe"] }, "SnowGradingMap": { "keywords": ["shovel", "plow", "map pin", "extent"] }, "SnowGradingReport": { "keywords": ["shovel", "plow", "info", "i"] }, "SnowGradingSelection": { "keywords": ["shovel", "plow", "house", "extent"] }, "SnowParking": { "keywords": ["snowflake", "P"] }, "SoccerField": { "keywords": ["ball", "sport", "football"] }, "SortDown": { "keywords": ["arrows", "triangle", "half filled", "outlined"] }, "SortUnsorted": { "keywords": ["arrows", "triangle", "outlined"] }, "SortUp": { "keywords": ["arrows", "triangle", "half filled", "outlined"] }, "SpeedTest": { "keywords": ["stopwatch", "timer", "clock", "alarm", "performance"] }, "SpeedTestResults": { "keywords": ["stopwatch", "timer", "clock", "clipboard", "list", "performance"] }, "SpillAnalysis": { "keywords": ["magnifying glass", "droplet", "water", "liquid", "oil"] }, "Splice": { "keywords": ["network", "fibre", "fiber", "optical", "cable", "split"] }, "SpliceAdd": { "keywords": ["network", "fibre", "fiber", "optical", "cable", "split", "plus"] }, "SpliceEdit": { "keywords": ["network", "fibre", "fiber", "optical", "cable", "split", "pencil", "change"] }, "SpliceRemove": { "keywords": ["network", "fibre", "fiber", "optical", "cable", "split", "delete"] }, "Split": { "keywords": ["columns", "column", "container"] }, "Splitter": { "keywords": ["split", "increase", "divide", "cable", "telecommunications"] }, "SplitterAdd": { "keywords": ["split", "increase", "divide", "cable", "telecommunications", "plus"] }, "SplitterEdit": { "keywords": ["split", "increase", "divide", "cable", "telecommunications", "change", "modify", "pencil"] }, "SplitterRemove": { "keywords": ["split", "increase", "divide", "cable", "telecommunications", "delete", "decrease"] }, "SprayPadSearch": { "keywords": ["sprinkler", "magnifying glass", "water"] }, "Stack": { "keywords": ["row", "stacked", "container"] }, "Star": { "keywords": ["favorite", "favourite", "filled"] }, "StarAdd": { "keywords": ["outline", "outlined", "plus", "add", "favorite", "favourite"] }, "StarCheck": { "keywords": ["check mark", "filled", "favorite", "favourite", "unfavorite", "unfavourite"] }, "StarHalf": { "keywords": ["filled", "outline", "outlined", "favorite", "favourite", "unfavorite", "unfavourite"] }, "StarOutline": { "keywords": ["unfavourite", "unfavorite", "favorite", "favourite", "outlined"] }, "StarRemove": { "keywords": ["filled", "minus", "delete", "favourite", "favorite"] }, "StartNasProcess": { "keywords": ["cogs", "gears", "add", "plus"] }, "StartNba": { "keywords": ["document", "plus", "add", "paper", "sheet", "page"] }, "StationLocator": { "keywords": ["location", "map pin", "here"] }, "Stop": { "keywords": ["x", "close", "octagon"] }, "StreetEdit": { "keywords": ["road", "pencil", "change"] }, "StreetLaneMaintenance": { "keywords": ["road", "exclamation", "triangle", "error"] }, "StreetNumber": { "keywords": ["hash tag", "hash mark", "octothorpe", "pound sign", "road"] }, "Styles": { "keywords": ["swatches", "cursor", "pointer", "squares", "filled"] }, "Subdivision": { "keywords": ["home", "house", "neighborhood", "neighbourhood", "group", "stacked"] }, "Subtract": { "keywords": ["minus", "remove", "delete", "line"] }, "Success": { "keywords": ["circle", "check mark", "check"] }, "Suggestion": { "keywords": ["chat", "check mark", "talk", "confirm", "message", "received"] }, "Survey": { "keywords": ["clipboard", "list", "check mark", "check"] }, "Suspend": { "keywords": ["stop", "sign", "octagon"] }, "SwapView": { "keywords": ["monitor", "arrows", "change", "reset"] }, "SwatchPicker": { "keywords": ["eye dropper", "shape"] }, "SweepingEdit": { "keywords": ["street sweep", "clean", "truck", "maintenance", "pencil", "change"] }, "SweepingGlobal": { "keywords": ["street sweep", "clean", "truck", "maintenance", "globe"] }, "SweepingNeighborhood": { "keywords": ["street sweep", "clean", "truck", "maintenance", "house", "home", "extent", "select"] }, "SweepingPrint": { "keywords": ["street sweep", "clean", "truck", "maintenance", "printer"] }, "SweepingSelection": { "keywords": ["street sweep", "clean", "truck", "maintenance", "map pin", "extent", "select"] }, "SwitchSearch": { "keywords": ["magnifying glass", "find", "line switch"] }, "Symbolize": { "keywords": ["shapes", "star", "triangle", "circle", "square", "quad", "symbols"] }, "SymbolsReset": { "keywords": ["shapes", "triangle", "circle", "square", "arrow", "symbolize"] }, "Sync": { "keywords": ["arrows", "refresh", "reset", "recycle", "loop", "redo", "swap"] }, "SyncManage": { "keywords": ["arrows", "refresh", "reset", "recycle", "loop", "redo", "swap", "cog", "gear", "settings", "config", "configure"] }, "Table": { "keywords": ["grid", "data"] }, "Tabs": { "keywords": ["ui", "tab", "stacked"] }, "Taskbar": { "keywords": ["sidebar", "menu", "box", "items", "ui"] }, "Team": { "keywords": ["group", "user", "users", "multiple", "team"] }, "TeamAdd": { "keywords": ["group", "user", "multiple", "team", "plus"] }, "TeamRemove": { "keywords": ["group", "user", "multiple", "team", "minus"] }, "Telco": { "keywords": ["fibre", "fiber", "transmission line", "wire", "line", "connection"] }, "TemplatePicker": { "keywords": ["documents", "paper", "stacked", "pages"] }, "TennisCourt": { "keywords": ["ball", "racquet", "sport"] }, "Terminate": { "keywords": ["network", "fiber", "fibre", "optical", "end"] }, "TerminateAdd": { "keywords": ["network", "fiber", "fibre", "optical", "end", "plus"] }, "TerminateEdit": { "keywords": ["network", "fiber", "fibre", "optical", "end", "pencil", "change", "modify"] }, "TerminateRemove": { "keywords": ["network", "fiber", "fibre", "optical", "end", "delete"] }, "Text": { "keywords": ["T", "capital", "lowercase"] }, "TextField": { "keywords": ["T", "cursor", "I-beam", "I beam"] }, "ThemeDark": { "keywords": ["moon", "night", "weather"] }, "ThemeLight": { "keywords": ["sun", "day", "weather"] }, "TipsAndTricks": { "keywords": ["light", "lightbulb", "bulb", "idea", "bright"] }, "Toggle3d": { "keywords": ["isometric", "building", "perspective", "block"] }, "Tools": { "keywords": ["wrench", "screwdriver", "cross"] }, "Topographical": { "keywords": ["topography", "topographic", "topology", "edit", "map", "editing"] }, "TopographicalEditing": { "keywords": ["topography", "topographic", "topology", "edit", "map", "editing"] }, "TopographicalEditingClear": { "keywords": ["topography", "topographic", "topology", "edit", "map", "editing", "clear", "off"] }, "Tour": { "keywords": ["safari", "binoculars", "search", "find", "look", "guide", "hat", "pith", "explore"] }, "TownshipSearch": { "keywords": ["city hall", "magnifying glass", "building", "columns"] }, "Trace": { "keywords": ["tracing", "fibre", "fiber", "follow", "locate", "path", "highlight", "cable", "strands"] }, "TraceClear": { "keywords": ["tracing", "fibre", "fiber", "follow", "locate", "path", "highlight", "cable", "strands", "remove", "delete"] }, "TraceStrands": { "keywords": ["tracing", "fibre", "fiber", "follow", "locate", "path", "highlight", "cable", "strands"] }, "Traffic": { "keywords": ["car", "cars", "stacked", "multiple"] }, "TransformerSearch": { "keywords": ["power", "utility", "lightning", "magnifying glass", "utility pole", "power lines", "power pole", "electricity"] }, "Trash": { "keywords": ["delete", "remove", "clear", "garbage"] }, "Undo": { "keywords": ["back", "arrow", "left"] }, "Ungroup": { "keywords": ["squares", "square", "stacked"] }, "Unlink": { "keywords": ["chain", "link", "break", "disconnect"] }, "Unlock": { "keywords": ["lock", "padlock", "open", "insecure", "access"] }, "Update": { "keywords": ["up arrow"] }, "Upload": { "keywords": ["up arrow", "load"] }, "UploadLayer": { "keywords": ["cloud", "up arrow", "layers", "load"] }, "UploadOptions": { "keywords": ["cloud", "cog", "up arrow", "settings", "load"] }, "UrbanSearch": { "keywords": ["buildings", "books", "stack", "magnifying glass"] }, "Usb": { "keywords": ["device", "connection"] }, "User": { "keywords": ["profile", "silhouette", "circle"] }, "UserCog": { "keywords": ["user settings", "profile"] }, "UsersManage": { "keywords": ["group", "user", "multiple", "team"] }, "UtilityCutAdd": { "keywords": ["utility pole", "power lines", "power pole", "transmission pole", "telephone pole", "telecommunications pole", "hydro pole", "telegraph post", "pole", "stobie pole", "strikethrough", "plus"] }, "UtilityCutDelete": { "keywords": ["utility pole", "power lines", "power pole", "transmission pole", "telephone pole", "telecommunications pole", "hydro pole", "telegraph post", "pole", "stobie pole", "strikethrough", "minus"] }, "UtilityCutEdit": { "keywords": ["utility pole", "power lines", "power pole", "transmission pole", "telephone pole", "telecommunications pole", "hydro pole", "telegraph post", "pole", "stobie pole", "strikethrough", "pencil"] }, "UtilityCutMove": { "keywords": ["utility pole", "power lines", "power pole", "transmission pole", "telephone pole", "telecommunications pole", "hydro pole", "telegraph post", "pole", "stobie pole", "strikethrough", "arrows", "four arrows"] }, "ValveInspected": { "keywords": ["pipe", "fitting", "fixture", "check mark", "checkmark", "success"] }, "VendorsManage": { "keywords": ["users", "group", "hard hat", "hardhat", "construction", "worker", "crew", "team"] }, "ViewGrid": { "keywords": ["squares", "grid", "3x3", "table"] }, "ViewList": { "keywords": ["bullets", "bullet", "three", "3"] }, "ViewSwitchCompact": { "keywords": ["bullets", "bullet", "stacked", "tabs"] }, "ViewSwitchList": { "keywords": ["bullets", "bullet", "stacked", "overlap"] }, "ViewSwitchTable": { "keywords": ["grid", "stacked", "overlap"] }, "ViewSwitchTabs": { "keywords": ["chart", "report", "stacked", "bullet"] }, "Visibility": { "keywords": ["binoculars", "look", "find", "search", "tour"] }, "Visible": { "keywords": ["eye", "eyeball"] }, "VisibleNoChange": { "keywords": ["equals", "no change", "same", "unchanged"] }, "VisibleOff": { "keywords": ["eye", "eyeball", "strike", "strikethrough"] }, "Visualizations": { "keywords": ["layers", "shapes"] }, "Warning": { "keywords": ["exclamation", "circle", "outline"] }, "Water": { "keywords": ["waves", "wavy lines"] }, "WaterDrop": { "keywords": ["waves", "drip", "liquid"] }, "Watershed": { "keywords": ["river", "mountain", "hill", "cloud", "park", "wilderness"] }, "Weather": { "keywords": ["sun", "cloud", "rain", "raining"] }, "Wifi": { "keywords": ["signal", "waves"] }, "WindowDock": { "keywords": ["box", "filled", "arrow", "bottom left", "half filled", "half"] }, "WindowNew": { "keywords": ["pop out", "arrow", "top right", "stacked", "boxes"] }, "WorkOrder": { "keywords": ["construction", "worker", "hardhat", "hard hat", "wrench", "tool"] }, "WorkOrderClose": { "keywords": ["construction", "worker", "hardhat", "hard hat", "x", "delete", "clear"] }, "WorkOrderComplete": { "keywords": ["construction", "worker", "hardhat", "hard hat", "checkmark", "check mark", "success", "approve"] }, "WorkOrderFastTrack": { "keywords": ["construction", "worker", "hardhat", "hard hat", "fast forward", "arrows", "right"] }, "Workflow": { "keywords": ["flowchart", "flow chart", "diagram"] }, "WorkingView": { "keywords": ["map", "edit", "pencil", "parcel", "parcels", "streets"] }, "Xlsx": { "keywords": ["spreadsheet", "document", "sheet", "paper"] }, "XlsxAdd": { "keywords": ["spreadsheet", "document", "sheet", "paper", "plus"] }, "XlsxExport": { "keywords": ["spreadsheet", "document", "sheet", "paper", "arrow right", "export"] }, "Xml": { "keywords": ["brackets", "code", "document"] }, "YouthCenterSearch": { "keywords": ["person", "user", "celebrate", "arms up"] }, "ZoomControl": { "keywords": ["pill", "plus", "minus"] }, "ZoomExtent": { "keywords": ["arrows", "diagonal", "dashed", "box", "zoom out"] }, "ZoomExtentAll": { "keywords": ["arrows", "diagonal", "dashed", "box", "zoom out", "stacked", "multiple", "overlap"] }, "ZoomFeature": { "keywords": ["arrow", "down", "in"] }, "ZoomFull": { "keywords": ["arrows", "zoom out", "four arrows", "outward", "out", "circle", "outline"] }, "ZoomIn": { "keywords": ["plus", "circle", "outline"] }, "ZoomInitial": { "keywords": ["circle", "outline", "refresh", "reset"] }, "ZoomNext": { "keywords": ["circle", "outline", "arrow", "right", "forward"] }, "ZoomOut": { "keywords": ["minus", "circle", "outline"] }, "ZoomPrevious": { "keywords": ["circle", "outline", "arrow", "left", "back"] }, "ZoomVisibleScale": { "keywords": ["arrow", "box", "square", "dashed", "filled"] } };
|
|
1
|
+
const keywords = { "Accessibility": { "keywords": ["wheelchair", "wcag", "accessible", "aria", "a11y"] }, "AccuracyOff": { "keywords": ["pointer", "disabled", "strikethrough", "geolocation", "location"] }, "ActionMenu": { "keywords": ["3", "three", "dot", "vertical", "more"] }, "Activate": { "keywords": ["power", "button", "switch", "on"] }, "ActivitiesFind": { "keywords": ["search", "magnifying glass", "activity", "dashed rectangle"] }, "Add": { "keywords": ["plus", "circle"] }, "AddIntersectingVertex": { "keywords": ["increase", "plus", "squares"] }, "AddSquare": { "keywords": ["add", "cross", "expand", "show", "rounded square"] }, "AddToDrawLayer": { "keywords": ["shape", "area", "multiple", "polygons"] }, "Address": { "keywords": ["pin", "contacts", "book", "map pin"] }, "AddressSearch": { "keywords": ["envelope", "magnifying", "loupe", "mail"] }, "AdjustHeight": { "keywords": ["vertical", "measure"] }, "AfterActionPlayback": { "keywords": ["map", "step", "play", "chat", "restart", "reset", "redo"] }, "Alarm": { "keywords": ["clock", "reminder", "timer"] }, "AlarmAdd": { "keywords": ["clock", "reminder", "timer", "plus"] }, "AlarmClear": { "keywords": ["clock", "reminder", "timer", "x", "delete"] }, "AlarmDisabled": { "keywords": ["clock", "reminder", "off", "timer", "strikethrough"] }, "AlarmInfo": { "keywords": ["clock", "reminder", "information", "timer"] }, "AlarmNone": { "keywords": ["bell", "reminder", "disabled"] }, "AlarmNotifications": { "keywords": ["bell", "reminder"] }, "AlignToEdge": { "keywords": ["move", "snap", "right arrow"] }, "ArcgisSave": { "keywords": ["disk", "esri"] }, "ArcgisShortcut": { "keywords": ["esri", "share", "right arrow"] }, "Archive": { "keywords": ["box", "banker"] }, "Area": { "keywords": ["shaded", "points", "filled", "polygon"] }, "AreaRetired": { "keywords": ["disabled", "polygon", "filled", "strikethrough"] }, "Arrow": { "keywords": ["left", "pointing", "direction"] }, "ArrowBack": { "keywords": ["left", "pointing", "direction"] }, "ArrowBottomLeft": { "keywords": ["down", "angled", "pointing", "direction"] }, "ArrowBottomRight": { "keywords": ["down", "angled", "pointing", "direction"] }, "ArrowBoxDown": { "keywords": ["decrease", "pointing", "direction"] }, "ArrowBoxUp": { "keywords": ["increase", "pointing", "direction"] }, "ArrowDown": { "keywords": ["bottom", "pointing", "direction"] }, "ArrowLeft": { "keywords": ["pointing", "direction"] }, "ArrowRight": { "keywords": ["pointing", "direction"] }, "ArrowTopLeft": { "keywords": ["up", "angled", "pointing", "direction"] }, "ArrowTopRight": { "keywords": ["up", "angled", "pointing", "direction"] }, "ArrowUp": { "keywords": ["top", "pointing", "direction"] }, "AssignSurveyorGrid": { "keywords": ["survey", "theodolite", "optical level"] }, "AssignSurveyorWorkOrder": { "keywords": ["survey", "theodolite", "optical level", "wrench", "tool"] }, "AssignVendorMapGrid": { "keywords": ["worker", "construction", "hard hat", "hardhat"] }, "AssignVendorWorkOrder": { "keywords": ["worker", "wrench", "tool", "construction", "hard hat", "hardhat"] }, "Attach": { "keywords": ["paper clip"] }, "AttachFilePhoto": { "keywords": ["paper clip", "camera", "document", "paper"] }, "AttachManage": { "keywords": ["paper clip", "cog", "gear", "settings"] }, "AttachMultipleFiles": { "keywords": ["paper clip", "pages", "combine"] }, "Authentication": { "keywords": ["user", "password", "account", "portrait", "avatar", "profile"] }, "Band": { "keywords": ["segment", "range", "frequency", "grid", "scale", "measure"] }, "BaseballField": { "keywords": ["diamond", "play", "sport", "game"] }, "Basemap": { "keywords": ["map", "marker", "pin", "map pin", "parcels"] }, "Bearing": { "keywords": ["direction", "compass"] }, "Binary": { "keywords": ["code", "file type", "mime type", "brackets"] }, "BladingLane": { "keywords": ["road", "plow", "plowing"] }, "BladingNeighborhood": { "keywords": ["houses", "neighborhood", "neighbourhood", "plow", "plowing"] }, "BladingReport": { "keywords": ["clipboard", "plow", "plowing"] }, "BladingTotal": { "keywords": ["km", "kilometers", "plow", "plowing"] }, "Bluetooth": { "keywords": ["wireless", "connection", "device", "connectivity"] }, "BoardmapSearch": { "keywords": ["board", "loupe", "magnifying", "dot grid"] }, "Book": { "keywords": ["bookmark", "closed"] }, "Bookmark": { "keywords": ["open", "book", "reading"] }, "BoxFalse": { "keywords": ["no", "deny", "denied", "x", "cross"] }, "BoxTrue": { "keywords": ["check mark", "success", "apply"] }, "Branding": { "keywords": ["paint brush", "palette", "colours", "colors", "theme", "style"] }, "BroadbandCoverage": { "keywords": ["network", "map marker", "pin", "map pin"] }, "BroadbandExplore": { "keywords": ["network", "locate", "compass"] }, "BroadbandFind": { "keywords": ["network", "magnifying", "loupe", "search", "find", "magnifying glass"] }, "Buffer": { "keywords": ["space", "area", "radius"] }, "BufferIdentify": { "keywords": ["space", "area", "information", "info", "polygon"] }, "BufferMeasure": { "keywords": ["space", "area", "ruler", "polygon"] }, "BufferOff": { "keywords": ["space", "area", "disabled", "cross", "x", "radius"] }, "BufferOn": { "keywords": ["space", "area", "check mark", "radius"] }, "BufferShape": { "keywords": ["space", "area", "polygon"] }, "Build": { "keywords": ["arrow", "up", "box"] }, "Button": { "keywords": ["cursor", "pointer", "press", "click"] }, "Cabinet": { "keywords": ["storage", "server"] }, "CabinetAdd": { "keywords": ["storage", "server", "add", "plus"] }, "CabinetEdit": { "keywords": ["storage", "server", "pencil", "edit", "editing"] }, "CabinetRemove": { "keywords": ["storage", "server", "delete", "remove", "minus"] }, "Calendar": { "keywords": ["date", "day", "month", "year"] }, "Callout": { "keywords": ["speech bubble", "text message", "chat"] }, "CalloutAdd": { "keywords": ["plus", "coordinates", "speech bubble"] }, "CalloutClear": { "keywords": ["remove", "coordinates", "speech bubble"] }, "CameraSwitch": { "keywords": ["flip", "photo", "video"] }, "Cancel": { "keywords": ["circle", "line", "strikethrough", "strike", "no"] }, "Cards": { "keywords": ["pages", "text", "list", "stacked"] }, "CatchBasinId": { "keywords": ["drain", "grill"] }, "CenterMap": { "keywords": ["target", "reticle", "aim"] }, "Certificate": { "keywords": ["diploma", "degree", "badge", "ribbon"] }, "CertificateAdd": { "keywords": ["diploma", "plus", "degree"] }, "CertificateEdit": { "keywords": ["diploma", "pencil", "degree", "change", "manage"] }, "CertificateMultiple": { "keywords": ["diploma", "degree"] }, "CertificateRemove": { "keywords": ["diploma", "minus", "clear", "degree", "delete"] }, "CertificateUser": { "keywords": ["diploma", "person", "avatar", "degree"] }, "ChangeTheme": { "keywords": ["layout", "patterns", "styles", "swatches"] }, "ChartArea": { "keywords": ["axis", "x y"] }, "ChartAreaRange": { "keywords": ["axis", "range", "x y", "line chart"] }, "ChartBlank": { "keywords": ["axis", "x y", "empty", "grid"] }, "ChartLine": { "keywords": ["axis", "x y", "growth"] }, "ChartLinear": { "keywords": ["axis", "x y"] }, "ChartScatter": { "keywords": ["axis", "x y", "points"] }, "Charting": { "keywords": ["axis", "x y", "bar chart"] }, "ChartingEdit": { "keywords": ["axis", "x y", "pencil", "modify"] }, "ChartingHorizontal": { "keywords": ["axis", "x y", "bar chart"] }, "Check": { "keywords": ["check mark", "success", "apply", "good"] }, "ChevronBottomLeft": { "keywords": ["diagonal", "direction", "corner"] }, "ChevronBottomRight": { "keywords": ["diagonal", "direction", "corner"] }, "ChevronDown": { "keywords": ["direction"] }, "ChevronLeft": { "keywords": ["direction"] }, "ChevronRight": { "keywords": ["direction"] }, "ChevronTopLeft": { "keywords": ["direction", "diagonal"] }, "ChevronTopRight": { "keywords": ["direction", "diagonal"] }, "ChevronUp": { "keywords": ["direction"] }, "Clear": { "keywords": ["remove", "close", "x", "circle", "delete"] }, "ClipboardList": { "keywords": ["to-do", "document"] }, "ClipboardLocation": { "keywords": ["marker", "map pin"] }, "ClipboardTable": { "keywords": ["grid"] }, "Clock": { "keywords": ["time", "alarm", "reminder"] }, "Close": { "keywords": ["x", "clear", "remove"] }, "Cloud": { "keywords": ["solid", "filled", "weather", "sky"] }, "CloudDownload": { "keywords": ["down arrow"] }, "CloudOutline": { "keywords": ["online", "weather", "sky"] }, "CloudUpload": { "keywords": ["up arrow", "load"] }, "Clustering": { "keywords": ["grouping"] }, "ClusteringDropdown": { "keywords": ["down arrow", "grouping", "menu"] }, "Cog": { "keywords": ["gear", "settings", "config", "configuration", "configure"] }, "Collaboration": { "keywords": ["teamwork", "chat", "text message", "parcels"] }, "Color": { "keywords": ["bucket", "paint", "drop"] }, "CommandMissing": { "keywords": ["question mark", "code", "prompt"] }, "Community": { "keywords": ["town hall", "city hall"] }, "CommunityFind": { "keywords": ["town hall", "magnifying", "loupe", "city hall", "search", "magnifying glass"] }, "Compass": { "keywords": ["direction", "north", "west", "east", "south", "pointing"] }, "CompletionReportMapGrid": { "keywords": ["check mark", "squares"] }, "CompletionReportWorkOrder": { "keywords": ["wrench", "check mark", "tool"] }, "Conduit": { "keywords": ["pipe", "cables", "fiber", "optical"] }, "ConduitAdd": { "keywords": ["pipe", "cables", "fiber", "optical", "plus", "add"] }, "ConduitEdit": { "keywords": ["pipe", "cables", "fiber", "optical", "edit", "change", "pencil"] }, "ConduitRemove": { "keywords": ["pipe", "cables", "fiber", "optical", "remove", "delete"] }, "ConfigItemDefault": { "keywords": ["cog", "gear", "settings", "dashed", "box"] }, "Connection": { "keywords": ["network", "computers", "connected"] }, "ConnectionOff": { "keywords": ["computers", "network", "x", "broken", "disconnected"] }, "ConnectionOn": { "keywords": ["computers", "network", "check mark", "connected"] }, "ConsoleMoreInfo": { "keywords": ["prompt", "information", "command line"] }, "ConstructionReport": { "keywords": ["worker", "clipboard", "list", "hard hat"] }, "Contact": { "keywords": ["email", "e-mail", "envelope", "mail"] }, "Coordinates": { "keywords": ["xy", "globe", "lat long", "meridian"] }, "CoordinatesAdd": { "keywords": ["xy", "plus", "speech bubble"] }, "CoordinatesAlbers": { "keywords": ["xy", "radial grid", "meridian"] }, "CoordinatesHide": { "keywords": ["xy", "circle", "strikethrough", "tooltip"] }, "CoordinatesLatLong": { "keywords": ["xy", "tooltip", "speech bubble"] }, "CoordinatesMapTip": { "keywords": ["xy", "tooltip", "speech bubble"] }, "CoordinatesShow": { "keywords": ["xy", "tooltip", "check mark"] }, "CoordinatesUtm": { "keywords": ["xy", "lat long", "meridian"] }, "Copy": { "keywords": ["duplicate", "pages", "documents", "paper", "multiply"] }, "CopyToCollab": { "keywords": ["add", "down arrow", "plus"] }, "CrashAttenuatorAdd": { "keywords": ["plus", "warning", "road sign"] }, "CreateJob": { "keywords": ["plus", "warning", "add", "page", "document", "paper"] }, "Csv": { "keywords": ["comma separated values", "page", "document", "paper"] }, "CsvAdd": { "keywords": ["comma separated values", "page", "plus", "document", "paper"] }, "CsvExport": { "keywords": ["comma separated values", "page", "document", "paper", "share"] }, "Cut": { "keywords": ["scissors"] }, "Dashboard": { "keywords": ["speedometer", "tachometer", "gauge"] }, "DashboardDropdown": { "keywords": ["speedometer", "tachometer", "gauge", "down arrow"] }, "DataEdit": { "keywords": ["pencil", "list", "manage"] }, "DatabaseTest": { "keywords": ["db", "check mark", "data", "validate"] }, "DatasourceAdd": { "keywords": ["page", "plus", "chart", "line chart", "document", "paper"] }, "DateCancel": { "keywords": ["calendar", "x", "close"] }, "DateFilter": { "keywords": ["calendar", "funnel"] }, "Debug": { "keywords": ["insect", "bug"] }, "Decimal": { "keywords": ["numbers", "brackets"] }, "DefaultCommand": { "keywords": ["prompt"] }, "Density": { "keywords": ["compress", "spacing", "padding", "margin"] }, "Details": { "keywords": ["list", "menu", "bullets", "bulleted list"] }, "DetailsDropdown": { "keywords": ["list", "down arrow", "menu"] }, "DeviceActive": { "keywords": ["mobile", "phone", "check mark"] }, "DeviceComputer": { "keywords": ["screen", "monitor", "desktop", "imac"] }, "DeviceLaptop": { "keywords": ["notebook", "computer", "macbook"] }, "DevicePhone": { "keywords": ["mobile", "android", "iphone"] }, "DeviceRotate": { "keywords": ["mobile", "phone", "arrows", "landscape", "portrait"] }, "DeviceTablet": { "keywords": ["mobile", "ipad", "android"] }, "Dialog": { "keywords": ["alert", "popup", "modal"] }, "Diameter": { "keywords": ["circle", "arrow"] }, "DirectionsAlternate": { "keywords": ["arrow", "split", "detour", "divert"] }, "DirectionsArrive": { "keywords": ["finish", "checkered flag", "end", "destination"] }, "DirectionsBearLeft": { "keywords": ["arrow", "bend", "veer", "turn"] }, "DirectionsBearRight": { "keywords": ["arrow", "bend", "veer", "turn"] }, "DirectionsDepart": { "keywords": ["arrow", "start", "begin"] }, "DirectionsExit": { "keywords": ["leave", "arrow", "diverge", "turn"] }, "DirectionsForkCenter": { "keywords": ["arrow", "split", "middle", "straight"] }, "DirectionsForkLeft": { "keywords": ["arrow", "split", "turn"] }, "DirectionsForkRight": { "keywords": ["arrow", "split", "turn"] }, "DirectionsMerge": { "keywords": ["arrow", "join"] }, "DirectionsRoundabout": { "keywords": ["arrows", "circle", "cycle"] }, "DirectionsSharpLeft": { "keywords": ["arrow", "turn"] }, "DirectionsSharpRight": { "keywords": ["arrow", "turn"] }, "DirectionsStraight": { "keywords": ["arrow", "up"] }, "DirectionsTurnLeft": { "keywords": ["arrow"] }, "DirectionsTurnLeftLeft": { "keywords": ["arrow", "180"] }, "DirectionsTurnLeftRight": { "keywords": ["arrow"] }, "DirectionsTurnRight": { "keywords": ["arrow"] }, "DirectionsTurnRightLeft": { "keywords": ["arrow"] }, "DirectionsTurnRightRight": { "keywords": ["arrow", "180"] }, "DirectionsUTurn": { "keywords": ["arrow", "180", "turnaround", "return"] }, "DirectionsUnknown": { "keywords": ["marker", "pin", "question mark", "map pin"] }, "Disclaimer": { "keywords": ["warning", "alert", "exclamation", "triangle", "error", "outline"] }, "DoubleArrowBottomLeft": { "keywords": ["chevron", "angled", "direction"] }, "DoubleArrowBottomRight": { "keywords": ["chevron", "angled", "direction"] }, "DoubleArrowDown": { "keywords": ["chevron", "direction", "expand", "collapse"] }, "DoubleArrowLeft": { "keywords": ["chevron", "direction", "expand", "collapse", "rewind"] }, "DoubleArrowRight": { "keywords": ["chevron", "direction", "expand", "collapse", "fast forward"] }, "DoubleArrowTopLeft": { "keywords": ["chevron", "angled", "direction"] }, "DoubleArrowTopRight": { "keywords": ["chevron", "angled", "direction"] }, "DoubleArrowUp": { "keywords": ["chevron", "direction", "expand", "collapse"] }, "Download": { "keywords": ["down arrow", "save"] }, "Drag": { "keywords": ["drag", "grip", "dots", "grid"] }, "Draw": { "keywords": ["pencil", "polygon", "markup", "sketch", "edit", "shape"] }, "DrawArrow": { "keywords": ["arrow", "outline", "shape", "markup", "sketch"] }, "DrawCircle": { "keywords": ["outline", "shape", "polygon", "radial", "radius", "markup", "sketch"] }, "DrawClearAll": { "keywords": ["close", "circle", "polygon", "markup", "sketch"] }, "DrawClearAllMaps": { "keywords": ["close", "circle", "square", "polygon", "delete", "reset", "stacked", "markup", "sketch"] }, "DrawEdit": { "keywords": ["pencil", "marquee", "dotted", "markup", "sketch"] }, "DrawEllipse": { "keywords": ["outline", "markup", "sketch", "round", "shape"] }, "DrawExtent": { "keywords": ["arrows", "markup", "sketch", "zoom out"] }, "DrawExtract": { "keywords": ["polygon", "down arrow", "markup", "sketch", "download", "save"] }, "DrawFreehand": { "keywords": ["squiggle", "line", "markup", "sketch"] }, "DrawLine": { "keywords": ["line", "markup", "sketch", "polyline"] }, "DrawMultipoint": { "keywords": ["circles", "markup", "sketch", "dots", "multiple", "vertex", "vertices"] }, "DrawPoint": { "keywords": ["circle", "dot", "spot", "markup", "sketch", "vertex"] }, "DrawPolygon": { "keywords": ["shaded", "points", "markup", "sketch"] }, "DrawPolygonFreehand": { "keywords": ["freeform", "markup", "sketch", "shape"] }, "DrawPolyline": { "keywords": ["line", "points", "markup", "sketch", "vertex", "vertices"] }, "DrawRectangle": { "keywords": ["outline", "markup", "sketch", "shape"] }, "DrawReshape": { "keywords": ["change", "markup", "sketch", "shape", "shapes"] }, "DrawText": { "keywords": ["letter", "markup", "sketch", "T", "note", "notes"] }, "DrawTriangle": { "keywords": ["outline", "markup", "sketch", "shape"] }, "DrawUnion": { "keywords": ["squares", "markup", "sketch", "merge", "combine"] }, "DuctConnections": { "keywords": ["fiber", "fibre", "connected", "combine", "extend"] }, "Edit": { "keywords": ["pencil", "change"] }, "EditDoc": { "keywords": ["pencil", "page", "change", "document", "paper"] }, "EditLog": { "keywords": ["pencil", "page", "change", "document", "paper"] }, "EditTemplateSchemas": { "keywords": ["paper", "page", "document", "connect"] }, "EmergencyFacilitySearch": { "keywords": ["building", "magnifying", "loupe", "hospital", "first aid", "medical", "medicine"] }, "Equation": { "keywords": ["math", "maths", "variable", "square root", "formula"] }, "Erase": { "keywords": ["clear", "remove", "delete"] }, "Error": { "keywords": ["warning", "solid", "triangle", "exclamation"] }, "Export": { "keywords": ["page", "arrow left", "document", "paper", "share"] }, "ExtentBasic": { "keywords": ["square", "dotted", "area", "dashed"] }, "ExtentScale": { "keywords": ["resize", "grow", "dashed", "arrow", "square"] }, "FeatureAdd": { "keywords": ["marker", "pin", "plus", "map pin"] }, "FeatureAddHydrant": { "keywords": ["plus", "fire"] }, "FeatureAddLandUse": { "keywords": ["map", "plus", "parcels"] }, "FeatureAddServiceRequest": { "keywords": ["phone", "wrench", "plus", "tool"] }, "FeatureAddTree": { "keywords": ["plus", "forest", "park", "green space", "greenery"] }, "FeatureAddWell": { "keywords": ["oil", "plus"] }, "FeatureCreate": { "keywords": ["plus", "add"] }, "FeatureDelete": { "keywords": ["marker", "trash", "remove", "map pin"] }, "FeatureEdit": { "keywords": ["marker", "pin", "pencil", "map pin"] }, "FeatureLocation": { "keywords": ["pin", "marker", "map pin"] }, "FeatureSummary": { "keywords": ["list", "card"] }, "Feedback": { "keywords": ["chat", "thumb", "speech bubble", "thumbs up", "comment"] }, "Fiber": { "keywords": ["optical", "telco", "telecommunications", "internet", "network", "connect"] }, "FiberAdd": { "keywords": ["optical", "telco", "telecommunications", "internet", "network", "connect", "plus", "increase"] }, "FiberEdit": { "keywords": ["optical", "telco", "telecommunications", "internet", "network", "connect", "change", "pencil", "modify"] }, "FiberRemove": { "keywords": ["optical", "telco", "telecommunications", "internet", "network", "connect", "delete", "decrease"] }, "FieldConfiguration": { "keywords": ["gear", "cog", "input", "form", "text input"] }, "Fields": { "keywords": ["inputs", "text input", "rectangles", "stacked"] }, "FileAdd": { "keywords": ["page", "plus", "document", "paper"] }, "FileClear": { "keywords": ["page", "x", "remove", "document", "paper", "delete"] }, "FileMulti": { "keywords": ["page", "overlap", "stacked", "documents"] }, "Filter": { "keywords": ["funnel"] }, "FilterEffects": { "keywords": ["magic wand", "funnel", "sparkles"] }, "FilterEffectsClear": { "keywords": ["magic wand", "x", "remove", "sparkles", "delete"] }, "FilterEffectsClearAll": { "keywords": ["magic wands", "x", "remove", "sparkles", "delete", "multiple"] }, "FilterError": { "keywords": ["funnel", "exclamation"] }, "FilterOff": { "keywords": ["funnel", "strikethrough"] }, "FilterOffAlt": { "keywords": ["funnel", "outline"] }, "FilterOn": { "keywords": ["funnel", "solid", "filled"] }, "FilterReset": { "keywords": ["funnel", "solid", "filled", "arrow"] }, "FixtureSearch": { "keywords": ["light", "magnifying", "loupe", "find", "magnify", "street light", "street lamp"] }, "Flash": { "keywords": ["lightning", "electricity", "bolt"] }, "Flyout": { "keywords": ["expand", "arrow", "stacked", "appear"] }, "Folder": { "keywords": ["open", "file", "solid", "filled"] }, "FolderAdd": { "keywords": ["plus", "open", "file new", "save as"] }, "FolderOutline": { "keywords": ["outline", "file", "open"] }, "Form": { "keywords": ["letter", "page", "text", "writing", "document", "attributes", "form"] }, "FormEdit": { "keywords": ["letter", "page", "text", "writing", "document", "attributes", "form", "pencil"] }, "Fraction": { "keywords": ["math", "xy"] }, "Gas": { "keywords": ["utility", "flame", "fire", "heat"] }, "Geocode": { "keywords": ["marker", "pin", "map pin", "location"] }, "GeocodeBatch": { "keywords": ["multiple", "marker", "pin", "map pins", "location"] }, "Geolocate": { "keywords": ["target", "reticle", "location", "find me", "locate", "geolocation"] }, "GeolocateActive": { "keywords": ["reticle", "arrow", "point", "target", "location", "find me", "locate", "geolocation"] }, "GeolocateCenter": { "keywords": ["reticle", "point", "target", "location", "locate", "geolocation"] }, "GeolocateCenterLocked": { "keywords": ["reticle", "brackets", "target", "locate", "location", "geolocation"] }, "GeolocateCentered": { "keywords": ["reticle", "point", "target", "location", "locate", "geolocation"] }, "GeolocateDisabled": { "keywords": ["reticle", "slash", "strikethrough", "target", "location", "locate", "geolocation"] }, "GeolocateFollow": { "keywords": ["reticle", "target", "locate", "location", "geolocation"] }, "GeolocateFollowActive": { "keywords": ["reticle", "arrow", "target", "locate", "location", "geolocation"] }, "GeolocateOrientation": { "keywords": ["reticle", "compass", "target", "locate", "location", "geolocation", "brackets"] }, "GeolocateReCenter": { "keywords": ["reticle", "target", "locate", "location", "geolocation"] }, "GeolocateStop": { "keywords": ["reticle", "circle", "slash", "target", "locate", "location", "geolocation", "cancel"] }, "GeolocateTrack": { "keywords": ["reticle", "radar", "sonar", "locate", "location", "geolocation", "find"] }, "GeolocateTrackActive": { "keywords": ["reticle", "radar", "arrow", "locate", "location", "geolocation", "find"] }, "Geometry": { "keywords": ["compass", "architect", "drawing", "draft"] }, "Georss": { "keywords": ["globe", "rss", "feed"] }, "GlobalId": { "keywords": ["document", "globe", "text"] }, "Globe": { "keywords": ["world", "earth", "planet"] }, "GolfCourse": { "keywords": ["ball", "flag", "hole", "putt"] }, "Group": { "keywords": ["squares", "overlap", "stacked"] }, "GuId": { "keywords": ["eye", "vision", "text", "document", "page"] }, "Hamburger": { "keywords": ["menu", "3 lines", "more", "navigation", "links"] }, "Heating": { "keywords": ["waves", "radiate", "bake", "wavy lines"] }, "Heatmap": { "keywords": ["tracking", "temperature", "cluster", "clustering"] }, "HeatmapDropdown": { "keywords": ["tracking", "temperature", "down arrow", "cluster", "clustering"] }, "Help": { "keywords": ["question mark", "circle"] }, "HelpCursor": { "keywords": ["question mark", "arrow", "pointer"] }, "Highlight": { "keywords": ["area", "polygon", "shape"] }, "HighlightClear": { "keywords": ["area", "x", "remove", "delete", "polygon", "shape"] }, "HighlightClearAll": { "keywords": ["area", "x", "multiple", "remove", "delete", "polygons", "shapes"] }, "HighlightFocus": { "keywords": ["area", "pin", "marker", "map pin", "polygon", "shape"] }, "HighlightFocusClear": { "keywords": ["area", "pin", "marker", "x", "remove", "map pin", "delete", "polygon", "shape"] }, "HighlightPulse": { "keywords": ["marker", "pin", "circle", "map pin"] }, "History": { "keywords": ["arrow", "back", "clock", "rewind"] }, "Home": { "keywords": ["house", "start", "begin"] }, "Hourglass": { "keywords": ["time", "interval", "wait", "processing", "timer", "sand"] }, "HouseAdd": { "keywords": ["plus", "home"] }, "HouseEmail": { "keywords": ["envelope", "home", "mail"] }, "HouseNumber": { "keywords": ["home", "hash", "octothorpe", "pound sign"] }, "HouseOwner": { "keywords": ["home", "person", "user"] }, "HousePointer": { "keywords": ["home", "arrow", "cursor"] }, "HouseValue": { "keywords": ["home", "dollar", "worth", "money", "price"] }, "HydrantId": { "keywords": ["number", "identify", "fire"] }, "IdGenerate": { "keywords": ["card", "arrow right", "identification", "identify"] }, "Identifiable": { "keywords": ["reticle", "target", "location", "locate", "geolocation"] }, "Identify": { "keywords": ["reticle", "information", "i", "point", "location", "locate"] }, "IdentifyFreehand": { "keywords": ["draw", "line", "information", "i", "sketch", "markup"] }, "IdentifyMapPoint": { "keywords": ["map marker", "information", "i", "map pin"] }, "IdentifyPolygon": { "keywords": ["information", "i", "shape"] }, "IdentifyPolyline": { "keywords": ["information", "i", "zigzag", "line"] }, "IdentifyRectangle": { "keywords": ["information", "i", "box"] }, "Image": { "keywords": ["photo", "picture", "mountains", "sun"] }, "ImageNone": { "keywords": ["photo", "picture", "broken", "mountains", "sun"] }, "ImportJob": { "keywords": ["page", "arrow right", "text", "load", "document", "paper"] }, "Info": { "keywords": ["information", "circle", "i"] }, "InheritedDenied": { "keywords": ["tree", "branch", "deny", "workflow", "parent"] }, "InheritedEditable": { "keywords": ["tree", "branch", "pencil", "edit", "change", "modify", "workflow", "parent"] }, "InheritedVisible": { "keywords": ["tree", "branch", "eye", "view", "workflow", "parent"] }, "Inspection": { "keywords": ["page", "list", "check mark", "document", "paper", "inspect"] }, "InspectionFeature": { "keywords": ["explosion", "break", "boom"] }, "Integer": { "keywords": ["numbers", "square brackets", "numerals"] }, "IntersectingFeatures": { "keywords": ["squares", "overlap", "merge", "intersection"] }, "IntersectionLocate": { "keywords": ["roads", "marker", "pin", "map pin", "streets"] }, "ItemsFirst": { "keywords": ["start", "chevron", "begin"] }, "Iwtm": { "keywords": ["3 dots", "menu", "list"] }, "Jobs": { "keywords": ["page", "text", "document", "paper"] }, "Json": { "keywords": ["code", "brackets", "curly braces", "semi-colon", "semi colon"] }, "JumpToPoint": { "keywords": ["circles", "arrow right", "leap", "transport", "teleport"] }, "Kml": { "keywords": ["file", "page", "document", "paper", "keyhole markup language"] }, "KmlAdd": { "keywords": ["file", "page", "document", "paper", "keyhole markup language", "plus", "import"] }, "KmlExport": { "keywords": ["file", "page", "document", "paper", "keyhole markup language", "arrow", "export", "share"] }, "Label": { "keywords": ["tag", "tags", "price tag"] }, "LabelOff": { "keywords": ["tag", "tags", "price tag", "off", "slash", "strikethrough"] }, "LabelOptions": { "keywords": ["tag", "tags", "price tag", "settings", "gear", "cog", "manage", "configure"] }, "Language": { "keywords": ["globe", "speech bubble", "internationalization", "localize", "international"] }, "LayerCatalog": { "keywords": ["puzzle", "plus", "add", "addon", "add-on", "extension"] }, "LayerOptions": { "keywords": ["choice", "settings", "gear", "cog", "config", "configuration", "configure"] }, "LayerPresets": { "keywords": ["sliders", "pre-configured", "settings"] }, "LayerRemove": { "keywords": ["close", "clear", "x", "delete", "remove"] }, "LayerStyleEdit": { "keywords": ["pencil", "manage", "change"] }, "Layers": { "keywords": ["stacked"] }, "LayersActions": { "keywords": ["arrows"] }, "LayersAdd": { "keywords": ["stacked", "plus"] }, "LayersEmail": { "keywords": ["stacked", "envelope", "mail"] }, "LayersExtract": { "keywords": ["stacked", "expand", "arrow right", "share"] }, "LayersFiltered": { "keywords": ["stacked", "funnel", "filter"] }, "LayersMenu": { "keywords": ["stacked", "hamburger", "list"] }, "LayersReorder": { "keywords": ["stacked", "move", "up arrow", "down arrow", "order"] }, "LayersSnapping": { "keywords": ["stacked", "magnet", "lightning"] }, "Legend": { "keywords": ["list", "items", "definition"] }, "LegendOff": { "keywords": ["list", "items", "definition", "slash", "strikethrough"] }, "LeisureFacilitySearch": { "keywords": ["weights", "gym", "magnifying glass", "loupe", "magnify", "exercise", "dumbell"] }, "LineStyleEdit": { "keywords": ["pencil", "dotted", "manage", "change"] }, "Link": { "keywords": ["chain", "URL"] }, "LinkExternal": { "keywords": ["external", "arrow", "URL", "pop out"] }, "LocationClear": { "keywords": ["marker", "pin", "reticle", "close", "off", "map pin", "delete", "target", "locate", "geolocation"] }, "LocationSelect": { "keywords": ["reticle", "arrow", "cursor", "target", "point", "pointer", "locate", "geolocation"] }, "LocationSet": { "keywords": ["marker", "pin", "reticle", "map pin", "target", "locate", "geolocation"] }, "Lock": { "keywords": ["padlock", "secure", "security"] }, "ManholeId": { "keywords": ["cover", "utilities", "sewer", "identification"] }, "Map": { "keywords": ["world", "flat", "earth"] }, "Map3rdParty": { "keywords": ["map", "split"] }, "MapArea": { "keywords": ["map", "dotted border", "parcels"] }, "MapBing": { "keywords": ["arrow right", "share", "external"] }, "MapDefault": { "keywords": ["marker", "folded", "pin", "map pin", "paper map"] }, "MapGoogle": { "keywords": ["arrow right", "share", "external"] }, "MapInfo": { "keywords": ["i", "information"] }, "MapOffline": { "keywords": ["disconnected", "exclamation", "wifi", "wi-fi", "parcels"] }, "MapPin": { "keywords": ["marker", "location", "result"] }, "MapPinExtent": { "keywords": ["marker", "location", "result", "constrained", "current map view", "limited"] }, "MapRefresh": { "keywords": ["arrows", "reload", "reset"] }, "MapSyncOff": { "keywords": ["x", "up arrow", "close", "down arrow", "clear", "delete", "swap"] }, "MapSyncOn": { "keywords": ["up arrow", "down arrow", "swap"] }, "MapTax": { "keywords": ["dollar", "value", "price", "parcels"] }, "Markdown": { "keywords": ["code", "M", "formatting"] }, "Markup": { "keywords": ["shape", "area", "polygon", "vertex", "vertices"] }, "MarkupOff": { "keywords": ["slash", "shape", "area", "polygon", "vertex", "vertices", "strikethrough"] }, "Maximize": { "keywords": ["expand", "arrow top right", "box"] }, "MaximizeRestore": { "keywords": ["collapse", "arrow bottom left", "box"] }, "Measure": { "keywords": ["ruler", "size", "distance", "scale"] }, "MeasureArea": { "keywords": ["ruler", "rectangle", "size", "distance", "scale", "fill"] }, "MeasureCircle": { "keywords": ["ruler", "size", "distance", "scale", "radius", "diameter", "circular", "polygon", "shape"] }, "MeasureConvert": { "keywords": ["ruler", "arrows", "size", "distance", "scale", "swap", "change", "switch"] }, "MeasureDistance": { "keywords": ["ruler", "arrows", "size", "scale", "length"] }, "MeasureEllipse": { "keywords": ["ruler", "size", "distance", "scale", "circular", "circle", "radius", "radial", "polygon", "shape"] }, "MeasureFreehand": { "keywords": ["ruler", "size", "distance", "scale"] }, "MeasurePolygon": { "keywords": ["ruler", "size", "distance", "scale", "shape"] }, "MeasurePolygonFreehand": { "keywords": ["ruler", "size", "distance", "scale", "shape"] }, "MeasurePolyline": { "keywords": ["ruler", "size", "distance", "scale", "zigzag"] }, "MeasureRectangle": { "keywords": ["ruler", "size", "distance", "scale", "polygon"] }, "MeasureRestart": { "keywords": ["ruler", "arrows", "size", "distance", "scale", "reset"] }, "Menu": { "keywords": ["hamburger", "action", "navigation", "lines", "stacked", "paragraph"] }, "MenuCollapse": { "keywords": ["arrows", "facing", "inwards"] }, "MenuExpand": { "keywords": ["arrows", "opposite", "outward", "outwards"] }, "MenuGlobal": { "keywords": ["down arrow", "hamburger", "action", "list", "expand"] }, "MenuHoisted": { "keywords": ["hamburger", "action", "navigation", "lines", "stacked", "paragraph"] }, "Message": { "keywords": ["speech bubble", "text", "chat"] }, "Metadata": { "keywords": ["angled brackets", "keywords", "paragraph"] }, "Minimize": { "keywords": ["shrink", "collapse", "arrow bottom left", "bottom line"] }, "MinimizeRestore": { "keywords": ["expand", "enlarge", "arrow top right", "bottom line"] }, "Minus": { "keywords": ["circular border", "subtract", "collapse", "hide"] }, "MinusSquare": { "keywords": ["rounded square", "subtract", "collapse", "hide"] }, "More": { "keywords": ["3 dot menu", "action", "horizontal", "menu", "navigation"] }, "MoreCircle": { "keywords": ["outline", "3 dot menu", "action", "menu", "navigation"] }, "Move": { "keywords": ["arrows", "north", "south", "east", "west"] }, "MoveDown": { "keywords": ["position", "bottom", "boxes", "order"] }, "MoveUp": { "keywords": ["position", "up", "boxes", "order"] }, "MultipleMove": { "keywords": ["move", "points", "lines", "edit", "coincident geometries", "snapped", "rubber banding", "topological", "vertices"] }, "MultipleMoveOff": { "keywords": ["move", "points", "lines", "edit", "coincident geometries", "snapped", "disabled", "rubber banding", "topological", "vertices"] }, "NbaManagement": { "keywords": ["page", "folded", "arrow right", "document", "share", "export"] }, "NeighborhoodSearch": { "keywords": ["homes", "houses", "magnifying glass", "loupe", "magnify", "find", "group"] }, "NeighborhoodSign": { "keywords": ["house", "arrow top right", "directions", "home"] }, "NetworkConnected": { "keywords": ["line", "circle", "linked", "data", "node", "vertex"] }, "NetworkDiagram": { "keywords": ["connected", "nodes", "linked", "data", "connection"] }, "NetworkDownstream": { "keywords": ["down arrow", "node"] }, "NetworkIsolation": { "keywords": ["separate", "disconnected", "data", "target", "pinpoint"] }, "NetworkShortestPath": { "keywords": ["route", "topology", "square", "nodes", "connection", "dashed", "dotted"] }, "NetworkSubnetwork": { "keywords": ["data", "topology", "nodes", "lines", "connection", "dots"] }, "NetworkUpstream": { "keywords": ["up arrow", "node"] }, "NoIcon": { "keywords": ["dotted border", "circle", "blank", "nothing", "na", "empty", "placeholder"] }, "NorthArrow": { "keywords": ["up arrow", "compass", "needle"] }, "ObjectId": { "keywords": ["page", "object", "text", "cube"] }, "OfflineMode": { "keywords": ["globe", "x", "off", "disconnected", "connectivity", "world", "state"] }, "Ont": { "keywords": ["optical", "network", "terminal", "signal", "conversion"] }, "OntAdd": { "keywords": ["optical", "network", "terminal", "signal", "conversion", "addition", "plus"] }, "OntEdit": { "keywords": ["optical", "network", "terminal", "signal", "conversion", "pencil", "modify", "change"] }, "OntRemove": { "keywords": ["optical", "network", "terminal", "signal", "conversion", "delete"] }, "Open": { "keywords": ["file folder", "document", "file", "load", "launch"] }, "OtherClearGridsHighlight": { "keywords": ["x", "remove", "square", "delete", "box", "nodes", "vertices"] }, "OverviewMap": { "keywords": ["squared", "hash", "overlay", "inset"] }, "Owner": { "keywords": ["user", "account", "person", "man", "woman", "silhouette", "profile"] }, "Pan": { "keywords": ["grab", "cursor", "hand", "pointer", "move"] }, "Panel": { "keywords": ["windows", "overlap", "container", "stacked", "layout"] }, "PanelMinimize": { "keywords": ["size", "reduce", "collapse", "hide", "slide"] }, "PanelMore": { "keywords": ["add", "multiple", "grid", "dots"] }, "PanelRestore": { "keywords": ["size", "expand", "enlarge", "expand", "show", "slide"] }, "ParcelAccount": { "keywords": ["house", "home", "acct"] }, "ParcelAin": { "keywords": ["house", "number", "home"] }, "ParcelId": { "keywords": ["pid", "house", "home", "identification"] }, "ParcelPin": { "keywords": ["identification", "number", "house", "home"] }, "Parcels": { "keywords": ["map", "streets", "neighborhood", "neighbourhood"] }, "ParkingLot": { "keywords": ["p", "stalls", "roof", "covered", "solar panel"] }, "PastureSearch": { "keywords": ["grass", "magnifying glass", "loupe", "find", "magnifying"] }, "Patch": { "keywords": ["connect", "patch", "cable", "network", "lan", "internet", "ethernet", "fiber", "fibre"] }, "PatchAdd": { "keywords": ["connect", "patch", "cable", "network", "lan", "internet", "ethernet", "fiber", "fibre", "plus", "increase"] }, "PatchEdit": { "keywords": ["connect", "patch", "cable", "network", "lan", "internet", "ethernet", "fiber", "fibre", "pencil", "change"] }, "PatchPanel": { "keywords": ["connect", "patch", "network", "lan", "internet", "ethernet", "fiber", "fibre"] }, "PatchPanelAdd": { "keywords": ["connect", "patch", "network", "lan", "internet", "ethernet", "fiber", "fibre", "plus", "increase"] }, "PatchPanelEdit": { "keywords": ["connect", "patch", "network", "lan", "internet", "ethernet", "fiber", "fibre", "change", "pencil", "modify"] }, "PatchPanelRemove": { "keywords": ["connect", "patch", "network", "lan", "internet", "ethernet", "fiber", "fibre", "delete", "decrease"] }, "PatchRemove": { "keywords": ["connect", "patch", "cable", "network", "lan", "internet", "ethernet", "fiber", "fibre", "delete"] }, "PavementAdd": { "keywords": ["steam roller", "plus", "road", "compaction", "construction", "paving", "steamroller", "road roller", "paver", "resurface"] }, "Pdf": { "keywords": ["portable document format", "file", "page", "document", "report"] }, "PdfDownload": { "keywords": ["page", "down arrow", "portable document format", "file", "page", "document", "report", "save", "export"] }, "PerfPlanning": { "keywords": ["page", "text", "tower", "document"] }, "Photo": { "keywords": ["camera", "image", "photograph", "video"] }, "Pictometry": { "keywords": ["picture", "geometry", "3d", "buildings", "export"] }, "Pipeline": { "keywords": ["valve", "pipe", "shutoff"] }, "PlaybackNext": { "keywords": ["forward", "arrow right", "circle", "fast forward"] }, "PlaybackPause": { "keywords": ["2 vertical lines", "circle"] }, "PlaybackPlay": { "keywords": ["circle", "arrow right", "triangle"] }, "PlaybackPrevious": { "keywords": ["backward", "circle", "arrow left", "rewind", "back"] }, "PlaybackRecord": { "keywords": ["circle", "dot"] }, "PlaybackStepNext": { "keywords": ["double arrow right", "circle", "fast forward"] }, "PlaybackStepPrevious": { "keywords": ["double arrow left", "circle", "rewind", "back"] }, "PlaybackStop": { "keywords": ["circle", "square"] }, "Plus": { "keywords": ["add", "cross"] }, "PointStyleEdit": { "keywords": ["shapes", "pencil", "circle", "triangle", "star", "markup"] }, "Pointer": { "keywords": ["cursor", "arrow"] }, "PointerClear": { "keywords": ["cursor", "x", "remove"] }, "PointerSubtract": { "keywords": ["cursor", "minus", "remove", "delete"] }, "PoleSearch": { "keywords": ["telegraph post", "magnifying glass", "loupe", "utility pole", "power lines", "power pole", "transmission pole", "telephone pole", "telecommunications pole", "hydro pole", "telegraph post", "pole", "stobie pole"] }, "PolicingAnalyze": { "keywords": ["hat", "calendar", "grid", "schedule", "police", "law enforcement", "table", "data"] }, "PolicingVisualize": { "keywords": ["hat", "police", "eye", "surveillance", "watching", "law enforcement"] }, "PolyMarkAdd": { "keywords": ["plus", "pin", "map pin", "polygon"] }, "PolyMarkUpload": { "keywords": ["up arrow", "pin", "map pin", "polygon"] }, "PolygonAdd": { "keywords": ["plus", "hash", "shape", "multiple", "squares", "overlap", "merge"] }, "PolygonCut": { "keywords": ["scissors", "slash", "remove", "shape", "divide", "separate"] }, "PolygonStyleEdit": { "keywords": ["pencil", "squares", "swatches", "change", "manage"] }, "PoolsSearch": { "keywords": ["swim", "magnifying glass", "loupe", "magnify", "find", "waves", "wavy lines"] }, "PopIn": { "keywords": ["combine", "collapse", "arrow", "bottom left"] }, "PopOut": { "keywords": ["expand", "separate", "arrow", "top right"] }, "Portal": { "keywords": ["gateway", "entry", "ring", "transport"] }, "PotholeAdd": { "keywords": ["road", "street", "damage", "plus", "car"] }, "PotholeInspect": { "keywords": ["road", "street", "damage", "check mark", "car"] }, "PotholeLayer": { "keywords": ["road", "street", "damage", "show", "car", "layers"] }, "PotholePrint": { "keywords": ["road", "street", "damage", "output", "car", "printer"] }, "PotholeRepair": { "keywords": ["road", "street", "damage", "fix", "car", "shovel"] }, "PotholeRepairMultiple": { "keywords": ["road", "street", "damage", "x2", "multiple"] }, "Print": { "keywords": ["output", "printer"] }, "PrintLgcy": { "keywords": ["output", "printer", "legacy", "template", "package"] }, "PrintPkg": { "keywords": ["output", "printer", "template", "package"] }, "PrintPro": { "keywords": ["output", "printer", "arcpro", "template"] }, "Privacy": { "keywords": ["shield", "protect", "info", "information", "secure", "security"] }, "Profile": { "keywords": ["chart", "xy", "line chart", "data"] }, "ProgressReportsMapGrid": { "keywords": ["bar chart", "array", "data"] }, "ProgressReportsWorkOrder": { "keywords": ["bar chart", "wrench", "tool"] }, "Property": { "keywords": ["building", "house", "home", "office"] }, "Proximity": { "keywords": ["pulse", "pin", "marker", "map pin"] }, "Query": { "keywords": ["question mark", "magnifying glass", "loupe", "help"] }, "QueryBuilder": { "keywords": ["layer", "magnifying glass", "loupe", "list", "find"] }, "QueryBuilderAdvanced": { "keywords": ["layer", "magnifying glass", "loupe", "list", "plus", "find", "add"] }, "Queryable": { "keywords": ["database", "db", "search", "find", "question mark", "magnify", "magnifying glass", "loupe"] }, "Rack": { "keywords": ["network", "lan", "internet", "servers", "1u"] }, "RackAdd": { "keywords": ["network", "lan", "internet", "servers", "1u", "plus"] }, "RackEdit": { "keywords": ["network", "lan", "internet", "servers", "1u", "pencil", "change", "modify"] }, "RackRemove": { "keywords": ["network", "lan", "internet", "servers", "1u", "delete"] }, "RangeEnd": { "keywords": ["dots", "line"] }, "RangeStart": { "keywords": ["dots", "line"] }, "Redo": { "keywords": ["right arrow"] }, "RefineAdd": { "keywords": ["squares", "filled", "merge", "combine"] }, "RefineIntersect": { "keywords": ["squares", "intersection", "combine", "exclude", "overlap"] }, "RefineResults": { "keywords": ["squares", "merge", "combine", "overlap"] }, "RefineSubtract": { "keywords": ["squares", "half filled", "remove", "reduce", "cut", "minus", "overlap"] }, "Refresh": { "keywords": ["reset", "restart", "recycle", "redo", "arrows", "circular"] }, "Region": { "keywords": ["globe", "map pin"] }, "ReportDataError": { "keywords": ["exclamation", "page", "document", "information", "warning"] }, "ReportProblem": { "keywords": ["email", "mail", "wrench", "tools", "tool"] }, "ReportSign": { "keywords": ["clipboard", "list", "directions"] }, "Reports": { "keywords": ["chart", "page", "paper", "document", "pie chart", "bar chart"] }, "ReserveSearch": { "keywords": ["park", "cloud", "field", "river", "hills", "magnifying glass"] }, "RestoreDefaults": { "keywords": ["revert", "undo", "roll back", "dot", "arrow back"] }, "ResultCard": { "keywords": ["bulleted list", "two lines", "short list"] }, "ResultClear": { "keywords": ["list", "bulleted list", "remove", "delete", "x"] }, "ResultClearAll": { "keywords": ["bulleted list", "remove", "delete", "x", "multiple", "stacked"] }, "ResultDefault": { "keywords": ["globe", "north america", "planet", "earth", "south america"] }, "ResultList": { "keywords": ["bulleted list", "lines"] }, "ResultPan": { "keywords": ["list", "hand", "move", "cursor"] }, "ReturnArrow": { "keywords": ["back", "return", "undo", "u-turn"] }, "RoadClosure": { "keywords": ["dead end", "closed", "do not enter", "blocked"] }, "RoadClosureSearch": { "keywords": ["dead end", "closed", "blocked", "magnify", "magnifying glass", "magnifying"] }, "RoadSignAdd": { "keywords": ["traffic sign", "plus", "add"] }, "RoadSignsReport": { "keywords": ["traffic sign", "clipboard", "list"] }, "Rooftop": { "keywords": ["solar", "sun", "roof", "solar panel"] }, "RouteExpand": { "keywords": ["directions", "more", "path"] }, "Rss": { "keywords": ["really simple syndication", "rdf site summary", "feed"] }, "RubberBand": { "keywords": ["snap", "snapping", "connected", "cursor", "points"] }, "RuralSearch": { "keywords": ["house", "park", "magnifying glass", "country side"] }, "Save": { "keywords": ["disk", "file"] }, "SaveAs": { "keywords": ["disk", "file", "plus", "add", "new"] }, "ScaleInput": { "keywords": ["scale", "cursor", "I beam"] }, "Scalebar": { "keywords": ["scale", "measure"] }, "ScanBarcode": { "keywords": ["barcode", "bar code", "scanner"] }, "ScanMulti": { "keywords": ["qr code", "barcode", "bar code", "scanner"] }, "ScanQr": { "keywords": ["qr code", "scanner"] }, "School": { "keywords": ["school", "traffic sign"] }, "SchoolsSearch": { "keywords": ["school", "magnify", "magnifying glass", "magnifying"] }, "Scroll": { "keywords": ["scrollable", "container", "scrollbar", "stacked"] }, "Search": { "keywords": ["magnifying glass", "find"] }, "SearchDocument": { "keywords": ["magnifying glass", "find"] }, "SearchDocumentDownload": { "keywords": ["magnifying glass", "find", "page", "paper", "down", "arrow"] }, "SearchDocumentId": { "keywords": ["magnifying glass", "find", "page", "paper"] }, "SearchExtent": { "keywords": ["magnifying glass", "find", "dashed"] }, "SearchGuide": { "keywords": ["magnifying glass", "find", "directions", "sign", "arrow"] }, "SearchLink": { "keywords": ["magnifying glass", "find", "chain"] }, "SearchNeighborhood": { "keywords": ["magnifying glass", "find", "house"] }, "SearchNumber": { "keywords": ["magnifying glass", "find", "hash mark", "hash tag", "hash", "octothorpe", "pound sign"] }, "SearchParcels": { "keywords": ["magnifying glass", "find", "parcel", "map"] }, "SearchPark": { "keywords": ["magnifying glass", "find", "tree"] }, "SearchRailway": { "keywords": ["magnifying glass", "find", "rail", "tracks"] }, "SearchResults": { "keywords": ["magnifying glass", "find", "list"] }, "SearchRoadSigns": { "keywords": ["magnifying glass", "find", "stop", "yield", "traffic"] }, "SearchSegment": { "keywords": ["magnifying glass", "find", "partial", "line", "dotted"] }, "SearchStreet": { "keywords": ["magnifying glass", "find", "road", "roads"] }, "SearchStreetMarking": { "keywords": ["magnifying glass", "find", "road", "roads", "lines"] }, "SearchSurvey": { "keywords": ["magnifying glass", "find", "clipboard", "document", "list"] }, "Searchable": { "keywords": ["magnifying glass", "find"] }, "SectionId": { "keywords": ["parcel", "filled", "hatched"] }, "SelectedAll": { "keywords": ["list", "checkbox"] }, "SelectedNone": { "keywords": ["list", "checkbox"] }, "SelectedPartial": { "keywords": ["list", "checkbox"] }, "Selection": { "keywords": ["cursor", "pointer", "box"] }, "Server": { "keywords": ["data"] }, "ServerManagement": { "keywords": ["data", "settings", "config", "configuration", "configure", "sliders"] }, "ServiceFeature": { "keywords": ["parcel", "parcels", "globe"] }, "ServiceGeocode": { "keywords": ["map pin", "globe", "cog", "gear"] }, "ServiceGeometry": { "keywords": ["extent", "dashed", "globe"] }, "ServiceGlobal": { "keywords": ["globe", "cog", "gear"] }, "ServiceGp": { "keywords": ["flow chart", "flowchart", "globe"] }, "ServiceMap": { "keywords": ["folded", "globe"] }, "ServiceNetwork": { "keywords": ["globe", "computer", "connection", "connected"] }, "ServicePicture": { "keywords": ["image", "globe"] }, "ServiceRequest": { "keywords": ["wrench", "tool", "phone"] }, "ServiceRequestInvestigate": { "keywords": ["wrench", "tool", "magnify", "magnifying glass", "search"] }, "ServiceRequestReport": { "keywords": ["wrench", "tool", "page", "document", "charts"] }, "ServiceStream": { "keywords": ["cloud", "data"] }, "Settings": { "keywords": ["sliders", "configuration", "config"] }, "SewageTreatment": { "keywords": ["stp", "filter", "aeration", "filtration"] }, "Sewer": { "keywords": ["pipe", "drain", "drainage"] }, "Shapefile": { "keywords": ["document", "page", "shapes"] }, "ShapefileAdd": { "keywords": ["document", "page", "shapes", "plus"] }, "ShapefileExport": { "keywords": ["document", "page", "shapes", "arrow", "send"] }, "Share": { "keywords": ["send", "network"] }, "ShareMap": { "keywords": ["parcels", "send", "arrow"] }, "SignAdd": { "keywords": ["directions", "plus", "add", "left", "right", "post"] }, "SignIn": { "keywords": ["login", "log in", "signin", "enter", "lock", "shield", "keyhole", "security"] }, "SignOut": { "keywords": ["logout", "log out", "signout", "exit"] }, "Signature": { "keywords": ["authorization", "x", "autograph", "John Hancock", "write", "writing", "sign", "contract", "signing", "agreement", "pledge", "endorsement"] }, "SkateParkSearch": { "keywords": ["skateboard", "magnify", "magnifying glass"] }, "SlackLoop": { "keywords": ["fiber", "optical", "cable", "manage", "telecommunications"] }, "SlackLoopAdd": { "keywords": ["fiber", "optical", "cable", "manage", "telecommunications", "plus", "increase"] }, "SlackLoopEdit": { "keywords": ["fiber", "optical", "cable", "manage", "telecommunications", "change", "modify", "pencil"] }, "SlackLoopRemove": { "keywords": ["fiber", "optical", "cable", "manage", "telecommunications", "delete", "decrease"] }, "Slider": { "keywords": ["time slider", "drag slider", "tool tip", "number slider"] }, "SlotBottomCenter": { "keywords": ["container"] }, "SlotBottomLeft": { "keywords": ["container"] }, "SlotBottomRight": { "keywords": ["container", "grid"] }, "SlotTopCenter": { "keywords": ["container", "grid"] }, "SlotTopLeft": { "keywords": ["container", "grid"] }, "SlotTopRight": { "keywords": ["container", "grid"] }, "Snapping": { "keywords": ["magnet", "sticky", "magnetic", "lightning"] }, "SnappingOff": { "keywords": ["magnet", "magnetic", "slash"] }, "Snippet": { "keywords": ["text", "plus", "add", "T"] }, "SnowAdd": { "keywords": ["snowflake", "plus", "add"] }, "SnowGradingAssign": { "keywords": ["shovel", "plow", "plowing", "check mark"] }, "SnowGradingCity": { "keywords": ["shovel", "plow", "buildings"] }, "SnowGradingGlobal": { "keywords": ["shovel", "plow", "globe"] }, "SnowGradingMap": { "keywords": ["shovel", "plow", "map pin", "extent"] }, "SnowGradingReport": { "keywords": ["shovel", "plow", "info", "i"] }, "SnowGradingSelection": { "keywords": ["shovel", "plow", "house", "extent"] }, "SnowParking": { "keywords": ["snowflake", "P"] }, "SoccerField": { "keywords": ["ball", "sport", "football"] }, "SortDown": { "keywords": ["arrows", "triangle", "half filled", "outlined"] }, "SortUnsorted": { "keywords": ["arrows", "triangle", "outlined"] }, "SortUp": { "keywords": ["arrows", "triangle", "half filled", "outlined"] }, "SpeedTest": { "keywords": ["stopwatch", "timer", "clock", "alarm", "performance"] }, "SpeedTestResults": { "keywords": ["stopwatch", "timer", "clock", "clipboard", "list", "performance"] }, "SpillAnalysis": { "keywords": ["magnifying glass", "droplet", "water", "liquid", "oil"] }, "Splice": { "keywords": ["network", "fibre", "fiber", "optical", "cable", "split"] }, "SpliceAdd": { "keywords": ["network", "fibre", "fiber", "optical", "cable", "split", "plus"] }, "SpliceEdit": { "keywords": ["network", "fibre", "fiber", "optical", "cable", "split", "pencil", "change"] }, "SpliceRemove": { "keywords": ["network", "fibre", "fiber", "optical", "cable", "split", "delete"] }, "Split": { "keywords": ["columns", "column", "container"] }, "Splitter": { "keywords": ["split", "increase", "divide", "cable", "telecommunications"] }, "SplitterAdd": { "keywords": ["split", "increase", "divide", "cable", "telecommunications", "plus"] }, "SplitterEdit": { "keywords": ["split", "increase", "divide", "cable", "telecommunications", "change", "modify", "pencil"] }, "SplitterRemove": { "keywords": ["split", "increase", "divide", "cable", "telecommunications", "delete", "decrease"] }, "SprayPadSearch": { "keywords": ["sprinkler", "magnifying glass", "water"] }, "Stack": { "keywords": ["row", "stacked", "container"] }, "Star": { "keywords": ["favorite", "favourite", "filled"] }, "StarAdd": { "keywords": ["outline", "outlined", "plus", "add", "favorite", "favourite"] }, "StarCheck": { "keywords": ["check mark", "filled", "favorite", "favourite", "unfavorite", "unfavourite"] }, "StarHalf": { "keywords": ["filled", "outline", "outlined", "favorite", "favourite", "unfavorite", "unfavourite"] }, "StarOutline": { "keywords": ["unfavourite", "unfavorite", "favorite", "favourite", "outlined"] }, "StarRemove": { "keywords": ["filled", "minus", "delete", "favourite", "favorite"] }, "StartNasProcess": { "keywords": ["cogs", "gears", "add", "plus"] }, "StartNba": { "keywords": ["document", "plus", "add", "paper", "sheet", "page"] }, "StationLocator": { "keywords": ["location", "map pin", "here"] }, "Stop": { "keywords": ["x", "close", "octagon"] }, "StreetEdit": { "keywords": ["road", "pencil", "change"] }, "StreetLaneMaintenance": { "keywords": ["road", "exclamation", "triangle", "error"] }, "StreetNumber": { "keywords": ["hash tag", "hash mark", "octothorpe", "pound sign", "road"] }, "Styles": { "keywords": ["swatches", "cursor", "pointer", "squares", "filled"] }, "Subdivision": { "keywords": ["home", "house", "neighborhood", "neighbourhood", "group", "stacked"] }, "Subtract": { "keywords": ["minus", "remove", "delete", "line"] }, "Success": { "keywords": ["circle", "check mark", "check"] }, "Suggestion": { "keywords": ["chat", "check mark", "talk", "confirm", "message", "received"] }, "Survey": { "keywords": ["clipboard", "list", "check mark", "check"] }, "Suspend": { "keywords": ["stop", "sign", "octagon"] }, "SwapView": { "keywords": ["monitor", "arrows", "change", "reset"] }, "SwatchPicker": { "keywords": ["eye dropper", "shape"] }, "SweepingEdit": { "keywords": ["street sweep", "clean", "truck", "maintenance", "pencil", "change"] }, "SweepingGlobal": { "keywords": ["street sweep", "clean", "truck", "maintenance", "globe"] }, "SweepingNeighborhood": { "keywords": ["street sweep", "clean", "truck", "maintenance", "house", "home", "extent", "select"] }, "SweepingPrint": { "keywords": ["street sweep", "clean", "truck", "maintenance", "printer"] }, "SweepingSelection": { "keywords": ["street sweep", "clean", "truck", "maintenance", "map pin", "extent", "select"] }, "SwitchSearch": { "keywords": ["magnifying glass", "find", "line switch"] }, "Symbolize": { "keywords": ["shapes", "star", "triangle", "circle", "square", "quad", "symbols"] }, "SymbolsReset": { "keywords": ["shapes", "triangle", "circle", "square", "arrow", "symbolize"] }, "Sync": { "keywords": ["arrows", "refresh", "reset", "recycle", "loop", "redo", "swap"] }, "SyncManage": { "keywords": ["arrows", "refresh", "reset", "recycle", "loop", "redo", "swap", "cog", "gear", "settings", "config", "configure"] }, "Table": { "keywords": ["grid", "data"] }, "Tabs": { "keywords": ["ui", "tab", "stacked"] }, "Taskbar": { "keywords": ["sidebar", "menu", "box", "items", "ui"] }, "Team": { "keywords": ["group", "user", "users", "multiple", "team"] }, "TeamAdd": { "keywords": ["group", "user", "multiple", "team", "plus"] }, "TeamRemove": { "keywords": ["group", "user", "multiple", "team", "minus"] }, "Telco": { "keywords": ["fibre", "fiber", "transmission line", "wire", "line", "connection"] }, "TemplatePicker": { "keywords": ["documents", "paper", "stacked", "pages"] }, "TennisCourt": { "keywords": ["ball", "racquet", "sport"] }, "Terminate": { "keywords": ["network", "fiber", "fibre", "optical", "end"] }, "TerminateAdd": { "keywords": ["network", "fiber", "fibre", "optical", "end", "plus"] }, "TerminateEdit": { "keywords": ["network", "fiber", "fibre", "optical", "end", "pencil", "change", "modify"] }, "TerminateRemove": { "keywords": ["network", "fiber", "fibre", "optical", "end", "delete"] }, "Text": { "keywords": ["T", "capital", "lowercase"] }, "TextField": { "keywords": ["T", "cursor", "I-beam", "I beam"] }, "ThemeDark": { "keywords": ["moon", "night", "weather"] }, "ThemeLight": { "keywords": ["sun", "day", "weather"] }, "TipsAndTricks": { "keywords": ["light", "lightbulb", "bulb", "idea", "bright"] }, "Toggle3d": { "keywords": ["isometric", "building", "perspective", "block"] }, "Tools": { "keywords": ["wrench", "screwdriver", "cross"] }, "Topographical": { "keywords": ["topography", "topographic", "topology", "edit", "map", "editing"] }, "TopographicalEditing": { "keywords": ["topography", "topographic", "topology", "edit", "map", "editing"] }, "TopographicalEditingClear": { "keywords": ["topography", "topographic", "topology", "edit", "map", "editing", "clear", "off"] }, "Tour": { "keywords": ["safari", "binoculars", "search", "find", "look", "guide", "hat", "pith", "explore"] }, "TownshipSearch": { "keywords": ["city hall", "magnifying glass", "building", "columns"] }, "Trace": { "keywords": ["tracing", "fibre", "fiber", "follow", "locate", "path", "highlight", "cable", "strands"] }, "TraceClear": { "keywords": ["tracing", "fibre", "fiber", "follow", "locate", "path", "highlight", "cable", "strands", "remove", "delete"] }, "TraceStrands": { "keywords": ["tracing", "fibre", "fiber", "follow", "locate", "path", "highlight", "cable", "strands"] }, "Traffic": { "keywords": ["car", "cars", "stacked", "multiple"] }, "TransformerSearch": { "keywords": ["power", "utility", "lightning", "magnifying glass", "utility pole", "power lines", "power pole", "electricity"] }, "Trash": { "keywords": ["delete", "remove", "clear", "garbage"] }, "Undo": { "keywords": ["back", "arrow", "left"] }, "Ungroup": { "keywords": ["squares", "square", "stacked"] }, "Unlink": { "keywords": ["chain", "link", "break", "disconnect"] }, "Unlock": { "keywords": ["lock", "padlock", "open", "insecure", "access"] }, "Update": { "keywords": ["up arrow"] }, "Upload": { "keywords": ["up arrow", "load"] }, "UploadLayer": { "keywords": ["cloud", "up arrow", "layers", "load"] }, "UploadOptions": { "keywords": ["cloud", "cog", "up arrow", "settings", "load"] }, "UrbanSearch": { "keywords": ["buildings", "books", "stack", "magnifying glass"] }, "Usb": { "keywords": ["device", "connection"] }, "User": { "keywords": ["profile", "silhouette", "circle"] }, "UserCog": { "keywords": ["user settings", "profile"] }, "UsersManage": { "keywords": ["group", "user", "multiple", "team"] }, "UtilityCutAdd": { "keywords": ["utility pole", "power lines", "power pole", "transmission pole", "telephone pole", "telecommunications pole", "hydro pole", "telegraph post", "pole", "stobie pole", "strikethrough", "plus"] }, "UtilityCutDelete": { "keywords": ["utility pole", "power lines", "power pole", "transmission pole", "telephone pole", "telecommunications pole", "hydro pole", "telegraph post", "pole", "stobie pole", "strikethrough", "minus"] }, "UtilityCutEdit": { "keywords": ["utility pole", "power lines", "power pole", "transmission pole", "telephone pole", "telecommunications pole", "hydro pole", "telegraph post", "pole", "stobie pole", "strikethrough", "pencil"] }, "UtilityCutMove": { "keywords": ["utility pole", "power lines", "power pole", "transmission pole", "telephone pole", "telecommunications pole", "hydro pole", "telegraph post", "pole", "stobie pole", "strikethrough", "arrows", "four arrows"] }, "ValueSetConfiguration": { "keywords": ["grid", "squares", "gear", "cog"] }, "ValveInspected": { "keywords": ["pipe", "fitting", "fixture", "check mark", "checkmark", "success"] }, "VendorsManage": { "keywords": ["users", "group", "hard hat", "hardhat", "construction", "worker", "crew", "team"] }, "ViewGrid": { "keywords": ["squares", "grid", "3x3", "table"] }, "ViewList": { "keywords": ["bullets", "bullet", "three", "3"] }, "ViewSwitchCompact": { "keywords": ["bullets", "bullet", "stacked", "tabs"] }, "ViewSwitchList": { "keywords": ["bullets", "bullet", "stacked", "overlap"] }, "ViewSwitchTable": { "keywords": ["grid", "stacked", "overlap"] }, "ViewSwitchTabs": { "keywords": ["chart", "report", "stacked", "bullet"] }, "Visibility": { "keywords": ["binoculars", "look", "find", "search", "tour"] }, "Visible": { "keywords": ["eye", "eyeball"] }, "VisibleNoChange": { "keywords": ["equals", "no change", "same", "unchanged"] }, "VisibleOff": { "keywords": ["eye", "eyeball", "strike", "strikethrough"] }, "Visualizations": { "keywords": ["layers", "shapes"] }, "Warning": { "keywords": ["exclamation", "circle", "outline"] }, "Water": { "keywords": ["waves", "wavy lines"] }, "WaterDrop": { "keywords": ["waves", "drip", "liquid"] }, "Watershed": { "keywords": ["river", "mountain", "hill", "cloud", "park", "wilderness"] }, "Weather": { "keywords": ["sun", "cloud", "rain", "raining"] }, "Wifi": { "keywords": ["signal", "waves"] }, "WindowDock": { "keywords": ["box", "filled", "arrow", "bottom left", "half filled", "half"] }, "WindowNew": { "keywords": ["pop out", "arrow", "top right", "stacked", "boxes"] }, "WorkOrder": { "keywords": ["construction", "worker", "hardhat", "hard hat", "wrench", "tool"] }, "WorkOrderClose": { "keywords": ["construction", "worker", "hardhat", "hard hat", "x", "delete", "clear"] }, "WorkOrderComplete": { "keywords": ["construction", "worker", "hardhat", "hard hat", "checkmark", "check mark", "success", "approve"] }, "WorkOrderFastTrack": { "keywords": ["construction", "worker", "hardhat", "hard hat", "fast forward", "arrows", "right"] }, "Workflow": { "keywords": ["flowchart", "flow chart", "diagram"] }, "WorkingView": { "keywords": ["map", "edit", "pencil", "parcel", "parcels", "streets"] }, "Xlsx": { "keywords": ["spreadsheet", "document", "sheet", "paper"] }, "XlsxAdd": { "keywords": ["spreadsheet", "document", "sheet", "paper", "plus"] }, "XlsxExport": { "keywords": ["spreadsheet", "document", "sheet", "paper", "arrow right", "export"] }, "Xml": { "keywords": ["brackets", "code", "document"] }, "YouthCenterSearch": { "keywords": ["person", "user", "celebrate", "arms up"] }, "ZoomControl": { "keywords": ["pill", "plus", "minus"] }, "ZoomExtent": { "keywords": ["arrows", "diagonal", "dashed", "box", "zoom out"] }, "ZoomExtentAll": { "keywords": ["arrows", "diagonal", "dashed", "box", "zoom out", "stacked", "multiple", "overlap"] }, "ZoomFeature": { "keywords": ["arrow", "down", "in"] }, "ZoomFull": { "keywords": ["arrows", "zoom out", "four arrows", "outward", "out", "circle", "outline"] }, "ZoomIn": { "keywords": ["plus", "circle", "outline"] }, "ZoomInitial": { "keywords": ["circle", "outline", "refresh", "reset"] }, "ZoomNext": { "keywords": ["circle", "outline", "arrow", "right", "forward"] }, "ZoomOut": { "keywords": ["minus", "circle", "outline"] }, "ZoomPrevious": { "keywords": ["circle", "outline", "arrow", "left", "back"] }, "ZoomVisibleScale": { "keywords": ["arrow", "box", "square", "dashed", "filled"] } };
|
|
2
2
|
export { keywords };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vertigis/react-ui",
|
|
3
|
-
"version": "20.0.
|
|
3
|
+
"version": "20.0.2",
|
|
4
4
|
"description": "Utilities and React components used in VertiGIS applications.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"vertigis",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"@types/lodash.escape": "^4.0.9",
|
|
38
38
|
"@types/react": "^18.3.12",
|
|
39
39
|
"@types/react-color": "^3.0.12",
|
|
40
|
-
"@vertigis/icons": "^6.
|
|
40
|
+
"@vertigis/icons": "^6.7.0"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"@emotion/react": "*",
|