| emptyApiQueue |
Type : unknown
|
Default value : (state: AppState, action: EmptyApiQueueAction): AppState =>
// remove all items in the Api Queue
Object.assign({}, state, { apiQueue: {} })
|
| updateAppConnection |
Type : unknown
|
Default value : (state: AppState, action: UpdateAppConnectionAction): AppState => ({ ...state, connected: action.payload })
|
| updateAppStatus |
Type : unknown
|
Default value : (state: AppState, action: UpdateAppStatusAction): AppState => ({ ...state, status: action.payload })
|
| updateAppVersion |
Type : unknown
|
Default value : (state: AppState, action: UpdateAppVersionAction): AppState => ({ ...state, version: action.payload })
|
| updateCurrentModule |
Type : unknown
|
Default value : (state: AppState, action: UpdateCurrentModuleAction): AppState =>
Object.assign({}, state, { currentModule: action.payload })
|
| actionToReducerMap |
| it will be removed in the next major version |
Type : literal type
|
Default value : {
[CoreI18nActionTypes.UPDATE_I18N_STATE]: updateI18nState,
}
|
| actionToReducerMap |
| it will be removed in the next major version |
Type : literal type
|
Default value : {
[CoreLocaleActionTypes.UPDATE_LOCALE_STATE]: updateLocaleState,
}
|
| updateLocaleState |
| it will be removed in the next major version |
Type : unknown
|
Default value : (state: LocaleState, action: UpdateLocaleStateAction): LocaleState => ({
...state,
...action.payload,
})
|
| actionToReducerMap |
Type : literal type
|
Default value : {
[CoreNotificationsActionTypes.UPDATE_NOTIFICATIONS_LIST]: updateNotificationsList,
}
|
| updateUserRights |
Type : unknown
|
Default value : (state: UserState, action: UpdateUserRightsAction): UserState =>
Object.assign({}, state, { rights: [...action.payload] })
|
| CORE_ROOT_GUARD |
Type : unknown
|
Default value : new InjectionToken<void>('Internal Theme ForRoot Guard')
|
| euiCoreRootGuardClass |
Type : unknown
|
Default value : (): EuiCoreRootGuardClass => new EuiCoreRootGuardClass()
|
| BASE_LOGGER_NAME_TOKEN |
Type : unknown
|
Default value : new InjectionToken<string>('BASE_LOGGER_NAME')
|
| LOG_APPENDERS_TOKEN |
Type : unknown
|
Default value : new InjectionToken<LogAppender[]>('LOG_APPENDERS')
|
| LOG_LEVEL_TOKEN |
Type : unknown
|
Default value : new InjectionToken<LogLevel>('LOG_LEVEL')
|
| BASE_NAME_TOKEN |
Type : unknown
|
Default value : new InjectionToken<string>('baseName')
|
| CONFIG_TOKEN |
Type : unknown
|
Default value : new InjectionToken<EuiAppConfig>('finalConfigToken')
|
| EUI_CONFIG_TOKEN |
Type : unknown
|
Default value : new InjectionToken<EuiConfig>('EuiConfig')
|
| GLOBAL_CONFIG_TOKEN |
Type : unknown
|
Default value : new InjectionToken<GlobalConfig>('globalConfig')
|
| HTTP_ERROR_HANDLER_CONFIG_TOKEN |
Type : unknown
|
Default value : new InjectionToken<HttpErrorHandlerConfig>('HTTP_ERROR_HANDLER_CONFIG')
|
| MODULE_CONFIG_TOKEN |
Type : unknown
|
Default value : new InjectionToken<ModuleConfig>('moduleConfig')
|
| MODULE_NAME_TOKEN |
Type : unknown
|
Default value : new InjectionToken<string>('moduleName')
|
| ROOT_LOG_CONFIG_TOKEN |
Type : unknown
|
Default value : new InjectionToken<LogConfig>('logConfig')
|
| SHOW_CONNECTION_STATUS_TOKEN |
Type : unknown
|
Default value : new InjectionToken<boolean>('SHOW_CONNECTION_STATUS')
|
| disallowedKeys |
Type : []
|
Default value : ['loadedConfigModules', 'connect', 'currentModule', 'status', 'apiQueue']
|
| CHIP_ATTR |
Type : string
|
Default value : 'euiChip'
|
| CHIP_LIST_ATTR |
Type : string
|
Default value : 'euiChipList'
|
| CHIP_LIST_TAG |
Type : string
|
Default value : 'eui-chip-list'
|
| CHIP_TAG |
Type : string
|
Default value : 'eui-chip'
|
| REMOVED_INPUTS |
Type : unknown
|
Default value : new Set(['maxVisibleChipsCount', 'isMaxVisibleChipsOpened', 'toggleLinkMoreLabel', 'toggleLinkLessLabel', 'isChipsSorted', 'chipsSortOrder'])
|
| TRUNCATE_PIPE_IMPORT |
Type : string
|
Default value : 'EuiTruncatePipe'
|
| TRUNCATE_PIPE_PATH |
Type : string
|
Default value : '@eui/components/pipes'
|
| isStaticPositioned |
Type : unknown
|
Default value : (nativeEl: Element): boolean => (getStyle(nativeEl, 'position') || 'static') === 'static'
|
|
Checks if a given element is statically positioned |
| offset |
Type : unknown
|
Default value : (nativeEl: HTMLElement): { width: number; height: number; top: number; left: number } => {
const boundingClientRect = nativeEl.getBoundingClientRect();
return {
width: boundingClientRect.width || nativeEl.offsetWidth,
height: boundingClientRect.height || nativeEl.offsetHeight,
top: boundingClientRect.top + (window.pageYOffset || document.documentElement.scrollTop),
left: boundingClientRect.left + (window.pageXOffset || document.documentElement.scrollLeft),
};
}
|
|
Provides read-only equivalent of jQuery's offset function: http://api.jquery.com/offset/ |
| position |
Type : unknown
|
Default value : (nativeEl: HTMLElement): { width: number; height: number; top: number; left: number } => {
const elBCR = offset(nativeEl);
let offsetParentBCR = { top: 0, left: 0 };
const offsetParentEl = parentOffsetEl(nativeEl);
if (offsetParentEl !== document) {
offsetParentBCR = offset(offsetParentEl as HTMLElement);
offsetParentBCR.top += (offsetParentEl as Element).clientTop - (offsetParentEl as Element).scrollTop;
offsetParentBCR.left += (offsetParentEl as Element).clientLeft - (offsetParentEl as Element).scrollLeft;
}
const boundingClientRect = nativeEl.getBoundingClientRect();
return {
width: boundingClientRect.width || nativeEl.offsetWidth,
height: boundingClientRect.height || nativeEl.offsetHeight,
top: elBCR.top - offsetParentBCR.top,
left: elBCR.left - offsetParentBCR.left,
};
}
|
|
Provides read-only equivalent of jQuery's position function: http://api.jquery.com/position/ |
| COMPONENT_TAG |
Type : string
|
Default value : 'eui-discussion-thread'
|
| COMPONENT_TAG |
Type : string
|
Default value : 'eui-editor'
|
| NEW_NAME |
Type : string
|
Default value : 'contentChange'
|
| OLD_NAME |
Type : string
|
Default value : 'onEditorChanged'
|
| COMPONENT_TAG |
Type : string
|
Default value : 'eui-fieldset'
|
| NEW_NAME |
Type : string
|
Default value : 'iconSvgName'
|
| OLD_NAME |
Type : string
|
Default value : 'iconSvgType'
|
| COMPONENT_TAG |
Type : string
|
Default value : 'eui-icon-svg'
|
| INPUT_RENAMES |
Type : unknown
|
Default value : new Map([
['variant', 'fillColor'],
['aria-label', 'ariaLabel'],
])
|
| TS_PROPERTY_RENAMES |
Type : unknown
|
Default value : new Map([
['variant', 'fillColor'],
])
|
| COMPONENT_TAG |
Type : string
|
Default value : 'eui-icon-toggle'
|
| NEW_NAME |
Type : string
|
Default value : 'iconSvgName'
|
| OLD_NAME |
Type : string
|
Default value : 'iconSet'
|
| consumeEvent |
Type : unknown
|
Default value : (event: Event): boolean => {
if (event) {
event.preventDefault();
event.stopPropagation();
event.cancelBubble = true;
}
return false;
}
|
| coreReducers |
| it will be removed in the next major version |
Type : ActionReducerMap<CoreState, any>
|
Default value : Object.assign(
{},
{
app: coreAppReducers,
user: coreUserReducers,
notifications: coreNotificationsReducers,
i18n: corI18nReducers,
locale: coreLocaleReducers,
},
)
|
| CYAN |
Type : string
|
Default value : '\x1b[36m'
|
| RESET |
Type : string
|
Default value : '\x1b[0m'
|
| YELLOW |
Type : string
|
Default value : '\x1b[33m'
|
| DEFAULT_EUI_APP_CONFIG |
Type : EuiAppConfig
|
Default value : {
global: {
...DEFAULT_GLOBAL_CONFIG,
},
}
|
| DEFAULT_EUI_CONFIG |
Type : EuiConfig
|
Default value : {
appConfig: {
...DEFAULT_EUI_APP_CONFIG,
},
environment: {
...DEFAULT_EUI_ENV_CONFIG,
},
}
|
| DEFAULT_EUI_ENV_CONFIG |
Type : EuiEnvConfig
|
Default value : {
envAppHandlersConfig: {},
}
|
| DEFAULT_HTTP_ERROR_HANDLER_CONFIG |
Type : HttpErrorHandlerConfig
|
Default value : {
routes: [],
}
|
| DEFAULT_I18N_LOADER_CONFIG |
Type : I18nLoaderConfig
|
Default value : {}
|
| DEFAULT_I18N_SERVICE_CONFIG |
Type : I18nServiceConfig
|
Default value : {
languages: ['en'],
defaultLanguage: 'en',
}
|
| DEFAULT_LOCALE_SERVICE_CONFIG |
Type : LocaleServiceConfig
|
Default value : {
bindWithTranslate: false,
}
|
| DEFAULT_LANGUAGE |
Type : string
|
Default value : 'en'
|
| TRANSLATED_STRING |
Type : string
|
Default value : 'i18n'
|
| diffDays |
Type : unknown
|
Default value : (dateStart: Date, dateEnd: Date): number =>
Math.round((dateEnd.getTime() - dateStart.getTime()) / 1000 / 60 / 60 / 24)
|
| diffDaysFromToday |
Type : unknown
|
Default value : (date: Date): number => diffDays(new Date(), date)
|
| DYNAMIC_COMPONENT_CONFIG |
Type : unknown
|
Default value : new InjectionToken<object>('DYNAMIC_COMPONENT_CONFIG')
|
| errorCodes |
Type : object
|
Default value : {
ERR_GENERIC: 'ERR_GENERIC',
}
|
| messages |
Type : object
|
Default value : {
ERR_GENERIC: 'An error occured',
}
|
| EUI_COMPONENTS_BASE |
Type : EuiComponentEntry[]
|
Default value : [
// ECL components
{ selectorPrefix: 'ecl-app', module: 'EclAppComponentModule', importObj: 'EUI_ECL_APP', importLocation: '@eui/ecl/components/ecl-app' },
{ selectorPrefix: 'ecl-menu', module: 'EclMenuComponentModule', importObj: 'EUI_ECL_MENU', importLocation: '@eui/ecl/components/ecl-menu' },
{ selectorPrefix: 'ecl-site-header', module: 'EclSiteHeaderComponentModule', importObj: 'EUI_ECL_SITE_HEADER', importLocation: '@eui/ecl/components/ecl-site-header' },
{ selectorPrefix: 'ecl-site-footer', module: 'EclSiteFooterComponentModule', importObj: 'EUI_ECL_SITE_FOOTER', importLocation: '@eui/ecl/components/ecl-site-footer' },
{ module: 'EclBannerComponentModule', importObj: 'EUI_ECL_BANNER', importLocation: '@eui/ecl/components/ecl-banner' },
{ module: 'EclButtonComponentModule', importObj: 'EUI_ECL_BUTTON', importLocation: '@eui/ecl/components/ecl-button' },
{ module: 'EclCardComponentModule', importObj: 'EUI_ECL_CARD', importLocation: '@eui/ecl/components/ecl-card' },
{ module: 'EclContentBlockComponentModule', importObj: 'EUI_ECL_CONTENT_BLOCK', importLocation: '@eui/ecl/components/ecl-content-block' },
{ module: 'EclContentBlockModule', importObj: 'EUI_ECL_CONTENT_BLOCK', importLocation: '@eui/ecl/components/ecl-content-block' },
{ module: 'EclContentItemComponentModule', importObj: 'EUI_ECL_CONTENT_ITEM', importLocation: '@eui/ecl/components/ecl-content-item' },
{ module: 'EclFactFiguresComponentModule', importObj: 'EUI_ECL_FACT_FIGURES', importLocation: '@eui/ecl/components/ecl-fact-figures' },
{ module: 'EclIconComponentModule', importObj: 'EUI_ECL_ICON', importLocation: '@eui/ecl/components/ecl-icon' },
{ module: 'EclLinkDirectiveModule', importObj: 'EUI_ECL_LINK', importLocation: '@eui/ecl/components/ecl-link' },
{ module: 'EclBreadcrumbComponentModule', importObj: 'EUI_ECL_BREADCRUMB', importLocation: '@eui/ecl/components/ecl-breadcrumb' },
{ module: 'EclPageHeaderComponentModule', importObj: 'EUI_ECL_PAGE_HEADER', importLocation: '@eui/ecl/components/ecl-page-header' },
{ module: 'EclAccordionComponentModule', importObj: 'EUI_ECL_ACCORDION', importLocation: '@eui/ecl/components/ecl-accordion' },
{ module: 'EclAccordionToggleEvent', importObj: 'EclAccordionToggleEvent', importLocation: '@eui/ecl/components/ecl-accordion', cmpArray: false },
// EUI components
{ module: 'EuiLayoutModule', importObj: 'EUI_LAYOUT', importLocation: '@eui/components/layout' },
{ module: 'EuiGrowlModule', importObj: 'EUI_GROWL', importLocation: '@eui/components/eui-growl' },
{ selectorPrefix: 'eui-page', module: 'EuiPageModule', importObj: 'EUI_PAGE', importLocation: '@eui/components/eui-page' },
{ selectorPrefix: 'eui-card', module: 'EuiCardModule', importObj: 'EUI_CARD', importLocation: '@eui/components/eui-card' },
{ module: 'EuiSelectModule', importObj: 'EUI_SELECT', importLocation: '@eui/components/eui-select' },
{ module: 'EuiDialogModule', importObj: 'EUI_DIALOG', importLocation: '@eui/components/eui-dialog' },
{ module: 'EuiChipModule', importObj: 'EUI_CHIP', importLocation: '@eui/components/eui-chip' },
{ module: 'EuiChipListModule', importObj: 'EUI_CHIP_LIST', importLocation: '@eui/components/eui-chip-list' },
{ module: 'EuiInputGroupModule', importObj: 'EUI_INPUT_GROUP', importLocation: '@eui/components/eui-input-group' },
{ selectorPrefix: 'eui-icon-svg', module: 'EuiIconModule', importObj: 'EUI_ICON', importLocation: '@eui/components/eui-icon' },
{ module: 'EuiMessageBoxModule', importObj: 'EUI_MESSAGE_BOX', importLocation: '@eui/components/eui-message-box' },
{ module: 'EuiListModule', importObj: 'EUI_LIST', importLocation: '@eui/components/eui-list' },
{ module: 'EuiAutocompleteModule', importObj: 'EUI_AUTOCOMPLETE', importLocation: '@eui/components/eui-autocomplete' },
{ module: 'EuiLabelModule', importObj: 'EUI_LABEL', importLocation: '@eui/components/eui-label' },
{ module: 'EuiButtonModule', importObj: 'EUI_BUTTON', importLocation: '@eui/components/eui-button' },
{ module: 'EuiBadgeModule', importObj: 'EUI_BADGE', importLocation: '@eui/components/eui-badge' },
{ module: 'EuiInputTextModule', importObj: 'EUI_INPUT_TEXT', importLocation: '@eui/components/eui-input-text' },
{ module: 'EuiInputCheckboxModule', importObj: 'EUI_INPUT_CHECKBOX', importLocation: '@eui/components/eui-input-checkbox' },
{ module: 'EuiDatepickerModule', importObj: 'EUI_DATEPICKER', importLocation: '@eui/components/eui-datepicker' },
{ module: 'EuiDisableContentModule', importObj: 'EUI_DISABLE_CONTENT', importLocation: '@eui/components/eui-disable-content' },
{ selectorPrefix: 'eui-table', module: 'EuiTableModule', importObj: 'EUI_TABLE', importLocation: '@eui/components/eui-table' },
{ module: 'EuiTableV2Module', importObj: 'EUI_TABLE', importLocation: '@eui/components/eui-table' },
{ selectorPrefix: 'eui-paginator', module: 'EuiPaginatorModule', importObj: 'EUI_PAGINATOR', importLocation: '@eui/components/eui-paginator' },
{ selectorPrefix: 'eui-feedback-message', module: 'EuiFeedbackMessageModule', importObj: 'EUI_FEEDBACK_MESSAGE', importLocation: '@eui/components/eui-feedback-message' },
{ module: 'EuiTextAreaModule', importObj: 'EUI_TEXTAREA', importLocation: '@eui/components/eui-textarea' },
{ module: 'EuiDropdownModule', importObj: 'EUI_DROPDOWN', importLocation: '@eui/components/eui-dropdown' },
{ module: 'EuiAlertModule', importObj: 'EUI_ALERT', importLocation: '@eui/components/eui-alert' },
{ module: 'EuiSlideToggleModule', importObj: 'EUI_SLIDE_TOGGLE', importLocation: '@eui/components/eui-slide-toggle' },
{ module: 'EuiInputRadioModule', importObj: 'EUI_INPUT_RADIO', importLocation: '@eui/components/eui-input-radio' },
{ module: 'EuiButtonGroupModule', importObj: 'EUI_BUTTON_GROUP', importLocation: '@eui/components/eui-button-group' },
{ module: 'EuiFieldsetModule', importObj: 'EUI_FIELDSET', importLocation: '@eui/components/eui-fieldset' },
{ module: 'EuiSidebarMenuModule', importObj: 'EUI_SIDEBAR_MENU', importLocation: '@eui/components/eui-sidebar-menu' },
{ module: 'EuiIconToggleModule', importObj: 'EUI_ICON_TOGGLE', importLocation: '@eui/components/eui-icon-toggle' },
{ module: 'EuiTreeModule', importObj: 'EUI_TREE', importLocation: '@eui/components/eui-tree' },
{ module: 'EuiWizardModule', importObj: 'EUI_WIZARD', importLocation: '@eui/components/eui-wizard' },
{ module: 'EuiPopoverModule', importObj: 'EUI_POPOVER', importLocation: '@eui/components/eui-popover' },
{ module: 'EuiBlockContentModule', importObj: 'EUI_BLOCK_CONTENT', importLocation: '@eui/components/eui-block-content' },
{ module: 'EuiDateRangeSelectorModule', importObj: 'EUI_DATE_RANGE_SELECTOR', importLocation: '@eui/components/eui-date-range-selector' },
{ module: 'EuiFileUploadModule', importObj: 'EUI_FILE_UPLOAD', importLocation: '@eui/components/eui-file-upload' },
{ selectorPrefix: 'eui-tab', module: 'EuiTabsModule', importObj: 'EUI_TABS', importLocation: '@eui/components/eui-tabs' },
{ module: 'EuiTimepickerModule', importObj: 'EUI_TIMEPICKER', importLocation: '@eui/components/eui-timepicker' },
{ module: 'EuiOverlayModule', importObj: 'EUI_OVERLAY', importLocation: '@eui/components/eui-overlay' },
{ module: 'EuiProgressBarModule', importObj: 'EUI_PROGRESS_BAR', importLocation: '@eui/components/eui-progress-bar' },
{ module: 'EuiTreeListModule', importObj: 'EUI_TREE_LIST', importLocation: '@eui/components/eui-tree-list' },
{ module: 'EuiBreadcrumbModule', importObj: 'EUI_BREADCRUMB', importLocation: '@eui/components/eui-breadcrumb' },
{ module: 'EuiProgressCircleModule', importObj: 'EUI_PROGRESS_CIRCLE', importLocation: '@eui/components/eui-progress-circle' },
{ module: 'EuiSkeletonModule', importObj: 'EUI_SKELETON', importLocation: '@eui/components/eui-skeleton' },
{ module: 'EuiAvatarModule', importObj: 'EUI_AVATAR', importLocation: '@eui/components/eui-avatar' },
{ module: 'EuiIconButtonModule', importObj: 'EUI_ICON_BUTTON', importLocation: '@eui/components/eui-icon-button' },
{ module: 'EuiUserProfileModule', importObj: 'EUI_USER_PROFILE', importLocation: '@eui/components/eui-user-profile' },
{ module: 'EuiInputNumberModule', importObj: 'EUI_INPUT_NUMBER', importLocation: '@eui/components/eui-input-number' },
{ module: 'EuiInputNumberDirectiveModule', importObj: 'EUI_INPUT_NUMBER', importLocation: '@eui/components/eui-input-number' },
{ module: 'EuiDashboardCardModule', importObj: 'EUI_DASHBOARD_CARD', importLocation: '@eui/components/eui-dashboard-card' },
{ module: 'EuiMenuModule', importObj: 'EUI_MENU', importLocation: '@eui/components/eui-menu' },
{ module: 'EuiChartsModule', importObj: 'EUI_CHARTS', importLocation: '@eui/components/externals/charts' },
{ module: 'EuiChipGroupModule', importObj: 'EUI_CHIP_GROUP', importLocation: '@eui/components/eui-chip-group' },
{ module: 'EuiTimelineModule', importObj: 'EUI_TIMELINE', importLocation: '@eui/components/eui-timeline' },
{ selectorPrefix: 'eui-discussion-thread', module: 'EuiDiscussionThreadModule', importObj: 'EUI_DISCUSSION_THREAD', importLocation: '@eui/components/eui-discussion-thread' },
{ module: 'EuiDashboardButtonModule', importObj: 'EUI_DASHBOARD_CARD', importLocation: '@eui/components/eui-dashboard-card' },
// Directives and pipes (cmpArray: false means no spread)
{ module: 'EuiTooltipDirectiveModule', importObj: 'EuiTooltipDirective', importLocation: '@eui/components/directives', cmpArray: false },
{ module: 'EuiTemplateDirectiveModule', importObj: 'EuiTemplateDirective', importLocation: '@eui/components/directives', cmpArray: false },
{ module: 'EuiResizableDirectiveModule', importObj: 'EuiResizableDirective', importLocation: '@eui/components/directives', cmpArray: false },
{ module: 'EuiMaxLengthDirectiveModule', importObj: 'EuiMaxLengthDirective', importLocation: '@eui/components/directives', cmpArray: false },
{ module: 'EuiTruncatePipeModule', importObj: 'EuiTruncatePipe', importLocation: '@eui/components/pipes', cmpArray: false },
{ module: 'EuiDropdownTreeDirectiveModule', importObj: 'EuiDropdownTreeDirective', importLocation: '@eui/components/eui-tree', cmpArray: false },
]
|
|
Full mapping of old EUI/ECL modules to their new standalone import equivalents. Ported from csdr-engine/migrate/index.js euiComponentsBase. |
| EUI_COUNTRIES |
Type : object
|
Default value : {
AF: 'Afghanistan',
AX: 'Aland Islands',
AL: 'Albania',
DZ: 'Algeria',
AS: 'American Samoa',
AD: 'Andorra',
AO: 'Angola',
AI: 'Anguilla',
AQ: 'Antarctica',
AG: 'Antigua and Barbuda',
AR: 'Argentina',
AM: 'Armenia',
AW: 'Aruba',
AU: 'Australia',
AT: 'Austria',
AZ: 'Azerbaijan',
BS: 'Bahamas',
BH: 'Bahrain',
BD: 'Bangladesh',
BB: 'Barbados',
BY: 'Belarus',
BE: 'Belgium',
BZ: 'Belize',
BJ: 'Benin',
BM: 'Bermuda',
BT: 'Bhutan',
BO: 'Bolivia',
BA: 'Bosnia and Herzegovina',
BW: 'Botswana',
BV: 'Bouvet Island',
BR: 'Brazil',
VG: 'British Virgin Islands',
IO: 'British Indian Ocean Territory',
BN: 'Brunei Darussalam',
BG: 'Bulgaria',
BF: 'Burkina Faso',
BI: 'Burundi',
KH: 'Cambodia',
CM: 'Cameroon',
CA: 'Canada',
CV: 'Cape Verde',
KY: 'Cayman Islands',
CF: 'Central African Republic',
TD: 'Chad',
CL: 'Chile',
CN: 'China',
HK: 'Hong Kong',
MO: 'Macao',
CX: 'Christmas Island',
CC: 'Cocos (Keeling) Islands',
CO: 'Colombia',
KM: 'Comoros',
CG: 'Congo (Brazzaville)',
CD: 'Congo, (Kinshasa)',
CK: 'Cook Islands',
CR: 'Costa Rica',
CI: "Côte d'Ivoire",
HR: 'Croatia',
CU: 'Cuba',
CY: 'Cyprus',
CZ: 'Czech Republic',
DK: 'Denmark',
DJ: 'Djibouti',
DM: 'Dominica',
DO: 'Dominican Republic',
EC: 'Ecuador',
EG: 'Egypt',
SV: 'El Salvador',
GQ: 'Equatorial Guinea',
ER: 'Eritrea',
EE: 'Estonia',
ET: 'Ethiopia',
FK: 'Falkland Islands (Malvinas)',
FO: 'Faroe Islands',
FJ: 'Fiji',
FI: 'Finland',
FR: 'France',
GF: 'French Guiana',
PF: 'French Polynesia',
TF: 'French Southern Territories',
GA: 'Gabon',
GM: 'Gambia',
GE: 'Georgia',
DE: 'Germany',
GH: 'Ghana',
GI: 'Gibraltar',
GR: 'Greece',
GL: 'Greenland',
GD: 'Grenada',
GP: 'Guadeloupe',
GU: 'Guam',
GT: 'Guatemala',
GG: 'Guernsey',
GN: 'Guinea',
GW: 'Guinea-Bissau',
GY: 'Guyana',
HT: 'Haiti',
HM: 'Heard and Mcdonald Islands',
VA: 'Vatican City State',
HN: 'Honduras',
HU: 'Hungary',
IS: 'Iceland',
IN: 'India',
ID: 'Indonesia',
IR: 'Iran',
IQ: 'Iraq',
IE: 'Ireland',
IM: 'Isle of Man',
IL: 'Israel',
IT: 'Italy',
JM: 'Jamaica',
JP: 'Japan',
JE: 'Jersey',
JO: 'Jordan',
KZ: 'Kazakhstan',
KE: 'Kenya',
KI: 'Kiribati',
KP: 'Korea (North)',
KR: 'Korea (South)',
KW: 'Kuwait',
KG: 'Kyrgyzstan',
LA: 'Lao PDR',
LV: 'Latvia',
LB: 'Lebanon',
LS: 'Lesotho',
LR: 'Liberia',
LY: 'Libya',
LI: 'Liechtenstein',
LT: 'Lithuania',
LU: 'Luxembourg',
MK: 'Macedonia',
MG: 'Madagascar',
MW: 'Malawi',
MY: 'Malaysia',
MV: 'Maldives',
ML: 'Mali',
MT: 'Malta',
MH: 'Marshall Islands',
MQ: 'Martinique',
MR: 'Mauritania',
MU: 'Mauritius',
YT: 'Mayotte',
MX: 'Mexico',
FM: 'Micronesia',
MD: 'Moldova',
MC: 'Monaco',
MN: 'Mongolia',
ME: 'Montenegro',
MS: 'Montserrat',
MA: 'Morocco',
MZ: 'Mozambique',
MM: 'Myanmar',
NA: 'Namibia',
NR: 'Nauru',
NP: 'Nepal',
NL: 'Netherlands',
AN: 'Netherlands Antilles',
NC: 'New Caledonia',
NZ: 'New Zealand',
NI: 'Nicaragua',
NE: 'Niger',
NG: 'Nigeria',
NU: 'Niue',
NF: 'Norfolk Island',
MP: 'Northern Mariana Islands',
NO: 'Norway',
OM: 'Oman',
PK: 'Pakistan',
PW: 'Palau',
PS: 'Palestinian Territory',
PA: 'Panama',
PG: 'Papua New Guinea',
PY: 'Paraguay',
PE: 'Peru',
PH: 'Philippines',
PN: 'Pitcairn',
PL: 'Poland',
PT: 'Portugal',
PR: 'Puerto Rico',
QA: 'Qatar',
RE: 'Réunion',
RO: 'Romania',
RU: 'Russian Federation',
RW: 'Rwanda',
BL: 'Saint-Barthélemy',
SH: 'Saint Helena',
KN: 'Saint Kitts and Nevis',
LC: 'Saint Lucia',
MF: 'Saint-Martin (French part)',
PM: 'Saint Pierre and Miquelon',
VC: 'Saint Vincent and Grenadines',
WS: 'Samoa',
SM: 'San Marino',
ST: 'Sao Tome and Principe',
SA: 'Saudi Arabia',
SN: 'Senegal',
RS: 'Serbia',
SC: 'Seychelles',
SL: 'Sierra Leone',
SG: 'Singapore',
SK: 'Slovakia',
SI: 'Slovenia',
SB: 'Solomon Islands',
SO: 'Somalia',
ZA: 'South Africa',
GS: 'South Georgia and the South Sandwich Islands',
SS: 'South Sudan',
ES: 'Spain',
LK: 'Sri Lanka',
SD: 'Sudan',
SR: 'Suriname',
SJ: 'Svalbard and Jan Mayen Islands',
SZ: 'Swaziland',
SE: 'Sweden',
CH: 'Switzerland',
SY: 'Syria',
TW: 'Taiwan',
TJ: 'Tajikistan',
TZ: 'Tanzania',
TH: 'Thailand',
TL: 'Timor-Leste',
TG: 'Togo',
TK: 'Tokelau',
TO: 'Tonga',
TT: 'Trinidad and Tobago',
TN: 'Tunisia',
TR: 'Turkey',
TM: 'Turkmenistan',
TC: 'Turks and Caicos Islands',
TV: 'Tuvalu',
UG: 'Uganda',
UA: 'Ukraine',
AE: 'United Arab Emirates',
GB: 'United Kingdom (GB)',
US: 'United States of America (USA)',
UM: 'US Minor Outlying Islands',
UY: 'Uruguay',
UZ: 'Uzbekistan',
VU: 'Vanuatu',
VE: 'Venezuela',
VN: 'Viet Nam',
VI: 'Virgin Islands, US',
WF: 'Wallis and Futuna Islands',
EH: 'Western Sahara',
YE: 'Yemen',
ZM: 'Zambia',
ZW: 'Zimbabwe',
}
|
| EUI_TIMEZONES |
Type : EuiTimeZone[]
|
Default value : [
{ name: 'Europe/Andorra', desc: 'Andorra - Andorra (GMT+02:00)' },
{ name: 'Asia/Dubai', desc: 'United Arab Emirates - Dubai (GMT+04:00)' },
{ name: 'Asia/Kabul', desc: 'Afghanistan - Kabul (GMT+04:30)' },
{ name: 'America/Antigua', desc: 'Antigua and Barbuda - Antigua (GMT-04:00)' },
{ name: 'America/Anguilla', desc: 'Anguilla - Anguilla (GMT-04:00)' },
{ name: 'Europe/Tirane', desc: 'Albania - Tirane (GMT+02:00)' },
{ name: 'Asia/Yerevan', desc: 'Armenia - Yerevan (GMT+04:00)' },
{ name: 'Africa/Luanda', desc: 'Angola - Luanda (GMT+01:00)' },
{ name: 'Antarctica/McMurdo', desc: 'Antarctica - McMurdo (GMT+12:00)' },
{ name: 'Antarctica/Rothera', desc: 'Antarctica - Rothera (GMT-03:00)' },
{ name: 'Antarctica/Palmer', desc: 'Antarctica - Palmer (GMT-03:00)' },
{ name: 'Antarctica/Mawson', desc: 'Antarctica - Mawson (GMT+05:00)' },
{ name: 'Antarctica/Davis', desc: 'Antarctica - Davis (GMT+07:00)' },
{ name: 'Antarctica/Casey', desc: 'Antarctica - Casey (GMT+08:00)' },
{ name: 'Antarctica/Vostok', desc: 'Antarctica - Vostok (GMT+06:00)' },
{ name: 'Antarctica/DumontDUrville', desc: 'Antarctica - DumontDUrville (GMT+10:00)' },
{ name: 'Antarctica/Syowa', desc: 'Antarctica - Syowa (GMT+03:00)' },
{ name: 'Antarctica/Troll', desc: 'Antarctica - Troll (GMT+02:00)' },
{ name: 'America/Argentina/Buenos_Aires', desc: 'Argentina - Buenos Aires (GMT-03:00)' },
{ name: 'America/Argentina/Cordoba', desc: 'Argentina - Cordoba (GMT-03:00)' },
{ name: 'America/Argentina/Salta', desc: 'Argentina - Salta (GMT-03:00)' },
{ name: 'America/Argentina/Jujuy', desc: 'Argentina - Jujuy (GMT-03:00)' },
{ name: 'America/Argentina/Tucuman', desc: 'Argentina - Tucuman (GMT-03:00)' },
{ name: 'America/Argentina/Catamarca', desc: 'Argentina - Catamarca (GMT-03:00)' },
{ name: 'America/Argentina/La_Rioja', desc: 'Argentina - La Rioja (GMT-03:00)' },
{ name: 'America/Argentina/San_Juan', desc: 'Argentina - San Juan (GMT-03:00)' },
{ name: 'America/Argentina/Mendoza', desc: 'Argentina - Mendoza (GMT-03:00)' },
{ name: 'America/Argentina/San_Luis', desc: 'Argentina - San Luis (GMT-03:00)' },
{ name: 'America/Argentina/Rio_Gallegos', desc: 'Argentina - Rio Gallegos (GMT-03:00)' },
{ name: 'America/Argentina/Ushuaia', desc: 'Argentina - Ushuaia (GMT-03:00)' },
{ name: 'Pacific/Pago_Pago', desc: 'American Samoa - Pago Pago (GMT-11:00)' },
{ name: 'Pacific/Samoa', desc: 'American Samoa - Samoa (GMT-11:00)' },
{ name: 'Europe/Vienna', desc: 'Austria - Vienna (GMT+02:00)' },
{ name: 'Australia/Lord_Howe', desc: 'Australia - Lord Howe (GMT+10:30)' },
{ name: 'Antarctica/Macquarie', desc: 'Australia - Macquarie (GMT+11:00)' },
{ name: 'Australia/Hobart', desc: 'Australia - Hobart (GMT+10:00)' },
{ name: 'Australia/Currie', desc: 'Australia - Currie (GMT+10:00)' },
{ name: 'Australia/Melbourne', desc: 'Australia - Melbourne (GMT+10:00)' },
{ name: 'Australia/Sydney', desc: 'Australia - Sydney (GMT+10:00)' },
{ name: 'Australia/Broken_Hill', desc: 'Australia - Broken Hill (GMT+09:30)' },
{ name: 'Australia/Brisbane', desc: 'Australia - Brisbane (GMT+10:00)' },
{ name: 'Australia/Lindeman', desc: 'Australia - Lindeman (GMT+10:00)' },
{ name: 'Australia/Adelaide', desc: 'Australia - Adelaide (GMT+09:30)' },
{ name: 'Australia/Darwin', desc: 'Australia - Darwin (GMT+09:30)' },
{ name: 'Australia/Perth', desc: 'Australia - Perth (GMT+08:00)' },
{ name: 'Australia/Eucla', desc: 'Australia - Eucla (GMT+08:45)' },
{ name: 'Australia/Canberra', desc: 'Australia - Canberra (GMT+10:00)' },
{ name: 'Australia/Queensland', desc: 'Australia - Queensland (GMT+10:00)' },
{ name: 'Australia/Tasmania', desc: 'Australia - Tasmania (GMT+10:00)' },
{ name: 'Australia/Victoria', desc: 'Australia - Victoria (GMT+10:00)' },
{ name: 'America/Aruba', desc: 'Aruba - Aruba (GMT-04:00)' },
{ name: 'Europe/Mariehamn', desc: 'Aland Islands - Mariehamn (GMT+03:00)' },
{ name: 'Asia/Baku', desc: 'Azerbaijan - Baku (GMT+04:00)' },
{ name: 'Europe/Sarajevo', desc: 'Bosnia and Herzegovina - Sarajevo (GMT+02:00)' },
{ name: 'America/Barbados', desc: 'Barbados - Barbados (GMT-04:00)' },
{ name: 'Asia/Dhaka', desc: 'Bangladesh - Dhaka (GMT+06:00)' },
{ name: 'Europe/Brussels', desc: 'Belgium - Brussels (GMT+02:00)' },
{ name: 'Africa/Ouagadougou', desc: 'Burkina Faso - Ouagadougou (GMT+00:00)' },
{ name: 'Europe/Sofia', desc: 'Bulgaria - Sofia (GMT+03:00)' },
{ name: 'Asia/Bahrain', desc: 'Bahrain - Bahrain (GMT+03:00)' },
{ name: 'Africa/Bujumbura', desc: 'Burundi - Bujumbura (GMT+02:00)' },
{ name: 'Africa/Porto-Novo', desc: 'Benin - Porto-Novo (GMT+01:00)' },
{ name: 'America/St_Barthelemy', desc: 'Saint-Barthélemy - St Barthelemy (GMT-04:00)' },
{ name: 'Atlantic/Bermuda', desc: 'Bermuda - Bermuda (GMT-03:00)' },
{ name: 'Asia/Brunei', desc: 'Brunei Darussalam - Brunei (GMT+08:00)' },
{ name: 'America/La_Paz', desc: 'Bolivia - La Paz (GMT-04:00)' },
{ name: 'America/Kralendijk', desc: 'BQ - Kralendijk (GMT-04:00)' },
{ name: 'America/Noronha', desc: 'Brazil - Noronha (GMT-02:00)' },
{ name: 'America/Belem', desc: 'Brazil - Belem (GMT-03:00)' },
{ name: 'America/Fortaleza', desc: 'Brazil - Fortaleza (GMT-03:00)' },
{ name: 'America/Recife', desc: 'Brazil - Recife (GMT-03:00)' },
{ name: 'America/Araguaina', desc: 'Brazil - Araguaina (GMT-03:00)' },
{ name: 'America/Maceio', desc: 'Brazil - Maceio (GMT-03:00)' },
{ name: 'America/Bahia', desc: 'Brazil - Bahia (GMT-03:00)' },
{ name: 'America/Sao_Paulo', desc: 'Brazil - Sao Paulo (GMT-03:00)' },
{ name: 'America/Campo_Grande', desc: 'Brazil - Campo Grande (GMT-04:00)' },
{ name: 'America/Cuiaba', desc: 'Brazil - Cuiaba (GMT-04:00)' },
{ name: 'America/Santarem', desc: 'Brazil - Santarem (GMT-03:00)' },
{ name: 'America/Porto_Velho', desc: 'Brazil - Porto Velho (GMT-04:00)' },
{ name: 'America/Boa_Vista', desc: 'Brazil - Boa Vista (GMT-04:00)' },
{ name: 'America/Manaus', desc: 'Brazil - Manaus (GMT-04:00)' },
{ name: 'America/Eirunepe', desc: 'Brazil - Eirunepe (GMT-05:00)' },
{ name: 'America/Rio_Branco', desc: 'Brazil - Rio Branco (GMT-05:00)' },
{ name: 'America/Nassau', desc: 'Bahamas - Nassau (GMT-04:00)' },
{ name: 'Asia/Thimphu', desc: 'Bhutan - Thimphu (GMT+06:00)' },
{ name: 'Africa/Gaborone', desc: 'Botswana - Gaborone (GMT+02:00)' },
{ name: 'Europe/Minsk', desc: 'Belarus - Minsk (GMT+03:00)' },
{ name: 'America/Belize', desc: 'Belize - Belize (GMT-06:00)' },
{ name: 'America/St_Johns', desc: 'Canada - St Johns (GMT-02:30)' },
{ name: 'America/Halifax', desc: 'Canada - Halifax (GMT-03:00)' },
{ name: 'America/Glace_Bay', desc: 'Canada - Glace Bay (GMT-03:00)' },
{ name: 'America/Moncton', desc: 'Canada - Moncton (GMT-03:00)' },
{ name: 'America/Goose_Bay', desc: 'Canada - Goose Bay (GMT-03:00)' },
{ name: 'America/Blanc-Sablon', desc: 'Canada - Blanc-Sablon (GMT-04:00)' },
{ name: 'America/Toronto', desc: 'Canada - Toronto (GMT-04:00)' },
{ name: 'America/Nipigon', desc: 'Canada - Nipigon (GMT-04:00)' },
{ name: 'America/Thunder_Bay', desc: 'Canada - Thunder Bay (GMT-04:00)' },
{ name: 'America/Iqaluit', desc: 'Canada - Iqaluit (GMT-04:00)' },
{ name: 'America/Pangnirtung', desc: 'Canada - Pangnirtung (GMT-04:00)' },
{ name: 'America/Resolute', desc: 'Canada - Resolute (GMT-05:00)' },
{ name: 'America/Atikokan', desc: 'Canada - Atikokan (GMT-05:00)' },
{ name: 'America/Rankin_Inlet', desc: 'Canada - Rankin Inlet (GMT-05:00)' },
{ name: 'America/Winnipeg', desc: 'Canada - Winnipeg (GMT-05:00)' },
{ name: 'America/Rainy_River', desc: 'Canada - Rainy River (GMT-05:00)' },
{ name: 'America/Regina', desc: 'Canada - Regina (GMT-06:00)' },
{ name: 'America/Swift_Current', desc: 'Canada - Swift Current (GMT-06:00)' },
{ name: 'America/Edmonton', desc: 'Canada - Edmonton (GMT-06:00)' },
{ name: 'America/Cambridge_Bay', desc: 'Canada - Cambridge Bay (GMT-06:00)' },
{ name: 'America/Yellowknife', desc: 'Canada - Yellowknife (GMT-06:00)' },
{ name: 'America/Inuvik', desc: 'Canada - Inuvik (GMT-06:00)' },
{ name: 'America/Creston', desc: 'Canada - Creston (GMT-07:00)' },
{ name: 'America/Dawson_Creek', desc: 'Canada - Dawson Creek (GMT-07:00)' },
{ name: 'America/Vancouver', desc: 'Canada - Vancouver (GMT-07:00)' },
{ name: 'America/Whitehorse', desc: 'Canada - Whitehorse (GMT-07:00)' },
{ name: 'America/Dawson', desc: 'Canada - Dawson (GMT-07:00)' },
{ name: 'America/Montreal', desc: 'Canada - Montreal (GMT-04:00)' },
{ name: 'Canada/Atlantic', desc: 'Canada - Atlantic (GMT-03:00)' },
{ name: 'Canada/Central', desc: 'Canada - Central (GMT-05:00)' },
{ name: 'Canada/Eastern', desc: 'Canada - Eastern (GMT-04:00)' },
{ name: 'Canada/Mountain', desc: 'Canada - Mountain (GMT-06:00)' },
{ name: 'Canada/Newfoundland', desc: 'Canada - Newfoundland (GMT-02:30)' },
{ name: 'Canada/Pacific', desc: 'Canada - Pacific (GMT-07:00)' },
{ name: 'Canada/Saskatchewan', desc: 'Canada - Saskatchewan (GMT-06:00)' },
{ name: 'Canada/Yukon', desc: 'Canada - Yukon (GMT-07:00)' },
{ name: 'Indian/Cocos', desc: 'Cocos (Keeling) Islands - Cocos (GMT+06:30)' },
{ name: 'Africa/Kinshasa', desc: 'Congo, (Kinshasa) - Kinshasa (GMT+01:00)' },
{ name: 'Africa/Lubumbashi', desc: 'Congo, (Kinshasa) - Lubumbashi (GMT+02:00)' },
{ name: 'Africa/Bangui', desc: 'Central African Republic - Bangui (GMT+01:00)' },
{ name: 'Africa/Brazzaville', desc: 'Congo (Brazzaville) - Brazzaville (GMT+01:00)' },
{ name: 'Europe/Zurich', desc: 'Switzerland - Zurich (GMT+02:00)' },
{ name: 'Africa/Abidjan', desc: "Côte d'Ivoire - Abidjan (GMT+00:00)" },
{ name: 'Pacific/Rarotonga', desc: 'Cook Islands - Rarotonga (GMT-10:00)' },
{ name: 'America/Santiago', desc: 'Chile - Santiago (GMT-04:00)' },
{ name: 'Pacific/Easter', desc: 'Chile - Easter (GMT-06:00)' },
{ name: 'Chile/Continental', desc: 'Chile - Continental (GMT-04:00)' },
{ name: 'Chile/EasterIsland', desc: 'Chile - EasterIsland (GMT-06:00)' },
{ name: 'Africa/Douala', desc: 'Cameroon - Douala (GMT+01:00)' },
{ name: 'Asia/Shanghai', desc: 'China - Shanghai (GMT+08:00)' },
{ name: 'Asia/Harbin', desc: 'China - Harbin (GMT+08:00)' },
{ name: 'Asia/Chongqing', desc: 'China - Chongqing (GMT+08:00)' },
{ name: 'Asia/Urumqi', desc: 'China - Urumqi (GMT+06:00)' },
{ name: 'Asia/Kashgar', desc: 'China - Kashgar (GMT+06:00)' },
{ name: 'America/Bogota', desc: 'Colombia - Bogota (GMT-05:00)' },
{ name: 'America/Costa_Rica', desc: 'Costa Rica - Costa Rica (GMT-06:00)' },
{ name: 'America/Havana', desc: 'Cuba - Havana (GMT-04:00)' },
{ name: 'Atlantic/Cape_Verde', desc: 'Cape Verde - Cape Verde (GMT-01:00)' },
{ name: 'America/Curacao', desc: 'CW - Curacao (GMT-04:00)' },
{ name: 'Indian/Christmas', desc: 'Christmas Island - Christmas (GMT+07:00)' },
{ name: 'Asia/Nicosia', desc: 'Cyprus - Nicosia (GMT+03:00)' },
{ name: 'Europe/Prague', desc: 'Czech Republic - Prague (GMT+02:00)' },
{ name: 'Europe/Berlin', desc: 'Germany - Berlin (GMT+02:00)' },
{ name: 'Africa/Djibouti', desc: 'Djibouti - Djibouti (GMT+03:00)' },
{ name: 'Europe/Copenhagen', desc: 'Denmark - Copenhagen (GMT+02:00)' },
{ name: 'America/Dominica', desc: 'Dominica - Dominica (GMT-04:00)' },
{ name: 'America/Santo_Domingo', desc: 'Dominican Republic - Santo Domingo (GMT-04:00)' },
{ name: 'Africa/Algiers', desc: 'Algeria - Algiers (GMT+01:00)' },
{ name: 'America/Guayaquil', desc: 'Ecuador - Guayaquil (GMT-05:00)' },
{ name: 'Pacific/Galapagos', desc: 'Ecuador - Galapagos (GMT-06:00)' },
{ name: 'Europe/Tallinn', desc: 'Estonia - Tallinn (GMT+03:00)' },
{ name: 'Egypt', desc: 'Egypt - Egypt (GMT+02:00)' },
{ name: 'Africa/El_Aaiun', desc: 'Western Sahara - El Aaiun (GMT+00:00)' },
{ name: 'Africa/Asmara', desc: 'Eritrea - Asmara (GMT+03:00)' },
{ name: 'Europe/Madrid', desc: 'Spain - Madrid (GMT+02:00)' },
{ name: 'Africa/Ceuta', desc: 'Spain - Ceuta (GMT+02:00)' },
{ name: 'Atlantic/Canary', desc: 'Spain - Canary (GMT+01:00)' },
{ name: 'Africa/Addis_Ababa', desc: 'Ethiopia - Addis Ababa (GMT+03:00)' },
{ name: 'Europe/Helsinki', desc: 'Finland - Helsinki (GMT+03:00)' },
{ name: 'Pacific/Fiji', desc: 'Fiji - Fiji (GMT+12:00)' },
{ name: 'Atlantic/Stanley', desc: 'Falkland Islands (Malvinas) - Stanley (GMT-03:00)' },
{ name: 'Pacific/Chuuk', desc: 'Micronesia - Chuuk (GMT+10:00)' },
{ name: 'Pacific/Pohnpei', desc: 'Micronesia - Pohnpei (GMT+11:00)' },
{ name: 'Pacific/Kosrae', desc: 'Micronesia - Kosrae (GMT+11:00)' },
{ name: 'Atlantic/Faroe', desc: 'Faroe Islands - Faroe (GMT+01:00)' },
{ name: 'Europe/Paris', desc: 'France - Paris (GMT+02:00)' },
{ name: 'Africa/Libreville', desc: 'Gabon - Libreville (GMT+01:00)' },
{ name: 'Europe/London', desc: 'United Kingdom (GB) - London (GMT+01:00)' },
{ name: 'America/Grenada', desc: 'Grenada - Grenada (GMT-04:00)' },
{ name: 'Asia/Tbilisi', desc: 'Georgia - Tbilisi (GMT+04:00)' },
{ name: 'America/Cayenne', desc: 'French Guiana - Cayenne (GMT-03:00)' },
{ name: 'Europe/Guernsey', desc: 'Guernsey - Guernsey (GMT+01:00)' },
{ name: 'Africa/Accra', desc: 'Ghana - Accra (GMT+00:00)' },
{ name: 'Europe/Gibraltar', desc: 'Gibraltar - Gibraltar (GMT+02:00)' },
{ name: 'America/Godthab', desc: 'Greenland - Godthab (GMT-02:00)' },
{ name: 'America/Danmarkshavn', desc: 'Greenland - Danmarkshavn (GMT+00:00)' },
{ name: 'America/Scoresbysund', desc: 'Greenland - Scoresbysund (GMT+00:00)' },
{ name: 'America/Thule', desc: 'Greenland - Thule (GMT-03:00)' },
{ name: 'Africa/Banjul', desc: 'Gambia - Banjul (GMT+00:00)' },
{ name: 'Africa/Conakry', desc: 'Guinea - Conakry (GMT+00:00)' },
{ name: 'America/Guadeloupe', desc: 'Guadeloupe - Guadeloupe (GMT-04:00)' },
{ name: 'Africa/Malabo', desc: 'Equatorial Guinea - Malabo (GMT+01:00)' },
{ name: 'Europe/Athens', desc: 'Greece - Athens (GMT+03:00)' },
{ name: 'Atlantic/South_Georgia', desc: 'South Georgia and the South Sandwich Islands - South Georgia (GMT-02:00)' },
{ name: 'America/Guatemala', desc: 'Guatemala - Guatemala (GMT-06:00)' },
{ name: 'Pacific/Guam', desc: 'Guam - Guam (GMT+10:00)' },
{ name: 'Africa/Bissau', desc: 'Guinea-Bissau - Bissau (GMT+00:00)' },
{ name: 'America/Guyana', desc: 'Guyana - Guyana (GMT-04:00)' },
{ name: 'Asia/Hong_Kong', desc: 'Hong Kong - Hong Kong (GMT+08:00)' },
{ name: 'America/Tegucigalpa', desc: 'Honduras - Tegucigalpa (GMT-06:00)' },
{ name: 'Europe/Zagreb', desc: 'Croatia - Zagreb (GMT+02:00)' },
{ name: 'America/Port-au-Prince', desc: 'Haiti - Port-au-Prince (GMT-04:00)' },
{ name: 'Europe/Budapest', desc: 'Hungary - Budapest (GMT+02:00)' },
{ name: 'Asia/Jakarta', desc: 'Indonesia - Jakarta (GMT+07:00)' },
{ name: 'Asia/Pontianak', desc: 'Indonesia - Pontianak (GMT+07:00)' },
{ name: 'Asia/Makassar', desc: 'Indonesia - Makassar (GMT+08:00)' },
{ name: 'Asia/Jayapura', desc: 'Indonesia - Jayapura (GMT+09:00)' },
{ name: 'Europe/Dublin', desc: 'Ireland - Dublin (GMT+01:00)' },
{ name: 'Asia/Jerusalem', desc: 'Israel - Jerusalem (GMT+03:00)' },
{ name: 'Europe/Isle_of_Man', desc: 'Isle of Man - Isle of_Man (GMT+01:00)' },
{ name: 'Asia/Kolkata', desc: 'India - Kolkata (GMT+05:30)' },
{ name: 'Indian/Chagos', desc: 'British Indian Ocean Territory - Chagos (GMT+06:00)' },
{ name: 'Asia/Baghdad', desc: 'Iraq - Baghdad (GMT+03:00)' },
{ name: 'Asia/Tehran', desc: 'Iran - Tehran (GMT+04:30)' },
{ name: 'Atlantic/Reykjavik', desc: 'Iceland - Reykjavik (GMT+00:00)' },
{ name: 'Europe/Rome', desc: 'Italy - Rome (GMT+02:00)' },
{ name: 'Europe/Jersey', desc: 'Jersey - Jersey (GMT+01:00)' },
{ name: 'America/Jamaica', desc: 'Jamaica - Jamaica (GMT-05:00)' },
{ name: 'Asia/Amman', desc: 'Jordan - Amman (GMT+03:00)' },
{ name: 'Asia/Tokyo', desc: 'Japan - Tokyo (GMT+09:00)' },
{ name: 'Africa/Nairobi', desc: 'Kenya - Nairobi (GMT+03:00)' },
{ name: 'Asia/Bishkek', desc: 'Kyrgyzstan - Bishkek (GMT+06:00)' },
{ name: 'Asia/Phnom_Penh', desc: 'Cambodia - Phnom Penh (GMT+07:00)' },
{ name: 'Pacific/Tarawa', desc: 'Kiribati - Tarawa (GMT+12:00)' },
{ name: 'Pacific/Enderbury', desc: 'Kiribati - Enderbury (GMT+13:00)' },
{ name: 'Pacific/Kiritimati', desc: 'Kiribati - Kiritimati (GMT+14:00)' },
{ name: 'Indian/Comoro', desc: 'Comoros - Comoro (GMT+03:00)' },
{ name: 'America/St_Kitts', desc: 'Saint Kitts and Nevis - St Kitts (GMT-04:00)' },
{ name: 'Asia/Pyongyang', desc: 'Korea (North) - Pyongyang (GMT+09:00)' },
{ name: 'Asia/Seoul', desc: 'Korea (South) - Seoul (GMT+09:00)' },
{ name: 'Asia/Kuwait', desc: 'Kuwait - Kuwait (GMT+03:00)' },
{ name: 'America/Cayman', desc: 'Cayman Islands - Cayman (GMT-05:00)' },
{ name: 'Asia/Almaty', desc: 'Kazakhstan - Almaty (GMT+06:00)' },
{ name: 'Asia/Qyzylorda', desc: 'Kazakhstan - Qyzylorda (GMT+06:00)' },
{ name: 'Asia/Aqtobe', desc: 'Kazakhstan - Aqtobe (GMT+05:00)' },
{ name: 'Asia/Aqtau', desc: 'Kazakhstan - Aqtau (GMT+05:00)' },
{ name: 'Asia/Oral', desc: 'Kazakhstan - Oral (GMT+05:00)' },
{ name: 'Asia/Vientiane', desc: 'Lao PDR - Vientiane (GMT+07:00)' },
{ name: 'Asia/Beirut', desc: 'Lebanon - Beirut (GMT+03:00)' },
{ name: 'America/St_Lucia', desc: 'Saint Lucia - St Lucia (GMT-04:00)' },
{ name: 'Europe/Vaduz', desc: 'Liechtenstein - Vaduz (GMT+02:00)' },
{ name: 'Asia/Colombo', desc: 'Sri Lanka - Colombo (GMT+05:30)' },
{ name: 'Africa/Monrovia', desc: 'Liberia - Monrovia (GMT+00:00)' },
{ name: 'Africa/Maseru', desc: 'Lesotho - Maseru (GMT+02:00)' },
{ name: 'Europe/Vilnius', desc: 'Lithuania - Vilnius (GMT+03:00)' },
{ name: 'Europe/Luxembourg', desc: 'Luxembourg - Luxembourg (GMT+02:00)' },
{ name: 'Europe/Riga', desc: 'Latvia - Riga (GMT+03:00)' },
{ name: 'Africa/Tripoli', desc: 'Libya - Tripoli (GMT+02:00)' },
{ name: 'Africa/Casablanca', desc: 'Morocco - Casablanca (GMT+00:00)' },
{ name: 'Europe/Monaco', desc: 'Monaco - Monaco (GMT+02:00)' },
{ name: 'Europe/Chisinau', desc: 'Moldova - Chisinau (GMT+03:00)' },
{ name: 'Europe/Podgorica', desc: 'Montenegro - Podgorica (GMT+02:00)' },
{ name: 'America/Marigot', desc: 'Saint-Martin (French part) - Marigot (GMT-04:00)' },
{ name: 'Indian/Antananarivo', desc: 'Madagascar - Antananarivo (GMT+03:00)' },
{ name: 'Pacific/Majuro', desc: 'Marshall Islands - Majuro (GMT+12:00)' },
{ name: 'Pacific/Kwajalein', desc: 'Marshall Islands - Kwajalein (GMT+12:00)' },
{ name: 'Europe/Skopje', desc: 'Macedonia - Skopje (GMT+02:00)' },
{ name: 'Africa/Bamako', desc: 'Mali - Bamako (GMT+00:00)' },
{ name: 'Asia/Rangoon', desc: 'Myanmar - Rangoon (GMT+06:30)' },
{ name: 'Asia/Ulaanbaatar', desc: 'Mongolia - Ulaanbaatar (GMT+08:00)' },
{ name: 'Asia/Hovd', desc: 'Mongolia - Hovd (GMT+07:00)' },
{ name: 'Asia/Choibalsan', desc: 'Mongolia - Choibalsan (GMT+08:00)' },
{ name: 'Asia/Macau', desc: 'Macao - Macau (GMT+08:00)' },
{ name: 'Pacific/Saipan', desc: 'Northern Mariana Islands - Saipan (GMT+10:00)' },
{ name: 'America/Martinique', desc: 'Martinique - Martinique (GMT-04:00)' },
{ name: 'Africa/Nouakchott', desc: 'Mauritania - Nouakchott (GMT+00:00)' },
{ name: 'America/Montserrat', desc: 'Montserrat - Montserrat (GMT-04:00)' },
{ name: 'Europe/Malta', desc: 'Malta - Malta (GMT+02:00)' },
{ name: 'Indian/Mauritius', desc: 'Mauritius - Mauritius (GMT+04:00)' },
{ name: 'Indian/Maldives', desc: 'Maldives - Maldives (GMT+05:00)' },
{ name: 'Africa/Blantyre', desc: 'Malawi - Blantyre (GMT+02:00)' },
{ name: 'America/Mexico_City', desc: 'Mexico - Mexico City (GMT-05:00)' },
{ name: 'America/Cancun', desc: 'Mexico - Cancun (GMT-05:00)' },
{ name: 'America/Merida', desc: 'Mexico - Merida (GMT-05:00)' },
{ name: 'America/Monterrey', desc: 'Mexico - Monterrey (GMT-05:00)' },
{ name: 'America/Matamoros', desc: 'Mexico - Matamoros (GMT-05:00)' },
{ name: 'America/Mazatlan', desc: 'Mexico - Mazatlan (GMT-06:00)' },
{ name: 'America/Chihuahua', desc: 'Mexico - Chihuahua (GMT-06:00)' },
{ name: 'America/Ojinaga', desc: 'Mexico - Ojinaga (GMT-06:00)' },
{ name: 'America/Hermosillo', desc: 'Mexico - Hermosillo (GMT-07:00)' },
{ name: 'America/Tijuana', desc: 'Mexico - Tijuana (GMT-07:00)' },
{ name: 'America/Santa_Isabel', desc: 'Mexico - Santa Isabel (GMT-07:00)' },
{ name: 'America/Bahia_Banderas', desc: 'Mexico - Bahia Banderas (GMT-05:00)' },
{ name: 'Asia/Kuala_Lumpur', desc: 'Malaysia - Kuala Lumpur (GMT+08:00)' },
{ name: 'Asia/Kuching', desc: 'Malaysia - Kuching (GMT+08:00)' },
{ name: 'Africa/Maputo', desc: 'Mozambique - Maputo (GMT+02:00)' },
{ name: 'Africa/Windhoek', desc: 'Namibia - Windhoek (GMT+02:00)' },
{ name: 'Pacific/Noumea', desc: 'New Caledonia - Noumea (GMT+11:00)' },
{ name: 'Africa/Niamey', desc: 'Niger - Niamey (GMT+01:00)' },
{ name: 'Pacific/Norfolk', desc: 'Norfolk Island - Norfolk (GMT+11:00)' },
{ name: 'Africa/Lagos', desc: 'Nigeria - Lagos (GMT+01:00)' },
{ name: 'America/Managua', desc: 'Nicaragua - Managua (GMT-06:00)' },
{ name: 'Europe/Amsterdam', desc: 'Netherlands - Amsterdam (GMT+02:00)' },
{ name: 'Europe/Oslo', desc: 'Norway - Oslo (GMT+02:00)' },
{ name: 'Asia/Kathmandu', desc: 'Nepal - Kathmandu (GMT+05:45)' },
{ name: 'Pacific/Nauru', desc: 'Nauru - Nauru (GMT+12:00)' },
{ name: 'Pacific/Niue', desc: 'Niue - Niue (GMT-11:00)' },
{ name: 'Pacific/Auckland', desc: 'New Zealand - Auckland (GMT+12:00)' },
{ name: 'Pacific/Chatham', desc: 'New Zealand - Chatham (GMT+12:45)' },
{ name: 'Asia/Muscat', desc: 'Oman - Muscat (GMT+04:00)' },
{ name: 'America/Panama', desc: 'Panama - Panama (GMT-05:00)' },
{ name: 'America/Lima', desc: 'Peru - Lima (GMT-05:00)' },
{ name: 'Pacific/Tahiti', desc: 'French Polynesia - Tahiti (GMT-10:00)' },
{ name: 'Pacific/Marquesas', desc: 'French Polynesia - Marquesas (GMT-09:30)' },
{ name: 'Pacific/Gambier', desc: 'French Polynesia - Gambier (GMT-09:00)' },
{ name: 'Pacific/Port_Moresby', desc: 'Papua New Guinea - Port Moresby (GMT+10:00)' },
{ name: 'Asia/Manila', desc: 'Philippines - Manila (GMT+08:00)' },
{ name: 'Asia/Karachi', desc: 'Pakistan - Karachi (GMT+05:00)' },
{ name: 'Europe/Warsaw', desc: 'Poland - Warsaw (GMT+02:00)' },
{ name: 'Poland', desc: 'Poland - Poland (GMT+02:00)' },
{ name: 'America/Miquelon', desc: 'Saint Pierre and Miquelon - Miquelon (GMT-02:00)' },
{ name: 'Pacific/Pitcairn', desc: 'Pitcairn - Pitcairn (GMT-08:00)' },
{ name: 'America/Puerto_Rico', desc: 'Puerto Rico - Puerto Rico (GMT-04:00)' },
{ name: 'Asia/Gaza', desc: 'Palestinian Territory - Gaza (GMT+03:00)' },
{ name: 'Asia/Hebron', desc: 'Palestinian Territory - Hebron (GMT+03:00)' },
{ name: 'Europe/Lisbon', desc: 'Portugal - Lisbon (GMT+01:00)' },
{ name: 'Atlantic/Madeira', desc: 'Portugal - Madeira (GMT+01:00)' },
{ name: 'Atlantic/Azores', desc: 'Portugal - Azores (GMT+00:00)' },
{ name: 'Pacific/Palau', desc: 'Palau - Palau (GMT+09:00)' },
{ name: 'America/Asuncion', desc: 'Paraguay - Asuncion (GMT-04:00)' },
{ name: 'Asia/Qatar', desc: 'Qatar - Qatar (GMT+03:00)' },
{ name: 'Indian/Reunion', desc: 'Réunion - Reunion (GMT+04:00)' },
{ name: 'Europe/Bucharest', desc: 'Romania - Bucharest (GMT+03:00)' },
{ name: 'Europe/Belgrade', desc: 'Serbia - Belgrade (GMT+02:00)' },
{ name: 'Europe/Kaliningrad', desc: 'Russian Federation - Kaliningrad (GMT+02:00)' },
{ name: 'Europe/Moscow', desc: 'Russian Federation - Moscow (GMT+03:00)' },
{ name: 'Europe/Volgograd', desc: 'Russian Federation - Volgograd (GMT+03:00)' },
{ name: 'Europe/Samara', desc: 'Russian Federation - Samara (GMT+04:00)' },
{ name: 'Europe/Simferopol', desc: 'Russian Federation - Simferopol (GMT+03:00)' },
{ name: 'Asia/Yekaterinburg', desc: 'Russian Federation - Yekaterinburg (GMT+05:00)' },
{ name: 'Asia/Omsk', desc: 'Russian Federation - Omsk (GMT+06:00)' },
{ name: 'Asia/Novosibirsk', desc: 'Russian Federation - Novosibirsk (GMT+07:00)' },
{ name: 'Asia/Novokuznetsk', desc: 'Russian Federation - Novokuznetsk (GMT+07:00)' },
{ name: 'Asia/Krasnoyarsk', desc: 'Russian Federation - Krasnoyarsk (GMT+07:00)' },
{ name: 'Asia/Irkutsk', desc: 'Russian Federation - Irkutsk (GMT+08:00)' },
{ name: 'Asia/Yakutsk', desc: 'Russian Federation - Yakutsk (GMT+09:00)' },
{ name: 'Asia/Khandyga', desc: 'Russian Federation - Khandyga (GMT+09:00)' },
{ name: 'Asia/Vladivostok', desc: 'Russian Federation - Vladivostok (GMT+10:00)' },
{ name: 'Asia/Sakhalin', desc: 'Russian Federation - Sakhalin (GMT+11:00)' },
{ name: 'Asia/Ust-Nera', desc: 'Russian Federation - Ust-Nera (GMT+10:00)' },
{ name: 'Asia/Magadan', desc: 'Russian Federation - Magadan (GMT+11:00)' },
{ name: 'Asia/Kamchatka', desc: 'Russian Federation - Kamchatka (GMT+12:00)' },
{ name: 'Asia/Anadyr', desc: 'Russian Federation - Anadyr (GMT+12:00)' },
{ name: 'Africa/Kigali', desc: 'Rwanda - Kigali (GMT+02:00)' },
{ name: 'Asia/Riyadh', desc: 'Saudi Arabia - Riyadh (GMT+03:00)' },
{ name: 'Pacific/Guadalcanal', desc: 'Solomon Islands - Guadalcanal (GMT+11:00)' },
{ name: 'Indian/Mahe', desc: 'Seychelles - Mahe (GMT+04:00)' },
{ name: 'Africa/Khartoum', desc: 'Sudan - Khartoum (GMT+02:00)' },
{ name: 'Europe/Stockholm', desc: 'Sweden - Stockholm (GMT+02:00)' },
{ name: 'Asia/Singapore', desc: 'Singapore - Singapore (GMT+08:00)' },
{ name: 'Atlantic/St_Helena', desc: 'Saint Helena - St Helena (GMT+00:00)' },
{ name: 'Europe/Ljubljana', desc: 'Slovenia - Ljubljana (GMT+02:00)' },
{ name: 'Arctic/Longyearbyen', desc: 'Svalbard and Jan Mayen Islands - Longyearbyen (GMT+02:00)' },
{ name: 'Europe/Bratislava', desc: 'Slovakia - Bratislava (GMT+02:00)' },
{ name: 'Africa/Freetown', desc: 'Sierra Leone - Freetown (GMT+00:00)' },
{ name: 'Europe/San_Marino', desc: 'San Marino - San Marino (GMT+02:00)' },
{ name: 'Africa/Dakar', desc: 'Senegal - Dakar (GMT+00:00)' },
{ name: 'Africa/Mogadishu', desc: 'Somalia - Mogadishu (GMT+03:00)' },
{ name: 'America/Paramaribo', desc: 'Suriname - Paramaribo (GMT-03:00)' },
{ name: 'Africa/Juba', desc: 'South Sudan - Juba (GMT+03:00)' },
{ name: 'Africa/Sao_Tome', desc: 'Sao Tome and Principe - Sao Tome (GMT+01:00)' },
{ name: 'America/El_Salvador', desc: 'El Salvador - El Salvador (GMT-06:00)' },
{ name: 'America/Lower_Princes', desc: 'SX - Lower Princes (GMT-04:00)' },
{ name: 'Asia/Damascus', desc: 'Syria - Damascus (GMT+03:00)' },
{ name: 'Africa/Mbabane', desc: 'Swaziland - Mbabane (GMT+02:00)' },
{ name: 'America/Grand_Turk', desc: 'Turks and Caicos Islands - Grand Turk (GMT-04:00)' },
{ name: 'Africa/Ndjamena', desc: 'Chad - Ndjamena (GMT+01:00)' },
{ name: 'Indian/Kerguelen', desc: 'French Southern Territories - Kerguelen (GMT+05:00)' },
{ name: 'Africa/Lome', desc: 'Togo - Lome (GMT+00:00)' },
{ name: 'Asia/Bangkok', desc: 'Thailand - Bangkok (GMT+07:00)' },
{ name: 'Asia/Dushanbe', desc: 'Tajikistan - Dushanbe (GMT+05:00)' },
{ name: 'Pacific/Fakaofo', desc: 'Tokelau - Fakaofo (GMT+13:00)' },
{ name: 'Asia/Dili', desc: 'Timor-Leste - Dili (GMT+09:00)' },
{ name: 'Asia/Ashgabat', desc: 'Turkmenistan - Ashgabat (GMT+05:00)' },
{ name: 'Africa/Tunis', desc: 'Tunisia - Tunis (GMT+01:00)' },
{ name: 'Pacific/Tongatapu', desc: 'Tonga - Tongatapu (GMT+13:00)' },
{ name: 'Europe/Istanbul', desc: 'Turkey - Istanbul (GMT+03:00)' },
{ name: 'America/Port_of_Spain', desc: 'Trinidad and Tobago - Port of_Spain (GMT-04:00)' },
{ name: 'Pacific/Funafuti', desc: 'Tuvalu - Funafuti (GMT+12:00)' },
{ name: 'Asia/Taipei', desc: 'Taiwan - Taipei (GMT+08:00)' },
{ name: 'Africa/Dar_es_Salaam', desc: 'Tanzania - Dar es_Salaam (GMT+03:00)' },
{ name: 'Europe/Kiev', desc: 'Ukraine - Kiev (GMT+03:00)' },
{ name: 'Europe/Uzhgorod', desc: 'Ukraine - Uzhgorod (GMT+03:00)' },
{ name: 'Europe/Zaporozhye', desc: 'Ukraine - Zaporozhye (GMT+03:00)' },
{ name: 'Africa/Kampala', desc: 'Uganda - Kampala (GMT+03:00)' },
{ name: 'Pacific/Johnston', desc: 'US Minor Outlying Islands - Johnston (GMT-10:00)' },
{ name: 'Pacific/Midway', desc: 'US Minor Outlying Islands - Midway (GMT-11:00)' },
{ name: 'Pacific/Wake', desc: 'US Minor Outlying Islands - Wake (GMT+12:00)' },
{ name: 'America/New_York', desc: 'United States of America (USA) - New York (GMT-04:00)' },
{ name: 'America/Detroit', desc: 'United States of America (USA) - Detroit (GMT-04:00)' },
{ name: 'America/Kentucky/Louisville', desc: 'United States of America (USA) - Louisville (GMT-04:00)' },
{ name: 'America/Kentucky/Monticello', desc: 'United States of America (USA) - Monticello (GMT-04:00)' },
{ name: 'America/Indiana/Indianapolis', desc: 'United States of America (USA) - Indianapolis (GMT-04:00)' },
{ name: 'America/Indiana/Vincennes', desc: 'United States of America (USA) - Vincennes (GMT-04:00)' },
{ name: 'America/Indiana/Winamac', desc: 'United States of America (USA) - Winamac (GMT-04:00)' },
{ name: 'America/Indiana/Marengo', desc: 'United States of America (USA) - Marengo (GMT-04:00)' },
{ name: 'America/Indiana/Petersburg', desc: 'United States of America (USA) - Petersburg (GMT-04:00)' },
{ name: 'America/Indiana/Vevay', desc: 'United States of America (USA) - Vevay (GMT-04:00)' },
{ name: 'America/Chicago', desc: 'United States of America (USA) - Chicago (GMT-05:00)' },
{ name: 'America/Indiana/Tell_City', desc: 'United States of America (USA) - Tell City (GMT-05:00)' },
{ name: 'America/Indiana/Knox', desc: 'United States of America (USA) - Knox (GMT-05:00)' },
{ name: 'America/Menominee', desc: 'United States of America (USA) - Menominee (GMT-05:00)' },
{ name: 'America/North_Dakota/Center', desc: 'United States of America (USA) - Center (GMT-05:00)' },
{ name: 'America/North_Dakota/New_Salem', desc: 'United States of America (USA) - New Salem (GMT-05:00)' },
{ name: 'America/North_Dakota/Beulah', desc: 'United States of America (USA) - Beulah (GMT-05:00)' },
{ name: 'America/Denver', desc: 'United States of America (USA) - Denver (GMT-06:00)' },
{ name: 'America/Boise', desc: 'United States of America (USA) - Boise (GMT-06:00)' },
{ name: 'America/Phoenix', desc: 'United States of America (USA) - Phoenix (GMT-07:00)' },
{ name: 'America/Los_Angeles', desc: 'United States of America (USA) - Los Angeles (GMT-07:00)' },
{ name: 'America/Anchorage', desc: 'United States of America (USA) - Anchorage (GMT-08:00)' },
{ name: 'America/Juneau', desc: 'United States of America (USA) - Juneau (GMT-08:00)' },
{ name: 'America/Sitka', desc: 'United States of America (USA) - Sitka (GMT-08:00)' },
{ name: 'America/Yakutat', desc: 'United States of America (USA) - Yakutat (GMT-08:00)' },
{ name: 'America/Nome', desc: 'United States of America (USA) - Nome (GMT-08:00)' },
{ name: 'America/Adak', desc: 'United States of America (USA) - Adak (GMT-09:00)' },
{ name: 'America/Metlakatla', desc: 'United States of America (USA) - Metlakatla (GMT-08:00)' },
{ name: 'Pacific/Honolulu', desc: 'United States of America (USA) - Honolulu (GMT-10:00)' },
{ name: 'America/Montevideo', desc: 'Uruguay - Montevideo (GMT-03:00)' },
{ name: 'Asia/Samarkand', desc: 'Uzbekistan - Samarkand (GMT+05:00)' },
{ name: 'Asia/Tashkent', desc: 'Uzbekistan - Tashkent (GMT+05:00)' },
{ name: 'Europe/Vatican', desc: 'Vatican City State - Vatican (GMT+02:00)' },
{ name: 'America/St_Vincent', desc: 'Saint Vincent and Grenadines - St Vincent (GMT-04:00)' },
{ name: 'America/Caracas', desc: 'Venezuela - Caracas (GMT-04:00)' },
{ name: 'America/Tortola', desc: 'British Virgin Islands - Tortola (GMT-04:00)' },
{ name: 'America/St_Thomas', desc: 'Virgin Islands, US - St Thomas (GMT-04:00)' },
{ name: 'Asia/Ho_Chi_Minh', desc: 'Viet Nam - Ho Chi_Minh (GMT+07:00)' },
{ name: 'Pacific/Efate', desc: 'Vanuatu - Efate (GMT+11:00)' },
{ name: 'Pacific/Wallis', desc: 'Wallis and Futuna Islands - Wallis (GMT+12:00)' },
{ name: 'Pacific/Apia', desc: 'Samoa - Apia (GMT+13:00)' },
{ name: 'Asia/Aden', desc: 'Yemen - Aden (GMT+03:00)' },
{ name: 'Indian/Mayotte', desc: 'Mayotte - Mayotte (GMT+03:00)' },
{ name: 'Africa/Johannesburg', desc: 'South Africa - Johannesburg (GMT+02:00)' },
{ name: 'Africa/Lusaka', desc: 'Zambia - Lusaka (GMT+02:00)' },
{ name: 'Africa/Harare', desc: 'Zimbabwe - Harare (GMT+02:00)' },
]
|
| EUI_DIRECTIVES |
Type : []
|
Default value : ['euiButton', 'euiList', 'euiListItem']
|
| NEW_NAME |
Type : string
|
Default value : 'euiPrimary'
|
| OLD_NAME |
Type : string
|
Default value : 'euiAccent'
|
| uniqueId |
Type : unknown
|
Default value : (): string => Math.random().toString(36).substring(2, 9)
|
|
returns a random string with radix=36 |
| getLastAddedModule |
Type : Selector<CoreState, string>
|
Default value : (state: CoreState) => state.app.loadedConfigModules.lastAddedModule
|
| iconLookup |
Type : unknown
|
Default value : new Map<string, string>()
|
|
Build a lookup map for O(1) icon replacement |
| initialState |
Type : UIState
|
Default value : {
appName: '',
appShortName: '',
appSubTitle: '',
appBaseFontSize: '',
isSidebarOpen: true,
isSidebarActive: false,
hasSidebar: false,
hasSideContainer: false,
hasHeader: false,
hasBreadcrumb: false,
hasHeaderLogo: false,
hasHeaderEnvironment: false,
hasToolbar: false,
hasToolbarMegaMenu: false,
hasToolbarMenu: false,
environmentValue: '',
isSidebarHidden: false,
isSidebarFocused: false,
hasSidebarCollapsedVariant: false,
hasTopMessage: false,
windowWidth: 0,
windowHeight: 0,
mainContentHeight: 0,
pageHeaderHeight: 0,
wrapperClasses: '',
breakpoint: '',
breakpoints: {
isMobile: false,
isTablet: false,
isLtLargeTablet: false,
isLtDesktop: false,
isDesktop: false,
isXL: false,
isXXL: false,
isFHD: false,
is2K: false,
is4K: false,
},
breakpointValues: [],
menuLinks: [],
sidebarLinks: [],
combinedLinks: [],
isBlockDocumentActive: false,
deviceInfo: null,
activeLanguage: 'en',
languages: EuiEuLanguages.getLanguages(),
appMetadata: null,
hasModalActive: false,
isDimmerActive: false,
}
|
| initialState |
Type : ThemeState
|
Default value : {
themes: [
{ name: EuiTheme.DEFAULT, isActive: false, styleSheet: null, cssClass: null },
{ name: EuiTheme.ECL_EC, isActive: false, styleSheet: 'eui-ecl-ec.css', cssClass: null },
{ name: EuiTheme.ECL_EC_RTL, isActive: false, styleSheet: 'eui-ecl-ec.css', cssClass: null },
{ name: EuiTheme.ECL_EU, isActive: false, styleSheet: 'eui-ecl-eu.css', cssClass: null },
{ name: EuiTheme.ECL_EU_RTL, isActive: false, styleSheet: 'eui-ecl-eu.css', cssClass: null },
{ name: EuiTheme.DARK, isActive: false, styleSheet: null, cssClass: 'eui-t-dark' },
{ name: EuiTheme.HIGH_CONTRAST, isActive: false, styleSheet: null, cssClass: 'eui-t-high-contrast' },
{ name: EuiTheme.COMPACT, isActive: false, styleSheet: null, cssClass: 'eui-t-compact' },
],
theme: {
isDefault: false,
isEclEc: false,
isEclEcRtl: false,
isEclEu: false,
isEclEuRtl: false,
isDark: false,
isHighContrast: false,
isCompact: false,
},
}
|
| INPUT_RENAMES |
Type : unknown
|
Default value : new Map([
['iconLabelClass', 'icon'],
['iconLabelStyleClass', 'fillColor'],
])
|
| LANG_PARAM_KEY |
Type : string
|
Default value : 'X-Lang-Param'
|
| LOCAL_FORAGE_SERVICE_CONFIG_TOKEN |
Type : unknown
|
Default value : new InjectionToken<any>('LOCAL_FORAGE_SERVICE_CONFIG')
|
| localForage |
Type : any
|
Default value : 'defineDriver' in lf ? lf : lf['default']
|
| LOCALE_ID_MAPPER |
Type : unknown
|
Default value : new InjectionToken<LocaleMapper>('localeIdMapper')
|
| LOG_INSTANCES |
Type : object
|
Default value : {}
|
| LOG_MODULE_CONFIG_TOKEN |
Type : unknown
|
Default value : new InjectionToken<LogConfig>('LOG_CONFIG')
|
| MODULE_MAPPINGS |
Type : Record<string, ModuleMapping>
|
Default value : {
EuiAccordionModule: {
importPath: '@eui/components/eui-accordion',
selectors: {
'eui-accordion': 'EuiAccordionComponent',
'eui-accordion-item': 'EuiAccordionItemComponent',
euiAccordionItemHeader: 'EuiAccordionItemHeaderDirective',
},
},
EuiAlertModule: {
importPath: '@eui/components/eui-alert',
selectors: {
'eui-alert': 'EuiAlertComponent',
euiAlert: 'EuiAlertComponent',
'eui-alert-title': 'EuiAlertTitleComponent',
},
},
EuiAutocompleteModule: {
importPath: '@eui/components/eui-autocomplete',
selectors: {
'eui-autocomplete': 'EuiAutocompleteComponent',
euiAutocomplete: 'EuiAutocompleteComponent',
'eui-autocomplete-option': 'EuiAutocompleteOptionComponent',
'eui-autocomplete-option-group': 'EuiAutocompleteOptionGroupComponent',
'eui-autocomplete-panel': 'EuiAutocompletePanelComponent',
},
},
EuiAvatarModule: {
importPath: '@eui/components/eui-avatar',
selectors: {
'eui-avatar': 'EuiAvatarComponent',
euiAvatar: 'EuiAvatarComponent',
},
},
EuiBadgeModule: {
importPath: '@eui/components/eui-badge',
selectors: {
'eui-badge': 'EuiBadgeComponent',
euiBadge: 'EuiBadgeComponent',
},
},
EuiBlockContentModule: {
importPath: '@eui/components/eui-block-content',
selectors: {
'eui-block-content': 'EuiBlockContentComponent',
},
},
EuiBreadcrumbModule: {
importPath: '@eui/components/eui-breadcrumb',
selectors: {
'eui-breadcrumb': 'EuiBreadcrumbComponent',
},
},
EuiButtonModule: {
importPath: '@eui/components/eui-button',
selectors: {
euiButton: 'EuiButtonComponent',
},
},
EuiButtonGroupModule: {
importPath: '@eui/components/eui-button-group',
selectors: {
'eui-button-group': 'EuiButtonGroupComponent',
},
},
EuiCardModule: {
importPath: '@eui/components/eui-card',
selectors: {
'eui-card': 'EuiCardComponent',
'eui-card-header': 'EuiCardHeaderComponent',
'eui-card-header-title': 'EuiCardHeaderTitleComponent',
'eui-card-content': 'EuiCardContentComponent',
'eui-card-footer': 'EuiCardFooterComponent',
'eui-card-media': 'EuiCardMediaComponent',
},
},
EuiChipModule: {
importPath: '@eui/components/eui-chip',
selectors: {
'eui-chip': 'EuiChipComponent',
euiChip: 'EuiChipComponent',
},
},
EuiChipListModule: {
importPath: '@eui/components/eui-chip-list',
selectors: {
'eui-chip-list': 'EuiChipListComponent',
},
},
EuiChipGroupModule: {
importPath: '@eui/components/eui-chip-group',
selectors: {
'eui-chip-group': 'EuiChipGroupComponent',
},
},
EuiDashboardCardModule: {
importPath: '@eui/components/eui-dashboard-card',
selectors: {
'eui-dashboard-card': 'EuiDashboardCardComponent',
'eui-dashboard-card-content': 'EuiDashboardCardContentComponent',
'eui-dashboard-card-content-header': 'EuiDashboardCardContentHeaderComponent',
'eui-dashboard-card-content-body': 'EuiDashboardCardContentBodyComponent',
'eui-dashboard-card-content-footer': 'EuiDashboardCardContentFooterComponent',
},
},
EuiDashboardButtonModule: {
importPath: '@eui/components/eui-dashboard-card',
selectors: {
'eui-dashboard-card': 'EuiDashboardCardComponent',
'eui-dashboard-card-content': 'EuiDashboardCardContentComponent',
'eui-dashboard-card-content-header': 'EuiDashboardCardContentHeaderComponent',
'eui-dashboard-card-content-body': 'EuiDashboardCardContentBodyComponent',
'eui-dashboard-card-content-footer': 'EuiDashboardCardContentFooterComponent',
},
},
EuiDatepickerModule: {
importPath: '@eui/components/eui-datepicker',
selectors: {
'eui-datepicker': 'EuiDatepickerComponent',
},
},
EuiDateRangeSelectorModule: {
importPath: '@eui/components/eui-date-range-selector',
selectors: {
'eui-date-range-selector': 'EuiDateRangeSelectorComponent',
},
},
EuiDialogModule: {
importPath: '@eui/components/eui-dialog',
selectors: {
'eui-dialog': 'EuiDialogComponent',
'eui-dialog-header': 'EuiDialogHeaderDirective',
'eui-dialog-footer': 'EuiDialogFooterDirective',
'eui-dialog-container': 'EuiDialogContainerComponent',
},
},
EuiDisableContentModule: {
importPath: '@eui/components/eui-disable-content',
selectors: {
'eui-disable-content': 'EuiDisableContentComponent',
},
},
EuiDiscussionThreadModule: {
importPath: '@eui/components/eui-discussion-thread',
selectors: {
'eui-discussion-thread': 'EuiDiscussionThreadComponent',
'eui-discussion-thread-item': 'EuiDiscussionThreadItemComponent',
},
},
EuiDropdownModule: {
importPath: '@eui/components/eui-dropdown',
selectors: {
'eui-dropdown': 'EuiDropdownComponent',
},
},
EuiFeedbackMessageModule: {
importPath: '@eui/components/eui-feedback-message',
selectors: {
'eui-feedback-message': 'EuiFeedbackMessageComponent',
},
},
EuiFieldsetModule: {
importPath: '@eui/components/eui-fieldset',
selectors: {
'eui-fieldset': 'EuiFieldsetComponent',
euiFieldsetLabelRightContent: 'EuiFieldsetLabelRightContentTagDirective',
euiFieldsetLabelExtraContent: 'EuiFieldsetLabelExtraContentTagDirective',
},
},
EuiFileUploadModule: {
importPath: '@eui/components/eui-file-upload',
selectors: {
'eui-file-upload': 'EuiFileUploadComponent',
},
},
EuiGrowlModule: {
importPath: '@eui/components/eui-growl',
selectors: {
'eui-growl': 'EuiGrowlComponent',
},
},
EuiIconModule: {
importPath: '@eui/components/eui-icon',
selectors: {
'eui-icon-svg': 'EuiIconSvgComponent',
euiIconSvg: 'EuiIconSvgComponent',
},
},
EuiIconButtonModule: {
importPath: '@eui/components/eui-icon-button',
selectors: {
'eui-icon-button': 'EuiIconButtonComponent',
},
},
EuiIconToggleModule: {
importPath: '@eui/components/eui-icon-toggle',
selectors: {
'eui-icon-toggle': 'EuiIconToggleComponent',
},
},
EuiInputCheckboxModule: {
importPath: '@eui/components/eui-input-checkbox',
selectors: {
euiInputCheckBox: 'EuiInputCheckboxComponent',
},
},
EuiInputGroupModule: {
importPath: '@eui/components/eui-input-group',
selectors: {
euiInputGroup: 'EuiInputGroupComponent',
'eui-input-group-addon': 'EuiInputGroupAddOnComponent',
euiInputGroupAddOn: 'EuiInputGroupAddOnComponent',
'eui-input-group-addon-item': 'EuiInputGroupAddOnItemComponent',
euiInputGroupAddOnItem: 'EuiInputGroupAddOnItemComponent',
},
},
EuiInputNumberModule: {
importPath: '@eui/components/eui-input-number',
selectors: {
euiInputNumber: 'EuiInputNumberComponent',
},
},
EuiInputRadioModule: {
importPath: '@eui/components/eui-input-radio',
selectors: {
euiInputRadio: 'EuiInputRadioComponent',
},
},
EuiInputTextModule: {
importPath: '@eui/components/eui-input-text',
selectors: {
euiInputText: 'EuiInputTextComponent',
},
},
EuiLabelModule: {
importPath: '@eui/components/eui-label',
selectors: {
'eui-label': 'EuiLabelComponent',
euiLabel: 'EuiLabelComponent',
},
},
EuiListModule: {
importPath: '@eui/components/eui-list',
selectors: {
'eui-list': 'EuiListComponent',
euiList: 'EuiListComponent',
'eui-list-item': 'EuiListItemComponent',
euiListItem: 'EuiListItemComponent',
},
},
EuiMenuModule: {
importPath: '@eui/components/eui-menu',
selectors: {
'eui-menu': 'EuiMenuComponent',
'eui-menu-item': 'EuiMenuItemComponent',
},
},
EuiMessageBoxModule: {
importPath: '@eui/components/eui-message-box',
selectors: {
'eui-message-box': 'EuiMessageBoxComponent',
'eui-message-box-footer': 'EuiMessageBoxFooterDirective',
},
},
EuiOverlayModule: {
importPath: '@eui/components/eui-overlay',
selectors: {
'eui-overlay': 'EuiOverlayComponent',
},
},
EuiPageModule: {
importPath: '@eui/components/eui-page',
selectors: {
'eui-page': 'EuiPageComponent',
},
},
EuiPaginatorModule: {
importPath: '@eui/components/eui-paginator',
selectors: {
'eui-paginator': 'EuiPaginatorComponent',
},
},
EuiPopoverModule: {
importPath: '@eui/components/eui-popover',
selectors: {
'eui-popover': 'EuiPopoverComponent',
},
},
EuiProgressBarModule: {
importPath: '@eui/components/eui-progress-bar',
selectors: {
'eui-progress-bar': 'EuiProgressBarComponent',
},
},
EuiProgressCircleModule: {
importPath: '@eui/components/eui-progress-circle',
selectors: {
'eui-progress-circle': 'EuiProgressCircleComponent',
},
},
EuiSelectModule: {
importPath: '@eui/components/eui-select',
selectors: {
euiSelect: 'EuiSelectComponent',
},
},
EuiSidebarMenuModule: {
importPath: '@eui/components/eui-sidebar-menu',
selectors: {
'eui-sidebar-menu': 'EuiSidebarMenuComponent',
},
},
EuiSkeletonModule: {
importPath: '@eui/components/eui-skeleton',
selectors: {
'eui-skeleton': 'EuiSkeletonComponent',
},
},
EuiSlideToggleModule: {
importPath: '@eui/components/eui-slide-toggle',
selectors: {
'eui-slide-toggle': 'EuiSlideToggleComponent',
},
},
EuiTableModule: {
importPath: '@eui/components/eui-table',
selectors: {
'eui-table': 'EuiTableComponent',
euiTable: 'EuiTableComponent',
'eui-table-filter': 'EuiTableFilterComponent',
isSortable: 'EuiTableSortableColComponent',
isStickyCol: 'EuiTableStickyColDirective',
isHeaderSelectable: 'EuiTableSelectableHeaderComponent',
isDataSelectable: 'EuiTableSelectableRowComponent',
isExpandableRow: 'EuiTableExpandableRowDirective',
},
},
EuiTableV2Module: {
importPath: '@eui/components/eui-table',
selectors: {
'eui-table': 'EuiTableComponent',
euiTable: 'EuiTableComponent',
'eui-table-filter': 'EuiTableFilterComponent',
isSortable: 'EuiTableSortableColComponent',
isStickyCol: 'EuiTableStickyColDirective',
isHeaderSelectable: 'EuiTableSelectableHeaderComponent',
isDataSelectable: 'EuiTableSelectableRowComponent',
isExpandableRow: 'EuiTableExpandableRowDirective',
},
},
EuiTabsModule: {
importPath: '@eui/components/eui-tabs',
selectors: {
'eui-tabs': 'EuiTabsComponent',
'eui-tab': 'EuiTabComponent',
'eui-tab-header': 'EuiTabHeaderComponent',
'eui-tab-body': 'EuiTabBodyComponent',
},
},
EuiTextAreaModule: {
importPath: '@eui/components/eui-textarea',
selectors: {
euiTextArea: 'EuiTextareaComponent',
},
},
EuiTimelineModule: {
importPath: '@eui/components/eui-timeline',
selectors: {
'eui-timeline': 'EuiTimelineComponent',
'eui-timeline-item': 'EuiTimelineItemComponent',
},
},
EuiTimepickerModule: {
importPath: '@eui/components/eui-timepicker',
selectors: {
'eui-timepicker': 'EuiTimepickerComponent',
},
},
EuiTreeModule: {
importPath: '@eui/components/eui-tree',
selectors: {
'eui-tree': 'EuiTreeComponent',
},
},
EuiTreeListModule: {
importPath: '@eui/components/eui-tree-list',
selectors: {
'eui-tree-list': 'EuiTreeListComponent',
'eui-tree-list-item': 'EuiTreeListItemComponent',
},
},
EuiUserProfileModule: {
importPath: '@eui/components/eui-user-profile',
selectors: {
'eui-user-profile': 'EuiUserProfileComponent',
},
},
EuiWizardModule: {
importPath: '@eui/components/eui-wizard',
selectors: {
'eui-wizard': 'EuiWizardComponent',
'eui-wizard-step': 'EuiWizardStepComponent',
},
},
EuiTooltipDirectiveModule: {
importPath: '@eui/components/directives',
selectors: {
euiTooltip: 'EuiTooltipDirective',
},
},
EuiTemplateDirectiveModule: {
importPath: '@eui/components/directives',
selectors: {
euiTemplate: 'EuiTemplateDirective',
},
},
EuiResizableDirectiveModule: {
importPath: '@eui/components/directives',
selectors: {
euiResizable: 'EuiResizableDirective',
'eui-resizable': 'EuiResizableComponent',
},
},
EuiMaxLengthDirectiveModule: {
importPath: '@eui/components/directives',
selectors: {
euiEditorMaxlength: 'EuiMaxLengthDirective',
},
},
EuiTruncatePipeModule: {
importPath: '@eui/components/pipes',
selectors: {
euiTruncate: 'EuiTruncatePipe',
},
},
EuiLayoutModule: {
importPath: '@eui/components/layout',
selectors: {
'eui-app': 'EuiAppComponent',
'eui-header': 'EuiHeaderComponent',
'eui-footer': 'EuiFooterComponent',
'eui-toolbar': 'EuiToolbarComponent',
'eui-sidebar-toggle': 'EuiSidebarToggleComponent',
},
},
}
|
| MULTIPLE_EMPTY_LINES |
Type : unknown
|
Default value : /\n{3,}/g
|
| NEW_BODY |
Type : string
|
Default value : 'eui-tab-body'
|
| NEW_HEADER |
Type : string
|
Default value : 'eui-tab-header'
|
| NEW_HEADER_LABEL |
Type : string
|
Default value : 'eui-tab-header-label'
|
| NEW_HEADER_SUB_LABEL |
Type : string
|
Default value : 'eui-tab-header-sub-label'
|
| OLD_CONTENT |
Type : string
|
Default value : 'eui-tab-content'
|
| OLD_LABEL |
Type : string
|
Default value : 'eui-tab-label'
|
| OLD_SUB_LABEL |
Type : string
|
Default value : 'euiTabSubLabel'
|
| NEW_COMPONENT |
Type : string
|
Default value : 'EuiToolbarMegaMenuComponent'
|
| NEW_COMPONENT_PATH |
Type : string
|
Default value : '@eui/components/layout'
|
| NEW_INTERFACE |
Type : string
|
Default value : 'EuiMenuItem'
|
| NEW_INTERFACE_PATH |
Type : string
|
Default value : '@eui/core'
|
| NEW_TAG |
Type : string
|
Default value : 'eui-toolbar-mega-menu'
|
| OLD_COMPONENT |
Type : string
|
Default value : 'EuiToolbarMenuComponent'
|
| OLD_INTERFACE |
Type : string
|
Default value : 'ToolbarItem'
|
| OLD_TAG |
Type : string
|
Default value : 'eui-toolbar-menu'
|
| REMOVED_OUTPUT |
Type : string
|
Default value : 'menuItemClick'
|
| NEW_NAME |
Type : string
|
Default value : 'euiCTAButton'
|
| OLD_NAME |
Type : string
|
Default value : 'euiButtonCall'
|
| NEW_PIPE |
Type : string
|
Default value : 'euiTableHighlight'
|
| OLD_PIPE |
Type : string
|
Default value : 'euiTableHighlightFilter'
|
| OUTPUT_RENAMES |
Type : unknown
|
Default value : new Map([['selectedRows', 'rowsSelect']])
|
| PAGINATOR_COMPONENT |
Type : string
|
Default value : 'EuiPaginatorComponent'
|
| PAGINATOR_IMPORT_PATH |
Type : string
|
Default value : '@eui/components/eui-paginator'
|
| REMOVED_INPUTS |
Type : unknown
|
Default value : new Set(['euiTableBordered', 'isHoverable', 'defaultMultiOrder', 'paginable'])
|
| REMOVED_OUTPUTS |
Type : unknown
|
Default value : new Set(['multiSortChange'])
|
| TH_TD_INPUT_RENAMES |
Type : unknown
|
Default value : new Map([
['isStickyColumn', 'isStickyCol'],
['sortable', 'isSortable'],
])
|
| TR_INPUT_RENAMES |
Type : unknown
|
Default value : new Map([
['isSelectableHeader', 'isHeaderSelectable'],
['isSelectable', 'isDataSelectable'],
])
|
| TS_PROPERTY_RENAMES |
Type : unknown
|
Default value : new Map([['filteredRows', 'getFilteredData']])
|
| PLATFORM_BROWSER_ID |
Type : string
|
Default value : 'browser'
|
| REMOVED_INPUTS |
Type : unknown
|
Default value : new Set(['alertIconType', 'alertIconFillColor', 'isMuted', 'isBordered'])
|
| REMOVED_INPUTS |
Type : unknown
|
Default value : new Set(['isFlat'])
|
| REMOVED_INPUTS |
Type : unknown
|
Default value : new Set(['isSquared'])
|
| REMOVED_INPUTS |
Type : unknown
|
Default value : new Set(['type'])
|
| SELECTOR_MAP |
Type : SelectorEntry[]
|
Default value : buildSelectorMap()
|
|
All known EUI selectors with their import metadata |
| testBed |
Type : unknown
|
Default value : getTestBed()
|
| translateConfig |
Type : object
|
Default value : {
loader: {
provide: TranslateLoader,
useClass: I18nLoader,
},
}
|
| UX_ERROR_MAPPING_HANDLER_TOKEN |
Type : unknown
|
Default value : new InjectionToken<ErrorMappingHandler>('UX_ERROR_MAPPING_HANDLER')
|