@vertigis/react-ui 17.2.0 → 18.0.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/Autocomplete/HighlightOption.d.ts +1 -0
- package/Chip/Chip.d.ts +1 -0
- package/ColorInput/ColorInput.d.ts +1 -0
- package/CopyableText/CopyableText.d.ts +1 -0
- package/DateTimeRangePicker/DateTimeRangePicker.d.ts +1 -0
- package/FormLabel/FormLabel.d.ts +1 -0
- package/FormLabelAutocompleteField/{FormLabelAutocompleteField .d.ts → FormLabelAutocompleteField.d.ts} +4 -3
- package/FormLabelAutocompleteField/{FormLabelAutocompleteField .js → FormLabelAutocompleteField.js} +4 -4
- package/FormLabelAutocompleteField/index.d.ts +2 -2
- package/FormLabelAutocompleteField/index.js +2 -2
- package/FormLabelColorField/FormLabelColorField.d.ts +8 -1
- package/FormLabelColorField/FormLabelColorField.js +1 -1
- package/FormLabelNumberField/FormLabelNumberField.d.ts +7 -1
- package/FormLabelNumberField/FormLabelNumberField.js +2 -2
- package/FormLabelSliderField/FormLabelSliderField.d.ts +7 -1
- package/FormLabelSliderField/FormLabelSliderField.js +2 -2
- package/FormLabelTextField/FormLabelTextField.d.ts +1 -0
- package/LicenseInfo/index.d.ts +1 -1
- package/LicenseInfo/index.js +1 -1
- package/ListItemSecondaryAction/index.d.ts +4 -0
- package/ListItemSecondaryAction/index.js +4 -0
- package/MenuItemSecondaryAction/MenuItemSecondaryAction.d.ts +4 -2
- package/MenuItemSecondaryAction/MenuItemSecondaryAction.js +3 -3
- package/NumberFormatContext/NumberFormatContext.d.ts +1 -0
- package/NumberInput/NumberInput.d.ts +1 -0
- package/SymbolInput/FontInput.d.ts +1 -1
- package/SymbolInput/FontInput.js +5 -5
- package/Tab/Tab.d.ts +1 -0
- package/Tabs/Tabs.d.ts +1 -0
- package/icons/OfflineMode.d.ts +4 -0
- package/icons/OfflineMode.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 +8 -8
- package/styles/createTheme.d.ts +6 -2
- package/styles/createTheme.js +46 -62
package/Chip/Chip.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import type { DateTimeRangePickerProps as MuiDateTimeRangePickerProps, PickerValidDate } from "@mui/x-date-pickers-pro";
|
|
2
3
|
export interface DateTimeRangePickerProps extends MuiDateTimeRangePickerProps<PickerValidDate> {
|
|
3
4
|
dateSeparator?: string;
|
package/FormLabel/FormLabel.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import type { FormLabelClasses as MUIFormLabelClasses, FormLabelProps as MUIFormLabelProps } from "@mui/material/FormLabel";
|
|
2
3
|
import type { OverridableComponent } from "@mui/material/OverridableComponent";
|
|
3
4
|
declare const gcxFormLabelClasses: {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import { type ReactNode } from "react";
|
|
2
|
+
import type { AutocompleteChangeDetails, AutocompleteChangeReason, AutocompleteProps } from "../Autocomplete";
|
|
2
3
|
import type { ChipTypeMap } from "../Chip";
|
|
3
4
|
import type { FormControlProps } from "../FormControl/index.js";
|
|
4
5
|
import { type FormHelperTextProps } from "../FormHelperText/index.js";
|
|
@@ -22,7 +23,7 @@ export type FormLabelAutocompleteFieldProps<T, Multiple extends boolean | undefi
|
|
|
22
23
|
filterOptions?: AutocompleteProps<T, Multiple, DisableClearable, FreeSolo, ChipComponent>["filterOptions"];
|
|
23
24
|
getOptionLabel: AutocompleteProps<T, Multiple, DisableClearable, FreeSolo, ChipComponent>["getOptionLabel"];
|
|
24
25
|
onBlur?: AutocompleteProps<T, Multiple, DisableClearable, FreeSolo, ChipComponent>["onBlur"];
|
|
25
|
-
onChange?:
|
|
26
|
+
onChange?: (event: React.SyntheticEvent, newValue: T | NonNullable<string | T> | (string | T)[] | null, reason: AutocompleteChangeReason, details: AutocompleteChangeDetails<T> | undefined) => void;
|
|
26
27
|
onFocus?: AutocompleteProps<T, Multiple, DisableClearable, FreeSolo, ChipComponent>["onFocus"];
|
|
27
28
|
options: AutocompleteProps<T, Multiple, DisableClearable, FreeSolo, ChipComponent>["options"];
|
|
28
29
|
value: AutocompleteProps<T, Multiple, DisableClearable, FreeSolo, ChipComponent>["value"];
|
|
@@ -32,5 +33,5 @@ export type FormLabelAutocompleteFieldProps<T, Multiple extends boolean | undefi
|
|
|
32
33
|
* Like TextField, but uses a FormLabel instead of an InputLabel. Also allows
|
|
33
34
|
* for inline help.
|
|
34
35
|
*/
|
|
35
|
-
declare const FormLabelAutocompleteField:
|
|
36
|
+
declare const FormLabelAutocompleteField: <TValue>(props: FormLabelAutocompleteFieldProps<TValue, boolean | undefined, boolean | undefined, boolean | undefined>) => ReactNode;
|
|
36
37
|
export default FormLabelAutocompleteField;
|
package/FormLabelAutocompleteField/{FormLabelAutocompleteField .js → FormLabelAutocompleteField.js}
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import {
|
|
2
|
+
import {} from "react";
|
|
3
3
|
import Autocomplete from "../Autocomplete/index.js";
|
|
4
4
|
import FormControl from "../FormControl/index.js";
|
|
5
5
|
import FormHelperText, {} from "../FormHelperText/index.js";
|
|
@@ -10,11 +10,11 @@ import { useId } from "../utils/react.js";
|
|
|
10
10
|
* Like TextField, but uses a FormLabel instead of an InputLabel. Also allows
|
|
11
11
|
* for inline help.
|
|
12
12
|
*/
|
|
13
|
-
const FormLabelAutocompleteField =
|
|
14
|
-
const { AutocompleteProps, defaultValue, disableClearable, disabled, filterOptions, FormHelperTextProps, fullWidth = false, getOptionLabel, helperText, id: idProp, label, onBlur, onChange, onFocus, options, value, ...other } = props;
|
|
13
|
+
const FormLabelAutocompleteField = (props) => {
|
|
14
|
+
const { AutocompleteProps, defaultValue, disableClearable, disabled, filterOptions, FormHelperTextProps, fullWidth = false, getOptionLabel, helperText, id: idProp, label, onBlur, onChange, onFocus, options, ref, value, ...other } = props;
|
|
15
15
|
const id = useId(idProp);
|
|
16
16
|
const helperTextId = helperText && id ? `${id}-helper-text` : undefined;
|
|
17
17
|
const inputLabelId = label && id ? `${id}-label` : undefined;
|
|
18
18
|
return (_jsxs(FormControl, { fullWidth: fullWidth, ref: ref, disabled: disabled, ...other, children: [label && (_jsx(FormLabel, { htmlFor: id, id: inputLabelId, children: label })), helperText && (_jsx(FormHelperText, { ...FormHelperTextProps, id: helperTextId, children: helperText })), _jsx(Autocomplete, { "aria-labelledby": inputLabelId, defaultValue: defaultValue, disableClearable: disableClearable, disabled: disabled, getOptionLabel: getOptionLabel, onBlur: onBlur, onChange: onChange, onFocus: onFocus, options: options, filterOptions: filterOptions, renderInput: params => (_jsx(Input, { ...params.InputProps, inputProps: { ...params.inputProps }, sx: { width: "100%" } })), value: value, ...AutocompleteProps })] }));
|
|
19
|
-
}
|
|
19
|
+
};
|
|
20
20
|
export default FormLabelAutocompleteField;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./FormLabelAutocompleteField
|
|
2
|
-
export { default } from "./FormLabelAutocompleteField
|
|
1
|
+
export * from "./FormLabelAutocompleteField.js";
|
|
2
|
+
export { default } from "./FormLabelAutocompleteField.js";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./FormLabelAutocompleteField
|
|
2
|
-
export { default } from "./FormLabelAutocompleteField
|
|
1
|
+
export * from "./FormLabelAutocompleteField.js";
|
|
2
|
+
export { default } from "./FormLabelAutocompleteField.js";
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import type { TextFieldProps } from "@mui/material/TextField";
|
|
2
3
|
import { type ColorInputProps } from "../ColorInput/ColorInput.js";
|
|
3
4
|
import type { FormControlProps } from "../FormControl/index.js";
|
|
4
|
-
|
|
5
|
+
import { type FormHelperTextProps } from "../FormHelperText/index.js";
|
|
6
|
+
export type FormLabelColorFieldProps = Omit<TextFieldProps, "variant" | "defaultValue" | "onFocus" | "onBlur" | "onChange" | "value" | "select" | "multiline" | "minRows" | "maxRows" | "SelectProps" | "rows" | "FormHelperTextProps"> & Pick<FormControlProps, "inlineHelpContent" | "inlineHelpUrl"> & {
|
|
5
7
|
defaultValue?: ColorInputProps["defaultValue"];
|
|
6
8
|
disabled?: ColorInputProps["disabled"];
|
|
7
9
|
onBlur?: ColorInputProps["onBlur"];
|
|
@@ -9,6 +11,11 @@ export type FormLabelColorFieldProps = Omit<TextFieldProps, "variant" | "default
|
|
|
9
11
|
onFocus?: ColorInputProps["onFocus"];
|
|
10
12
|
value: ColorInputProps["value"];
|
|
11
13
|
ColorInputProps?: ColorInputProps;
|
|
14
|
+
/**
|
|
15
|
+
* The FormHelperTextProps found on the TextFieldProps are deprecated
|
|
16
|
+
* and will be removed in MUI 7, so we must now add the prop ourselves.
|
|
17
|
+
*/
|
|
18
|
+
FormHelperTextProps?: Partial<FormHelperTextProps>;
|
|
12
19
|
};
|
|
13
20
|
/**
|
|
14
21
|
* Like TextField, but uses a FormLabel instead of an InputLabel. Also allows
|
|
@@ -2,7 +2,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
import ColorInput, {} from "../ColorInput/ColorInput.js";
|
|
4
4
|
import FormControl from "../FormControl/index.js";
|
|
5
|
-
import FormHelperText from "../FormHelperText/index.js";
|
|
5
|
+
import FormHelperText, {} from "../FormHelperText/index.js";
|
|
6
6
|
import FormLabel from "../FormLabel/index.js";
|
|
7
7
|
import { useId } from "../utils/react.js";
|
|
8
8
|
/**
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import type { TextFieldProps } from "@mui/material/TextField";
|
|
2
2
|
import { type FC } from "react";
|
|
3
3
|
import type { FormControlProps } from "../FormControl/index.js";
|
|
4
|
+
import { type FormHelperTextProps } from "../FormHelperText/index.js";
|
|
4
5
|
import { type NumberInputProps } from "../NumberInput/index.js";
|
|
5
6
|
/**
|
|
6
7
|
* Properties for FormLabelNumberField.
|
|
7
8
|
*/
|
|
8
|
-
export type FormLabelNumberFieldProps = Omit<TextFieldProps, "aria-label" | "value" | "onChange" | "InputProps" | "select" | "nativeSelect" | "multiline" | "minRows" | "maxRows" | "SelectProps" | "rows" | "type" | "title" | "onError"> & Pick<FormControlProps, "inlineHelpContent" | "inlineHelpUrl"> & NumberInputProps & {
|
|
9
|
+
export type FormLabelNumberFieldProps = Omit<TextFieldProps, "aria-label" | "value" | "onChange" | "InputProps" | "select" | "nativeSelect" | "multiline" | "minRows" | "maxRows" | "SelectProps" | "rows" | "type" | "title" | "onError" | "FormHelperTextProps"> & Pick<FormControlProps, "inlineHelpContent" | "inlineHelpUrl"> & NumberInputProps & {
|
|
9
10
|
InputProps?: Omit<NumberInputProps, "id" | "ref">;
|
|
10
11
|
NumberInputComponent?: FC<NumberInputProps>;
|
|
11
12
|
/**
|
|
@@ -23,6 +24,11 @@ export type FormLabelNumberFieldProps = Omit<TextFieldProps, "aria-label" | "val
|
|
|
23
24
|
* than the configured maxDecimalPlaces.
|
|
24
25
|
*/
|
|
25
26
|
maxDecimalPlacesErrorText?: string;
|
|
27
|
+
/**
|
|
28
|
+
* The FormHelperTextProps found on the TextFieldProps are deprecated
|
|
29
|
+
* and will be removed in MUI 7
|
|
30
|
+
*/
|
|
31
|
+
FormHelperTextProps?: Partial<FormHelperTextProps>;
|
|
26
32
|
};
|
|
27
33
|
/**
|
|
28
34
|
* Like TextField, but uses a FormLabel instead of an InputLabel, and uses
|
|
@@ -2,7 +2,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
2
2
|
import { useCallback, useContext, useState } from "react";
|
|
3
3
|
import { forwardRef } from "react";
|
|
4
4
|
import FormControl from "../FormControl/index.js";
|
|
5
|
-
import FormHelperText from "../FormHelperText/index.js";
|
|
5
|
+
import FormHelperText, {} from "../FormHelperText/index.js";
|
|
6
6
|
import FormLabel from "../FormLabel/index.js";
|
|
7
7
|
import { NumberFormatContext } from "../NumberFormatContext/NumberFormatContext.js";
|
|
8
8
|
import { DEFAULT_DECIMAL_PLACES, } from "../NumberInput/index.js";
|
|
@@ -13,7 +13,7 @@ import { useId } from "../utils/react.js";
|
|
|
13
13
|
* NumberInput instead of a normal input.
|
|
14
14
|
*/
|
|
15
15
|
const FormLabelNumberField = forwardRef((props, ref) => {
|
|
16
|
-
const { autoComplete, autoFocus = false, children, className, defaultValue, FormHelperTextProps, fullWidth = false, helperText, id: idProp,
|
|
16
|
+
const { autoComplete, autoFocus = false, children, className, defaultValue, FormHelperTextProps, fullWidth = false, helperText, id: idProp, inputProps, InputProps, inputRef, label, name, NumberInputComponent, onBlur, onChange, onFocus, placeholder, value, min, max, numberOutOfRangeErrorText, invalidNumberErrorText, maxDecimalPlacesErrorText, error = false, onError, onErrorEnd, allowUndefined, maxDecimalPlaces = DEFAULT_DECIMAL_PLACES, correctOnBlur = true, ...other } = props;
|
|
17
17
|
const id = useId(idProp);
|
|
18
18
|
const helperTextId = helperText && id ? `${id}-helper-text` : undefined;
|
|
19
19
|
const inputLabelId = label && id ? `${id}-label` : undefined;
|
|
@@ -2,8 +2,9 @@ import { type SliderProps } from "@mui/material";
|
|
|
2
2
|
import type { TextFieldProps } from "@mui/material/TextField";
|
|
3
3
|
import { type FC } from "react";
|
|
4
4
|
import type { FormControlProps } from "../FormControl/index.js";
|
|
5
|
+
import { type FormHelperTextProps } from "../FormHelperText/index.js";
|
|
5
6
|
import { type ErrorType, type NumberInputProps } from "../NumberInput/index.js";
|
|
6
|
-
export type FormLabelSliderFieldProps = Omit<TextFieldProps, "variant" | "Value" | "onChange" | "defaultValue" | "type" | "select" | "multiline" | "minRows" | "maxRows" | "SelectProps" | "rows" | "InputProps" | "inputProps" | "onError"> & Pick<FormControlProps, "inlineHelpContent" | "inlineHelpUrl"> & {
|
|
7
|
+
export type FormLabelSliderFieldProps = Omit<TextFieldProps, "variant" | "Value" | "onChange" | "defaultValue" | "type" | "select" | "multiline" | "minRows" | "maxRows" | "SelectProps" | "rows" | "InputProps" | "inputProps" | "onError" | "FormHelperTextProps"> & Pick<FormControlProps, "inlineHelpContent" | "inlineHelpUrl"> & {
|
|
7
8
|
value?: number;
|
|
8
9
|
onChange?: (value: number) => void;
|
|
9
10
|
SliderProps?: SliderProps;
|
|
@@ -11,6 +12,11 @@ export type FormLabelSliderFieldProps = Omit<TextFieldProps, "variant" | "Value"
|
|
|
11
12
|
InputProps?: Omit<NumberInputProps, "allowUndefined">;
|
|
12
13
|
inputProps?: NumberInputProps["inputProps"];
|
|
13
14
|
defaultValue?: number;
|
|
15
|
+
/**
|
|
16
|
+
* The FormHelperTextProps found on the TextFieldProps are deprecated
|
|
17
|
+
* and will be removed in MUI 7
|
|
18
|
+
*/
|
|
19
|
+
FormHelperTextProps?: Partial<FormHelperTextProps>;
|
|
14
20
|
/**
|
|
15
21
|
* A label to display as helpText when the number input value is out of
|
|
16
22
|
* range, relative to the min and max properties.
|
|
@@ -3,7 +3,7 @@ import { Slider, useTheme } from "@mui/material";
|
|
|
3
3
|
import { Stack } from "@mui/material";
|
|
4
4
|
import { forwardRef, useCallback, useContext, useRef, useState } from "react";
|
|
5
5
|
import FormControl from "../FormControl/index.js";
|
|
6
|
-
import FormHelperText from "../FormHelperText/index.js";
|
|
6
|
+
import FormHelperText, {} from "../FormHelperText/index.js";
|
|
7
7
|
import FormLabel from "../FormLabel/index.js";
|
|
8
8
|
import { NumberFormatContext } from "../NumberFormatContext/NumberFormatContext.js";
|
|
9
9
|
import NumberInput, { DEFAULT_DECIMAL_PLACES, } from "../NumberInput/index.js";
|
|
@@ -13,7 +13,7 @@ import { useId } from "../utils/react.js";
|
|
|
13
13
|
* for inline help.
|
|
14
14
|
*/
|
|
15
15
|
const FormLabelSliderField = forwardRef((props, ref) => {
|
|
16
|
-
const { autoComplete, autoFocus = false, defaultValue, disabled,
|
|
16
|
+
const { autoComplete, autoFocus = false, defaultValue, disabled, fullWidth = false, helperText, id: idProp, inputProps, InputProps, inputRef, label, name, onBlur, onChange, onFocus, onKeyDown, onMouseUp, placeholder, slotProps, value, SliderProps, numberOutOfRangeErrorText, invalidNumberErrorText, onError, onErrorEnd, error, maxDecimalPlacesErrorText, NumberInputComponent, FormHelperTextProps, ...other } = props;
|
|
17
17
|
const inputId = `${useId(idProp)}-input`;
|
|
18
18
|
const sliderId = `${useId(idProp)}-slider`;
|
|
19
19
|
const helperTextId = helperText && inputId ? `${inputId}-helper-text` : undefined;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import type { TextFieldProps } from "@mui/material/TextField";
|
|
2
3
|
import type { FormControlProps } from "../FormControl/index.js";
|
|
3
4
|
export type FormLabelTextFieldProps = Omit<TextFieldProps, "variant"> & Pick<FormControlProps, "inlineHelpContent" | "inlineHelpUrl"> & {
|
package/LicenseInfo/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "@mui/x-license
|
|
1
|
+
export * from "@mui/x-license";
|
package/LicenseInfo/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "@mui/x-license
|
|
1
|
+
export * from "@mui/x-license";
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import type { FC } from "react";
|
|
2
|
-
import type
|
|
2
|
+
import { type BoxProps } from "../Box/index.js";
|
|
3
|
+
export interface MenuItemSecondaryActionProps extends BoxProps {
|
|
4
|
+
}
|
|
3
5
|
/**
|
|
4
6
|
* For use within a MenuList (or other list that implements arrow key
|
|
5
7
|
* navigation). The standard ListItemSecondaryAction will break keyboard
|
|
@@ -7,5 +9,5 @@ import type { ListItemSecondaryActionProps } from "../ListItemSecondaryAction/in
|
|
|
7
9
|
*
|
|
8
10
|
* @param props The component properties.
|
|
9
11
|
*/
|
|
10
|
-
declare const MenuItemSecondaryAction: FC<
|
|
12
|
+
declare const MenuItemSecondaryAction: FC<MenuItemSecondaryActionProps>;
|
|
11
13
|
export default MenuItemSecondaryAction;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import { useRef } from "react";
|
|
3
|
-
import
|
|
3
|
+
import Box, {} from "../Box/index.js";
|
|
4
4
|
import { styled } from "../styles/index.js";
|
|
5
|
-
const
|
|
5
|
+
const SecondaryActionContainer = styled(Box)({
|
|
6
6
|
display: "flex",
|
|
7
7
|
flexShrink: 0,
|
|
8
8
|
});
|
|
@@ -28,7 +28,7 @@ const MenuItemSecondaryAction = props => {
|
|
|
28
28
|
event.stopPropagation();
|
|
29
29
|
}
|
|
30
30
|
};
|
|
31
|
-
return (_jsx(
|
|
31
|
+
return (_jsx(SecondaryActionContainer, { className: className, onClick: event => {
|
|
32
32
|
event.stopPropagation();
|
|
33
33
|
}, onKeyDown: onKeyDown, onMouseDown: event => {
|
|
34
34
|
// This will stop child ripples from propagating.
|
|
@@ -2,7 +2,7 @@ import { type FC } from "react";
|
|
|
2
2
|
import type { FontJson } from "./SymbolJson.js";
|
|
3
3
|
import { type FontFamily } from "./fonts.js";
|
|
4
4
|
import type { BoxProps } from "../Box";
|
|
5
|
-
import type { FormLabelAutocompleteFieldProps } from "../FormLabelAutocompleteField/FormLabelAutocompleteField
|
|
5
|
+
import type { FormLabelAutocompleteFieldProps } from "../FormLabelAutocompleteField/FormLabelAutocompleteField.js";
|
|
6
6
|
import type { FormLabelSliderFieldProps } from "../FormLabelSliderField";
|
|
7
7
|
import type { FormLabelTextFieldProps } from "../FormLabelTextField";
|
|
8
8
|
export interface FontInputProps extends Omit<BoxProps, "onChange"> {
|
package/SymbolInput/FontInput.js
CHANGED
|
@@ -3,7 +3,7 @@ import { useRef } from "react";
|
|
|
3
3
|
import { fonts } from "./fonts.js";
|
|
4
4
|
import { DEFAULT_LANGUAGE } from "./utilities.js";
|
|
5
5
|
import Box from "../Box/index.js";
|
|
6
|
-
import FormLabelAutocompleteField from "../FormLabelAutocompleteField/FormLabelAutocompleteField
|
|
6
|
+
import FormLabelAutocompleteField from "../FormLabelAutocompleteField/FormLabelAutocompleteField.js";
|
|
7
7
|
import FormLabelSliderField from "../FormLabelSliderField/index.js";
|
|
8
8
|
import FormLabelTextField from "../FormLabelTextField/index.js";
|
|
9
9
|
import { useId } from "../utils/react.js";
|
|
@@ -21,7 +21,7 @@ const defaultFontJson = {
|
|
|
21
21
|
family: "sans-serif",
|
|
22
22
|
};
|
|
23
23
|
export const FontInput = ({ font, fontFamilies, languageResources, onChange, AutoCompleteComponent, TextInputComponent, NumberInputComponent, ...props }) => {
|
|
24
|
-
const AutocompleteInput = AutoCompleteComponent ?? FormLabelAutocompleteField;
|
|
24
|
+
const AutocompleteInput = AutoCompleteComponent ?? (FormLabelAutocompleteField);
|
|
25
25
|
const FormTextInput = TextInputComponent ?? FormLabelTextField;
|
|
26
26
|
const FormNumberInput = NumberInputComponent ?? FormLabelSliderField;
|
|
27
27
|
const { current: fontList } = useRef([...(fontFamilies ?? fonts)]);
|
|
@@ -72,9 +72,9 @@ export const FontInput = ({ font, fontFamilies, languageResources, onChange, Aut
|
|
|
72
72
|
return (_jsxs(Box, { ...props, children: [_jsx(AutocompleteInput, { fullWidth: true, disableClearable: true, options: fontList, label: text.fontFamily, "aria-labelledby": labelId, filterOptions: (options, state) => fontList.filter(f => f.name.toLocaleLowerCase().includes(state.inputValue.toLocaleLowerCase())), getOptionLabel: option => option.name, value: fontFamily, onChange: (event, newValue, reason, details) => {
|
|
73
73
|
onChange({
|
|
74
74
|
...font,
|
|
75
|
-
family: newValue
|
|
76
|
-
style: newValue
|
|
77
|
-
weight: newValue
|
|
75
|
+
family: newValue?.font?.family,
|
|
76
|
+
style: newValue?.font?.style,
|
|
77
|
+
weight: newValue?.font?.weight,
|
|
78
78
|
});
|
|
79
79
|
} }), _jsx(FormNumberInput, { fullWidth: true, SliderProps: {
|
|
80
80
|
step: 0.5,
|
package/Tab/Tab.d.ts
CHANGED
|
@@ -32,6 +32,7 @@ export declare const tabClasses: {
|
|
|
32
32
|
fullWidth: string;
|
|
33
33
|
wrapped: string;
|
|
34
34
|
iconWrapper: string;
|
|
35
|
+
icon: string;
|
|
35
36
|
};
|
|
36
37
|
export type TabClasses = MUITabClasses & ButtonBaseClasses & Record<keyof typeof gcxTabClasses, string>;
|
|
37
38
|
export type TabClassKey = keyof TabClasses;
|
package/Tabs/Tabs.d.ts
CHANGED
|
@@ -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: "M13.701 21.855a3.7 3.7 0 0 1-.901.414V16h.985a5.9 5.9 0 0 1 1.327-1.6h-2.311V9.6h4.645a18.7 18.7 0 0 1 .119 3.573c.46-.109.938-.173 1.436-.173.057 0 .113.007.169.009.017-.333.031-.668.031-1.009q-.001-1.234-.145-2.4h3.052c.183.772.291 1.573.292 2.4 0 .664-.069 1.311-.188 1.941.511.326.971.725 1.362 1.185.269-.998.426-2.043.426-3.126 0-6.627-5.373-12-12-12S0 5.373 0 12s5.373 12 12 12a12 12 0 0 0 3.092-.417 5.9 5.9 0 0 1-1.391-1.727Zm-2.501.414C9.39 21.734 7.634 19.436 6.841 16H11.2zm0-7.869H6.555a18.7 18.7 0 0 1 0-4.8H11.2zM1.6 12c0-.828.107-1.628.289-2.4h3.055a20 20 0 0 0 0 4.8H1.889A10.4 10.4 0 0 1 1.6 12m9.6-10.269V8H6.841c.792-3.437 2.548-5.735 4.359-6.269M12.8 8V1.731c1.81.535 3.566 2.833 4.359 6.269zm8.796 0h-2.815c-.452-2.126-1.248-3.977-2.283-5.361A10.44 10.44 0 0 1 21.596 8M7.508 2.631C6.47 4.016 5.671 5.87 5.219 8H2.4a10.43 10.43 0 0 1 5.108-5.369M2.4 16h2.819c.453 2.13 1.251 3.984 2.289 5.369A10.42 10.42 0 0 1 2.4 16M19 14c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5c0-2.7-2.2-5-5-5m3.2 6.8-1.4 1.4-1.8-1.8-1.8 1.8-1.4-1.4 1.8-1.8-1.8-1.8 1.4-1.4 1.8 1.8 1.8-1.8 1.4 1.4-1.8 1.8z" }), "OfflineMode");
|
package/icons/index.d.ts
CHANGED
|
@@ -429,6 +429,7 @@ export { default as NetworkUpstream } from "./NetworkUpstream.js";
|
|
|
429
429
|
export { default as NoIcon } from "./NoIcon.js";
|
|
430
430
|
export { default as NorthArrow } from "./NorthArrow.js";
|
|
431
431
|
export { default as ObjectId } from "./ObjectId.js";
|
|
432
|
+
export { default as OfflineMode } from "./OfflineMode.js";
|
|
432
433
|
export { default as Open } from "./Open.js";
|
|
433
434
|
export { default as OtherClearGridsHighlight } from "./OtherClearGridsHighlight.js";
|
|
434
435
|
export { default as OverviewMap } from "./OverviewMap.js";
|
package/icons/index.js
CHANGED
|
@@ -429,6 +429,7 @@ export { default as NetworkUpstream } from "./NetworkUpstream.js";
|
|
|
429
429
|
export { default as NoIcon } from "./NoIcon.js";
|
|
430
430
|
export { default as NorthArrow } from "./NorthArrow.js";
|
|
431
431
|
export { default as ObjectId } from "./ObjectId.js";
|
|
432
|
+
export { default as OfflineMode } from "./OfflineMode.js";
|
|
432
433
|
export { default as Open } from "./Open.js";
|
|
433
434
|
export { default as OtherClearGridsHighlight } from "./OtherClearGridsHighlight.js";
|
|
434
435
|
export { default as OverviewMap } from "./OverviewMap.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"] }, "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"] }, "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"] }, "ConfigItemDefault": { "keywords": ["cog", "gear", "settings", "dashed", "box"] }, "Connection": { "keywords": ["network", "computers", "connected"] }, "ConnectionOff": { "keywords": ["computers", "network", "x", "broken", "disconnected"] }, "ConnectionOn": { "keywords": ["computers", "network", "check mark", "connected"] }, "ConsoleMoreInfo": { "keywords": ["prompt", "information", "command line"] }, "ConstructionReport": { "keywords": ["worker", "clipboard", "list", "hard hat"] }, "Contact": { "keywords": ["email", "e-mail", "envelope", "mail"] }, "Coordinates": { "keywords": ["xy", "globe", "lat long", "meridian"] }, "CoordinatesAdd": { "keywords": ["xy", "plus", "speech bubble"] }, "CoordinatesAlbers": { "keywords": ["xy", "radial grid", "meridian"] }, "CoordinatesHide": { "keywords": ["xy", "circle", "strikethrough", "tooltip"] }, "CoordinatesLatLong": { "keywords": ["xy", "tooltip", "speech bubble"] }, "CoordinatesMapTip": { "keywords": ["xy", "tooltip", "speech bubble"] }, "CoordinatesShow": { "keywords": ["xy", "tooltip", "check mark"] }, "CoordinatesUtm": { "keywords": ["xy", "lat long", "meridian"] }, "Copy": { "keywords": ["duplicate", "pages", "documents", "paper", "multiply"] }, "CopyToCollab": { "keywords": ["add", "down arrow", "plus"] }, "CrashAttenuatorAdd": { "keywords": ["plus", "warning", "road sign"] }, "CreateJob": { "keywords": ["plus", "warning", "add", "page", "document", "paper"] }, "Csv": { "keywords": ["comma separated values", "page", "document", "paper"] }, "CsvAdd": { "keywords": ["comma separated values", "page", "plus", "document", "paper"] }, "CsvExport": { "keywords": ["comma separated values", "page", "document", "paper", "share"] }, "Cut": { "keywords": ["scissors"] }, "Dashboard": { "keywords": ["speedometer", "tachometer", "gauge"] }, "DashboardDropdown": { "keywords": ["speedometer", "tachometer", "gauge", "down arrow"] }, "DataEdit": { "keywords": ["pencil", "list", "manage"] }, "DatabaseTest": { "keywords": ["db", "check mark", "data", "validate"] }, "DatasourceAdd": { "keywords": ["page", "plus", "chart", "line chart", "document", "paper"] }, "DateCancel": { "keywords": ["calendar", "x", "close"] }, "DateFilter": { "keywords": ["calendar", "funnel"] }, "Debug": { "keywords": ["insect", "bug"] }, "Decimal": { "keywords": ["numbers", "brackets"] }, "DefaultCommand": { "keywords": ["prompt"] }, "Density": { "keywords": ["compress", "spacing", "padding", "margin"] }, "Details": { "keywords": ["list", "menu", "bullets", "bulleted list"] }, "DetailsDropdown": { "keywords": ["list", "down arrow", "menu"] }, "DeviceActive": { "keywords": ["mobile", "phone", "check mark"] }, "DeviceComputer": { "keywords": ["screen", "monitor", "desktop", "imac"] }, "DeviceLaptop": { "keywords": ["notebook", "computer", "macbook"] }, "DevicePhone": { "keywords": ["mobile", "android", "iphone"] }, "DeviceRotate": { "keywords": ["mobile", "phone", "arrows", "landscape", "portrait"] }, "DeviceTablet": { "keywords": ["mobile", "ipad", "android"] }, "Dialog": { "keywords": ["alert", "popup", "modal"] }, "Diameter": { "keywords": ["circle", "arrow"] }, "DirectionsAlternate": { "keywords": ["arrow", "split", "detour", "divert"] }, "DirectionsArrive": { "keywords": ["finish", "checkered flag", "end", "destination"] }, "DirectionsBearLeft": { "keywords": ["arrow", "bend", "veer", "turn"] }, "DirectionsBearRight": { "keywords": ["arrow", "bend", "veer", "turn"] }, "DirectionsDepart": { "keywords": ["arrow", "start", "begin"] }, "DirectionsExit": { "keywords": ["leave", "arrow", "diverge", "turn"] }, "DirectionsForkCenter": { "keywords": ["arrow", "split", "middle", "straight"] }, "DirectionsForkLeft": { "keywords": ["arrow", "split", "turn"] }, "DirectionsForkRight": { "keywords": ["arrow", "split", "turn"] }, "DirectionsMerge": { "keywords": ["arrow", "join"] }, "DirectionsRoundabout": { "keywords": ["arrows", "circle", "cycle"] }, "DirectionsSharpLeft": { "keywords": ["arrow", "turn"] }, "DirectionsSharpRight": { "keywords": ["arrow", "turn"] }, "DirectionsStraight": { "keywords": ["arrow", "up"] }, "DirectionsTurnLeft": { "keywords": ["arrow"] }, "DirectionsTurnLeftLeft": { "keywords": ["arrow", "180"] }, "DirectionsTurnLeftRight": { "keywords": ["arrow"] }, "DirectionsTurnRight": { "keywords": ["arrow"] }, "DirectionsTurnRightLeft": { "keywords": ["arrow"] }, "DirectionsTurnRightRight": { "keywords": ["arrow", "180"] }, "DirectionsUTurn": { "keywords": ["arrow", "180", "turnaround", "return"] }, "DirectionsUnknown": { "keywords": ["marker", "pin", "question mark", "map pin"] }, "Disclaimer": { "keywords": ["warning", "alert", "exclamation", "triangle", "error", "outline"] }, "DoubleArrowBottomLeft": { "keywords": ["chevron", "angled", "direction"] }, "DoubleArrowBottomRight": { "keywords": ["chevron", "angled", "direction"] }, "DoubleArrowDown": { "keywords": ["chevron", "direction", "expand", "collapse"] }, "DoubleArrowLeft": { "keywords": ["chevron", "direction", "expand", "collapse", "rewind"] }, "DoubleArrowRight": { "keywords": ["chevron", "direction", "expand", "collapse", "fast forward"] }, "DoubleArrowTopLeft": { "keywords": ["chevron", "angled", "direction"] }, "DoubleArrowTopRight": { "keywords": ["chevron", "angled", "direction"] }, "DoubleArrowUp": { "keywords": ["chevron", "direction", "expand", "collapse"] }, "Download": { "keywords": ["down arrow", "save"] }, "Drag": { "keywords": ["drag", "grip", "dots", "grid"] }, "Draw": { "keywords": ["pencil", "polygon", "markup", "sketch", "edit", "shape"] }, "DrawArrow": { "keywords": ["arrow", "outline", "shape", "markup", "sketch"] }, "DrawCircle": { "keywords": ["outline", "shape", "polygon", "radial", "radius", "markup", "sketch"] }, "DrawClearAll": { "keywords": ["close", "circle", "polygon", "markup", "sketch"] }, "DrawClearAllMaps": { "keywords": ["close", "circle", "square", "polygon", "delete", "reset", "stacked", "markup", "sketch"] }, "DrawEdit": { "keywords": ["pencil", "marquee", "dotted", "markup", "sketch"] }, "DrawEllipse": { "keywords": ["outline", "markup", "sketch", "round", "shape"] }, "DrawExtent": { "keywords": ["arrows", "markup", "sketch", "zoom out"] }, "DrawExtract": { "keywords": ["polygon", "down arrow", "markup", "sketch", "download", "save"] }, "DrawFreehand": { "keywords": ["squiggle", "line", "markup", "sketch"] }, "DrawLine": { "keywords": ["line", "markup", "sketch", "polyline"] }, "DrawMultipoint": { "keywords": ["circles", "markup", "sketch", "dots", "multiple", "vertex", "vertices"] }, "DrawPoint": { "keywords": ["circle", "dot", "spot", "markup", "sketch", "vertex"] }, "DrawPolygon": { "keywords": ["shaded", "points", "markup", "sketch"] }, "DrawPolygonFreehand": { "keywords": ["freeform", "markup", "sketch", "shape"] }, "DrawPolyline": { "keywords": ["line", "points", "markup", "sketch", "vertex", "vertices"] }, "DrawRectangle": { "keywords": ["outline", "markup", "sketch", "shape"] }, "DrawReshape": { "keywords": ["change", "markup", "sketch", "shape", "shapes"] }, "DrawText": { "keywords": ["letter", "markup", "sketch", "T", "note", "notes"] }, "DrawTriangle": { "keywords": ["outline", "markup", "sketch", "shape"] }, "DrawUnion": { "keywords": ["squares", "markup", "sketch", "merge", "combine"] }, "Edit": { "keywords": ["pencil", "change"] }, "EditDoc": { "keywords": ["pencil", "page", "change", "document", "paper"] }, "EditLog": { "keywords": ["pencil", "page", "change", "document", "paper"] }, "EmergencyFacilitySearch": { "keywords": ["building", "magnifying", "loupe", "hospital", "first aid", "medical", "medicine"] }, "Equation": { "keywords": ["math", "maths", "variable", "square root", "formula"] }, "Erase": { "keywords": ["clear", "remove", "delete"] }, "Error": { "keywords": ["warning", "solid", "triangle", "exclamation"] }, "Export": { "keywords": ["page", "arrow left", "document", "paper", "share"] }, "ExtentBasic": { "keywords": ["square", "dotted", "area", "dashed"] }, "ExtentScale": { "keywords": ["resize", "grow", "dashed", "arrow", "square"] }, "FeatureAdd": { "keywords": ["marker", "pin", "plus", "map pin"] }, "FeatureAddHydrant": { "keywords": ["plus", "fire"] }, "FeatureAddLandUse": { "keywords": ["map", "plus", "parcels"] }, "FeatureAddServiceRequest": { "keywords": ["phone", "wrench", "plus", "tool"] }, "FeatureAddTree": { "keywords": ["plus", "forest", "park", "green space", "greenery"] }, "FeatureAddWell": { "keywords": ["oil", "plus"] }, "FeatureCreate": { "keywords": ["plus", "add"] }, "FeatureDelete": { "keywords": ["marker", "trash", "remove", "map pin"] }, "FeatureEdit": { "keywords": ["marker", "pin", "pencil", "map pin"] }, "FeatureLocation": { "keywords": ["pin", "marker", "map pin"] }, "FeatureSummary": { "keywords": ["list", "card"] }, "Feedback": { "keywords": ["chat", "thumb", "speech bubble", "thumbs up", "comment"] }, "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"] }, "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"] }, "Label": { "keywords": ["tag", "tags", "price tag"] }, "LabelOff": { "keywords": ["tag", "tags", "price tag", "off", "slash", "strikethrough"] }, "LabelOptions": { "keywords": ["tag", "tags", "price tag", "settings", "gear", "cog", "manage", "configure"] }, "Language": { "keywords": ["globe", "speech bubble", "internationalization", "localize", "international"] }, "LayerCatalog": { "keywords": ["puzzle", "plus", "add", "addon", "add-on", "extension"] }, "LayerOptions": { "keywords": ["choice", "settings", "gear", "cog", "config", "configuration", "configure"] }, "LayerPresets": { "keywords": ["sliders", "pre-configured", "settings"] }, "LayerRemove": { "keywords": ["close", "clear", "x", "delete", "remove"] }, "LayerStyleEdit": { "keywords": ["pencil", "manage", "change"] }, "Layers": { "keywords": ["stacked"] }, "LayersActions": { "keywords": ["arrows"] }, "LayersAdd": { "keywords": ["stacked", "plus"] }, "LayersEmail": { "keywords": ["stacked", "envelope", "mail"] }, "LayersExtract": { "keywords": ["stacked", "expand", "arrow right", "share"] }, "LayersFiltered": { "keywords": ["stacked", "funnel", "filter"] }, "LayersMenu": { "keywords": ["stacked", "hamburger", "list"] }, "LayersReorder": { "keywords": ["stacked", "move", "up arrow", "down arrow", "order"] }, "LayersSnapping": { "keywords": ["stacked", "magnet", "lightning"] }, "Legend": { "keywords": ["list", "items", "definition"] }, "LegendOff": { "keywords": ["list", "items", "definition", "slash", "strikethrough"] }, "LeisureFacilitySearch": { "keywords": ["weights", "gym", "magnifying glass", "loupe", "magnify", "exercise", "dumbell"] }, "LineStyleEdit": { "keywords": ["pencil", "dotted", "manage", "change"] }, "Link": { "keywords": ["chain", "URL"] }, "LinkExternal": { "keywords": ["external", "arrow", "URL", "pop out"] }, "LocationClear": { "keywords": ["marker", "pin", "reticle", "close", "off", "map pin", "delete", "target", "locate", "geolocation"] }, "LocationSelect": { "keywords": ["reticle", "arrow", "cursor", "target", "point", "pointer", "locate", "geolocation"] }, "LocationSet": { "keywords": ["marker", "pin", "reticle", "map pin", "target", "locate", "geolocation"] }, "Lock": { "keywords": ["padlock", "secure", "security"] }, "ManholeId": { "keywords": ["cover", "utilities", "sewer", "identification"] }, "Map": { "keywords": ["world", "flat", "earth"] }, "Map3rdParty": { "keywords": ["map", "split"] }, "MapArea": { "keywords": ["map", "dotted border", "parcels"] }, "MapBing": { "keywords": ["arrow right", "share", "external"] }, "MapDefault": { "keywords": ["marker", "folded", "pin", "map pin", "paper map"] }, "MapGoogle": { "keywords": ["arrow right", "share", "external"] }, "MapInfo": { "keywords": ["i", "information"] }, "MapOffline": { "keywords": ["disconnected", "exclamation", "wifi", "wi-fi", "parcels"] }, "MapPin": { "keywords": ["marker", "location", "result"] }, "MapPinExtent": { "keywords": ["marker", "location", "result", "constrained", "current map view", "limited"] }, "MapRefresh": { "keywords": ["arrows", "reload", "reset"] }, "MapSyncOff": { "keywords": ["x", "up arrow", "close", "down arrow", "clear", "delete", "swap"] }, "MapSyncOn": { "keywords": ["up arrow", "down arrow", "swap"] }, "MapTax": { "keywords": ["dollar", "value", "price", "parcels"] }, "Markdown": { "keywords": ["code", "M", "formatting"] }, "Markup": { "keywords": ["shape", "area", "polygon", "vertex", "vertices"] }, "MarkupOff": { "keywords": ["slash", "shape", "area", "polygon", "vertex", "vertices", "strikethrough"] }, "Maximize": { "keywords": ["expand", "arrow top right", "box"] }, "MaximizeRestore": { "keywords": ["collapse", "arrow bottom left", "box"] }, "Measure": { "keywords": ["ruler", "size", "distance", "scale"] }, "MeasureArea": { "keywords": ["ruler", "rectangle", "size", "distance", "scale", "fill"] }, "MeasureCircle": { "keywords": ["ruler", "size", "distance", "scale", "radius", "diameter", "circular", "polygon", "shape"] }, "MeasureConvert": { "keywords": ["ruler", "arrows", "size", "distance", "scale", "swap", "change", "switch"] }, "MeasureDistance": { "keywords": ["ruler", "arrows", "size", "scale", "length"] }, "MeasureEllipse": { "keywords": ["ruler", "size", "distance", "scale", "circular", "circle", "radius", "radial", "polygon", "shape"] }, "MeasureFreehand": { "keywords": ["ruler", "size", "distance", "scale"] }, "MeasurePolygon": { "keywords": ["ruler", "size", "distance", "scale", "shape"] }, "MeasurePolygonFreehand": { "keywords": ["ruler", "size", "distance", "scale", "shape"] }, "MeasurePolyline": { "keywords": ["ruler", "size", "distance", "scale", "zigzag"] }, "MeasureRectangle": { "keywords": ["ruler", "size", "distance", "scale", "polygon"] }, "MeasureRestart": { "keywords": ["ruler", "arrows", "size", "distance", "scale", "reset"] }, "Menu": { "keywords": ["hamburger", "action", "navigation", "lines", "stacked", "paragraph"] }, "MenuCollapse": { "keywords": ["arrows", "facing", "inwards"] }, "MenuExpand": { "keywords": ["arrows", "opposite", "outward", "outwards"] }, "MenuGlobal": { "keywords": ["down arrow", "hamburger", "action", "list", "expand"] }, "MenuHoisted": { "keywords": ["hamburger", "action", "navigation", "lines", "stacked", "paragraph"] }, "Message": { "keywords": ["speech bubble", "text", "chat"] }, "Metadata": { "keywords": ["angled brackets", "keywords", "paragraph"] }, "Minimize": { "keywords": ["shrink", "collapse", "arrow bottom left", "bottom line"] }, "MinimizeRestore": { "keywords": ["expand", "enlarge", "arrow top right", "bottom line"] }, "Minus": { "keywords": ["circular border", "subtract", "collapse", "hide"] }, "MinusSquare": { "keywords": ["rounded square", "subtract", "collapse", "hide"] }, "More": { "keywords": ["3 dot menu", "action", "horizontal", "menu", "navigation"] }, "MoreCircle": { "keywords": ["outline", "3 dot menu", "action", "menu", "navigation"] }, "Move": { "keywords": ["arrows", "north", "south", "east", "west"] }, "MoveDown": { "keywords": ["position", "bottom", "boxes", "order"] }, "MoveUp": { "keywords": ["position", "up", "boxes", "order"] }, "MultipleMove": { "keywords": ["move", "points", "lines", "edit", "coincident geometries", "snapped", "rubber banding", "topological", "vertices"] }, "MultipleMoveOff": { "keywords": ["move", "points", "lines", "edit", "coincident geometries", "snapped", "disabled", "rubber banding", "topological", "vertices"] }, "NbaManagement": { "keywords": ["page", "folded", "arrow right", "document", "share", "export"] }, "NeighborhoodSearch": { "keywords": ["homes", "houses", "magnifying glass", "loupe", "magnify", "find", "group"] }, "NeighborhoodSign": { "keywords": ["house", "arrow top right", "directions", "home"] }, "NetworkConnected": { "keywords": ["line", "circle", "linked", "data", "node", "vertex"] }, "NetworkDiagram": { "keywords": ["connected", "nodes", "linked", "data", "connection"] }, "NetworkDownstream": { "keywords": ["down arrow", "node"] }, "NetworkIsolation": { "keywords": ["separate", "disconnected", "data", "target", "pinpoint"] }, "NetworkShortestPath": { "keywords": ["route", "topology", "square", "nodes", "connection", "dashed", "dotted"] }, "NetworkSubnetwork": { "keywords": ["data", "topology", "nodes", "lines", "connection", "dots"] }, "NetworkUpstream": { "keywords": ["up arrow", "node"] }, "NoIcon": { "keywords": ["dotted border", "circle", "blank", "nothing", "na", "empty", "placeholder"] }, "NorthArrow": { "keywords": ["up arrow", "compass", "needle"] }, "ObjectId": { "keywords": ["page", "object", "text", "cube"] }, "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"] }, "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"] }, "PrintPro": { "keywords": ["output", "printer", "arcpro"] }, "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"] }, "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"] }, "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"] }, "Split": { "keywords": ["columns", "column", "container"] }, "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"] }, "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"] }, "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"] }, "Traffic": { "keywords": ["car", "cars", "stacked", "multiple"] }, "TransformerSearch": { "keywords": ["power", "utility", "lightning", "magnifying glass", "utility pole", "power lines", "power pole", "electricity"] }, "Trash": { "keywords": ["delete", "remove", "clear", "garbage"] }, "Undo": { "keywords": ["back", "arrow", "left"] }, "Ungroup": { "keywords": ["squares", "square", "stacked"] }, "Unlink": { "keywords": ["chain", "link", "break", "disconnect"] }, "Unlock": { "keywords": ["lock", "padlock", "open", "insecure", "access"] }, "Update": { "keywords": ["up arrow"] }, "Upload": { "keywords": ["up arrow", "load"] }, "UploadLayer": { "keywords": ["cloud", "up arrow", "layers", "load"] }, "UploadOptions": { "keywords": ["cloud", "cog", "up arrow", "settings", "load"] }, "UrbanSearch": { "keywords": ["buildings", "books", "stack", "magnifying glass"] }, "Usb": { "keywords": ["device", "connection"] }, "User": { "keywords": ["profile", "silhouette", "circle"] }, "UserCog": { "keywords": ["user settings", "profile"] }, "UsersManage": { "keywords": ["group", "user", "multiple", "team"] }, "UtilityCutAdd": { "keywords": ["utility pole", "power lines", "power pole", "transmission pole", "telephone pole", "telecommunications pole", "hydro pole", "telegraph post", "pole", "stobie pole", "strikethrough", "plus"] }, "UtilityCutDelete": { "keywords": ["utility pole", "power lines", "power pole", "transmission pole", "telephone pole", "telecommunications pole", "hydro pole", "telegraph post", "pole", "stobie pole", "strikethrough", "minus"] }, "UtilityCutEdit": { "keywords": ["utility pole", "power lines", "power pole", "transmission pole", "telephone pole", "telecommunications pole", "hydro pole", "telegraph post", "pole", "stobie pole", "strikethrough", "pencil"] }, "UtilityCutMove": { "keywords": ["utility pole", "power lines", "power pole", "transmission pole", "telephone pole", "telecommunications pole", "hydro pole", "telegraph post", "pole", "stobie pole", "strikethrough", "arrows", "four arrows"] }, "ValveInspected": { "keywords": ["pipe", "fitting", "fixture", "check mark", "checkmark", "success"] }, "VendorsManage": { "keywords": ["users", "group", "hard hat", "hardhat", "construction", "worker", "crew", "team"] }, "ViewGrid": { "keywords": ["squares", "grid", "3x3", "table"] }, "ViewList": { "keywords": ["bullets", "bullet", "three", "3"] }, "ViewSwitchCompact": { "keywords": ["bullets", "bullet", "stacked", "tabs"] }, "ViewSwitchList": { "keywords": ["bullets", "bullet", "stacked", "overlap"] }, "ViewSwitchTable": { "keywords": ["grid", "stacked", "overlap"] }, "ViewSwitchTabs": { "keywords": ["chart", "report", "stacked", "bullet"] }, "Visibility": { "keywords": ["binoculars", "look", "find", "search", "tour"] }, "Visible": { "keywords": ["eye", "eyeball"] }, "VisibleOff": { "keywords": ["eye", "eyeball", "strike", "strikethrough"] }, "Visualizations": { "keywords": ["layers", "shapes"] }, "Warning": { "keywords": ["exclamation", "circle", "outline"] }, "Water": { "keywords": ["waves", "wavy lines"] }, "WaterDrop": { "keywords": ["waves", "drip", "liquid"] }, "Watershed": { "keywords": ["river", "mountain", "hill", "cloud", "park", "wilderness"] }, "Weather": { "keywords": ["sun", "cloud", "rain", "raining"] }, "Wifi": { "keywords": ["signal", "waves"] }, "WindowDock": { "keywords": ["box", "filled", "arrow", "bottom left", "half filled", "half"] }, "WindowNew": { "keywords": ["pop out", "arrow", "top right", "stacked", "boxes"] }, "WorkOrder": { "keywords": ["construction", "worker", "hardhat", "hard hat", "wrench", "tool"] }, "WorkOrderClose": { "keywords": ["construction", "worker", "hardhat", "hard hat", "x", "delete", "clear"] }, "WorkOrderComplete": { "keywords": ["construction", "worker", "hardhat", "hard hat", "checkmark", "check mark", "success", "approve"] }, "WorkOrderFastTrack": { "keywords": ["construction", "worker", "hardhat", "hard hat", "fast forward", "arrows", "right"] }, "Workflow": { "keywords": ["flowchart", "flow chart", "diagram"] }, "WorkingView": { "keywords": ["map", "edit", "pencil", "parcel", "parcels", "streets"] }, "Xlsx": { "keywords": ["spreadsheet", "document", "sheet", "paper"] }, "XlsxAdd": { "keywords": ["spreadsheet", "document", "sheet", "paper", "plus"] }, "XlsxExport": { "keywords": ["spreadsheet", "document", "sheet", "paper", "arrow right", "export"] }, "Xml": { "keywords": ["brackets", "code", "document"] }, "YouthCenterSearch": { "keywords": ["person", "user", "celebrate", "arms up"] }, "ZoomControl": { "keywords": ["pill", "plus", "minus"] }, "ZoomExtent": { "keywords": ["arrows", "diagonal", "dashed", "box", "zoom out"] }, "ZoomExtentAll": { "keywords": ["arrows", "diagonal", "dashed", "box", "zoom out", "stacked", "multiple", "overlap"] }, "ZoomFeature": { "keywords": ["arrow", "down", "in"] }, "ZoomFull": { "keywords": ["arrows", "zoom out", "four arrows", "outward", "out", "circle", "outline"] }, "ZoomIn": { "keywords": ["plus", "circle", "outline"] }, "ZoomInitial": { "keywords": ["circle", "outline", "refresh", "reset"] }, "ZoomNext": { "keywords": ["circle", "outline", "arrow", "right", "forward"] }, "ZoomOut": { "keywords": ["minus", "circle", "outline"] }, "ZoomPrevious": { "keywords": ["circle", "outline", "arrow", "left", "back"] }, "ZoomVisibleScale": { "keywords": ["arrow", "box", "square", "dashed", "filled"] } };
|
|
1
|
+
const keywords = { "Accessibility": { "keywords": ["wheelchair", "wcag", "accessible", "aria", "a11y"] }, "AccuracyOff": { "keywords": ["pointer", "disabled", "strikethrough", "geolocation", "location"] }, "ActionMenu": { "keywords": ["3", "three", "dot", "vertical", "more"] }, "Activate": { "keywords": ["power", "button", "switch", "on"] }, "ActivitiesFind": { "keywords": ["search", "magnifying glass", "activity", "dashed rectangle"] }, "Add": { "keywords": ["plus", "circle"] }, "AddIntersectingVertex": { "keywords": ["increase", "plus", "squares"] }, "AddSquare": { "keywords": ["add", "cross", "expand", "show", "rounded square"] }, "AddToDrawLayer": { "keywords": ["shape", "area", "multiple", "polygons"] }, "Address": { "keywords": ["pin", "contacts", "book", "map pin"] }, "AddressSearch": { "keywords": ["envelope", "magnifying", "loupe", "mail"] }, "AdjustHeight": { "keywords": ["vertical", "measure"] }, "AfterActionPlayback": { "keywords": ["map", "step", "play", "chat", "restart", "reset", "redo"] }, "Alarm": { "keywords": ["clock", "reminder", "timer"] }, "AlarmAdd": { "keywords": ["clock", "reminder", "timer", "plus"] }, "AlarmClear": { "keywords": ["clock", "reminder", "timer", "x", "delete"] }, "AlarmDisabled": { "keywords": ["clock", "reminder", "off", "timer", "strikethrough"] }, "AlarmInfo": { "keywords": ["clock", "reminder", "information", "timer"] }, "AlarmNone": { "keywords": ["bell", "reminder", "disabled"] }, "AlarmNotifications": { "keywords": ["bell", "reminder"] }, "AlignToEdge": { "keywords": ["move", "snap", "right arrow"] }, "ArcgisSave": { "keywords": ["disk", "esri"] }, "ArcgisShortcut": { "keywords": ["esri", "share", "right arrow"] }, "Archive": { "keywords": ["box", "banker"] }, "Area": { "keywords": ["shaded", "points", "filled", "polygon"] }, "AreaRetired": { "keywords": ["disabled", "polygon", "filled", "strikethrough"] }, "Arrow": { "keywords": ["left", "pointing", "direction"] }, "ArrowBack": { "keywords": ["left", "pointing", "direction"] }, "ArrowBottomLeft": { "keywords": ["down", "angled", "pointing", "direction"] }, "ArrowBottomRight": { "keywords": ["down", "angled", "pointing", "direction"] }, "ArrowBoxDown": { "keywords": ["decrease", "pointing", "direction"] }, "ArrowBoxUp": { "keywords": ["increase", "pointing", "direction"] }, "ArrowDown": { "keywords": ["bottom", "pointing", "direction"] }, "ArrowLeft": { "keywords": ["pointing", "direction"] }, "ArrowRight": { "keywords": ["pointing", "direction"] }, "ArrowTopLeft": { "keywords": ["up", "angled", "pointing", "direction"] }, "ArrowTopRight": { "keywords": ["up", "angled", "pointing", "direction"] }, "ArrowUp": { "keywords": ["top", "pointing", "direction"] }, "AssignSurveyorGrid": { "keywords": ["survey", "theodolite", "optical level"] }, "AssignSurveyorWorkOrder": { "keywords": ["survey", "theodolite", "optical level", "wrench", "tool"] }, "AssignVendorMapGrid": { "keywords": ["worker", "construction", "hard hat", "hardhat"] }, "AssignVendorWorkOrder": { "keywords": ["worker", "wrench", "tool", "construction", "hard hat", "hardhat"] }, "Attach": { "keywords": ["paper clip"] }, "AttachFilePhoto": { "keywords": ["paper clip", "camera", "document", "paper"] }, "AttachManage": { "keywords": ["paper clip", "cog", "gear", "settings"] }, "AttachMultipleFiles": { "keywords": ["paper clip", "pages", "combine"] }, "Authentication": { "keywords": ["user", "password", "account", "portrait", "avatar", "profile"] }, "Band": { "keywords": ["segment", "range", "frequency", "grid", "scale", "measure"] }, "BaseballField": { "keywords": ["diamond", "play", "sport", "game"] }, "Basemap": { "keywords": ["map", "marker", "pin", "map pin", "parcels"] }, "Bearing": { "keywords": ["direction", "compass"] }, "Binary": { "keywords": ["code", "file type", "mime type", "brackets"] }, "BladingLane": { "keywords": ["road", "plow", "plowing"] }, "BladingNeighborhood": { "keywords": ["houses", "neighborhood", "neighbourhood", "plow", "plowing"] }, "BladingReport": { "keywords": ["clipboard", "plow", "plowing"] }, "BladingTotal": { "keywords": ["km", "kilometers", "plow", "plowing"] }, "Bluetooth": { "keywords": ["wireless", "connection", "device", "connectivity"] }, "BoardmapSearch": { "keywords": ["board", "loupe", "magnifying", "dot grid"] }, "Book": { "keywords": ["bookmark", "closed"] }, "Bookmark": { "keywords": ["open", "book", "reading"] }, "BoxFalse": { "keywords": ["no", "deny", "denied", "x", "cross"] }, "BoxTrue": { "keywords": ["check mark", "success", "apply"] }, "Branding": { "keywords": ["paint brush", "palette", "colours", "colors", "theme", "style"] }, "BroadbandCoverage": { "keywords": ["network", "map marker", "pin", "map pin"] }, "BroadbandExplore": { "keywords": ["network", "locate", "compass"] }, "BroadbandFind": { "keywords": ["network", "magnifying", "loupe", "search", "find", "magnifying glass"] }, "Buffer": { "keywords": ["space", "area", "radius"] }, "BufferIdentify": { "keywords": ["space", "area", "information", "info", "polygon"] }, "BufferMeasure": { "keywords": ["space", "area", "ruler", "polygon"] }, "BufferOff": { "keywords": ["space", "area", "disabled", "cross", "x", "radius"] }, "BufferOn": { "keywords": ["space", "area", "check mark", "radius"] }, "BufferShape": { "keywords": ["space", "area", "polygon"] }, "Build": { "keywords": ["arrow", "up", "box"] }, "Button": { "keywords": ["cursor", "pointer", "press", "click"] }, "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"] }, "ConfigItemDefault": { "keywords": ["cog", "gear", "settings", "dashed", "box"] }, "Connection": { "keywords": ["network", "computers", "connected"] }, "ConnectionOff": { "keywords": ["computers", "network", "x", "broken", "disconnected"] }, "ConnectionOn": { "keywords": ["computers", "network", "check mark", "connected"] }, "ConsoleMoreInfo": { "keywords": ["prompt", "information", "command line"] }, "ConstructionReport": { "keywords": ["worker", "clipboard", "list", "hard hat"] }, "Contact": { "keywords": ["email", "e-mail", "envelope", "mail"] }, "Coordinates": { "keywords": ["xy", "globe", "lat long", "meridian"] }, "CoordinatesAdd": { "keywords": ["xy", "plus", "speech bubble"] }, "CoordinatesAlbers": { "keywords": ["xy", "radial grid", "meridian"] }, "CoordinatesHide": { "keywords": ["xy", "circle", "strikethrough", "tooltip"] }, "CoordinatesLatLong": { "keywords": ["xy", "tooltip", "speech bubble"] }, "CoordinatesMapTip": { "keywords": ["xy", "tooltip", "speech bubble"] }, "CoordinatesShow": { "keywords": ["xy", "tooltip", "check mark"] }, "CoordinatesUtm": { "keywords": ["xy", "lat long", "meridian"] }, "Copy": { "keywords": ["duplicate", "pages", "documents", "paper", "multiply"] }, "CopyToCollab": { "keywords": ["add", "down arrow", "plus"] }, "CrashAttenuatorAdd": { "keywords": ["plus", "warning", "road sign"] }, "CreateJob": { "keywords": ["plus", "warning", "add", "page", "document", "paper"] }, "Csv": { "keywords": ["comma separated values", "page", "document", "paper"] }, "CsvAdd": { "keywords": ["comma separated values", "page", "plus", "document", "paper"] }, "CsvExport": { "keywords": ["comma separated values", "page", "document", "paper", "share"] }, "Cut": { "keywords": ["scissors"] }, "Dashboard": { "keywords": ["speedometer", "tachometer", "gauge"] }, "DashboardDropdown": { "keywords": ["speedometer", "tachometer", "gauge", "down arrow"] }, "DataEdit": { "keywords": ["pencil", "list", "manage"] }, "DatabaseTest": { "keywords": ["db", "check mark", "data", "validate"] }, "DatasourceAdd": { "keywords": ["page", "plus", "chart", "line chart", "document", "paper"] }, "DateCancel": { "keywords": ["calendar", "x", "close"] }, "DateFilter": { "keywords": ["calendar", "funnel"] }, "Debug": { "keywords": ["insect", "bug"] }, "Decimal": { "keywords": ["numbers", "brackets"] }, "DefaultCommand": { "keywords": ["prompt"] }, "Density": { "keywords": ["compress", "spacing", "padding", "margin"] }, "Details": { "keywords": ["list", "menu", "bullets", "bulleted list"] }, "DetailsDropdown": { "keywords": ["list", "down arrow", "menu"] }, "DeviceActive": { "keywords": ["mobile", "phone", "check mark"] }, "DeviceComputer": { "keywords": ["screen", "monitor", "desktop", "imac"] }, "DeviceLaptop": { "keywords": ["notebook", "computer", "macbook"] }, "DevicePhone": { "keywords": ["mobile", "android", "iphone"] }, "DeviceRotate": { "keywords": ["mobile", "phone", "arrows", "landscape", "portrait"] }, "DeviceTablet": { "keywords": ["mobile", "ipad", "android"] }, "Dialog": { "keywords": ["alert", "popup", "modal"] }, "Diameter": { "keywords": ["circle", "arrow"] }, "DirectionsAlternate": { "keywords": ["arrow", "split", "detour", "divert"] }, "DirectionsArrive": { "keywords": ["finish", "checkered flag", "end", "destination"] }, "DirectionsBearLeft": { "keywords": ["arrow", "bend", "veer", "turn"] }, "DirectionsBearRight": { "keywords": ["arrow", "bend", "veer", "turn"] }, "DirectionsDepart": { "keywords": ["arrow", "start", "begin"] }, "DirectionsExit": { "keywords": ["leave", "arrow", "diverge", "turn"] }, "DirectionsForkCenter": { "keywords": ["arrow", "split", "middle", "straight"] }, "DirectionsForkLeft": { "keywords": ["arrow", "split", "turn"] }, "DirectionsForkRight": { "keywords": ["arrow", "split", "turn"] }, "DirectionsMerge": { "keywords": ["arrow", "join"] }, "DirectionsRoundabout": { "keywords": ["arrows", "circle", "cycle"] }, "DirectionsSharpLeft": { "keywords": ["arrow", "turn"] }, "DirectionsSharpRight": { "keywords": ["arrow", "turn"] }, "DirectionsStraight": { "keywords": ["arrow", "up"] }, "DirectionsTurnLeft": { "keywords": ["arrow"] }, "DirectionsTurnLeftLeft": { "keywords": ["arrow", "180"] }, "DirectionsTurnLeftRight": { "keywords": ["arrow"] }, "DirectionsTurnRight": { "keywords": ["arrow"] }, "DirectionsTurnRightLeft": { "keywords": ["arrow"] }, "DirectionsTurnRightRight": { "keywords": ["arrow", "180"] }, "DirectionsUTurn": { "keywords": ["arrow", "180", "turnaround", "return"] }, "DirectionsUnknown": { "keywords": ["marker", "pin", "question mark", "map pin"] }, "Disclaimer": { "keywords": ["warning", "alert", "exclamation", "triangle", "error", "outline"] }, "DoubleArrowBottomLeft": { "keywords": ["chevron", "angled", "direction"] }, "DoubleArrowBottomRight": { "keywords": ["chevron", "angled", "direction"] }, "DoubleArrowDown": { "keywords": ["chevron", "direction", "expand", "collapse"] }, "DoubleArrowLeft": { "keywords": ["chevron", "direction", "expand", "collapse", "rewind"] }, "DoubleArrowRight": { "keywords": ["chevron", "direction", "expand", "collapse", "fast forward"] }, "DoubleArrowTopLeft": { "keywords": ["chevron", "angled", "direction"] }, "DoubleArrowTopRight": { "keywords": ["chevron", "angled", "direction"] }, "DoubleArrowUp": { "keywords": ["chevron", "direction", "expand", "collapse"] }, "Download": { "keywords": ["down arrow", "save"] }, "Drag": { "keywords": ["drag", "grip", "dots", "grid"] }, "Draw": { "keywords": ["pencil", "polygon", "markup", "sketch", "edit", "shape"] }, "DrawArrow": { "keywords": ["arrow", "outline", "shape", "markup", "sketch"] }, "DrawCircle": { "keywords": ["outline", "shape", "polygon", "radial", "radius", "markup", "sketch"] }, "DrawClearAll": { "keywords": ["close", "circle", "polygon", "markup", "sketch"] }, "DrawClearAllMaps": { "keywords": ["close", "circle", "square", "polygon", "delete", "reset", "stacked", "markup", "sketch"] }, "DrawEdit": { "keywords": ["pencil", "marquee", "dotted", "markup", "sketch"] }, "DrawEllipse": { "keywords": ["outline", "markup", "sketch", "round", "shape"] }, "DrawExtent": { "keywords": ["arrows", "markup", "sketch", "zoom out"] }, "DrawExtract": { "keywords": ["polygon", "down arrow", "markup", "sketch", "download", "save"] }, "DrawFreehand": { "keywords": ["squiggle", "line", "markup", "sketch"] }, "DrawLine": { "keywords": ["line", "markup", "sketch", "polyline"] }, "DrawMultipoint": { "keywords": ["circles", "markup", "sketch", "dots", "multiple", "vertex", "vertices"] }, "DrawPoint": { "keywords": ["circle", "dot", "spot", "markup", "sketch", "vertex"] }, "DrawPolygon": { "keywords": ["shaded", "points", "markup", "sketch"] }, "DrawPolygonFreehand": { "keywords": ["freeform", "markup", "sketch", "shape"] }, "DrawPolyline": { "keywords": ["line", "points", "markup", "sketch", "vertex", "vertices"] }, "DrawRectangle": { "keywords": ["outline", "markup", "sketch", "shape"] }, "DrawReshape": { "keywords": ["change", "markup", "sketch", "shape", "shapes"] }, "DrawText": { "keywords": ["letter", "markup", "sketch", "T", "note", "notes"] }, "DrawTriangle": { "keywords": ["outline", "markup", "sketch", "shape"] }, "DrawUnion": { "keywords": ["squares", "markup", "sketch", "merge", "combine"] }, "Edit": { "keywords": ["pencil", "change"] }, "EditDoc": { "keywords": ["pencil", "page", "change", "document", "paper"] }, "EditLog": { "keywords": ["pencil", "page", "change", "document", "paper"] }, "EmergencyFacilitySearch": { "keywords": ["building", "magnifying", "loupe", "hospital", "first aid", "medical", "medicine"] }, "Equation": { "keywords": ["math", "maths", "variable", "square root", "formula"] }, "Erase": { "keywords": ["clear", "remove", "delete"] }, "Error": { "keywords": ["warning", "solid", "triangle", "exclamation"] }, "Export": { "keywords": ["page", "arrow left", "document", "paper", "share"] }, "ExtentBasic": { "keywords": ["square", "dotted", "area", "dashed"] }, "ExtentScale": { "keywords": ["resize", "grow", "dashed", "arrow", "square"] }, "FeatureAdd": { "keywords": ["marker", "pin", "plus", "map pin"] }, "FeatureAddHydrant": { "keywords": ["plus", "fire"] }, "FeatureAddLandUse": { "keywords": ["map", "plus", "parcels"] }, "FeatureAddServiceRequest": { "keywords": ["phone", "wrench", "plus", "tool"] }, "FeatureAddTree": { "keywords": ["plus", "forest", "park", "green space", "greenery"] }, "FeatureAddWell": { "keywords": ["oil", "plus"] }, "FeatureCreate": { "keywords": ["plus", "add"] }, "FeatureDelete": { "keywords": ["marker", "trash", "remove", "map pin"] }, "FeatureEdit": { "keywords": ["marker", "pin", "pencil", "map pin"] }, "FeatureLocation": { "keywords": ["pin", "marker", "map pin"] }, "FeatureSummary": { "keywords": ["list", "card"] }, "Feedback": { "keywords": ["chat", "thumb", "speech bubble", "thumbs up", "comment"] }, "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"] }, "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"] }, "Label": { "keywords": ["tag", "tags", "price tag"] }, "LabelOff": { "keywords": ["tag", "tags", "price tag", "off", "slash", "strikethrough"] }, "LabelOptions": { "keywords": ["tag", "tags", "price tag", "settings", "gear", "cog", "manage", "configure"] }, "Language": { "keywords": ["globe", "speech bubble", "internationalization", "localize", "international"] }, "LayerCatalog": { "keywords": ["puzzle", "plus", "add", "addon", "add-on", "extension"] }, "LayerOptions": { "keywords": ["choice", "settings", "gear", "cog", "config", "configuration", "configure"] }, "LayerPresets": { "keywords": ["sliders", "pre-configured", "settings"] }, "LayerRemove": { "keywords": ["close", "clear", "x", "delete", "remove"] }, "LayerStyleEdit": { "keywords": ["pencil", "manage", "change"] }, "Layers": { "keywords": ["stacked"] }, "LayersActions": { "keywords": ["arrows"] }, "LayersAdd": { "keywords": ["stacked", "plus"] }, "LayersEmail": { "keywords": ["stacked", "envelope", "mail"] }, "LayersExtract": { "keywords": ["stacked", "expand", "arrow right", "share"] }, "LayersFiltered": { "keywords": ["stacked", "funnel", "filter"] }, "LayersMenu": { "keywords": ["stacked", "hamburger", "list"] }, "LayersReorder": { "keywords": ["stacked", "move", "up arrow", "down arrow", "order"] }, "LayersSnapping": { "keywords": ["stacked", "magnet", "lightning"] }, "Legend": { "keywords": ["list", "items", "definition"] }, "LegendOff": { "keywords": ["list", "items", "definition", "slash", "strikethrough"] }, "LeisureFacilitySearch": { "keywords": ["weights", "gym", "magnifying glass", "loupe", "magnify", "exercise", "dumbell"] }, "LineStyleEdit": { "keywords": ["pencil", "dotted", "manage", "change"] }, "Link": { "keywords": ["chain", "URL"] }, "LinkExternal": { "keywords": ["external", "arrow", "URL", "pop out"] }, "LocationClear": { "keywords": ["marker", "pin", "reticle", "close", "off", "map pin", "delete", "target", "locate", "geolocation"] }, "LocationSelect": { "keywords": ["reticle", "arrow", "cursor", "target", "point", "pointer", "locate", "geolocation"] }, "LocationSet": { "keywords": ["marker", "pin", "reticle", "map pin", "target", "locate", "geolocation"] }, "Lock": { "keywords": ["padlock", "secure", "security"] }, "ManholeId": { "keywords": ["cover", "utilities", "sewer", "identification"] }, "Map": { "keywords": ["world", "flat", "earth"] }, "Map3rdParty": { "keywords": ["map", "split"] }, "MapArea": { "keywords": ["map", "dotted border", "parcels"] }, "MapBing": { "keywords": ["arrow right", "share", "external"] }, "MapDefault": { "keywords": ["marker", "folded", "pin", "map pin", "paper map"] }, "MapGoogle": { "keywords": ["arrow right", "share", "external"] }, "MapInfo": { "keywords": ["i", "information"] }, "MapOffline": { "keywords": ["disconnected", "exclamation", "wifi", "wi-fi", "parcels"] }, "MapPin": { "keywords": ["marker", "location", "result"] }, "MapPinExtent": { "keywords": ["marker", "location", "result", "constrained", "current map view", "limited"] }, "MapRefresh": { "keywords": ["arrows", "reload", "reset"] }, "MapSyncOff": { "keywords": ["x", "up arrow", "close", "down arrow", "clear", "delete", "swap"] }, "MapSyncOn": { "keywords": ["up arrow", "down arrow", "swap"] }, "MapTax": { "keywords": ["dollar", "value", "price", "parcels"] }, "Markdown": { "keywords": ["code", "M", "formatting"] }, "Markup": { "keywords": ["shape", "area", "polygon", "vertex", "vertices"] }, "MarkupOff": { "keywords": ["slash", "shape", "area", "polygon", "vertex", "vertices", "strikethrough"] }, "Maximize": { "keywords": ["expand", "arrow top right", "box"] }, "MaximizeRestore": { "keywords": ["collapse", "arrow bottom left", "box"] }, "Measure": { "keywords": ["ruler", "size", "distance", "scale"] }, "MeasureArea": { "keywords": ["ruler", "rectangle", "size", "distance", "scale", "fill"] }, "MeasureCircle": { "keywords": ["ruler", "size", "distance", "scale", "radius", "diameter", "circular", "polygon", "shape"] }, "MeasureConvert": { "keywords": ["ruler", "arrows", "size", "distance", "scale", "swap", "change", "switch"] }, "MeasureDistance": { "keywords": ["ruler", "arrows", "size", "scale", "length"] }, "MeasureEllipse": { "keywords": ["ruler", "size", "distance", "scale", "circular", "circle", "radius", "radial", "polygon", "shape"] }, "MeasureFreehand": { "keywords": ["ruler", "size", "distance", "scale"] }, "MeasurePolygon": { "keywords": ["ruler", "size", "distance", "scale", "shape"] }, "MeasurePolygonFreehand": { "keywords": ["ruler", "size", "distance", "scale", "shape"] }, "MeasurePolyline": { "keywords": ["ruler", "size", "distance", "scale", "zigzag"] }, "MeasureRectangle": { "keywords": ["ruler", "size", "distance", "scale", "polygon"] }, "MeasureRestart": { "keywords": ["ruler", "arrows", "size", "distance", "scale", "reset"] }, "Menu": { "keywords": ["hamburger", "action", "navigation", "lines", "stacked", "paragraph"] }, "MenuCollapse": { "keywords": ["arrows", "facing", "inwards"] }, "MenuExpand": { "keywords": ["arrows", "opposite", "outward", "outwards"] }, "MenuGlobal": { "keywords": ["down arrow", "hamburger", "action", "list", "expand"] }, "MenuHoisted": { "keywords": ["hamburger", "action", "navigation", "lines", "stacked", "paragraph"] }, "Message": { "keywords": ["speech bubble", "text", "chat"] }, "Metadata": { "keywords": ["angled brackets", "keywords", "paragraph"] }, "Minimize": { "keywords": ["shrink", "collapse", "arrow bottom left", "bottom line"] }, "MinimizeRestore": { "keywords": ["expand", "enlarge", "arrow top right", "bottom line"] }, "Minus": { "keywords": ["circular border", "subtract", "collapse", "hide"] }, "MinusSquare": { "keywords": ["rounded square", "subtract", "collapse", "hide"] }, "More": { "keywords": ["3 dot menu", "action", "horizontal", "menu", "navigation"] }, "MoreCircle": { "keywords": ["outline", "3 dot menu", "action", "menu", "navigation"] }, "Move": { "keywords": ["arrows", "north", "south", "east", "west"] }, "MoveDown": { "keywords": ["position", "bottom", "boxes", "order"] }, "MoveUp": { "keywords": ["position", "up", "boxes", "order"] }, "MultipleMove": { "keywords": ["move", "points", "lines", "edit", "coincident geometries", "snapped", "rubber banding", "topological", "vertices"] }, "MultipleMoveOff": { "keywords": ["move", "points", "lines", "edit", "coincident geometries", "snapped", "disabled", "rubber banding", "topological", "vertices"] }, "NbaManagement": { "keywords": ["page", "folded", "arrow right", "document", "share", "export"] }, "NeighborhoodSearch": { "keywords": ["homes", "houses", "magnifying glass", "loupe", "magnify", "find", "group"] }, "NeighborhoodSign": { "keywords": ["house", "arrow top right", "directions", "home"] }, "NetworkConnected": { "keywords": ["line", "circle", "linked", "data", "node", "vertex"] }, "NetworkDiagram": { "keywords": ["connected", "nodes", "linked", "data", "connection"] }, "NetworkDownstream": { "keywords": ["down arrow", "node"] }, "NetworkIsolation": { "keywords": ["separate", "disconnected", "data", "target", "pinpoint"] }, "NetworkShortestPath": { "keywords": ["route", "topology", "square", "nodes", "connection", "dashed", "dotted"] }, "NetworkSubnetwork": { "keywords": ["data", "topology", "nodes", "lines", "connection", "dots"] }, "NetworkUpstream": { "keywords": ["up arrow", "node"] }, "NoIcon": { "keywords": ["dotted border", "circle", "blank", "nothing", "na", "empty", "placeholder"] }, "NorthArrow": { "keywords": ["up arrow", "compass", "needle"] }, "ObjectId": { "keywords": ["page", "object", "text", "cube"] }, "OfflineMode": { "keywords": ["globe", "x", "off", "disconnected", "connectivity", "world", "state"] }, "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"] }, "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"] }, "PrintPro": { "keywords": ["output", "printer", "arcpro"] }, "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"] }, "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"] }, "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"] }, "Split": { "keywords": ["columns", "column", "container"] }, "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"] }, "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"] }, "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"] }, "Traffic": { "keywords": ["car", "cars", "stacked", "multiple"] }, "TransformerSearch": { "keywords": ["power", "utility", "lightning", "magnifying glass", "utility pole", "power lines", "power pole", "electricity"] }, "Trash": { "keywords": ["delete", "remove", "clear", "garbage"] }, "Undo": { "keywords": ["back", "arrow", "left"] }, "Ungroup": { "keywords": ["squares", "square", "stacked"] }, "Unlink": { "keywords": ["chain", "link", "break", "disconnect"] }, "Unlock": { "keywords": ["lock", "padlock", "open", "insecure", "access"] }, "Update": { "keywords": ["up arrow"] }, "Upload": { "keywords": ["up arrow", "load"] }, "UploadLayer": { "keywords": ["cloud", "up arrow", "layers", "load"] }, "UploadOptions": { "keywords": ["cloud", "cog", "up arrow", "settings", "load"] }, "UrbanSearch": { "keywords": ["buildings", "books", "stack", "magnifying glass"] }, "Usb": { "keywords": ["device", "connection"] }, "User": { "keywords": ["profile", "silhouette", "circle"] }, "UserCog": { "keywords": ["user settings", "profile"] }, "UsersManage": { "keywords": ["group", "user", "multiple", "team"] }, "UtilityCutAdd": { "keywords": ["utility pole", "power lines", "power pole", "transmission pole", "telephone pole", "telecommunications pole", "hydro pole", "telegraph post", "pole", "stobie pole", "strikethrough", "plus"] }, "UtilityCutDelete": { "keywords": ["utility pole", "power lines", "power pole", "transmission pole", "telephone pole", "telecommunications pole", "hydro pole", "telegraph post", "pole", "stobie pole", "strikethrough", "minus"] }, "UtilityCutEdit": { "keywords": ["utility pole", "power lines", "power pole", "transmission pole", "telephone pole", "telecommunications pole", "hydro pole", "telegraph post", "pole", "stobie pole", "strikethrough", "pencil"] }, "UtilityCutMove": { "keywords": ["utility pole", "power lines", "power pole", "transmission pole", "telephone pole", "telecommunications pole", "hydro pole", "telegraph post", "pole", "stobie pole", "strikethrough", "arrows", "four arrows"] }, "ValveInspected": { "keywords": ["pipe", "fitting", "fixture", "check mark", "checkmark", "success"] }, "VendorsManage": { "keywords": ["users", "group", "hard hat", "hardhat", "construction", "worker", "crew", "team"] }, "ViewGrid": { "keywords": ["squares", "grid", "3x3", "table"] }, "ViewList": { "keywords": ["bullets", "bullet", "three", "3"] }, "ViewSwitchCompact": { "keywords": ["bullets", "bullet", "stacked", "tabs"] }, "ViewSwitchList": { "keywords": ["bullets", "bullet", "stacked", "overlap"] }, "ViewSwitchTable": { "keywords": ["grid", "stacked", "overlap"] }, "ViewSwitchTabs": { "keywords": ["chart", "report", "stacked", "bullet"] }, "Visibility": { "keywords": ["binoculars", "look", "find", "search", "tour"] }, "Visible": { "keywords": ["eye", "eyeball"] }, "VisibleOff": { "keywords": ["eye", "eyeball", "strike", "strikethrough"] }, "Visualizations": { "keywords": ["layers", "shapes"] }, "Warning": { "keywords": ["exclamation", "circle", "outline"] }, "Water": { "keywords": ["waves", "wavy lines"] }, "WaterDrop": { "keywords": ["waves", "drip", "liquid"] }, "Watershed": { "keywords": ["river", "mountain", "hill", "cloud", "park", "wilderness"] }, "Weather": { "keywords": ["sun", "cloud", "rain", "raining"] }, "Wifi": { "keywords": ["signal", "waves"] }, "WindowDock": { "keywords": ["box", "filled", "arrow", "bottom left", "half filled", "half"] }, "WindowNew": { "keywords": ["pop out", "arrow", "top right", "stacked", "boxes"] }, "WorkOrder": { "keywords": ["construction", "worker", "hardhat", "hard hat", "wrench", "tool"] }, "WorkOrderClose": { "keywords": ["construction", "worker", "hardhat", "hard hat", "x", "delete", "clear"] }, "WorkOrderComplete": { "keywords": ["construction", "worker", "hardhat", "hard hat", "checkmark", "check mark", "success", "approve"] }, "WorkOrderFastTrack": { "keywords": ["construction", "worker", "hardhat", "hard hat", "fast forward", "arrows", "right"] }, "Workflow": { "keywords": ["flowchart", "flow chart", "diagram"] }, "WorkingView": { "keywords": ["map", "edit", "pencil", "parcel", "parcels", "streets"] }, "Xlsx": { "keywords": ["spreadsheet", "document", "sheet", "paper"] }, "XlsxAdd": { "keywords": ["spreadsheet", "document", "sheet", "paper", "plus"] }, "XlsxExport": { "keywords": ["spreadsheet", "document", "sheet", "paper", "arrow right", "export"] }, "Xml": { "keywords": ["brackets", "code", "document"] }, "YouthCenterSearch": { "keywords": ["person", "user", "celebrate", "arms up"] }, "ZoomControl": { "keywords": ["pill", "plus", "minus"] }, "ZoomExtent": { "keywords": ["arrows", "diagonal", "dashed", "box", "zoom out"] }, "ZoomExtentAll": { "keywords": ["arrows", "diagonal", "dashed", "box", "zoom out", "stacked", "multiple", "overlap"] }, "ZoomFeature": { "keywords": ["arrow", "down", "in"] }, "ZoomFull": { "keywords": ["arrows", "zoom out", "four arrows", "outward", "out", "circle", "outline"] }, "ZoomIn": { "keywords": ["plus", "circle", "outline"] }, "ZoomInitial": { "keywords": ["circle", "outline", "refresh", "reset"] }, "ZoomNext": { "keywords": ["circle", "outline", "arrow", "right", "forward"] }, "ZoomOut": { "keywords": ["minus", "circle", "outline"] }, "ZoomPrevious": { "keywords": ["circle", "outline", "arrow", "left", "back"] }, "ZoomVisibleScale": { "keywords": ["arrow", "box", "square", "dashed", "filled"] } };
|
|
2
2
|
export { keywords };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vertigis/react-ui",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "18.0.0",
|
|
4
4
|
"description": "Utilities and React components used in VertiGIS applications.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"vertigis",
|
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
],
|
|
15
15
|
"sideEffects": false,
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@mui/icons-material": "
|
|
18
|
-
"@mui/material": "
|
|
19
|
-
"@mui/x-data-grid-pro": "7.
|
|
20
|
-
"@mui/x-date-pickers-pro": "7.
|
|
21
|
-
"@mui/x-license
|
|
22
|
-
"@mui/x-tree-view": "7.
|
|
17
|
+
"@mui/icons-material": "^6.4.0",
|
|
18
|
+
"@mui/material": "^6.4.0",
|
|
19
|
+
"@mui/x-data-grid-pro": "^7.24.0",
|
|
20
|
+
"@mui/x-date-pickers-pro": "^7.24.0",
|
|
21
|
+
"@mui/x-license": "^7.24.1",
|
|
22
|
+
"@mui/x-tree-view": "^7.24.0",
|
|
23
23
|
"autosuggest-highlight": "^3.3.4",
|
|
24
24
|
"clsx": "^2.1.0",
|
|
25
25
|
"color": "^4.2.3",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"@types/color": "^3.0.6",
|
|
36
36
|
"@types/lodash.escape": "^4.0.9",
|
|
37
37
|
"@types/react-color": "^3.0.12",
|
|
38
|
-
"@vertigis/icons": "5.
|
|
38
|
+
"@vertigis/icons": "5.4.0"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"@emotion/react": "*",
|
package/styles/createTheme.d.ts
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
|
-
import type { Theme, ThemeOptions } from "@mui/material/styles";
|
|
1
|
+
import type { Components, Theme, ThemeOptions as MuiThemeOptions } from "@mui/material/styles";
|
|
2
|
+
import type { PickerComponents, PickersProComponents } from "../styles/themeAugmentation.js";
|
|
2
3
|
export type * from "../styles/themeAugmentation.js";
|
|
3
|
-
export type
|
|
4
|
+
export type ThemeOptions = Omit<MuiThemeOptions, "components"> & {
|
|
5
|
+
components?: Components<Omit<Theme, "components">> & PickerComponents<Theme> & PickersProComponents<Theme>;
|
|
6
|
+
};
|
|
7
|
+
export type { Theme };
|
|
4
8
|
export interface CreateThemeOptions extends ThemeOptions {
|
|
5
9
|
/**
|
|
6
10
|
* If specified, sets the `dense` property on components that supports it,
|
package/styles/createTheme.js
CHANGED
|
@@ -244,6 +244,40 @@ function getComponentOverrides(theme, isDense) {
|
|
|
244
244
|
"&.Mui-focusVisible:active": {
|
|
245
245
|
backgroundColor: alpha(palette.grey.A200, 0.5),
|
|
246
246
|
},
|
|
247
|
+
variants: [
|
|
248
|
+
{
|
|
249
|
+
// The "grey" color is our own augmentation which is
|
|
250
|
+
// equivalent to the "default" color in MUI v4, which
|
|
251
|
+
// was removed in v5.
|
|
252
|
+
props: { color: "grey", variant: "contained" },
|
|
253
|
+
style: {
|
|
254
|
+
color: palette.getContrastText(palette.grey[300]),
|
|
255
|
+
},
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
props: { color: "grey", variant: "outlined" },
|
|
259
|
+
style: {
|
|
260
|
+
color: palette.text.primary,
|
|
261
|
+
borderColor: palette.custom.greyOutline,
|
|
262
|
+
"&.Mui-disabled": {
|
|
263
|
+
border: `1px solid ${palette.action.disabledBackground}`,
|
|
264
|
+
},
|
|
265
|
+
"&:hover": {
|
|
266
|
+
borderColor: palette.custom.greyOutline,
|
|
267
|
+
backgroundColor: alpha(palette.text.primary, palette.action.hoverOpacity),
|
|
268
|
+
},
|
|
269
|
+
},
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
props: { color: "grey", variant: "text" },
|
|
273
|
+
style: {
|
|
274
|
+
color: palette.text.primary,
|
|
275
|
+
"&:hover": {
|
|
276
|
+
backgroundColor: alpha(palette.text.primary, palette.action.hoverOpacity),
|
|
277
|
+
},
|
|
278
|
+
},
|
|
279
|
+
},
|
|
280
|
+
],
|
|
247
281
|
},
|
|
248
282
|
contained: {
|
|
249
283
|
borderColor: palette.grey[400],
|
|
@@ -298,40 +332,6 @@ function getComponentOverrides(theme, isDense) {
|
|
|
298
332
|
},
|
|
299
333
|
},
|
|
300
334
|
},
|
|
301
|
-
variants: [
|
|
302
|
-
{
|
|
303
|
-
// The "grey" color is our own augmentation which is
|
|
304
|
-
// equivalent to the "default" color in MUI v4, which
|
|
305
|
-
// was removed in v5.
|
|
306
|
-
props: { variant: "contained", color: "grey" },
|
|
307
|
-
style: {
|
|
308
|
-
color: palette.getContrastText(palette.grey[300]),
|
|
309
|
-
},
|
|
310
|
-
},
|
|
311
|
-
{
|
|
312
|
-
props: { variant: "outlined", color: "grey" },
|
|
313
|
-
style: {
|
|
314
|
-
color: palette.text.primary,
|
|
315
|
-
borderColor: palette.custom.greyOutline,
|
|
316
|
-
"&.Mui-disabled": {
|
|
317
|
-
border: `1px solid ${palette.action.disabledBackground}`,
|
|
318
|
-
},
|
|
319
|
-
"&:hover": {
|
|
320
|
-
borderColor: palette.custom.greyOutline,
|
|
321
|
-
backgroundColor: alpha(palette.text.primary, palette.action.hoverOpacity),
|
|
322
|
-
},
|
|
323
|
-
},
|
|
324
|
-
},
|
|
325
|
-
{
|
|
326
|
-
props: { color: "grey", variant: "text" },
|
|
327
|
-
style: {
|
|
328
|
-
color: palette.text.primary,
|
|
329
|
-
"&:hover": {
|
|
330
|
-
backgroundColor: alpha(palette.text.primary, palette.action.hoverOpacity),
|
|
331
|
-
},
|
|
332
|
-
},
|
|
333
|
-
},
|
|
334
|
-
],
|
|
335
335
|
},
|
|
336
336
|
MuiButtonBase: {
|
|
337
337
|
styleOverrides: {
|
|
@@ -369,20 +369,6 @@ function getComponentOverrides(theme, isDense) {
|
|
|
369
369
|
focusRipple: false,
|
|
370
370
|
},
|
|
371
371
|
},
|
|
372
|
-
MuiClock: {
|
|
373
|
-
styleOverrides: {
|
|
374
|
-
amButton: {
|
|
375
|
-
"& .MuiTypography-caption": {
|
|
376
|
-
fontStyle: "normal",
|
|
377
|
-
},
|
|
378
|
-
},
|
|
379
|
-
pmButton: {
|
|
380
|
-
"& .MuiTypography-caption": {
|
|
381
|
-
fontStyle: "normal",
|
|
382
|
-
},
|
|
383
|
-
},
|
|
384
|
-
},
|
|
385
|
-
},
|
|
386
372
|
MuiCssBaseline: {
|
|
387
373
|
styleOverrides: {
|
|
388
374
|
html: {
|
|
@@ -616,6 +602,18 @@ function getComponentOverrides(theme, isDense) {
|
|
|
616
602
|
MuiListItem: {
|
|
617
603
|
styleOverrides: {
|
|
618
604
|
root: {
|
|
605
|
+
variants: [
|
|
606
|
+
{
|
|
607
|
+
// HACK: The button prop is deprecated in MUI 5 in favor
|
|
608
|
+
// of using ListItemButton. This applies the same
|
|
609
|
+
// styling for any existing code still using this
|
|
610
|
+
// property.
|
|
611
|
+
props: { button: true },
|
|
612
|
+
style: {
|
|
613
|
+
...getMenuItemStyles(theme),
|
|
614
|
+
},
|
|
615
|
+
},
|
|
616
|
+
],
|
|
619
617
|
"&.MuiListItem-secondaryAction, &>.MuiListItemButton-root": {
|
|
620
618
|
// Disable the right padding of 48px that MUI uses
|
|
621
619
|
// to make room for secondary actions, since we use
|
|
@@ -639,20 +637,6 @@ function getComponentOverrides(theme, isDense) {
|
|
|
639
637
|
alignItems: "center",
|
|
640
638
|
},
|
|
641
639
|
},
|
|
642
|
-
variants: [
|
|
643
|
-
{
|
|
644
|
-
// HACK: The button prop is deprecated in MUI 5 in favor
|
|
645
|
-
// of using ListItemButton. This applies the same
|
|
646
|
-
// styling for any existing code still using this
|
|
647
|
-
// property.
|
|
648
|
-
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
649
|
-
// @ts-expect-error
|
|
650
|
-
props: { button: true },
|
|
651
|
-
style: {
|
|
652
|
-
...getMenuItemStyles(theme),
|
|
653
|
-
},
|
|
654
|
-
},
|
|
655
|
-
],
|
|
656
640
|
},
|
|
657
641
|
MuiListItemSecondaryAction: {
|
|
658
642
|
styleOverrides: {
|