@vertigis/react-ui 21.4.1 → 21.5.0
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/Panel/Panel.d.ts +92 -0
- package/Panel/Panel.js +149 -0
- package/Panel/index.d.ts +2 -0
- package/Panel/index.js +2 -0
- package/PanelContent/PanelContent.d.ts +23 -0
- package/PanelContent/PanelContent.js +30 -0
- package/PanelContent/index.d.ts +1 -0
- package/PanelContent/index.js +1 -0
- package/icons/ServiceUpload.d.ts +3 -0
- package/icons/ServiceUpload.js +3 -0
- package/icons/index.d.ts +1 -0
- package/icons/index.js +1 -0
- package/icons/keywords.d.ts +3 -0
- package/icons/keywords.js +1 -1
- package/package.json +1 -1
package/Panel/Panel.d.ts
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import type { FC, ReactNode } from "react";
|
|
2
|
+
import { type BoxProps } from "../Box";
|
|
3
|
+
export declare const panelClasses: {
|
|
4
|
+
root: string;
|
|
5
|
+
content: string;
|
|
6
|
+
contentEntered: string;
|
|
7
|
+
header: string;
|
|
8
|
+
headerCollapsible: string;
|
|
9
|
+
headerCollapseButton: string;
|
|
10
|
+
headerEndAdornment: string;
|
|
11
|
+
headerStartAdornment: string;
|
|
12
|
+
headerTitle: string;
|
|
13
|
+
headerTitleHelperText: string;
|
|
14
|
+
headerTitleText: string;
|
|
15
|
+
headerTitleTextCollapsed: string;
|
|
16
|
+
};
|
|
17
|
+
export type PanelClassKey = keyof typeof panelClasses;
|
|
18
|
+
export type PanelClasses = Record<PanelClassKey, string>;
|
|
19
|
+
export interface PanelProps extends Omit<BoxProps, "title"> {
|
|
20
|
+
/**
|
|
21
|
+
* The CSS class name of the root element.
|
|
22
|
+
*/
|
|
23
|
+
className?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Additional CSS classes to be applied to the component.
|
|
26
|
+
*/
|
|
27
|
+
classes?: Partial<PanelClasses>;
|
|
28
|
+
/**
|
|
29
|
+
* Whether the panel is collapsed by default. Defaults to false.
|
|
30
|
+
*/
|
|
31
|
+
collapsedByDefault?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
* Whether the panel is collapsible. Defaults to false.
|
|
34
|
+
*/
|
|
35
|
+
collapsible?: boolean;
|
|
36
|
+
/**
|
|
37
|
+
* The aria-label to be used for the collapse panel button.
|
|
38
|
+
*/
|
|
39
|
+
collapseLabel?: string;
|
|
40
|
+
/**
|
|
41
|
+
* The aria-label to be used for the expand panel button.
|
|
42
|
+
*/
|
|
43
|
+
expandLabel?: string;
|
|
44
|
+
/**
|
|
45
|
+
* The adornment to be displayed at the end of the panel header.
|
|
46
|
+
*/
|
|
47
|
+
headerEndAdornment?: ReactNode;
|
|
48
|
+
/**
|
|
49
|
+
* The adornment to be displayed at the start of the panel header.
|
|
50
|
+
*/
|
|
51
|
+
headerStartAdornment?: ReactNode;
|
|
52
|
+
/**
|
|
53
|
+
* The semantic heading level to use for the title. Defaults to "h3"
|
|
54
|
+
*/
|
|
55
|
+
headingLevel?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
|
|
56
|
+
/**
|
|
57
|
+
* The title of the group.
|
|
58
|
+
*/
|
|
59
|
+
title?: ReactNode;
|
|
60
|
+
/**
|
|
61
|
+
* Additional text to display beside the title.
|
|
62
|
+
*/
|
|
63
|
+
titleHelperText?: ReactNode;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* A Panel is a titled container for content, optionally collapsible. The
|
|
67
|
+
* simplest arrangement is a Panel containing a single PanelContent:
|
|
68
|
+
*
|
|
69
|
+
* ```
|
|
70
|
+
* <Panel>
|
|
71
|
+
* <PanelContent>...</PanelContent>
|
|
72
|
+
* </Panel>;
|
|
73
|
+
* ```
|
|
74
|
+
*
|
|
75
|
+
* Additionally, Panels can nest other Panels to create more complex "accordion"
|
|
76
|
+
* style layouts:
|
|
77
|
+
*
|
|
78
|
+
* ```
|
|
79
|
+
* <Panel>
|
|
80
|
+
* <PanelContent />
|
|
81
|
+
* <Panel />
|
|
82
|
+
* <Panel />
|
|
83
|
+
* ...
|
|
84
|
+
* </Panel>;
|
|
85
|
+
* ```
|
|
86
|
+
*
|
|
87
|
+
* Use either a PanelContent component or another Panel to wrap content
|
|
88
|
+
* sections. Wrapping in PanelContent is optional and can be omitted if you'd
|
|
89
|
+
* like more control over the styling of the panel.
|
|
90
|
+
*/
|
|
91
|
+
declare const Panel: FC<PanelProps>;
|
|
92
|
+
export default Panel;
|
package/Panel/Panel.js
ADDED
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import clsx from "clsx";
|
|
3
|
+
import { useCallback, useMemo, useState } from "react";
|
|
4
|
+
import Box, {} from "../Box";
|
|
5
|
+
import Collapse from "../Collapse";
|
|
6
|
+
import IconButton from "../IconButton";
|
|
7
|
+
import Typography from "../Typography";
|
|
8
|
+
import ChevronDownIcon from "../icons/ChevronDown";
|
|
9
|
+
import ChevronRightIcon from "../icons/ChevronRight";
|
|
10
|
+
import { styled, mergeStyles } from "../styles";
|
|
11
|
+
// This prefix is left as-is for compatibility with the deprecated internal
|
|
12
|
+
// panel implementation.
|
|
13
|
+
const PREFIX = "GcxPanelGroup";
|
|
14
|
+
export const panelClasses = {
|
|
15
|
+
root: `${PREFIX}-root`,
|
|
16
|
+
content: `${PREFIX}-content`,
|
|
17
|
+
contentEntered: `${PREFIX}-contentEntered`,
|
|
18
|
+
header: `${PREFIX}-header`,
|
|
19
|
+
headerCollapsible: `${PREFIX}-headerCollapsible`,
|
|
20
|
+
headerCollapseButton: `${PREFIX}-headerCollapseButton`,
|
|
21
|
+
headerEndAdornment: `${PREFIX}-headerEndAdornment`,
|
|
22
|
+
headerStartAdornment: `${PREFIX}-headerStartAdornment`,
|
|
23
|
+
headerTitle: `${PREFIX}-headerTitle`,
|
|
24
|
+
headerTitleHelperText: `${PREFIX}-headerTitleHelperText`,
|
|
25
|
+
headerTitleText: `${PREFIX}-headerTitleText`,
|
|
26
|
+
headerTitleTextCollapsed: `${PREFIX}-headerTitleTextCollapsed`,
|
|
27
|
+
};
|
|
28
|
+
const Root = styled(Box)(({ theme: { palette, spacing, typography: { pxToRem }, }, }) => ({
|
|
29
|
+
border: `1px solid ${palette.grey[400]}`,
|
|
30
|
+
display: "flex",
|
|
31
|
+
flexDirection: "column",
|
|
32
|
+
"& + &": {
|
|
33
|
+
// Avoid double borders
|
|
34
|
+
borderTop: "none",
|
|
35
|
+
},
|
|
36
|
+
[`& .${panelClasses.content}`]: {
|
|
37
|
+
flex: 1,
|
|
38
|
+
overflowY: "auto",
|
|
39
|
+
[`> .${panelClasses.root}`]: {
|
|
40
|
+
// Style nested panels.
|
|
41
|
+
borderLeft: "none",
|
|
42
|
+
borderRight: "none",
|
|
43
|
+
},
|
|
44
|
+
},
|
|
45
|
+
[`& .${panelClasses.contentEntered}`]: {
|
|
46
|
+
// This is needed otherwise content inside the group such as
|
|
47
|
+
// autocomplete dropdowns won't overflow the group and are cut off
|
|
48
|
+
overflow: "visible",
|
|
49
|
+
},
|
|
50
|
+
[`& .${panelClasses.header}`]: {
|
|
51
|
+
position: "relative",
|
|
52
|
+
display: "flex",
|
|
53
|
+
alignItems: "center",
|
|
54
|
+
padding: spacing(0.5, 1),
|
|
55
|
+
minHeight: pxToRem(38),
|
|
56
|
+
backgroundColor: palette?.grey?.light,
|
|
57
|
+
},
|
|
58
|
+
[`& .${panelClasses.headerCollapsible}`]: {
|
|
59
|
+
cursor: "pointer",
|
|
60
|
+
},
|
|
61
|
+
[`& .${panelClasses.headerTitle}`]: {
|
|
62
|
+
alignItems: "center",
|
|
63
|
+
display: "flex",
|
|
64
|
+
flex: 1,
|
|
65
|
+
overflow: "hidden",
|
|
66
|
+
paddingRight: spacing(1),
|
|
67
|
+
paddingLeft: spacing(1),
|
|
68
|
+
},
|
|
69
|
+
[`& .${panelClasses.headerTitleHelperText}`]: {
|
|
70
|
+
paddingLeft: spacing(1),
|
|
71
|
+
overflowWrap: "anywhere",
|
|
72
|
+
},
|
|
73
|
+
[`& .${panelClasses.headerTitleText}`]: {
|
|
74
|
+
fontSize: pxToRem(16),
|
|
75
|
+
fontWeight: 600,
|
|
76
|
+
lineHeight: 1.5,
|
|
77
|
+
overflowWrap: "anywhere",
|
|
78
|
+
paddingBottom: "2px",
|
|
79
|
+
},
|
|
80
|
+
[`& .${panelClasses.headerTitleTextCollapsed}`]: {
|
|
81
|
+
fontSize: pxToRem(16),
|
|
82
|
+
fontWeight: 400,
|
|
83
|
+
fontStyle: "italic",
|
|
84
|
+
lineHeight: 1.5,
|
|
85
|
+
overflowWrap: "anywhere",
|
|
86
|
+
},
|
|
87
|
+
}));
|
|
88
|
+
/**
|
|
89
|
+
* A Panel is a titled container for content, optionally collapsible. The
|
|
90
|
+
* simplest arrangement is a Panel containing a single PanelContent:
|
|
91
|
+
*
|
|
92
|
+
* ```
|
|
93
|
+
* <Panel>
|
|
94
|
+
* <PanelContent>...</PanelContent>
|
|
95
|
+
* </Panel>;
|
|
96
|
+
* ```
|
|
97
|
+
*
|
|
98
|
+
* Additionally, Panels can nest other Panels to create more complex "accordion"
|
|
99
|
+
* style layouts:
|
|
100
|
+
*
|
|
101
|
+
* ```
|
|
102
|
+
* <Panel>
|
|
103
|
+
* <PanelContent />
|
|
104
|
+
* <Panel />
|
|
105
|
+
* <Panel />
|
|
106
|
+
* ...
|
|
107
|
+
* </Panel>;
|
|
108
|
+
* ```
|
|
109
|
+
*
|
|
110
|
+
* Use either a PanelContent component or another Panel to wrap content
|
|
111
|
+
* sections. Wrapping in PanelContent is optional and can be omitted if you'd
|
|
112
|
+
* like more control over the styling of the panel.
|
|
113
|
+
*/
|
|
114
|
+
const Panel = ({ children, className, classes: classesProp, collapsedByDefault, collapsible, collapseLabel, expandLabel, headerEndAdornment, headerStartAdornment, headingLevel = "h3", title, titleHelperText, ...boxProps }) => {
|
|
115
|
+
const [collapsed, setCollapsed] = useState(collapsedByDefault);
|
|
116
|
+
const handleCollapseBtnClick = useCallback((event) => {
|
|
117
|
+
event.stopPropagation();
|
|
118
|
+
setCollapsed(!collapsed);
|
|
119
|
+
}, [collapsed]);
|
|
120
|
+
const handleHeaderAdornmentClick = useCallback((event) => {
|
|
121
|
+
// A header adornment that gets passed in as a prop may have an onClick
|
|
122
|
+
// handler. To make sure that clicking on a header adornment does not
|
|
123
|
+
// trigger expanding / collapsing of the group, we wrap the adornment
|
|
124
|
+
// in a div whose onClick handler calls this function so we can stop the
|
|
125
|
+
// event propagation.
|
|
126
|
+
event.stopPropagation();
|
|
127
|
+
}, []);
|
|
128
|
+
const handleCollapseHeaderClick = useCallback(() => {
|
|
129
|
+
if (!collapsible) {
|
|
130
|
+
return;
|
|
131
|
+
}
|
|
132
|
+
setCollapsed(!collapsed);
|
|
133
|
+
}, [collapsed, collapsible]);
|
|
134
|
+
const classes = useMemo(() => mergeStyles(panelClasses, classesProp), [classesProp]);
|
|
135
|
+
const content = useMemo(() => (children ? _jsx("div", { className: classes.content, children: children }) : null), [children, classes.content]);
|
|
136
|
+
const CollapseBtnIcon = useMemo(() => (collapsed ? ChevronRightIcon : ChevronDownIcon), [collapsed]);
|
|
137
|
+
const collapseButtonLabel = useMemo(() => `${collapsed ? expandLabel : collapseLabel} ${typeof title === "string" ? title : ""}`, [collapseLabel, collapsed, expandLabel, title]);
|
|
138
|
+
const titleElement = useMemo(() => title &&
|
|
139
|
+
(typeof title === "string" ? (_jsx(Typography, { variant: "h6", component: headingLevel, className: collapsed ? classes.headerTitleTextCollapsed : classes.headerTitleText, children: title })) : (_jsx(Box, { "aria-level": Number(headingLevel[1] ?? 3), role: "heading", className: collapsed ? classes.headerTitleTextCollapsed : classes.headerTitleText, children: title }))), [classes, collapsed, headingLevel, title]);
|
|
140
|
+
const subtitleElement = useMemo(() => titleHelperText &&
|
|
141
|
+
(typeof titleHelperText === "string" ? (_jsx(Typography, { role: "doc-subtitle", component: "div", className: classes.headerTitleHelperText, children: titleHelperText })) : (_jsx(Box, { role: "doc-subtitle", className: classes.headerTitleHelperText, children: titleHelperText }))), [classes, titleHelperText]);
|
|
142
|
+
return (_jsxs(Root, { className: clsx("GcxPanelGroup", classes.root, className), ...boxProps, children: [title && (_jsxs("div", { className: clsx(classes.header, {
|
|
143
|
+
[classes.headerCollapsible]: collapsible,
|
|
144
|
+
}), "data-test": "PanelGroup-header", onClick: handleCollapseHeaderClick,
|
|
145
|
+
// The click functionality of this element is a convenience,
|
|
146
|
+
// and is not required by keyboard users.
|
|
147
|
+
role: "presentation", children: [collapsible && (_jsx(IconButton, { className: classes.headerCollapseButton, "aria-expanded": !collapsed, "aria-label": collapseButtonLabel, title: collapseButtonLabel, onClick: handleCollapseBtnClick, "data-group-name": title, size: "small", children: _jsx(CollapseBtnIcon, {}) })), _jsx("div", { className: classes.headerStartAdornment, onClick: handleHeaderAdornmentClick, role: "presentation", children: headerStartAdornment }), _jsxs("div", { className: classes.headerTitle, children: [titleElement, subtitleElement] }), _jsx("div", { className: classes.headerEndAdornment, onClick: handleHeaderAdornmentClick, role: "presentation", children: headerEndAdornment })] })), collapsible ? (_jsx(Collapse, { classes: { entered: classes.contentEntered }, unmountOnExit: true, in: !collapsed, children: content })) : (content)] }));
|
|
148
|
+
};
|
|
149
|
+
export default Panel;
|
package/Panel/index.d.ts
ADDED
package/Panel/index.js
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { FC } from "react";
|
|
2
|
+
import type { BoxProps } from "../Box";
|
|
3
|
+
/**
|
|
4
|
+
* A styled Box component intended to be used as a "section" in a panel. You can
|
|
5
|
+
* combine this with other instances of itself or with nested Panels to create a
|
|
6
|
+
* single Panel layout. Use this when you don't want to include a title or other
|
|
7
|
+
* controls for the section content, or for a single section of content inside a
|
|
8
|
+
* Panel.
|
|
9
|
+
*
|
|
10
|
+
* ```
|
|
11
|
+
* <Panel>
|
|
12
|
+
* <PanelContent />
|
|
13
|
+
* <Panel />
|
|
14
|
+
* <Panel />
|
|
15
|
+
* ...
|
|
16
|
+
* </Panel>;
|
|
17
|
+
* ```
|
|
18
|
+
*
|
|
19
|
+
* Use of the PanelContent control is optional and can be omitted to have more
|
|
20
|
+
* direct control over the styling of the Panel content.
|
|
21
|
+
*/
|
|
22
|
+
declare const PanelContent: FC<BoxProps>;
|
|
23
|
+
export default PanelContent;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import Box from "../Box";
|
|
3
|
+
/**
|
|
4
|
+
* A styled Box component intended to be used as a "section" in a panel. You can
|
|
5
|
+
* combine this with other instances of itself or with nested Panels to create a
|
|
6
|
+
* single Panel layout. Use this when you don't want to include a title or other
|
|
7
|
+
* controls for the section content, or for a single section of content inside a
|
|
8
|
+
* Panel.
|
|
9
|
+
*
|
|
10
|
+
* ```
|
|
11
|
+
* <Panel>
|
|
12
|
+
* <PanelContent />
|
|
13
|
+
* <Panel />
|
|
14
|
+
* <Panel />
|
|
15
|
+
* ...
|
|
16
|
+
* </Panel>;
|
|
17
|
+
* ```
|
|
18
|
+
*
|
|
19
|
+
* Use of the PanelContent control is optional and can be omitted to have more
|
|
20
|
+
* direct control over the styling of the Panel content.
|
|
21
|
+
*/
|
|
22
|
+
const PanelContent = ({ children, sx, ...props }) => (_jsx(Box, { sx: {
|
|
23
|
+
...sx,
|
|
24
|
+
padding: theme => theme.spacing(2),
|
|
25
|
+
"& + &": {
|
|
26
|
+
// Avoid double padding
|
|
27
|
+
paddingTop: 0,
|
|
28
|
+
},
|
|
29
|
+
}, ...props, children: children }));
|
|
30
|
+
export default PanelContent;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./PanelContent.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./PanelContent.js";
|
|
@@ -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: "M3.818 5.091H.909L6 0l5.091 5.091H8.182v3.918a10.5 10.5 0 0 0-2.022 3.355H3.818zm-2.363 9.454v-2.909H0V16h5.5c0-.495.046-.978.112-1.455zm14.779-6.036C16.15 8.5 16.075 8.5 16 8.5s-.15 0-.234.009C11.725 8.631 8.5 11.931 8.5 16s3.225 7.369 7.266 7.491c.084.009.159.009.234.009s.15 0 .234-.009C20.275 23.369 23.5 20.069 23.5 16s-3.225-7.369-7.266-7.491m-3.037 1.632c-.656.862-1.153 2.025-1.434 3.356H10a6.53 6.53 0 0 1 3.197-3.356M9.503 16c0-.516.056-1.022.178-1.5h1.912c-.066.478-.094.984-.094 1.5s.028 1.022.094 1.5H9.681a6 6 0 0 1-.178-1.5M10 18.503h1.763c.281 1.331.778 2.494 1.434 3.356A6.53 6.53 0 0 1 10 18.503m5.503 3.909c-1.134-.319-2.231-1.763-2.728-3.909h2.728zm0-4.912h-2.897c-.075-.469-.103-.975-.103-1.5s.028-1.031.103-1.5h2.897zm0-4.003h-2.728c.497-2.147 1.594-3.591 2.728-3.909zm6.497 0h-1.763c-.281-1.331-.778-2.494-1.434-3.356A6.53 6.53 0 0 1 22 13.497m-5.503-3.91c1.134.319 2.231 1.763 2.728 3.909h-2.728zm0 4.913h2.897c.075.469.103.975.103 1.5s-.028 1.031-.103 1.5h-2.897zm0 7.912v-3.909h2.728c-.497 2.147-1.594 3.591-2.728 3.909m2.306-.553c.656-.863 1.153-2.025 1.434-3.356H22a6.53 6.53 0 0 1-3.197 3.356m1.603-4.359c.066-.478.094-.984.094-1.5s-.028-1.022-.094-1.5h1.912c.122.478.178.984.178 1.5s-.056 1.022-.178 1.5z" }), "ServiceUpload");
|
package/icons/index.d.ts
CHANGED
|
@@ -618,6 +618,7 @@ export { default as ServiceRequest } from "./ServiceRequest.js";
|
|
|
618
618
|
export { default as ServiceRequestInvestigate } from "./ServiceRequestInvestigate.js";
|
|
619
619
|
export { default as ServiceRequestReport } from "./ServiceRequestReport.js";
|
|
620
620
|
export { default as ServiceStream } from "./ServiceStream.js";
|
|
621
|
+
export { default as ServiceUpload } from "./ServiceUpload.js";
|
|
621
622
|
export { default as Settings } from "./Settings.js";
|
|
622
623
|
export { default as SewageTreatment } from "./SewageTreatment.js";
|
|
623
624
|
export { default as Sewer } from "./Sewer.js";
|
package/icons/index.js
CHANGED
|
@@ -618,6 +618,7 @@ export { default as ServiceRequest } from "./ServiceRequest.js";
|
|
|
618
618
|
export { default as ServiceRequestInvestigate } from "./ServiceRequestInvestigate.js";
|
|
619
619
|
export { default as ServiceRequestReport } from "./ServiceRequestReport.js";
|
|
620
620
|
export { default as ServiceStream } from "./ServiceStream.js";
|
|
621
|
+
export { default as ServiceUpload } from "./ServiceUpload.js";
|
|
621
622
|
export { default as Settings } from "./Settings.js";
|
|
622
623
|
export { default as SewageTreatment } from "./SewageTreatment.js";
|
|
623
624
|
export { default as Sewer } from "./Sewer.js";
|
package/icons/keywords.d.ts
CHANGED
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"] }, "Ai": { "keywords": ["sparkles", "pin", "tools", "map marker", "artificial intelligence"] }, "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"] }, "Dxf": { "keywords": ["file", "page", "document", "paper", "drawing exchange format"] }, "DxfAdd": { "keywords": ["file", "page", "document", "paper", "drawing exchange format", "plus", "import"] }, "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"] }, "FgdbAdd": { "keywords": ["file geodatabase", "page", "file type", "sheet", "paper", "add", "plus", "import"] }, "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"] }, "KmzAdd": { "keywords": ["file", "page", "document", "paper", "compressed kml", "plus", "import"] }, "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"] }, "LpkxAdd": { "keywords": ["page", "file type", "sheet", "paper", "add", "plus", "layer package", "import"] }, "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"] } };
|
|
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"] }, "Ai": { "keywords": ["sparkles", "pin", "tools", "map marker", "artificial intelligence"] }, "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"] }, "Dxf": { "keywords": ["file", "page", "document", "paper", "drawing exchange format"] }, "DxfAdd": { "keywords": ["file", "page", "document", "paper", "drawing exchange format", "plus", "import"] }, "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"] }, "FgdbAdd": { "keywords": ["file geodatabase", "page", "file type", "sheet", "paper", "add", "plus", "import"] }, "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"] }, "KmzAdd": { "keywords": ["file", "page", "document", "paper", "compressed kml", "plus", "import"] }, "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"] }, "LpkxAdd": { "keywords": ["page", "file type", "sheet", "paper", "add", "plus", "layer package", "import"] }, "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"] }, "ServiceUpload": { "keywords": ["data", "transfer", "file"] }, "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 };
|